@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--primary-color: #e25461;
	--primary-color-hover: #be2333;
	--secondary-color: #54433a;
	--secondary-color-hover: #2d241f;
	--gray: #f7f7f7;
	--white: #ffffff;
	--dark-gray: #333333;
}
::selection {
    background: #f4b852;
	color: #000000;
}
a {
	text-decoration: none;
}
.btn-link {
    text-decoration: none;
}
body {
	background: var(--white);
    color: #4f5366;
	font-family: 'Rubik', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/loader-oms.gif) 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}
.navbar {
	padding: 15px 10px;
	background: var(--white);
	border: none;
	border-radius: 0;
	margin-bottom: 40px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar-btn {
	box-shadow: none;
	outline: none !important;
	border: none;
}
.card {
    border-radius: 6px;
    box-shadow: rgba(60, 64, 88, 0.03) 0px 5px 20px 0px;
	transition: all 0.3s;
}
.card-title {
    margin-bottom: 1.6rem;
}
.card-header {
	font-weight: 600;
}
.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 2.25rem;
}
.card-footer {
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,.04);
}
.modal-xl {
	width: 90%;
	max-width: 1200px;
}
.blinking {
    animation: blinkingText 1.2s infinite;
	color: red;
}
div.dtsp-panes {
    padding: 2%;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 3px;
    margin: 2% 0;
}
div.dtsp-searchPane div.dataTables_scrollBody {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 3px;
}
div.dtsp-searchPane div.dataTables_scrollBody:hover {
    border: 1px solid #cfcfcf !important;
}
table.dataTable tbody>tr.selected, table.dataTable tbody>tr>.selected {
    background-color: #ff9800;
	color: #fff !important;
}
div.dt-button-collection div.dropdown-menu {
    box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.25);
}
.page-item.active .page-link {
    background-color: #e6e6f0;
    border-color: #e6e6f0;
    color: #4f5366;
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: #555;
    border-color: #333;
}
.btn-sidebar {
	background: #ffc56f;
	border: 1px solid #ffc56f;
	color: #000 !important;
}
.btn-sidebar:hover {
	background: var(--white) !important;
	border: 1px solid #000;
	color: #000 !important;
}
label {
    font-weight: 500;
}
select.form-control:not([size]):not([multiple]) {
    height: inherit !important;
	min-width: 60px;
	padding: 12px 8px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #000;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: 2px;
	padding: 5px 4px;
}
.form-control {
	padding: 12px 8px;
}
.form-control:focus {
	border-color: #333333;
	box-shadow: none;
}
.custom-control-label {
    margin-left: 12px;
    margin-top: 5px;
}
.custom-control-label::before {
    width: 24px;
    height: 24px;
}
.custom-control-label::after {
    width: 24px;
    height: 24px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #e25461 !important;
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255,102,0,.25);
}
.custom-control-input:active~.custom-control-label::before {
    color: #fff;
    background-color: #fff3eb;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #e25461 !important;
}
.custom-control-inline {
    margin-left: 1rem;
}
.parsley-errors-list.filled {
	background: #FADCE0;
	color: #B30032;
	font-size: 90%;
	padding: 10px;
}
.parsley-errors-list.filled li {
	list-style-type: none;
	margin: 0;
}
input.parsley-error, select.parsley-error, textarea.parsley-error {
	background: #fff;
	color: #B30032;
}
input.parsley-success, select.parsley-success, textarea.parsley-success {
	background-color: #fff;
}
.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}
.switch-field label {
	display: inline-block;
	min-width: 125px;
	width: auto;
	background-color: #fff;
	text-align: center;
	border: 1px solid #ced4da;
	border-radius: 3px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	padding: 0.75rem;
	margin: 0 10px 0 0;
}
.switch-field label:hover {
	background: #ffde7a;
	border: 1px solid #ffde7a;
	color: #2d2819;
	cursor: pointer;
	transition: all 200ms ease-in-out;
}
.switch-field input:checked + label {
	background-color: #ffeebc;
	border: 1px solid #ffde7a;
	color: #2d2819;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-weight: 400;
}
.rad, .ckb {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    margin-bottom: 5px;
  }
  .rad > input, .ckb > input {
    visibility: hidden;
    position: absolute;
  }
  .rad > i, .ckb > i {
    display: inline-block;
    vertical-align: middle;
    width:  30px;
    height: 30px;
    border-radius: 50%;
    transition: 0.2s;
    box-shadow: inset 0 0 0 18px #fff;
    margin-right: 6px;
    border: 1px solid #ced4da;
  }
  .ckb > i {
    display: inline-block;
    vertical-align: middle;
    width:  36px;
    height: 36px;
    border-radius: 3px;
    transition: 0.2s;
    border: 1px solid #ced4da;
  }
  .rad:hover > i {
    box-shadow: inset 0 0 0 5px #fff;
    background: #ff9751;
  }
  .rad > input:checked + i {
    box-shadow: inset 0 0 0 5px #fff;
    background: #ff9751;
  }
  .checkbox-inline, .radio-inline {
    margin-right: 20px;
  }
  .ckb > input + i:after{
    content: "";
    display: block;
    height: 30px;
    width:  30px;
    margin: 2px;
    border-radius: inherit;
    transition: inherit;
    background: #fff;
  }
  .ckb > input:checked + i:after {
    margin-left: 2px;
    background:  url(../images/checkmark_orange.png) no-repeat;
  }
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
	display: flex;
	width: 100%;
	align-items: stretch;
	perspective: 1500px;
}
#sidebar {
	min-width: 250px;
	max-width: 250px;
	background: rgb(255 116 14);
    background: linear-gradient(0deg, rgb(131 56 12) 0%, rgb(255 116 14) 100%);
	border-right: 1px solid rgba(0,0,0,.125);
	color: #fff;
	transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	transform-origin: bottom left;
}
#sidebar.active {
	margin-left: -250px;
	transform: rotateY(100deg);
}
#sidebar .sidebar-header {
	padding: 20px;
}
#sidebar img {
    filter: brightness(0) invert(1);
}
#sidebar ul.components {
	padding: 20px 0;
}
#sidebar ul p {
	color: #333;
	padding: 10px;
}
#sidebar ul li a {
	color: rgba(255, 255, 255, 0.8);
    padding: 15px 10px;
	display: block;
}
#sidebar ul li a:hover {
	background: #f58b4d;
	color: #fff;
	text-decoration: none;
}
#sidebar ul li.active > a {
	color: #fff !important;
	background: #f58b4d;
}
/* a[aria-expanded="true"] {
	color: #fff !important;
	background: #f58b4d;
}
a[data-bs-toggle="collapse"] {
	position: relative;
} */
.dropdown-toggle-sidebar::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
}
ul ul a {
	font-size: 0.9em !important;
	padding-left: 30px !important;
	background: rgba(200, 200, 200, 0.2);
}
ul.CTAs {
	padding: 20px;
}
ul.CTAs a {
	text-align: center;
	font-size: 0.9em !important;
	display: block;
	border-radius: 5px;
	margin-bottom: 5px;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  max-width: calc(100vw - 250px);
  width: 100%;
  min-height: 100vh;
  transition: all 0.8s;
  transition-delay: 0.2s;
  overflow: hidden;
}
#sidebar.active + #content {
  max-width: 100vw;
  transition-delay: 0s;
}
#sidebarCollapse {
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	cursor: pointer;
}
#sidebarCollapse span {
	width: 80%;
	height: 2px;
	margin: 0 auto;
	display: block;
	background: #555;
	transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
	transition-delay: 0.2s;
}
#sidebarCollapse span:first-of-type {
	transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
	opacity: 0;
}
#sidebarCollapse span:last-of-type {
	transform: rotate(-45deg) translate(1px, -1px);
}
#sidebarCollapse.active span {
	transform: none;
	opacity: 1;
	margin: 5px auto;
}
.dataTables_length {
	margin-top: 10px;
}
body.modal-open {
    overflow: visible;
}
.select2-container .select2-selection--single {
    height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}
