:root {
	--mtr-primary: #ff6600;
	--mtr-primary-rgb: 255 102 0;
	--mtr-primary-hover: #d85800;
	--mtr-secondary: rgb(0, 166, 80);
    --mtr-secondary-hover: rgb(0, 137, 75);
	--mtr-success: #22c55e;
	--mtr-success-rgb: 34, 197, 94;
	--mtr-success-hover: #1db354;
	--mtr-danger: #ef4444;
	--mtr-danger-rgb: 239, 68, 68;
	--mtr-warning: #ffba08;
  	--mtr-warning-rgb: 255, 186, 8;
}

.package-city {
   	font-size: 1.125rem;
}

.package-airport {
   	font-size: 0.875rem;
}

.package-price .amount {
   	color: #212529
}

.package-item {
   	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.package-item:hover {
	background-color: #E9ECEF;
	cursor: pointer;
}

.package-item.active {
	background-color: #FF6600;
	border-color: #FF6600;
}

.package-item.active:hover {
	background-color: #cf5402;
	border-color: #cf5402;
}

.package-item.active .package-price .amount {
   	color: #fff
}

.transform-none {
   	text-transform: none !important;
}

.fs-md {
   	font-size: 1.125rem !important;
}

.mtr-popup-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100dvh;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

body.admin-bar .mtr-popup-container {
	height: calc(100dvh - 32px);
    margin-top: 32px;
}

.mtr-popup-container.show {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.mtr-popup-content {
	display: none;
	background-color: #fff;
	border-radius: 0.5rem;
	width: auto;
    max-width: 950px;
	height: auto;
	overflow: auto;
    position: relative;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	transform: translate(0, -50px);
	transition: transform .3s ease-out;
}

.mtr-popup-container.show .mtr-popup-content {
   	transform: none;
	display: block;
}

.mtr-popup-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #dee2e6;
	padding: 1rem 1.5rem 1rem 1.5rem;
}

.mtr-popup-header {
    position: absolute;
    right: 0;
    top: 1rem;
    z-index: 2;
}

.mtr-popup-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem 1.5rem;
}

.mtr-popup-footer {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 2rem 1.5rem 2rem 1.5rem;
	background-color: #fff;
	border-top: 1px solid #dee2e6;
}

.mtr-popup-title {
	font-size: 1.325rem;
	margin-bottom: 0;
}

@media screen and (min-width: 992px) {
	.popup-sm {
		width: 600px !important;
	}
	
	.popup-lg {
		width: 900px !important;
	}

	.mtr-popup-content {
		min-width: 800px;
	}
}

@media screen and (min-width: 768px) {
	.mtr-popup-content:not(.popup-fullscreen) {
		height: fit-content;
		max-height: 95dvh;
	}
}

@media screen and (max-width: 767px) {
	.mtr-popup-content {
		width: 95%;
		height: fit-content;
		max-height: 95dvh;
		position: absolute;
	}
}

.popup-fullscreen {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
}

.mtr-btn-close {
	box-sizing: content-box;
	width: 0.75rem;
	height: 0.75rem;
	min-height: 0.5rem;
	padding: 0.25em 0.25em;
	color: #000;
	background: rgba(0,0,0,0) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/0.75em auto no-repeat;
	border: 0;
	border-radius: 0.375rem;
	opacity: 0.5;
	background-color: transparent !important;
	transition: opacity 0.25s ease-in-out;
}

.mtr-btn-close:hover {
	color: #000;
	text-decoration: none;
	opacity: 0.75;
	cursor: pointer;
}

.mtr-btn-close-white {
   	filter: invert(1) grayscale(100%) brightness(200%);
}

.mtr-popup-content table tr {
   	padding-left: 0;
}

table.popup-table {
   	width: 100%;
}

table.popup-table tr {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

table.popup-table th,
table.popup-table td {
	width: 50%;
	border: none !important;
	text-align: left;
}

table.popup-table th {
	padding-right: 1rem;
	font-weight: 600;
}

.list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: 0.5rem;
}
 
