:root {
    --defaultTextColor: #131515;
    --white: #fff;
    --primary: #1A659E;
    --secondary: #cbcbcb;
    --warning: yellow;
    --danger: #ff4f01;
    /* tipografy */
    --fotnFamily: 'Roboto', sans-serif;
    --inter: 'Inter', sans-serif;
    --roboto: 'Roboto', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --muli: 'Muli';
    --defaultFontSize: 16px;
    --defaultLineHeight: 18px;
    --h1Size: 50px;
    --h2Size: 40px;
    --h3Size: 30px;
    --h4Size: 20px;
    --h5Size: 10px;
    --defaultRaduis: 5px;
    --sidebar-width: 285px;
    --header-fixed-padding: 72px;
    --header-fixed-padding2: 138px;
    --w-sidebar: 468px;
}

.roboto {
    font-family: var(--roboto);
}

.poppins {
    font-family: var(--poppins);
}

body {
    font-size: 100%;
    font-weight: normal;
    font-family: var(--fotnFamily);
    font-weight: 400;
    font-size: var(--defaultFontSize);
    line-height: var(--defaultLineHeight);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background: #eef2fa;
    color: var(--defaultTextColor);
}

body.lock {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: bold;
    font-family: var(--fotnFamily);
    line-height: 120%;
}

h1 {
    font-size: var(--h1Size);
}

h2 {
    font-size: var(--h2Size);
}

h3 {
    font-size: var(--h3Size);
}

h4 {
    font-size: var(--h4Size);
}

h5 {
    font-size: var(--h5Size);
}

.input,
.textarea {
    padding: 10px 0;
    font-size: var(--defaultFontSize);
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #d0d5dd;
    padding: 10px;
}

input,
button,
textarea {
    font-family: var(--fotnFamily);
}

.radius-5 {
    border-radius: var(--defaultRaduis);
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.header-fixed {
    padding-top: var(--header-fixed-padding);
}

.content {
    flex: auto;
}

.container {
    max-width: none;
    margin: 0 auto;
    width: 100%;
    padding: 0 56px;
}

/* colors */

.color-primary {
    color: var(--primary);
}

.color-danger {
    color: var(--danger);
}

.color-warning {
    color: var(--warning);
}

.color-secondary {
    color: var(--secondary);
}

/* bg-colors */

.bg-primary {
    background-color: var(--primary);
}

.bg-danger {
    background-color: var(--danger);
}

.bg-warning {
    background-color: var(--warning);
}

.bg-secondary {
    background-color: var(--secondary);
}


#draw .draw-clear{
	z-index: 100;
}

#draw .draw-radio-block{
	z-index: 100;
}


.loading{
	pointer-events: none;
}

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

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 

.loader_outer{
	z-index: 99999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #8080805e;
}


.select2-container--default .select2-selection--single .select2-selection__clear{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: red;
	opacity: 0;
}


		.stripe_group{ margin-bottom: 50px; }
		.group_field{ margin-top: 20px; }
		.accordion {
			background-color: #fff;
			color: #516a78;
			cursor: pointer;
			padding: 18px;
			width: 100%;
			text-align: left;
			border: none;
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16);
			outline: none;
			transition: 0.4s;
		}

		.panel {
			padding: 0 18px;
			background-color: white;
			display: none;
			overflow: hidden;
		} 
		
		.panel.opened{
			display: block;
		}

		/* .active, .accordion:hover {
			background-color: #eef2fa;
		} */
		
		.disabled_step{
			pointer-events: none;
			opacity: 0.5;
		}
		
		.group_title{
			width: 100%;
			display: flex;
            align-items: center;
            font-size: 16px;
            color: #333;
			/* justify-content: space-between;		 */
		}
		
		.required_field{
			border: 1px solid #FF3030;
            border-radius: 8px;
		}



.total_span{
	font-weight: bold;
}



.data-table__footer .paginate_button{
	min-width: 16px;
	width: auto !important;
	padding-left: 2px;
	padding-right: 2px;	
}


.data-table-container table.dataTable tr.tr-warm-up td {
    background-color: #ffe3005e;
}

.data-table-container table.dataTable tbody tr.priority-high td:first-child{
    border-left: 3px solid #FF5757;
}
.data-table-container table.dataTable tbody tr.priority-medium td:first-child{
    border-left: 3px solid #3248D6;
}
.data-table-container table.dataTable tbody tr.priority-low td:first-child{
    border-left: 3px solid #F9AC11;
}


.hotel_name{
	line-height: 1;
}

.hotel_name img{
	max-height: 16px;
}
