@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

* {
	box-sizing: border-box;
}

body {
	background: #EBE3D5;
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
}

.wrapper::before {
	background-color: #02adff !important;
}

.swal2-popup {
    font-size: 12px;
}

.btn > i {
	font-size: 15px;
}

.main {
	height: 100vh;
	overflow-y: auto;
}

*::-webkit-scrollbar {
  display: none;
}

.btn:focus,
.btn-close:focus,
.form-control:focus,
.has-validation .form-control:focus,
.form-select:focus {
	box-shadow: none !important;
	outline: none !important;
}

.navbar-toggler {
	border: none;
	border-radius: 0px;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.nav-item {
    padding: 0px;
    margin: 0px;
}

.nav-link {
    display: flex;
    align-items: center;
    grid-gap: 3px;
    line-height: 20px;
    text-transform: uppercase;
}

.sidebar .sidebar-item .sidebar-item.active .sidebar-link {
	color: seagreen;
}

.login-wrapper {
	height: 100vh;
}

.login-wrapper form {
	width: 300px;
}

.wrapper .sidebar {
	height: 100vh;
	max-height: 100vh;
}

.wrapper.no-header::before {
    display: none;
}

.table {
	font-size: 12px;
}

.table tbody tr {
	cursor: pointer;
}

.table tbody tr td .btn {
	font-size: 12px;
}

.custom-backdrop {
	background-color: rgba(0, 0, 0, 0.8) !important;
}

.loader-popup {
	background-color: transparent !important;
}

.loader {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	border: 3px solid;
	border-color: #FFF #FFF transparent transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 3px solid;
	border-color: transparent transparent #FF3D00 #FF3D00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-sizing: border-box;
	animation: rotationBack 0.5s linear infinite;
	transform-origin: center center;
}

.loader::before {
	width: 32px;
	height: 32px;
	border-color: #FFF #FFF transparent transparent;
	animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 
@keyframes rotationBack {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