.list-group-numbered {
	list-style-type: none;
	counter-reset: section;
}
 
.list-group-numbered > li::before {
	content: counters(section, ".") ". ";
	counter-increment: section;
}

.list-group-item-action {
	width: 100%;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	color: #3e4265;
	font-weight: 600;
	text-align: inherit;
}
 
.list-group-item-action:hover,
.list-group-item-action:focus {
	z-index: 1;
	color: #6366f1;
	text-decoration: none;
	background-color: rgba(99, 102, 241, 0.12);
}

.list-group-item-action:active {
	color: #6366f1;
	background-color: rgba(99, 102, 241, 0.12);
}
 
.list-group-item {
	position: relative;
	display: block;
	padding: 0.75rem 1rem;
	color: #585c7b;
	text-decoration: none;
	background-color: transparent;
	border: 1px solid #e2e5f1;
	margin-bottom: 0;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.list-group-item:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.list-group-item:last-child {
	border-bottom-right-radius: inherit;
	border-bottom-left-radius: inherit;
}

.list-group-item.disabled,
.list-group-item:disabled {
	color: #9397ad;
	pointer-events: none;
	background-color: transparent;
}

.list-group-item.active {
	z-index: 2;
	color: #fff;
	background-color: var(--mtr-primary);
	border-color: var(--mtr-primary);
}

.list-group-item + .list-group-item {
   	border-top-width: 0;
}

.list-group-item + .list-group-item.active {
	margin-top: -1px;
	border-top-width: 1px;
}

.specific-value {
   	width: 350px;
}

.list-group-item.selected {
	color: #fff;
	background-color: var(--mtr-primary);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.425rem;
	background-position: center right 1.225rem;
}

#master_travel_trigger_packages {
	color: #fff;
	background-color: var(--mtr-primary);
	border-color: var(--mtr-primary);
	border-radius: 0.375rem;
}

#master_travel_trigger_packages:hover {
	color: #fff;
	border-color: var(--mtr-primary-hover);
	background-color: var(--mtr-primary-hover);
}

