@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;
}

/* ---------------------------
   Hide scrollbars by default
   (WebKit/Blink, Firefox, IE)
   --------------------------- */

/* WebKit/Blink (Chrome, Edge, Safari) */
*::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Firefox */
* {
  scrollbar-width: none;       /* hides scrollbar in Firefox */
  -ms-overflow-style: none;    /* hides scrollbar in IE/Edge legacy */
}

body {
	background: #EBE3D5;
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
}

table tbody tr {
	cursor: pointer;
}

.swal2-popup {
    font-size: 12px;
}

.btn > i {
	font-size: 15px;
}

.main {
	height: 100vh;
	overflow-y: auto;
}

.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;
}

.sidebar .sidebar-item .sidebar-item.active .sidebar-link {
	color: seagreen;
}

.login-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.login-wrapper form {
	width: 300px;
}

.wrapper .sidebar {
	height: 100vh;
	max-height: 100vh;
}

.wrapper.no-header::before {
    display: none;
}

.loader-backdrop {
	background-color: rgba(0, 0, 0, .75) !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);
	}
}

.shake {
/*	border: 1px solid #F95454 !important;*/
	animation: shake linear .3s;
}

@keyframes shake {
	0% { transform: translateX(0) }
	25% { transform: translateX(5px) }
	50% { transform: translateX(-5px) }
	75% { transform: translateX(5px) }
	100% { transform: translateX(0) }
}