.chart {
	width: 100%; 
	min-height: 350px;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
  #content {
    max-width: 100vw;
  }
	#sidebar {
		margin-left: -250px;
		transform: rotateY(90deg);
	}
	#sidebar.active {
		margin-left: 0;
		transform: none;
	}
  #sidebar.active + #content {
    max-width: 100vw;
  }
	#sidebarCollapse span:first-of-type, #sidebarCollapse span:nth-of-type(2), #sidebarCollapse span:last-of-type {
		transform: none;
		opacity: 1;
		margin: 5px auto;
	}
	#sidebarCollapse.active span {
		margin: 0 auto;
	}
	#sidebarCollapse.active span:first-of-type {
		transform: rotate(45deg) translate(2px, 2px);
	}
	#sidebarCollapse.active span:nth-of-type(2) {
		opacity: 0;
	}
	#sidebarCollapse.active span:last-of-type {
		transform: rotate(-45deg) translate(1px, -1px);
	}
}

.table > tbody > tr > td {
	vertical-align: middle;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
}

.ms-container{
	background: transparent url('../images/swap.png') no-repeat 50% 50%;
  }
  
  .ms-container:after{
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	font-size: 0;
	clear: both;
	min-height: 0;
	visibility: hidden;
  }
  
  .ms-container .ms-selectable, .ms-container .ms-selection{
	background: #fff;
	float: left;
	width: 45%;
  }
  .ms-container .ms-selection{
	float: right;
  }
  
  .ms-container .ms-list{
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear 0.2s;
	-moz-transition: border linear 0.2s;
	-ms-transition: border linear 0.2s;
	-o-transition: border linear 0.2s;
	transition: border linear 0.2s;
	border: 1px solid #ced4da;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	height: 300px;
	padding: 0;
	overflow-y: auto;
  }
  
  .ms-container .ms-list.ms-focus{
	border: 1px solid #000;
  }
  
  .ms-container ul{
	margin: 0;
	list-style-type: none;
	padding: 0;
  }
  
  .ms-container .ms-optgroup-container{
	width: 100%;
  }
  
  .ms-container .ms-optgroup-label{
	margin: 0;
	padding: 5px 0px 0px 5px;
	cursor: pointer;
	color: #999;
  }
  
  .ms-container .ms-selectable li.ms-elem-selectable,
  .ms-container .ms-selection li.ms-elem-selection{
	border-bottom: 1px #eee solid;
	padding: 0.5em;
  }
  
  .ms-container .ms-selectable li.ms-hover,
  .ms-container .ms-selection li.ms-hover{
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	background-color: #ffc56f;
  }
  
  .ms-container .ms-selectable li.disabled,
  .ms-container .ms-selection li.disabled{
	background-color: #eee;
	color: #aaa;
	cursor: text;
  }

.dt-info {
	color: #7f7f7f;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
    text-align: left;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    background: #f4f4f4 !important;
}

.select2 {
	width: 100% !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
    height: 2rem !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding: 6px !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field {
    padding: 3px !important;
}

table.table.dataTable>:not(caption)>*>* {
    font-size: 90% !important;
}

@media screen and (max-width: 767px) {
    div.dt-container div.dt-length, div.dt-container div.dt-search, div.dt-container div.dt-info, div.dt-container div.dt-paging {
        text-align: left !important;
    }
}

@media screen and (max-width: 767px) {
    div.dt-container div.dt-paging ul.pagination {
        justify-content: left !important;
    }
}

.form-check {
    padding-left: 0 !important;
}

.select2-container{
    z-index: 100000 !important;
}