.mtr-btn {
	display: inline-block;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.625rem 1.75rem;
	font-size: 0.875rem;
	border-radius: 0.375rem;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.mtr-btn-sm,
.mtr-btn-group-sm > .mtr-btn {
	padding: 0.475rem 1.25rem;
	font-size: 0.75rem;
	border-radius: 0.25rem;
}

.mtr-btn:hover,
.mtr-btn:disabled,
.mtr-btn.disabled {
   	box-shadow: none !important;
}

.mtr-btn:disabled, .mtr-btn.disabled, fieldset:disabled .mtr-btn {
	pointer-events: none;
	opacity: 0.65;
	box-shadow: none;
}

.mtr-btn-primary:disabled,
.mtr-btn-primary.disabled {
	color: #fff;
	background-color: var(--mtr-primary);
	border-color: var(--mtr-primary);
}

a.mtr-btn-primary,
a.mtr-btn-primary:hover,
a.mtr-btn-primary:focus {
   	color:#fff;
}

.mtr-btn-primary {
	background-color: var(--mtr-primary);
	border: 1px solid var(--mtr-primary);
}

.mtr-btn-primary:hover {
	color: #fff;
	background-color: var(--mtr-primary-hover);
	border-color: var(--mtr-primary-hover);
}

.mtr-btn-success {
	color: #fff;
	background-color: var(--mtr-success);
	border-color: var(--mtr-success);
}

.mtr-btn-success:hover {
	color: #fff;
	background-color: var(--mtr-success-hover);
	border-color: var(--mtr-success-hover);
}

.mtr-btn-outline-danger {
	color: var(--mtr-danger);
	border-color: rgba(var(--mtr-danger-rgb), 0.35);
}

.mtr-btn-outline-danger:hover,
.mtr-btn-outline-danger:focus {
	color: #fff;
	background-color: var(--mtr-danger);
	border-color: var(--mtr-danger);
}

.mtr-btn-outline-danger:hover > .icon,
.mtr-btn-outline-danger:focus > .icon {
   	fill: #fff !important
}

.mtr-btn-outline-warning {
	color: var(--mtr-warning);
	border-color: rgba(var(--mtr-warning-rgb), 0.35);
}

.mtr-btn-outline-warning:hover {
	color: #000;
	background-color: var(--mtr-warning);
}

.mtr-btn-outline-warning:hover > .icon {
   	fill: #000 !important;
}

.mtr-btn-outline-primary {
	color: var(--mtr-primary);
	border-color: rgba(var(--mtr-primary-rgb), 0.35);
}

.mtr-btn-outline-primary:hover,
.mtr-btn-outline-primary:focus {
	color: #fff;
	background-color: var(--mtr-primary);
	border-color: var(--mtr-primary);
}

.mtr-btn-outline-secondary {
	color: #434a57 !important;
	background-color: transparent;
	border-color: #d7dde2 !important;
}

.mtr-btn-outline-secondary:hover {
	color: #121519 !important;
	background-color: #edf1f5 !important;
	border-color: #d7dde2;
}

.mtr-step {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.mtr-step.active {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.mtr-btn.hide {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.step-progress {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 2rem 1rem;
	width: 29rem;
	margin: 0 auto;
}

.step-progress.is-tour {
    width: 20rem;
}

#mtr_request_refund_container .step-progress {
	width: 20rem;
}

@media screen and (max-width: 992px) {
	.step-progress {
		width: 100%;
		padding: 0 1rem 2rem;
	}

	.step-conector {
		width: 5.5rem;
	}

	.step-conector.step-2 {
		margin-left: 9.5rem;
	}
}

.check-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border: 2px solid #e2e5f1;
	border-radius: 100%;
	width: 2.525rem;
	height: 2.525rem;
	background-color: #fff;
	font-weight: 600;
	color: #8095a9;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border 0.2s ease-in-out;
}

.check-step-icon > i {
   	transition: color 0.2s ease-in-out;
}

.step-item {
	display: grid;
	align-items: center;
	justify-items: center;
}

.check-step {
	margin-bottom: 0.625rem;
	z-index: 2;
}

.step-item .step-label {
	font-size: 0.925rem;
	color: #8095a9;
	min-width: 5rem;
}

.step-item.step-complete .check-step-icon {
	background-color: var(--mtr-success);
    border-color: var(--mtr-success);
	color: #fff;
}

.step-item.step-active .check-step-icon {
	border-color: var(--bs-secondary-bg-subtle);
    color: var(--bs-secondary);
    background-color: var(--bs-gray-100);
	font-weight: 600;
}

.step-item.step-complete .check-step-icon > i {
	font-size: 1.425rem;
	color: #fff;
}

.step-conector {
	position: absolute;
	z-index: 0;
	width: 8.5rem;
	height: 3px;
	background-color: #E9ECEF;
	margin-top: -2rem;
	transition: background-color 0.2s ease-in-out;
}

@media screen and (max-width: 992px) {
	.step-conector {
		width: 7rem;
	}

	.step-conector.step-1 {
    	margin-left: 7rem !important;
	}

	.step-conector.step-2 {
		margin-left: -7rem !important;
	}
}

.step-conector.step-complete {
   	background-color: var(--mtr-success);
}

.step-progress.is-tour .step-conector.step-1 {
    margin-left: -10rem;
}

.step-conector.step-1 {
   	margin-left: 10rem;
}

.step-conector.step-2 {
   	margin-left: -10rem;
}

.mtr-booking-container-steps {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
	width: 100%;
	height: auto;
}

.mtr-reservation-step:not(.step-active),
.mtr-refund-step:not(.step-active) {
	visibility: hidden;
	opacity: 0;
	display: none;
}

.mtr-reservation-step.step-active,
.mtr-refund-step.step-active {
	visibility: visible;
	opacity: 1;
	display: block;
}

.previous-step-button {
   	color: #343A40 !important;
	background-color: transparent !important;
	border: none;
}

.previous-step-button > svg {
	font-size: 1.8525rem !important;
	color: #96a1ab;
	transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.previous-step-button:hover svg {
	color: #343A40;
	transform: translateX(-10px);
}

.process-reservation-body,
.process-reservation-footer,
.process-refund-body,
.process-refund-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.icon-highlight {
	width: 5.225rem;
	height: 5.225rem;
	padding: 0.825rem;
	background-color: rgba(var(--bs-primary-rgb), 0.10);
	border-radius: 100%;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-highlight > svg {
	width: 3rem;
	height: auto;
}

.redirect-animation {
	width: 3.5rem;
	height: 3.5rem;
	background-color: #DEE2E6;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0088cd;
    --bs-btn-border-color: #0088cd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0c74a9;
    --bs-btn-hover-border-color: #0b7db7;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0b7db7;
    --bs-btn-active-border-color: #0b7db7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0088cd;
    --bs-btn-disabled-border-color: #0088cd;
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #22c55e;
    --bs-btn-border-color: #22c55e;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1b9749;
    --bs-btn-hover-border-color: #1b9749;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1b9749;
    --bs-btn-active-border-color: #169144;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #22c55e;
    --bs-btn-disabled-border-color: #22c55e;
}

.btn-outline-secondary {
    --bs-btn-color: #6c757d;
    --bs-btn-border-color: #d2d6dc;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #E9ECEF;
    --bs-btn-hover-border-color: #DEE2E6;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #E9ECEF;
    --bs-btn-active-border-color: #E9ECEF;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none;
}

.spinner-grow {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-animation-speed: 1.35s;
    --bs-spinner-animation-name: spinner-grow;
    background-color: currentcolor;
    opacity: 0;
}

.spinner-grow,
.spinner-border {
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-grow;
    background-color: currentcolor;
    opacity: 0;
}

.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: transparent;
}
  
.spinner-border-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
    --bs-spinner-border-width: 0.2em;
}

.datepicker {
    border-radius: 0.5rem;
	width: 100%;
}

.datepicker table tr {
    padding: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 0.35rem;
}

.datepicker-days table tr td {
    width: 14.28%;
    text-align: center;
}

.datepicker-days table thead,
.datepicker-days table tbody,
.datepicker-days table tfoot {
    padding: 10px;
    display: list-item;
}

.datepicker-days table tfoot {
    display: none;
}

.datepicker-days table thead tr:nth-child(2n+0) td,
.datepicker-days table thead tr:nth-child(2n+0) th {
    border-radius: 3px;
}

.datepicker-days table thead tr:nth-child(3n+0) {
    text-transform: uppercase;
    font-weight: 300 !important;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.table-condensed > tbody > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > thead > tr > th {
    padding: 12px;
}

.datepicker-months table thead td,
.datepicker-months table thead th,
.datepicker-years table thead td,
.datepicker-years table thead th,
.datepicker-decades table thead td,
.datepicker-decades table thead th,
.datepicker-centuries table thead td,
.datepicker-centuries table thead th {
    border-radius: 0;
}

.datepicker td, .datepicker th {
    border-radius: 50%;
    padding: 0 12px;
}

.datepicker table {
	margin-bottom: 0;
}

.datepicker-days table thead {
	background-color: transparent;
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td.day:hover {
    cursor: pointer;
    color: var(--mtr-primary); 
}

.datepicker table tr td.new.day,
.datepicker table tr td.old.day  {
    color: #ADB5BD;
}

.day.disabled,
.year.disabled {
    color: #ADB5BD !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}

.new.day:hover,
.old.day:hover {
    color: #3c434a;  
}

.decade,
.year,
.month {
	width: fit-content !important;
}

.decade:hover,
.year:hover,
.month:hover {
	cursor: pointer;
	color: var(--mtr-primary);
}

.month {
	color: #343A40;
}

.month.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.datepicker-decades table tr td,
.datepicker-years table tr td {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.year.focused {
	color: var(--mtr-primary);
}

.today.day {
    border: 2px solid var(--mtr-primary);
}

.active.day {
    background-color: var(--mtr-primary);
    color: #fff;
}

.active.day.start-date .mtr-day-num {
    color: #fff;
}

.datepicker-days table thead tr:nth-child(3n+0) th {
	font-size: 0.925rem;
}

@media screen and (max-width: 992px) {
	.datepicker-days table thead tr:nth-child(3n+0) th {
		font-size: 0.785rem;
		padding: 0.25rem;
	}

	.datepicker .datepicker-switch {
		font-size: 1.125rem;
	}

	.datepicker-days .day.selected-date.start-date:after {
		margin-left: 1.5rem;
	}

	.datepicker-days .day.selected-date.end-date:after {
		margin-right: 1.5rem;
	}

	.datepicker-days .day.selected-date:not(.active):after {
		width: 2.8rem;
	}
}

.datepicker table tr td.today.active.day {
    border: none;
}

.datepicker .prev,
.datepicker .next {
    transition: 0.3s;
}

.datepicker .prev:hover,
.datepicker .next:hover {
    background: transparent;
    color: var(--mtr-primary);
    cursor: pointer;
}

.datepicker .datepicker-switch {
    font-size: 1.225rem;
    transition: 0.3s;
}

.datepicker .datepicker-switch:hover {
	cursor: pointer;
	color: var(--mtr-primary);
    background: transparent;
}

.datepicker table th {
	border: none;
}

.datepicker table .datepicker-days {
	color: rgba(255, 255, 255, 0.7);
}

.datepicker table tr td span {
    border-radius: 2px;
    margin: 3%;
    width: 27%;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: var(--mtr-primary);
  background-image: none;
}

.dropdown-menu {
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    z-index: 99999999 !important;
    position: absolute;
    background-color: #fff;
}

.datepicker-dropdown.datepicker-orient-top:before {
    border-top: 7px solid rgba(0,0,0,.1);
}

.datepicker ::marker {
    display: none;
    color: transparent;
}

.datepicker-dropdown.dropdown-menu {
    padding: 0;
}

.datepicker table tr td.day {
	width: 2.5rem;
    height: 2.5rem;
    display: flex;
    padding: 0.7rem;
    border: 0;
    color: #343A40;
    align-items: center;
    justify-content: center;
}

.datepicker .datepicker-months table tr td {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border: none;
}

.placeholder-content {
    height: auto;
    width: fit-content;
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
    -webkit-animation-duration: 1.7s;
    animation-duration: 1.7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: placeholderAnimate;
    animation-name: placeholderAnimate;
    background: #f6f7f8;
    background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);
    background-size: 1300px;
}

@keyframes placeholderAnimate {
    0% {
        background-position: -650px 0;
    }
    100% {
        background-position: 650px 0;
    }
}

.mtr-datepicker {
    min-width: 30rem;
    width: fit-content;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 992px) {
	.mtr-datepicker {
		min-width: unset;
	}
}

.mtr-range-control-wrapper {
	display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 1rem auto;
    margin-bottom: 0;
    border-radius: 0.5rem;
    border: 1px solid var(--bs-border-color);
}

.mtr-select-date {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.25rem 1.225rem;
	width: fit-content;
    min-width: 8rem;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.mtr-select-date .mtr-select-date-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.mtr-start-date {
	border-right: 1px solid var(--bs-border-color);
}

.datepicker-days table tr {
	position: relative;
}

.datepicker-days .day.selected-date:not(.active):after {
	background-color: rgba(255, 102, 0, 0.2);
    content: "";
    height: 1.875rem;
    width: 4.05rem;
    position: absolute;
    z-index: 0;
}

.datepicker-days .day.selected-date.start-date:after,
.datepicker-days .day.selected-date.end-date:after {
	background-color: rgba(255, 102, 0, 0.2);
    content: "";
    height: 1.875rem;
    width: 1.35rem;
    position: absolute;
    z-index: 0;
}

.datepicker-days .day.selected-date.start-date:after {
    margin-left: 2.8rem;
}

.datepicker-days .day.selected-date.end-date:after {
	margin-right: 2.8rem;
}

body.mtr-opened {
	overflow: hidden;
    height: 100dvh;
}

body.mtr-opened.admin-bar {
	height: calc(100dvh - 32px);
}

.w-fit {
	width: fit-content !important;
}

.mtr-price-details-inner {
	margin-left: 3rem;
}

.mtr-reservation-step.step-2 {
	margin: 0 2rem;
}

.mtr-travelers-group {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mtr-traveler-item {
	display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: 1rem;
}

.mtr-traveler-item:last-child {
	margin-bottom: 0;
}

.mtr-traveler-header {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
	width: 10rem;
}

.mtr-traveler-header .title {
	font-weight: 500;
	font-size: 1.025rem;
    margin-bottom: 0;
}

.mtr-traveler-header .description {
	font-size: 0.875rem;
    color: #6C757D;
}

.mtr-btn-decrement {
	border-radius: 0.5rem 0 0 0.5rem;
}

.mtr-btn-increment {
	border-radius: 0 0.5rem 0.5rem 0;
}

.mtr-btn-decrement,
.mtr-btn-increment {
	width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

input.mtr-get-traveler-value::-webkit-outer-spin-button,
input.mtr-get-traveler-value::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"].mtr-get-traveler-value {
	appearance: textfield;
  	-moz-appearance: textfield;
}

.mtr-get-traveler-value {
	width: 4rem !important;
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-border-color) !important;
    border-radius: 0 !important;
    font-size: 1rem !important;
    margin-left: -1px;
    margin-right: -1px;
    z-index: 0;
}

.mtr-display-price-details .woo-custom-installments-economy-pix-badge,
.mtr-price-summary .woo-custom-installments-economy-pix-badge {
	display: none;
}

.mtr-boarding-details-item,
.mtr-passenger-details-item {
	display: flex;
    margin-bottom: 1rem;
}

.mtr-boarding-details-item:last-child,
.mtr-passenger-details-item:last-child {
	margin-bottom: 0;
}

.mtr-boarding-details-item .title,
.mtr-passenger-details-item .title {
	font-size: 1rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
    text-wrap: nowrap;
}

.mtr-boarding-details-item .set-value,
.mtr-passenger-details-item .set-value {
	font-size: 1rem;
    text-wrap: wrap;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.mtr-price-summary {
	width: 100%;
    margin-top: 3rem;
}

.mtr-price-summary .woo-custom-installments-group {
	justify-items: start;
}

@media screen and (max-width: 992px) {
	.mtr-reservation-step.step-2.step-active .mtr-price-details-inner {
		width: 100%;
	}

	.mtr-price-details-inner {
		margin-left: 0;
		margin-top: 3rem;
	}
}

.form-check-input {
	background-color: #fff;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
	border-radius: 0.25rem;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	border: 1px solid #dee2e6;
	print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.mtr-single-passenger-wrapper .form-check-input {
	width: 1.325rem;
    height: 1.325rem;
	border-radius: 0.375rem;
}

.mtr-single-passenger-wrapper input:hover,
.mtr-single-passenger-wrapper label:hover {
	cursor: pointer;
}

.mtr-tooltip:before {
    content: attr(data-text);
    position: absolute;
    top: -1.5rem;
    transform: translateY(-50%);
    width: max-content;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: #343A40;
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.mtr-tooltip:after {
    content: "";
    position: absolute;
    top: -0.25rem;
    transform: translateY(-50%);
    border: 10px solid #343A40;
    border-color: #343A40 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }

.mtr-tooltip:hover:before,
.mtr-tooltip:hover:after {
    visibility: visible;
    opacity: 1;
}

.mtr-single-traveller-warning {
	margin-left: 0.5rem;
    color: var(--mtr-primary);
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mtr-single-traveller-warning:hover {
	cursor: pointer;
	color: var(--mtr-primary-hover);
}

.mtr-single-traveller-warning.mtr-tooltip:before {
	width: auto;
    min-width: 17rem;
    text-align: left;
    padding: 0.5rem 1rem;
    margin-top: -3.2rem;
}

.mtr-request-refund-wrapper {
	margin-bottom: 3rem;
}

@media screen and (min-width: 992px) {
	.mtr-refund-step.step-1,
	.mtr-refund-step.step-2 {
		width: 40rem;
		margin: auto;
	}
}

#mtr_refund_terms {
	height: 1.225rem;
    width: 1.225rem;
    border-radius: 0.375rem;
}

.mtr-refund-terms-label a {
	color: var(--mtr-primary);
}

.mtr-refund-terms-label:hover {
	cursor: pointer;
}

.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}

.success-checkmark .check-icon {
    display: none;
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--mtr-success);
}

.success-checkmark .check-icon.active {
    display: block;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba( var(--mtr-success-rgb), 0.6);
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--mtr-success);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #FFFFFF;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

#mtr_trip_form_container .mtr-popup-footer {
	position: sticky;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(3px);
}

.toast {
    z-index: 1090;
    position: fixed;
    top: 3rem;
    right: 0.75rem;
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid transparent;
    box-shadow: 0 0.275rem 1.25rem rgba(11 15 25 / 5%), 0 0.25rem 0.5625rem rgba(11 15 25 / 3%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #fff;
    background-color: transparent;
    background-clip: padding-box;
    border-bottom: 1px solid #e2e5f1;
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
    position: relative;
    border: 0;
    font-weight: 700;
}

.toast-body {
    padding: 1rem;
    word-wrap: break-word;
}

.toast::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    background-color: var(--mtr-success);
    bottom: 0px;
    left: 0px;
    animation: progress 3s linear forwards;
}

.toast-danger::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    background-color: var(--mtr-danger);
    bottom: 0px;
    left: 0px;
    animation: progress 3s linear forwards;
}

.toast-warning::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    background-color: var(--mtr-warning);
    bottom: 0px;
    left: 0px;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    100% {
        width: 0%;
    }
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon:not(.icon--checkmark) {
    width: 1.225rem;
    height: 1.225rem;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-success {
    fill: var(--mtr-success) !important;
}

.icon-primary {
    fill: var(--mtr-primary) !important;
}

.icon-white {
    fill: #fff !important;
}

.icon-dark {
    fill: #434a57 !important;
}

.icon-warning {
    fill: var(--mtr-warning) !important;
}

.icon-danger {
    fill: var(--mtr-danger) !important;
}

.mtr-travel-documents {
    margin-bottom: 3rem;
}

.mtr-document-item {
    display: flex;
    align-items: center;
}

.mtr-document-item .document-icon {
    width: 2rem;
    height: auto;
    margin-right: 0.5rem;
}

.mtr-document-item a {
    text-decoration: none;
    color: var(--mtr-primary);
    font-size: 1rem;
}

.mtr-document-item a:hover {
    color: var(--mtr-primary-hover);
}

.mtr-widget-title {
    font-size: 1.525rem;
    font-weight: 500;
}

.mtr-widget {
    padding-bottom: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mtr-widget-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mtr-accordion-item:first-of-type,
.mtr-accordion-item:first-of-type .mtr-accordion-title {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.mtr-accordion-item:last-of-type,
.mtr-accordion-item:last-of-type .mtr-accordion-title {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.mtr-accordion-item {
    color: #212529;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.mtr-accordion-item:not(:last-child) {
    border-bottom: 0;
}

.mtr-accordion-title {
    padding: 1rem 1.25rem;
    cursor: pointer;
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    transition: background-color 0.2s ease;
}

.mtr-accordion-title:hover {
    background-color: #f9f9f9;
}

.mtr-accordion-title::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transition: transform 0.2s ease;
}

.mtr-accordion-item.is-open .mtr-accordion-title::after {
    transform: translateY(-50%) rotate(315deg);
}

.mtr-accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, padding 0.2s ease;
}

.mtr-accordion-content p {
    font-size: 1rem;
    margin: 0;
}

.mtr-accordion-item.is-open .mtr-accordion-content {
    padding: 1rem !important;
}

.mtr-accordion-item.is-open .mtr-accordion-title {
    background-color: #f9f9f9;
    border-bottom: 1px solid #dee2e6;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.mtr-popup-container.is-tour .mtr-summary-group {
    width: 30rem;
}

@media screen and (max-width: 992px) {
    .mtr-popup-container.is-tour .mtr-summary-group {
        width: 100%;
    }
}

.tour-step-title {
    margin-bottom: 2rem !important;
}

.mtr-tour-card {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.mtr-tour-card:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.mtr-tour-details {
    display: flex;
}

.mtr-tour-image img {
    width: 7rem;
    height: 7rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.mtr-tour-image {
    margin-right: 1.5rem;
}

.mtr-tour-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.mtr-tour-title {
    margin: 0 0 1rem 0;
}

.mtr-tour-description {
    font-size: 1.025rem;
}

.mtr-tour-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mtr-tour-actions .mtr-setup-tour-trigger {
    font-size: 0.925rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    color: #fff !important;
    text-decoration: none;
}

@media screen  and (min-width: 992px) {
    .mtr-tour-details {
        width: 75%;
        padding-right: 1.5rem;
    }
}

.mtr-tour-card.added-on-cart .mtr-setup-tour-trigger,
.mtr-setup-tour-trigger.added-on-cart {
    background-color: #ADB5BD !important;
}

.process-reservation-body h6 {
    margin: 0 0 2rem 0;
}

.mtr-datepicker table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    line-height: 1.4;
}

.mtr-datepicker table th {
    padding: 15px 10px;
    color: #242424;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    vertical-align: middle;
    text-align: start;
}

.process-reservation-body .mtr-get-traveler-value {
    height: 3rem;
}

.mtr-day-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.05;
    z-index: 99;
}

.mtr-day-cell .mtr-day-num {
    width: auto;
    font-size: 0.925rem;
    font-weight: 500;
    order: 1;
    margin: 0 0 0.15rem 0;
    line-height: 1;
}

.mtr-day-cell .mtr-day-price {
    order: 2;
    font-size: 75%;
    line-height: 1;
}

.mtr-day-has-discount.best-price .mtr-day-price {
    color:#2e7d32;
}

.mtr-day-regular .mtr-day-price {
    color:#6b7280;
}

.best-price.start-date .mtr-day-price,
.best-price.end-date .mtr-day-price {
    text-decoration: none;
}

.day.selected-date .mtr-day-price {
    display: none;
}

@media screen and (min-width: 992px) {
    .mtr-popup-content {
        max-width: 1100px;
        zoom: 1.1;
    }
}

.day.selected-date.end-date .mtr-day-num {
    color: #fff;
}

.mtr-schedule-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mtr-schedule-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 450px;
}

.mtr-schedule-radio-item {
    display: flex;
    align-items: center;
}

.mtr-schedule-radio-input {
    display: none !important;
}

.mtr-schedule-radio-label {
    display: block;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
}

.mtr-schedule-radio-label:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.mtr-schedule-radio-label.active {
    background-color: var(--mtr-primary) !important;
    border-color: var(--mtr-primary) !important;
    color: white;
}

@media screen and (min-width: 768px) {
    .mtr-schedule-radio-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.old.day .mtr-day-price,
.new.day .mtr-day-price {
    color: #ADB5BD;
}