@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--white: #ffffff;
	--bg-white: #ffffff;
	--topbar-bg: #000000;
	--topbar-txt-color: #ffffff;
	--header-bg: #ffffff;
	--header-txt-color: #000000;
	--tts-buttton-bg: #b50000;
	--tts-buttton-bg1: #000000;
	--tts-buttton-txt: #ffffff;
	--tts-buttton-txt1: #ffffff;
	--footer-Bg: #ffffff;
	--box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--tts-buttton-bg), var(--tts-buttton-bg1));
	border-radius: 10px;
	background-clip: content-box;
	transition: background 0.3s ease, transform 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--tts-buttton-bg1), var(--tts-buttton-bg));
	transform: scale(1.1);
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track:hover {
	background: #e9ecef;
}

.form-control,
.form-select {
	padding: 10px;
	font-size: 14px;
	color: #292323;
}

.form-control:focus,
.form-select:focus {
	box-shadow: none;
	outline: 0;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: #292323;
	background-color: #f7faff;
	font-family: "Noto Sans", serif;
	font-size: 14px;
}

a {
	color: var(--tts-buttton-bg);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--tts-buttton-bg), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #292323;
	font-family: var(--heading-font);
	font-weight: 700;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: #292323;
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {

	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	margin-bottom: 30px;
}

.section-title .badge {
	position: relative;
	padding-left: 25px;
	background: rgba(207, 52, 37, 0.1);
	color: #CF3425;
}

.section-title .badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	left: 10px;
	top: 50%;
	background: #CF3425;
	transform: translateY(-50%);
}

.section-title h2 {
	font-size: 28px;
	font-weight: 700;
}

.section-title h2 .text-primary {
	color: #CF3425 !important;
	opacity: 1;
}

.sec-head-btn {
	margin-bottom: 40px;
	border-radius: 40px;
	padding: 9px 16px;
	font-size: 14px;
	transition: all 0.5s;
	font-weight: 500;
	background-color: var(--tts-buttton-bg1);
	border: 1px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt);
}

@media (max-width: 480px) {
	.section-title h2 {
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Global breadcrumb
--------------------------------------------------------------*/
.breadcrumb-bar {
	padding: 50px 0 50px;
	position: relative;
	z-index: 1;
}

.breadcrumb-bar::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(95.36deg, rgba(0, 0, 0, 0.8) 13.15%, rgba(0, 0, 0, 0.5) 78.27%);
	z-index: -1;
}

.breadcrumb-bar .breadcrumb-title {
	font-size: 36px;
	color: #FFF;
}

.breadcrumb .breadcrumb-item {
	color: #E4EBF1;
}

.breadcrumb .breadcrumb-item a {
	color: #FFF;
}

.breadcrumb .breadcrumb-item a:hover {
	color: #CF3425;
}

.breadcrumb-bg-05 {
	background: url(/../webroot/img/bg/breadcrumb-05.webp) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 80px 0 80px;
}

/**form**/
.form-check-input:checked~.form-check-label {
	color: #111827;
}

.form-check-input:focus {
	box-shadow: none;
}

.form-check-input:checked {
	background-color: var(--tts-buttton-bg);
	border-color: var(--tts-buttton-bg);
}

.tts_white_space {
	white-space: normal
}

.error_popup {
	background: #af0909;
}

.success_popup {
	background: green !important
}

.form-error {
	color: #af0909;
}

.tts-text-danger {
	color: var(--tts-buttton-bg) !important;
	text-transform: capitalize;
}

.tts-text-success {
	color: green !important;
	text-transform: capitalize;
}

.tts-cursor-pointer {
	cursor: pointer;
}

.error_popup,
.success_popup {
	position: fixed;
	top: 62px;
	max-width: 327px;
	min-width: 300px;
	background: #af0909;
	border-radius: 5px 0 0 5px;
	min-height: 28px;
	right: 0;
	z-index: 10000;
	box-shadow: var(--box-shadow);
	padding: 14px 20px;
	color: #fff;
	font-size: 12px;
}

/* .fs-12 {
font-size: 12px;
} */
.tts_hotel_amenities_icon {
	width: 22px;
	margin-right: 10px;
	height: 22px;
}

.error-message {
	background-color: #af0909;
	border-radius: 2px;
	color: #fff;
	font-size: 11px;
	padding: 3px 10px;
	position: absolute;
	box-shadow: var(--box-shadow);
	top: 59px;
	z-index: 998;
	display: block;
}

.error-message::after {
	width: 0;
	height: 0;
	border-bottom: 5px solid #af0909;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	content: '';
	left: 10px;
	position: absolute;
	top: -5px
}

.another_fare {
	border-radius: 2px;
	box-shadow: unset !important;
	font-weight: 400;
	font-size: 13px;
	color: #fff;
	padding: 5px 8px;
}

.hide {
	display: none
}

*,
::after,
::before {
	box-sizing: border-box
}

a {
	text-decoration: none;
	cursor: pointer;
}

/* .p0 {
padding: 0 !important
}
.p20 {
padding: 20px !important
}
.p50 {
padding: 50px !important
}
.pl0 {
padding-left: 0 !important
}
.pt10 {
padding-top: 10px !important
}
.pb10 {
padding-bottom: 10px !important
}
.pr0 {
padding-right: 0 !important
}
.borl0 {
border-left: 0px !important;
}
.m0 {
margin: 0 !important
}
.mt8 {
margin-top: 8px
}
.mt20 {
margin-top: 20px;
}
.fs12 {
font-size: 12px;
}
.fs13 {
font-size: 13px;
}
.bg_white {
background: #fff
}
.height52 {
height: 52px !important;
}
.border0 {
border: 0px !important;
}
ul.righ_bord {
border-right: 1px solid #e2e2e2;
height: 100%
}
.ml-0 {
margin-left: 0 !important
}
.ml-5 {
margin-left: 5px;
}
.border {
border: 1px solid #e2e2e2;
}
option {
font-weight: 400;
display: block;
white-space: pre;
min-height: 1.2em;
padding: 0 2px 1px
}
b {
font-weight: 600
}
p {
font-size: 14px;
} */
.box_shadow {
	box-shadow: var(--box-shadow);
}

/* 
.table_box_shadow {
box-shadow: var(--box-shadow);
}
.disply-flex {
display: inline-flex
}
.disply-inline {
display: inline
}
select {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
.primary {
color: #1d71ce
}
.success {
color: #0a7d13
}
.warning {
color: #e69410
}
.danger {
color: #dc1d1d
}
.text-bold {
font-weight: 600
}
ul {
display: block;
list-style-type: none;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 0
}
samp,
span {
padding: 0;
margin: 0;
font-family: inherit
}
.text-center,
.text_center {
text-align: center !important
}
.text_left {
text-align: left !important;
}
.text_right {
text-align: right !important;
}
.w100 {
width: 100%
}
.content {
position: relative;
width: 100%;
}
.full-page-content {
padding: 15px 0 15px 0
}
.page-content-area .ui-widget-header {
border: none;
background: transparent;
color: #333;
font-weight: bold;
}
.page-content-area .ui-widget.ui-widget-content {
border: none;
}
.page-content-area .ui-tabs-vertical .ui-tabs-nav {
padding: 0.2em 0.1em 0.2em 2.7em;
float: left;
width: 12em;
}
.page-content-area .card-body {
background: var(--bg-white);
border-radius: 5px;
padding: 1rem;
}
.page-content-area .ui-widget-content {
border: none;
background: transparent;
color: #333;
width: 100%;
}
.page-content-area {
background-color: var(--bg-white);
border-radius: 5px;
}
.searchform_home .tab-content {
display: none;
}
.searchform_home .tab-content.current {
display: inherit;
}
.page-content-area .ui-state-hover {
background-color: #8c8f96;
}
.page-content-area .page-content-ul {
display: flex;
justify-content: center;
}
.pull-right {
float: right
}
.pull-left {
float: left
}
.site_head {
padding: 11px 0 11px 22px;
border-bottom: 1px solid #d8dee9
}
.callout {
position: relative;
padding: .3rem 1.17rem;
margin: 1rem 0;
font-size: 16px;
font-weight: 600;
border-radius: 3px;
border-left: 4px solid #d8dbe0
}
.boxtiles {
padding: 19px 18px 15px 24px;
border-radius: 3px;
margin: 1rem 0;
}
.boxtiles .tiles-title {
font-size: 12px;
color: black;
}
.boxtiles .progress {
width: 100%;
margin-bottom: 13px;
height: 2px;
background-color: #ffffffd4;
background-image: none;
margin-top: 20px;
}
.boxtiles .description {
font-size: 13px;
color: var(--bg-white);
display: table-cell;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
}
.widget-stats {
display: inline-block;
border-right: .5px solid #ffffff91;
margin-right: 5px;
padding-right: 19px;
color: var(--bg-white);
}
.widget-stats:nth-child(4) {
border-right: none;
}
.widget-stats .item-title {
font-size: 12px;
letter-spacing: 0.01em;
}
.widget-stats .item-count {
font-size: 13px;
color: var(--bg-white);
display: block;
}
.callout-info {
border-left-color: #1d71ce;
box-shadow: 0 0 0 1px #1d71ce
}
.callout-danger {
border-left-color: #dc1d1d;
box-shadow: 0 0 0 1px #dc1d1d
}
.callout-warning {
border-left-color: #eaa329;
box-shadow: 0 0 0 1px #eaa329
}
.callout-success {
border-left-color: #0a7d13;
box-shadow: 0 0 0 1px #0a7d13
}
.callout-dev {
border-left-color: #42a5f6;
box-shadow: 0 0 0 1px #42a5f6
}
.callout-noop {
border-left-color: #842286;
box-shadow: 0 0 0 1px #842286
}
.callout-yelo {
border-left-color: #ffd200;
box-shadow: 0 0 0 1px #ffd200
}
.callout-rama {
border-left-color: #845320;
box-shadow: 0 0 0 1px #845320
}
.callout-info:hover {
background: #1d71ce;
color: #fff
}
.callout-danger:hover {
background: #dc1d1d;
color: #fff
}
.callout-warning:hover {
background: #eaa329;
color: #fff
}
.callout-success:hover {
background: #0a7d13;
color: #fff
}
.callout-dev:hover {
background: #42a5f6;
color: #fff
}
.callout-noop:hover {
background: #842286;
color: #fff
}
.callout-yelo:hover {
background: #ffd200;
color: #fff
}
.callout-rama:hover {
background: #845320;
color: #fff
}
.bg_green {
background-color: #0aa699;
}
.bg_white {
background-color: #fff;
}
.bg_blue {
background-color: #0090d9;
}
.bg_purple {
background-color: #735f87;
}
.red {
color: red;
}
.green {
color: green;
}
.yellow {
color: yellow;
}
.chocolate {
color: chocolate;
}
.blue {
color: blue;
}
.white {
color: var(--bg-white);
}
.black {
color: black;
}
.contacted {
color: #066105;
} */
/*----- tooltip  Start --- */
/* .tts-tooltip {
position: relative;
}
.tts-tooltip .tts-tooltip-text {
visibility: hidden;
width: 250px;
background-color: #ebeff3;
color: #000;
box-shadow: var(--box-shadow);
padding: 8px 8px;
position: absolute;
z-index: 1;
bottom: 100%;
font-size: 13px;
left: 50%;
margin-left: -126px;
font-weight: 400;
}
.tts-tooltip .tts-tooltip-text::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 10px;
border-style: solid;
border-color: #ebeff3 transparent transparent transparent
}
.tts-tooltip:hover .tts-tooltip-text {
visibility: visible
}
.tooltip_content span {
display: block;
} */
/*----- tooltip  End --- */
/* .wt-bleft {
padding: 1px 10px
}
.disable_badge {
pointer-events: none;
cursor: auto;
background: #f1f4f6;
color: black;
}
.sale_bar {
padding: .75rem 1.25rem;
margin-bottom: 1%;
background-color: #fff;
font-size: 16px;
display: inline-block;
box-shadow: var(--box-shadow);
width: 100%;
border-radius: 5px;
}
.card-header {
position: relative
}
.table_title {
justify-content: space-between
}
.login {
width: 100%;
height: 100%;
position: absolute
}
.login_box {
max-width: 500px;
margin: 15% auto
}
.login_form {
padding: 15px 20px;
box-shadow: var(--box-shadow);
background-color: #fff;
border-radius: 2px
}
.profile_img {
width: 22px;
border-radius: 50%;
margin-top: -5px;
vertical-align: middle
}
.pro_icon {
width: 16px;
}
.table-invoice td,
.table-invoice th {
border: 1px solid #5f5b5b59;
background-color: #f1f4f6;
}
.table-amount td {
line-height: 3;
}
.table-amount tr {
border: 1px solid #80808014;
}
.amountcalc {
font-size: 13px !important;
text-align: right !important;
}
.left-sidebar-leads {
overflow: auto;
box-shadow: var(--box-shadow);
}
.left-sidebar-leads ul li {
width: 100%;
padding: 5px 0 5px 12px;
background: var(--bg-white);
}
.left-sidebar-leads ul li.active {
border-left: 3px solid #e41412;
font-weight: 600;
background: #c3defb59;
}
.left-sidebar-leads ul li.active .qu-desc {
color: #e43630
}
.qu-head {
font-size: 13px;
font-weight: 400;
color: #768192;
padding: 3px 0 3px 5px
}
.qu-desc {
color: #1b334e;
padding: 0px 0 3px 5px;
font-size: 13px
}
.query-followup {
text-align: center;
background: var(--bg-white);
border-bottom: 1px solid #e4e4e4;
}
.follow_up_date {
float: right;
color: #0f67f6
}
.followup_detils {
background: #a8c0d8;
padding: 10px 11px;
margin: 0;
color: #fff
}
.followup_updte {
margin: 0;
margin-bottom: 25px;
padding: 25px 10px
}
.tag_label {
cursor: pointer;
padding: 6px 2px 1px 3px
}
.settings-header {
position: relative;
width: 100%;
padding: 2% 0;
color: #ffffffd9;
background-color: #335eaf;
background-image: linear-gradient(45deg, #2a62b7, #ab3954)
}
.settings-header .profile-image {
width: 80px;
height: 80px;
border: 1px solid #000;
border-radius: 49.9%;
display: inline-block
}
.company-label {
font-size: 13px;
font-weight: 500
}
.lm_navigation {
position: relative;
display: inline-flex;
padding: 16px 14px;
text-align: center;
font-size: 15px;
}
.lm_navLst {
display: inline-block;
list-style-type: none;
cursor: pointer;
position: relative;
line-height: 1;
white-space: nowrap
}
.lm_navLst a {
padding: 15px 15px;
}
.lm_navLst>span {
display: inline-block;
font-size: 13px;
color: #333;
line-height: 1;
position: relative;
cursor: pointer
}
.lm_navLst.active:before {
content: '';
width: 100%;
position: absolute;
left: 0;
bottom: -17px;
height: 2px;
background: #0167ff
}
.lm_navLst:after {
content: '';
position: absolute;
height: 18px;
width: 1px;
background: #dedede;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
right: 0
}
.lm_navLst.active>span {
color: #0167ff
}
.page-actions-panel {
background: #cceef5;
padding: 12px 20px
}
.setting-content {
padding: 10px;
background: var(--bg-white);
}
.settings-panel {
box-shadow: var(--box-shadow);
padding: 0
}
.item-text-head {
color: #3b495f;
font-size: 14px;
padding: 0 25px 0 6px;
white-space: nowrap
}
.item-text-value {
font-size: 14px;
padding: 0 4px 0 3px;
color: #768192
}
.edit_set {
color: #0f67f6;
font-size: 14px;
}
.notify {
background: #ef5350;
height: 18px;
width: 18px;
border-radius: 50%;
font-size: 13px;
top: 1px;
left: 58px;
position: absolute;
color: #fff;
display: flex;
align-items: center;
justify-content: center
}
.notify .heartbeat {
position: absolute;
top: -6px;
right: -5px;
height: 21px;
width: 21px;
z-index: 0;
border: 5px solid #ef5350;
border-radius: 70px;
animation: heartbeat 1s ease-out;
animation-iteration-count: infinite;
background-color: #ef5350
}
@keyframes heartbeat {
0% {
-moz-transform: scale(0);
opacity: 0
}
25% {
-moz-transform: scale(.1);
opacity: .1
}
50% {
-moz-transform: scale(.5);
opacity: .3
}
75% {
-moz-transform: scale(.8);
opacity: .5
}
to {
-moz-transform: scale(1);
opacity: 0
}
}
@-webkit-keyframes heartbeat {
0% {
-webkit-transform: scale(0);
opacity: 0
}
25% {
-webkit-transform: scale(.1);
opacity: .1
}
50% {
-webkit-transform: scale(.5);
opacity: .3
}
75% {
-webkit-transform: scale(.8);
opacity: .5
}
to {
-webkit-transform: scale(1);
opacity: 0
}
}
.box {
max-height: 630px;
padding: 10px 0 40px 60px;
background: #fafbfc;
width: 100%;
box-shadow: var(--box-shadow);
}
.box ul {
list-style-type: none;
margin: 0;
padding: 0;
position: relative;
transition: all .5s linear;
top: 0
}
.box ul:before {
content: "";
display: block;
width: 0;
height: 100%;
border: 1px dashed #e1352f;
position: absolute;
top: 0;
left: 30px
}
.box ul li {
margin: 27px 10px 49px 60px;
position: relative;
padding: 10px 20px;
background: var(--bg-white);
border: 1px solid #dfe1e5;
color: #000;
border-radius: 3px;
line-height: 20px;
font-size: 13px
}
.box ul li>span {
content: "";
display: block;
width: 0;
height: 100%;
border: 1px solid #e01d1d;
position: absolute;
top: 0;
left: -31px
}
.box ul li>span:after,
.box ul li>span:before {
content: "";
display: block;
width: 9px;
height: 9px;
border-radius: 50%;
background: #ff6d6d;
border: 2px solid #ef6b6b;
position: absolute;
left: -4.5px
}
.box ul li>span:before {
top: -10px
}
.box ul li>span:after {
top: 95%
}
.box .title {
margin-bottom: 5px
}
.box .info:first-letter {
text-transform: capitalize;
line-height: 1.7
}
.box .name {
margin-top: 10px;
text-transform: capitalize;
font-style: italic;
text-align: right;
margin-right: 20px
}
.box .time span {
position: absolute;
left: -111px;
color: #000;
font-size: 80%;
font-weight: 700
}
.box .time span:first-child {
top: -16px
}
.box .time span:last-child {
top: 80%
}
.note_box ul li {
margin: 10px 0 21px;
position: relative;
padding: 4px 0 0 0;
background: var(--bg-white);
border: 1px solid #dfe1e5;
border-left: 5px solid #012386;
color: #000;
border-radius: 3px;
font-size: 13px
}
.note_listf {
background: #f5f5f5;
padding: 6px 10px;
font-size: 13px;
display: flow-root;
}
.note_box .note_title {
padding: 4px 0 10px 10px
}
#filter .modal-content {
width: 25% !important
}
#lead_settings .modal-content {
width: 25% !important
}
.tts_topoption {
display: none;
margin-bottom: 11px
}
@-webkit-keyframes rotating {
from {
-webkit-transform: rotate(0);
-o-transform: rotate(0);
transform: rotate(0)
}
to {
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes rotating {
from {
-ms-transform: rotate(0);
-moz-transform: rotate(0);
-webkit-transform: rotate(0);
-o-transform: rotate(0);
transform: rotate(0)
}
to {
-ms-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg)
}
}
.rotating {
-webkit-animation: rotating 2s linear infinite;
-moz-animation: rotating 2s linear infinite;
-ms-animation: rotating 2s linear infinite;
-o-animation: rotating 2s linear infinite;
animation: rotating 2s linear infinite
}
ul.tabs {
margin: 0;
padding: 0;
list-style: none
}
ul.tabs li {
color: #222;
display: inline-block;
padding: 7px 11px;
font-size: 13px;
cursor: pointer
}
ul.tabs li.current {
background: #e6eff9;
color: #fff;
border-bottom: 2px solid #033580;
position: relative
}
ul.tabs li.current:after {
content: '';
position: absolute;
left: 50%;
height: 0;
bottom: -6px;
width: 0;
border-left: 4px solid none;
border-right: 4px solid none;
border-top: 4px solid none;
}
.vewmodelhed {
background: var(--bg-white);
width: 100%;
padding: 1px 22px;
font-size: 13px;
border-bottom: 1px solid #e6e4e4
}
.vi_mod_dsc {
font-size: 13px;
display: inline-grid;
margin-top: 8px
}
.lead_assignbtn {
padding: 0 6px;
color: #fff;
border-radius: 2px;
background: #26a69a;
white-space: nowrap;
font-size: 13px;
font-weight: 400;
display: inline-block;
text-align: center
}
.txt_led_clr {
color: #1a3980 !important
}
.viewld_h5 {
background: #f7f7f7;
box-shadow: var(--box-shadow);
padding: 6px 11px;
color: #063a63
}
.wite_spce {
white-space: nowrap
}
.responcive_table {
overflow-x: auto
}
.notedelete {
padding-right: 8px;
cursor: pointer;
float: right
}
.view_head {
border: 1px dotted;
padding: 7px;
background: #e4e5e657;
color: #000
}
.ms-options-wrap>.ms-options {
width: 93.6%;
margin-left: 15px
}
.fix_head_bar {
background-color: #fafafa;
padding: 1.9rem 0rem 2rem
}
.document_cls svg {
cursor: pointer
}
.document_cls .has-icon-left {
border: none
}
.document_cls .qu-desc {
color: #768192;
padding: 3px 0 3px 5px;
font-size: 15px
}
.h_60 {
height: 60px
}
.h_52 {
height: 52px
}
fieldset {
display: block;
margin: 0;
padding: 0;
min-inline-size: min-content;
border-width: 2px;
border-style: groove;
border-color: threedface;
border-image: initial
}
.folder_docs {
margin-bottom: 7px
}
.document_cls label .applabel {
font-family: inherit;
letter-spacing: 1px;
margin: 1.2rem 0 .5rem;
color: #bac0c7
}
.pt_14 {
padding-top: 14px
}
.document_cls input {
height: 51px;
border: none;
padding-left: 35px;
font-size: 15px
}
.document_cls .fix_head_bar {
padding: 0 0 20px 0;
box-shadow: var(--box-shadow);
background: var(--bg-white)
}
.document_cls .primary {
color: #1b334e;
padding: 3px 0px 3px 14px;
width: 100%;
display: table;
vertical-align: middle;
margin-bottom: 4px;
}
.applabel {
color: grey;
padding-bottom: 5px
}
.document_cls .left-sidebar-leads ul li {
width: 100%;
padding: 0px;
border-right: none;
border-bottom: none;
background: 0 0
}
.document_cls .left-sidebar-leads ul li:hover {
background: #b9c8d870;
}
.mt_20 {
margin-top: 20px
}
.mb_10 {
margin-bottom: 10px
}
.mb_3 {
margin-bottom: -3px;
}
.appfileinfo .card-body {
padding: 6px 15px
}
.shadow-none {
box-shadow: none !important
}
.app_fold {
display: inline-block;
padding-left: 15px
}
.border {
border: 1px solid #dfe3e7 !important
}
.image_pd .app_logo {
text-align: center;
height: 95px;
background: #f1f1f1
}
.image_pd .card-body {
background: var(--bg-white);
}
.image_pd img {
height: 38px;
width: 30px;
margin-top: 30px
}
.p-50 {
padding: .5rem !important
}
.small_font {
font-size: .8rem;
color: #828d99 !important
}
.bold_font {
font-size: .8rem;
color: #214061 !important;
font-weight: 500
}
.ptb_10 {
padding-top: 10px;
padding-bottom: 10px
}
.document_cls .primary.active {
color: #499eff
}
.active_bord {
border: 2px solid #499eff;
position: relative;
left: -27px;
transform: rotate(90deg);
height: 0;
width: 28px;
top: 20px
}
.inverted-border-radius {
height: 0;
width: 0;
background-color: #709d34;
transform: rotate(90deg);
position: relative;
bottom: -37px;
left: 20px
}
.mr_min30 {
margin-right: -30px;
margin-top: 15px;
margin-bottom: 15px
}
.inverted-border-radius::before {
content: "";
position: absolute;
background-color: transparent;
height: 8px;
width: 90px;
border-top-left-radius: 20px;
box-shadow: -24px 0 0 -1px #709d34;
right: -91px
}
.inverted-border-radius::after {
content: "";
position: absolute;
background-color: transparent;
height: 10px;
width: 85px;
border-top-right-radius: 20px;
box-shadow: 30px 0 0 -1px #709d34;
right: 29px
}
.inverted-border-radius2 {
height: 0;
width: 0;
background-color: #1f68ad;
transform: rotate(90deg);
position: relative;
bottom: -37px;
left: 20px
}
.inverted-border-radius2::before {
content: "";
position: absolute;
background-color: transparent;
height: 8px;
width: 90px;
border-top-left-radius: 20px;
box-shadow: -24px 0 0 -1px #1f68ad;
right: -91px
}
li.day_class {
text-align: left !important;
cursor: pointer;
padding-left: 25px !important;
height: 45px;
display: flex;
align-items: center
}
.scroll_400 {
height: 400px;
overflow-y: scroll;
overflow-x: hidden;
overflow: auto
}
.inverted-border-radius2::after {
content: "";
position: absolute;
background-color: transparent;
height: 10px;
width: 85px;
border-top-right-radius: 20px;
box-shadow: 30px 0 0 -1px #1f68ad;
right: 29px
}
.header_bg3 {
background: #45a085;
padding: 8px 15px;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%
}
.bg_form {
background: #2598767a;
padding: 0 0 15px 0;
color: #000;
margin-left: 0;
margin-right: 0;
margin-bottom: 15px
}
.day_class.active {
background: #efefef
}
.btn_topbl {
padding-top: 24px
}
.btn_topbl .badge-primary {
width: 100%
}
textarea.h_170 {
height: 170px !important
}
.actbtn {
background-color: #1f68ad;
color: #fff;
padding: 3px 10px;
font-size: 13px;
border: none;
cursor: pointer
}
.actdropdown {
position: relative;
display: inline-block
}
.actdropdcont {
display: none;
position: absolute;
background-color: var(--bg-white);
min-width: 156px;
box-shadow: var(--box-shadow);
z-index: 1;
right: 0;
font-size: 13px;
}
.actdropdcont a {
color: #0066ce !important;
padding: 8px 18px;
text-decoration: none;
border-bottom: 1px solid #8080801c;
display: block
}
.actdropdcont a:hover {
background-color: #f1f1f1
}
.actdropdown:hover .actdropdcont {
display: block
}
.actdropdown:hover .actbtn {
background-color: #1f68ad
}
.status_color {
font-weight: 600;
font-size: 13px;
}
.profile-join-date {
margin-top: 13.5%;
text-align: right;
}
.note-editor.note-airframe .note-editing-area .note-editable,
.note-editor.note-frame .note-editing-area .note-editable {
background-color: #fff;
}
.active-status {
background: green;
color: var(--bg-white);
padding: 2px 8px;
border-radius: 12px;
text-align: center;
display: inline-block;
min-width: 73px;
font-size: 12px;
}
.inactive-status {
background: #dd342f;
color: var(--bg-white);
padding: 2px 8px;
border-radius: 12px;
text-align: center;
display: inline-block;
min-width: 73px;
font-size: 12px;
}
.tts-blog-image {
width: 60px;
height: 60px;
}
input:disabled {
cursor: not-allowed;
background: #dddddd61;
}
.search-reset-btn {
margin-top: 30%;
}
.tts-dis-content {
display: contents;
}
.tts-autocomplet {
max-height: 296px;
overflow-x: hidden;
z-index: 999;
font-family: inherit !important;
}
div.dest_left {
width: 80%;
float: left;
text-align: left;
}
.tts-autocomplet li .ui-menu-item-wrapper {
text-decoration: unset;
border-right: 1px solid transparent !important;
padding: 10px 12px 10px 8px !important;
font-family: inherit !important;
}
.tts-autocomplet .city {
font-weight: 400;
}
.tts-autocomplet .airpotcode {
font-weight: 400;
}
.tts-autocomplet .ui-menu-item a .aircode {
font-weight: 400;
}
.tts-autocomplet li a {
border-bottom: 1px solid #cacaca !important;
display: block;
width: 100%;
}
.tts-read-only {
cursor: not-allowed;
background: #dddddd61;
}
.tts-read-only:focus {
cursor: not-allowed;
background: #dddddd61;
}
.tts-m-auto {
margin: auto;
}
.text_wrap {
white-space: nowrap;
}
.tts-itinerary-row {
margin-bottom: 10px;
}
.close-icon {
width: 16px;
height: 16px;
position: absolute;
cursor: pointer;
margin-top: 29px;
}
.listing-loader-block {
min-height: 50vh;
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 50px 0;
}
.tts-showcenter {
flex-direction: row;
box-sizing: border-box;
display: flex;
place-content: center;
align-items: center;
}
.tts-loading-box {
text-align: center;
background: var(--bg-white);
border: 1px solid #dedede;
padding: 20px 20px;
border-radius: 10px;
}
.tts-share-checkbox {
width: 20px;
height: 20px;
position: absolute;
right: 3.6%;
margin-top: 0px;
}
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x- ng-cloak {
display: none !important;
}
.spinner-grow {
--bs-spinner-width: 1rem;
--bs-spinner-height: 1rem;
} */
/*------------------------------Bus Seat Layout ------------------------*/
.nseat,
.snseat,
.bseat,
.rseat,
.sseat,
.srseat,
.hseat,
.bhseat,
.rhseat,
.shseat,
.srhseat,
.vseat,
.bvseat,
.rvseat,
.svseat,
.srvseat,
.lower,
.upper {
	background: url(../img/transparent-bus-seatlayout.gif) no-repeat left top;
}

.bseat {
	background-position: 0px -40px;
	cursor: default;
}

.rseat {
	background-position: -20px -20px;
}

.snseat {
	background-position: 0px -60px;
}

.srseat {
	background-position: -20px -60px;
}

.hseat {
	width: 40px;
	background-position: -40px 0;
	z-index: 2;
}

.bhseat {
	background-position: -40px -40px;
	cursor: default;
	width: 40px;
	z-index: 2;
}

.rhseat {
	background-position: -80px -20px;
	width: 40px;
	z-index: 2;
}

.shseat {
	background-position: -40px -60px;
	width: 40px;
	z-index: 2;
}

.srhseat {
	background-position: -80px -60px;
	width: 40px;
	z-index: 2;
}

.vseat {
	background-position: -124px 0;
}

.bvseat {
	background-position: -166px 0;
}

.rvseat {
	background-position: -145px -40px;
}

.svseat {
	background-position: -187px 0px;
}

.srvseat {
	background-position: -187px -40px;
}

.busSeatlft .lower {
	background-position: -38px -83px;
	position: relative;
}

.busSeatlft .upper {
	background-position: -69px -83px;
	position: relative;
}

.seat-abl .pd {
	padding: 20px 15px;
	margin-bottom: 15px;
}

.busSeat {
	height: 50px;
	padding: 10px;
	margin-bottom: 10px;
	float: left;
	width: 90%;
	height: 100px;
}

.busseat_left {
	float: left;
	width: 63%;
}

.outerseat {
	width: 100%;
	height: 172px;
	border: 1px solid #d6d6d6;
	background: var(--bg-white);
}

.outerlowerseat {
	border: 1px solid #e0e0e0;
	width: 100%;
	height: 160px;
	border: 1px solid #d6d6d6;
	background: var(--bg-white);
}

.layout {
	width: 50%;
	float: left;
}

.seatdesp {
	float: right;
	width: 30%;
	padding: 1% 2%;
	border: 1px solid #e0e0e0
}

.seatdesp .seatsSelected {
	float: none;
}

.seatdesp .seatsSelected label {
	font-weight: normal;
}

.layout .laybtm {
	float: right;
	margin-right: 10px;
	margin-bottom: 10px;
	width: 30%;
}

.laybtm select {
	width: 100%;
	margin-right: 10px;
	margin-top: 2px;
	float: left;
}

.laybtm .continueBtn {
	float: right;
	padding: 0;
	width: 15%;
}

.resultBox h2 {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 18px;
	margin-bottom: 10px;
}

.bus_siting {
	width: 100%;
	float: left;
}

.bus_siting .left {
	float: left;
}

.bus_siting .mid {
	width: 81.5%;
	float: left;
	padding-top: 8px;
}

.mid p {
	width: 100%;
	text-align: center;
	border: none;
	font-size: 14px;
	margin: 0px;
}

.bus_siting .right {
	float: right;
}

.seats {
	float: left;
	padding: 3px 5px;
}

.seats p {
	margin: 10px 0;
	padding: 0px;
}

.seats p span {
	float: left;
	margin: 5px;
	padding: 0px;
	font-weight: bold;
}

.seats p code {
	float: left;
	margin: 8px 13px 0 0;
}

.busrow,
.slrow {
	width: 97%;
	float: left;
}

.busrow a {
	width: 45px;
	height: 40px;
	margin: 8px;
	float: right;
}

.boarding {
	float: left;
	margin-top: 25px;
	margin-left: 25px;
}

.seat_detail {
	float: right;
	height: 109px;
	margin-top: 25px;
	padding-left: 28px;
	width: 114px;
}

.seat_detail span {
	float: left;
	width: 100%;
	margin: 6px 0;
}

.slrow a,
.sl_ladies,
.sl_booked,
.sl_selected,
.sl_avlble {
	width: 82px;
	height: 26px;
	margin: 7px;
	float: right;
}

.passanger_head {
	width: 768px;
	padding: 3px;
	border-bottom: 2px solid #eeeded;
	float: left;
	padding: 0 0 8px;
}

.ps_detail p {
	margin: 6px 0;
}

.ps_detail p code {
	width: 87px;
	float: left;
	font-size: 12px;
}

.r_head {
	margin: 5px 0;
	font-weight: bold;
	padding-left: 17px;
}

.rightContainer h3 {
	float: left;
	width: 100%;
	margin: 10px 0 0;
	font-size: 13px;
}

.seat_price {
	max-width: 35%;
	float: right;
	border-right: 1px solid #c0c0c0;
	padding-right: 15px;
	margin-top: 25px;
	margin-right: 2%;
	min-height: 105px;
}

.seat_price p {
	width: 100%;
	border: none;
}

.seat_price p code {
	float: left;
}

.seat_price p label {
	width: 80px;
	float: left;
	font-weight: bold;
}

.travelAgency {
	border: 1px solid #C8C8C8;
	border-radius: 5px 5px 5px 5px;
	margin-bottom: 5px;
	margin-top: 5px;
	padding: 8px;
	font-size: 12px;
}

.nseat,
.snseat,
.bseat,
.rseat,
.sseat,
.srseat,
.hseat,
.bhseat,
.rhseat,
.shseat,
.srhseat,
.vseat,
.bvseat,
.rvseat,
.svseat,
.srvseat,
.lower,
.upper {
	float: left;
	width: 20px;
	height: 20px;
	position: absolute;
	cursor: pointer
}

.bseat {
	cursor: default;
}

.hseat {
	width: 40px;
	z-index: 2;
}

.bhseat {
	cursor: default;
	width: 40px;
	z-index: 2;
}

.rhseat {
	width: 40px;
	z-index: 2;
}

.shseat {
	width: 40px;
	z-index: 2;
}

.srhseat {
	width: 40px;
	z-index: 2;
}

.vseat {
	height: 40px;
	z-index: 2;
	width: 20px
}

.bvseat {
	cursor: default;
	height: 40px;
}

.rvseat {
	height: 40px;
}

.svseat {
	height: 40px;
}

.srvseat {
	height: 40px;
}

.busbox {
	border-bottom: 2px solid #dee4f6;
	float: left;
	width: 98.7%;
	padding: 1% 1% 2%;
}

.busbox .errorMessage {
	text-align: center;
	font-weight: bold;
}

.seatsmall dfn,
.seatdesp .seatbig dfn {
	float: left;
}

.seatsmall {
	list-style: none;
	margin: 0;
	float: left
}

.seatbig {
	list-style: none;
	margin-bottom: 10px;
	float: left;
	border-bottom: 1px solid #cccccc;
	padding-bottom: 15px
}

.seatsmall li,
.seatbig li {
	width: 100%;
	float: left;
	padding: 5px 0 !important;
}

.seatsmall li dfn,
.seatbig li dfn {
	float: left;
	width: 20px;
	height: 20px;
}

.seatsmall li span,
.seatbig li span {
	float: left;
	width: 120px;
	padding-left: 5px;
	font-size: 12px
}

.seatbig dfn.wd5 {
	width: 40px;
}

.seatbig dfn.wd6 {
	width: 40px;
}

.seatbig dfn.wd7 {
	width: 40px;
}

.seatbig dfn.wd8 {
	width: 40px;
}

.seatdesp div {
	padding: 2px 0px;
}

.seatdesp div label {
	font-weight: bold;
}

.busSeatrgt {
	width: 300px;
	float: left;
	/*margin-left:15px;*/
}

.busSeatlft {
	width: 30px;
	float: left;
	margin: 10px 0px 10px 20px
}

.busSeatlft .lower {
	width: 15px;
	height: 60px;
	cursor: default;
}

.busSeatlft .upper {
	width: 15px;
	height: 60px;
	cursor: default;
}

.seatcontainer {
	clear: both;
	height: 104px;
	z-index: 2;
	zoom: 1;
	word-spacing: normal;
	position: relative;
}

.seatsmall dfn,
seatdesp .seatbig dfn {
	background: url(../img/transparent-bus-seatlayout.gif) no-repeat left top;
}

.seatsmall li dfn,
.seatbig li dfn {
	float: left;
	width: 20px;
	height: 20px;
}

.seatsmall dfn.wd1 {
	background-position: 0px 0px;
}

.seatsmall dfn.wd2 {
	background-position: -20px -20px;
}

.seatsmall dfn.wd3 {
	background-position: 0px -60px;
}

.seatsmall dfn.wd4 {
	background-position: 0px -40px;
}

/*------------------------------END Bus Seat Layout ------------------------*/
.tts-api-error-msg {
	width: 100%;
	background: var(--bg-white);
	margin: auto;
	border-radius: 4px;
	padding: 40px;
	text-align: center;
}

.tts-minh34 {
	min-height: 34px;
}

.tts-api-error-msg img {
	max-height: 200px;
}

.booknow_btn {
	padding: 0.375rem 0.75rem;
	font-size: 14px;
	background-color: var(--tts-buttton-bg);
	text-transform: capitalize;
	border-radius: 4px;
	color: var(--tts-buttton-txt);
	border: 1px solid var(--tts-buttton-bg);
}

.booknow_btn:hover {
	border: 1px solid var(--tts-buttton-bg1);
	background-color: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}

.tts__travel__date,
.tts__show__result,
.tts__sorting__title,
.tts__flight__details__box {
	border-radius: 4px;
}

.tts__flight__border__dotted::after {
	right: 20px !important;
}

.tts__arrival {
	right: 44px;
	top: 6px;
}

.presentation {
	width: 100%;
	height: 16px;
	position: relative;
}

.presentation::before {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-bottom: 1px dashed #7d7b89;
	z-index: 0;
}

.flight-Icons .fa-plane {
	top: 20px;
	position: absolute;
	right: -20px;
	color: #000;
}

.presentation .stop {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--tts-buttton-bg1);
	left: 53%;
	box-shadow: var(--box-shadow);
}

.presentation .stop1 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--tts-buttton-bg1);
	left: 40%;
	box-shadow: var(--box-shadow);
}

.flight_details_ul li {
	background-color: transparent !important;
}

.flightDetailWrapper .flightRightWrapper .flightFareTypes {
	border: none;
	margin: 0;
	overflow: hidden;
	border-radius: 0 !important;
	background-color: transparent;
	box-shadow: none;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightTypeDetail .flightTypeName {
	margin-top: 0;
}

.flightDetailWrapper .flightRightWrapper .flightFareTypes .card {
	border-radius: 5px;
	box-shadow: var(--box-shadow);
}

.flightDetailWrapper .flightRightWrapper .flightFareTypes .card_header:hover {
	background-color: transparent;
}

.flightDetailWrapper .flightRightWrapper .flightFareTypes .card_body ul li {
	list-style: none;
	padding: 5px 0;
}

.flightDetailWrapper .flightRightWrapper .flightFareTypes .card_body ul li span {
	text-align: right;
}

.input-group .input-group-append .btn-warning {
	border-radius: 0px 5px 5px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 13px;
	height: 32px;
	background-color: var(--tts-buttton-bg1);
	;
	color: #fff;
	border: 1px solid var(--tts-buttton-bg1);
}

.input-group .input-group-append .btn-warning:focus {
	box-shadow: none;
}

.flightDetailWrapper .flightRightWrapper .promoOfferswrapper {
	padding: 10px !important;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightDetailTiming ul li h2 {
	padding-top: 0;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightDetailTiming ul li h3 {
	margin: 0;
}

.flightDetailWrapper .flightLeftWrapper .flightTraveller .flightTravellerDetail .card-header {
	padding: 7px 15px;
	margin-bottom: 0;
	background-color: #fff;
	border-bottom: 0px solid rgba(0, 0, 0, 0.125);
}

.flightDetailWrapper .flightLeftWrapper .flightTraveller .flightTravellerDetail h4 {
	font-size: 13px;
}

.flightDetailWrapper .flightLeftWrapper .flightHeadWrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .partialRef {
	padding: 0;
	margin: 0;
}

.flightTypeDetail p {
	padding: 10px;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightVaccineDet p .vaccineInfo {
	position: relative;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightVaccineDet p {
	padding-left: 0;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail h4 span {
	margin-left: 0;
}

.flightDetailWrapper .flightRightWrapper .flightFareTypes .card {
	border-radius: 5px;
	box-shadow: var(--box-shadow);
	background: var(--bg-white) !important;
}

.flightDetailWrapper .flightLeftWrapper .flightTravellerContact .flightGstNumber .gstUpper .btn {
	margin-top: 0px;
}

.hotal-filter-card {
	background-color: var(--bg-white);
	border-radius: 4px;
	position: relative;
	transition: all 0.5s;
	box-shadow: var(--box-shadow);
}

.hotal-filter-card ul.nav {
	overflow: auto;
	white-space: nowrap;
	width: 100%;
	flex-wrap: nowrap !important;
}

.hotal-filter-card ul.nav li.nav-item {
	margin-bottom: 0;
}

.hotal-filter-card ul.nav li.nav-item a.nav-link {
	color: inherit;
}

.hotal-filter-card ul {
	padding: 0;
	list-style: none;
}

.hotal-filter-card ul li {
	display: block;
	border-right: 1px #e9e9e9 solid;
	position: relative;
}

.hotal-filter-card ul li:last-child {
	border-right: none;
}

.hotal-filter-card ul li:last-child.button {
	text-align: right;
}

.hotal-filter-card ul li h5 {
	font-size: 16px;
	margin: 0;
}

.hotal-filter-card ul li button.modifysearch {
	text-transform: capitalize;
	font-size: 15px;
	color: var(--tts-buttton-txt);
	text-decoration: none;
	white-space: nowrap;
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
}

.hotal-filter-card .modify_list li button.modifysearch:hover {
	background-color: var(--tts-buttton-bg1);
	border: 1px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}

.hotal-filter-card ul h5 span {
	font-size: 14px;
	font-weight: 400;
}

.hotal-filter-card ul h5 a {
	color: #000;
}

.hotel_box {
	padding: 10px;
}

.hotel_box .hotel-box-body ul li {
	margin-right: 10px;
	font-size: 12px;
}

.hotel_box .hotel-box-body ul li i {
	font-size: 10px;
}

.hotel_box .hotel-box-body .icon {
	margin-right: 4px;
	font-size: 16px;
	color: #055290;
}

.hotel_box .hotel-title {
	font-size: 18px;
	color: #000;
	line-height: 25px;
	max-width: calc(100% - 110px);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.hotel_box .hotel-box-body .fa-star {
	color: #efb400;
}

.hotel_box .hotal_price h4 {
	font-size: 20px;
}

.hotel_box .hotal_price h5 {
	font-size: 13px;
	color: #6f6f6f;
}

.hotal-filter {
	box-shadow: var(--box-shadow);
	background-color: #fff;
	padding: 10px;
	border-radius: 4px;
}

.hotel-filter-rating {
	color: #efb400;
}

.bg-filter {
	background-color: #e7f4ff;
	color: #000;
	padding: 2px 10px;
	font-size: 13px;
}

.badge_bg {
	background-color: var(--tts-buttton-bg) !important;
	color: var(--tts-buttton-txt);
}

form .first_night {
	font-size: 10px;
	color: #525252;
	padding: 10px 0 0;
	border-top: 1px dashed #000;
	white-space: nowrap;
}

.booking-form {
	position: relative;
	width: 100%;
	background-color: red;
}

.hotel-room-box {
	float: left;
	padding: 0px;
	box-shadow: var(--box-shadow);
	height: 250px;
}

.hotel-room-box.hotel-left {
	width: 65%;
}

.hotel-room-box.hotel-right {
	width: 35%;
	background-color: red;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	border-radius: 4px;
	padding: 20px;
}

.hotel-room-list {
	padding: 0;
	margin: 0;
}

.hotel-room-list li {
	margin-right: 10px;
}

.multi_city {
	flex-direction: row;
	box-sizing: border-box;
	display: flex;
	place-content: center flex-start;
	width: 49%;
	list-style: none;
	overflow: scroll;
}

.flightDetailButtonWrap .btn-link {
	font-size: 14px;
	border-radius: 4px;
	white-space: nowrap;
	text-transform: capitalize;
	color: #000;
	position: relative;
	background: var(--bg-white);
	text-decoration: none !important;
	transition: all 0.5s ease;
	border: 1px solid #000;
}

.btn-link:hover {
	background: var(--tts-buttton-bg);
	color: var(--white);
	border-color: var(--tts-buttton-bg);
	outline: none;
}

.hotal-filter-card .recommended {
	position: absolute;
	z-index: 0;
	left: -8px;
	top: 0px;
	background-image: linear-gradient(to right, #1c4789, #000000);
	width: 110px;
	height: 20px;
	line-height: 20px;
	padding: 0;
	text-align: center;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	box-shadow: var(--box-shadow);
	overflow: hidden;
}

.hotal-filter-card .recommended:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 0;
	height: 0;
	border-bottom: 0;
	border-top: 7px solid #021432;
	border-right: 0 solid transparent;
	border-left: 8px solid transparent;
	z-index: 1;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 10px;
}

.gallery li {
	list-style-type: none;
	padding: 5px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: var(--box-shadow);
}

.gallery li:nth-child(2),
.gallery li:nth-child(4),
.gallery li:nth-child(6) {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.amenities-list {
	padding: 0px;
	margin: 0;
	list-style: none;
	overflow: hidden;
	background-color: #f5f6f8;
}

.amenities-list li {
	margin-right: 35px;
	color: #000;
	font-size: 14px;
}

.amenities-wrapper h3 {
	color: #000;
	font-size: 18px;
	margin: 0 0 10px;
}

.amenities-hotel-list {
	padding: 0;
	margin: 0px;
}

.amenities-hotel-list li {
	list-style: circle;
	font-size: 12px;
	color: #000;
	margin: 0px 0px 10px;
	padding: 0px 0px 0px 0px;
	position: relative;
	float: left;
	width: 33.33%;
	border-right: 0 !important;
}

.amenities-hotel-list li i {
	color: #333;
	margin-right: 5px;
}

/* Modal Content */
.gallery-content {
	position: relative;
	margin: auto;
	padding: 0;
	width: 100%;
}

/* The Close Button */
.close {
	color: var(--bg-white);
	position: absolute;
	right: 25px;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
}

.mySlides {
	display: none;
}

.cursor {
	cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: var(--bg-white);
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

.hotelpoint {
	background-color: #f5f6f8;
	padding: 10px;
	border-radius: 5px 5px 0px 0px;
	margin-bottom: 20px;
}

.hoteldetail h6 {
	color: #000;
	font-size: 12px;
	font-weight: 400;
	text-transform: capitalize;
	margin: 0;
}

.hoteldetail h3 {
	color: #000;
	font-size: 20px;
	margin: 0;
}

.hoteldetail h4 {
	color: #000 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	margin: 0 !important;
	text-transform: capitalize !important;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .hoteldetail h5 {
	font-size: 15px;
	margin: 0;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .hoteldetail h5 span {
	display: block;
	font-size: 13px;
	color: #848f91;
	font-weight: normal;
}

.hoteldetail ul li span.freebreakfast {
	font-size: 12px;
	color: #000;
	border-radius: 5px;
	border: 1px solid #bdd3e5;
	background: #e7f4ff;
	padding: 5px;
	display: block;
}

.input-group .input-group-append .btn-warning {
	z-index: 1;
}

.sarch-inline {
	display: flex;
	align-items: center;
	justify-content: start;
}

.search-input {
	margin-right: 5px;
}

.gallery-box .gallery_img {
	width: 100%;
	object-fit: cover;
	height: 380px;
}

.form-check1 {
	min-height: 0;
	margin-bottom: 0;
}

.result-modal div.parentdv {
	position: relative;
	padding: 5px 10px 5px 10px;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightPoint a {
	color: #000;
	font-size: 14px;
	margin-top: 0px;
	text-transform: capitalize;
}

.modal-shadow {
	background: var(--bg-white);
	z-index: 1000;
	border-left: 1px solid #e2dede;
	padding: 16px 16px 16px 16px;
	box-shadow: var(--box-shadow);
}

/* .bus-main {
overflow: auto;
scrollbar-width: thin;
height: 550px;
display: flex;
align-items: center;
justify-content: center;
} */
.gray_bg {
	background-color: #f9f9f9;
}

.price-detail {
	border: 1px solid #ccc;
	border-width: 1px 0px 1px 0px;
	margin: 0px -10px;
}

.btn.go_button {
	background: var(--tts-buttton-bg);
	border-radius: 4px;
	box-shadow: unset !important;
	font-size: 14px;
	color: var(--tts-buttton-txt);
	padding: 8px 8px;
	z-index: 1;
}

.table {
	padding: 16px 30px 10px 15px !important;
}

.tts__bus__time {
	font-size: 13px;
}

.accordion-btn {
	font-size: 13px;
}

.accordion-body1 {
	width: 100%;
	height: 300px;
	overflow: auto;
}

.cruiser-item-half {
	width: 50%;
	float: left;
	padding: 0 1px 1px 0;
}

.cruiser-item-half label {
	display: block;
	width: 100%;
	margin-bottom: 0;
	padding: 5px;
	font-size: 12px;
	font-weight: 400;
	background: #f5f5f5;
	cursor: pointer;
	white-space: nowrap;
}

.accordion-button {
	border-bottom: 1px solid #ccc;
}

.accordion-button:focus {
	background-color: transparent;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	color: #000;
}

.low-rate-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.low_price {
	border: 1px dashed #26be4c;
	padding: 10px;
}

.low-rate-list li:first-child {
	border-top: 0;
}

.low-rate-list li {
	display: flex;
	justify-content: space-between;
	clear: both;
	width: 100%;
	padding: 3px 0;
	text-align: left;
	font-weight: 400;
	text-transform: uppercase;
	border-width: 1px 0 0;
	border-style: dashed;
	border-color: #26be4c;
}

.tableFixHead {
	overflow: auto;
	height: 300px;
}

.tableFixHead thead th {
	position: sticky;
	top: 0;
	z-index: 1;
}

.tableFixHead table .btn {
	padding: 0;
	border-radius: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.tableFixHead table th,
td .btn i {
	font-size: 12px;
}

.nav-tabs .gallery-link {
	background-color: #f5f6f8 !important;
	border-radius: 0;
	color: #000;
}

.gallery-tabs {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gallery-tabs button {
	width: 25%;
	font-size: 14px;
}

.flight-list-tab .nav-tabs .nav-link:hover,
.flight-list-tab .nav-tabs .nav-link:focus {
	border-bottom: 2px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-bg1);
}

.flight-list-tab .nav-tabs .nav-link.active,
.flight-list-tab .nav-tabs .nav-link:hover {
	border-bottom: 2px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-bg1);
}

.itinerary-details {
	margin: 0;
	margin-top: 12px;
	padding: 0;
	list-style-type: none;
}

.itinerary-details li {
	position: relative;
	display: block;
	margin-left: 8px;
	margin-right: 0;
	break-inside: avoid-column;
}

.itinerary-details li::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: auto;
	width: 0;
	border-width: 0 0 0 1px;
	border-style: solid;
	border-color: #dbdbdb;
	content: '';
}

.itinerary-details .time {
	display: flex;
	align-items: center;
	margin-top: 4px;
}

.itinerary-details li .itinerary-optional-package-wrapper {
	margin: -8px;
	margin-left: 10px;
	padding: 8px;
}

.itinerary-details li::after {
	position: absolute;
	top: 10px;
	left: 0;
	right: auto;
	display: inline-block;
	width: 8px;
	height: 8px;
	color: #707070;
	border-radius: 8px;
	box-shadow: var(--box-shadow);
	background: currentColor;
	content: '';
	box-sizing: content-box;
	transform: translateX(-50%);
}

/* .nav-pills .nav-link {
background: #f5f6f8;
border: 0;
border-radius: 0;
color: #000;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
color: var(--tts-buttton-txt);
background-color: var(--tts-buttton-bg);
} */
.slides {
	margin: 0;
	padding: 0;
	list-style: none;
}

.slides li {
	margin-bottom: 8px;
}

.disclaimer {
	padding: 1rem;
	font-weight: 400;
	width: 100%;
	border-radius: 3px;
	background: #f5f5f5;
	box-shadow: var(--box-shadow);
}

.facts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.facts li {
	margin-bottom: 1px;
	padding: 0;
	border-right: 1px solid transparent;
	line-height: 36px;
	text-align: left;
}

.facts li .fas {
	display: inline-block;
	width: 36px;
	color: currentColor;
	font-size: 1.25rem;
	text-align: center;
	line-height: 36px;
	background: #dbdbdb;
	vertical-align: top;
}

.facts li .facts-wrap {
	background: #f5f5f5;
}

.facts li label {
	margin: 0 0 0 8px;
}

.cruise-list {
	list-style: none;
	padding: 0;
	margin: 10px 0;
}

.cruise-list li {
	padding: 0px 10px;
	border-right: 1px solid #ccc;
	font-size: 20px;
}

.cruise-package {
	margin: 30px 0 0px 0;
}

.cruise-box {
	box-shadow: var(--box-shadow);
	width: 100%;
	background-color: #fff;
}

.cruise-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cruise-card-list li {
	margin: 8px;
}

.cruise-box .card {
	border-radius: 0 !important;
	border: none;
	box-shadow: var(--box-shadow);
	width: 100%;
	background-color: #fff;
}

.cruise-box .card .card-img-top {
	border-radius: 0 !important;
}

.package-prices {
	box-shadow: var(--box-shadow);
	background-color: #fff;
	padding: 10px;
}

.tabs-shadow {
	box-shadow: var(--box-shadow);
	width: 100%;
	background-color: #fff;
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-color: inherit;
	border-style: none;
	border-width: 0;
}

.sticky-bottom {
	padding: 10px 10px 10px 10px;
	background: var(--bg-white) !important;
	box-shadow: var(--box-shadow);
}

.cruise-details-package-title {
	font-size: 1.3125rem;
}

.text-price-color {
	color: var(--tts-buttton-bg1);
}

.accordion-footer {
	margin: 10px 0 0;
	padding: 10px;
	background-color: var(--bg-black);
	color: var(--bg-white);
}

.flightDetailWrapper .flightLeftWrapper .flightTraveller .flightTravellerDetail .form-control {
	width: 100%;
}

.flightDetailWrapper .flightLeftWrapper .logInAccount .flightDetailButtonWrap .btn-secondary {
	padding: 0 0px;
	height: 32px;
}

.ratingOrangeGradientBg {
	background: linear-gradient(63deg, #f3d452, #f09819);
	padding-bottom: 2px;
	padding-top: 2px;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 2px;
}

.cabUtilities span {
	margin-top: 5px;
}

.font16 {
	font-size: 16px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}

.car_details-list li {
	margin-top: 10px;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.tts__flight__details__box .tts__flight__details__box_list li {
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: 600;
	font-size: 16px;
}

.latoBold {
	color: rgb(167, 104, 255);
}

.car-details {
	background: var(--bg-white);
	border: 1px solid rgba(156, 170, 179, 0.28);
	box-shadow: var(--box-shadow);
	padding: 10px 15px;
	margin-bottom: 30px;
	border: 1px solid #ccc;
}

.readmoreList {
	column-count: 2;
	column-gap: 50px;
}

#car_filter {
	width: 100%;
	height: 300px;
	overflow: auto;
}

.car-filter-shadow {
	box-shadow: var(--box-shadow);
	background-color: #fff;
	border-radius: 4px;
	position: relative;
}

.pfc3 {
	color: #3e3e3e !important;
}

.fw9 {
	font-weight: 900;
}

.f16 {
	font-size: 16px;
	line-height: 20px;
}

.flightDetailWrapper .flightLeftWrapper .logInAccount .flightDetailButtonWrap .btn-secondary {
	background-color: var(--tts-buttton-bg) !important;
}

.flightDetailWrapper .flightLeftWrapper .flightRefundableWrapper .flightRefundContent .flightCheckList .flightListItem a {
	color: var(--tts-buttton-bg1) !important;
}

.flightDetailWrapper .flightLeftWrapper .continuePayment .btn,
.flightDetailWrapper .flightLeftWrapper .continuePayment .btn-link {
	background-color: var(--tts-buttton-bg) !important;
}

.flightDetailWrapper .flightLeftWrapper .flightTraveller .flightTravellerDetail p {
	color: #000 !important;
}

.flightDetailWrapper .flightLeftWrapper .flightTraveller .flightTravellerDetail .card-header .title {
	color: #000 !important;
}

.flightDetailWrapper .flightLeftWrapper .flightTravellerContact .flightGstNumber .gstUpper .btn {
	border-color: var(--tts-buttton-bg) !important;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightVaccineDet p {
	color: var(--tts-buttton-bg) !important;
}

.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightVaccineDet p .vaccineInfo {
	background-color: var(--tts-buttton-bg) !important;
}

/*.oneway_btn {
background-color: var(--tts-buttton-bg) !important;
}*/
.form-error {
	color: #dc3545 !important;
}

.flight-radiolist .label-warning {
	padding: 0px 5px;
	border-radius: 0;
	background: #f3e6bb;
	color: #876e1e;
	font-size: 12px;
}

.flight-book {
	background: var(--tts-buttton-bg);
	height: auto;
	border-radius: 0.375rem;
	border: 0;
	color: var(--tts-buttton-txt);
	font-size: 13px;
}

.flight-book:hover,
.flight-book:focus {
	background-color: var(--tts-buttton-bg1);
	color: #fff;
	box-shadow: none;
}

.flight-list-tab {
	background: #f7f7f7;
	margin-top: 15px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

.flight-list-tab .flight-list-tab-btn {
	border-bottom: 2px solid transparent;
	color: #333;
	border-radius: 0;
}

.flight-list-tab nav .cross-btn i {
	border-radius: 50%;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border: 1px solid #000;
	transition: all 0.5s ease;
}

.flight-list-tab nav .cross-btn:hover i {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt) !important;
	border: 1px solid var(--tts-buttton-bg);
}

.flight-list-tab .nav-tabs {
	border-bottom: none;
}

.flight-list-tab .flight-list-tab-btn.active {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt) !important;
	border-color: var(--tts-buttton-bg);
}

.flight-list-tab .flight-list-tab-content {
	padding: 20px;
	font-size: 13px;
}

.flight-listair1 li .fightairline-logo {
	margin-right: 8px;
	width: 30px;
}

.flight-holdid .equipType {
	margin-left: 5px;
}

.flight-listair1 span {
	color: #333;
}

.at-fontweight {
	font-weight: normal !important;
}

.graycolor {
	color: #999;
}

.atb-airport {
	display: block;
	line-height: 15px;
}

.cross-btn:hover,
.cross-btn:focus {
	border: 1px solid transparent;
}

.flight-viewbtn {
	padding: 0;
	color: #000;
	font-size: 14px;
	border-radius: 0px;
	border: none;
}

.indicator-content .flightarrives-after .flightarrive-icons {
	margin-right: 10px;
}

.indicator-content {
	color: #666;
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
}

.ars-trasfee .list-fare-ddetials-content {
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 0px;
}

.star-text {
	margin-left: 0%;
	color: #da666c;
}

.fare-rules-tabs {
	margin: 0 1% 1% 0;
	padding: 5px;
	outline: none;
	border-bottom: 2px solid var(--tts-buttton-bg);
}

.flight-typefare {
	font-size: 15px;
	font-weight: 600 !important;
}

.baggage__data {
	padding: 5px;
	background-color: #fff;
}

.atls-holdid span {
	white-space: nowrap;
}

.arrowclass-loader-flight-search {
	width: 80%;
	margin: 0 auto 10px auto;
	height: 1px;
	display: block;
	position: relative;
	background-color: #213f982b;
}

.arrowclass-loader-flight-search:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	right: 0;
	top: -4px;
	border: 1px solid #213f982b;
	background: #fff;
}

.arrowclass-loader-flight-search:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	left: 0;
	top: -4px;
	border: 1px solid #213f982b;
	background: #fff;
}

/* .arrowclass-loader-flight-search {
height: 2px;
width: 70%;
background: #ccc;
margin-left: 0;
position: relative;
margin-top: 0;
display: inherit;
margin: auto;
}
.arrowclass-loader-flight-search:before {
content: "";
position: absolute;
height: 8px;
top: -6px;
width: 2px;
background: #ccc;
right: 3px;
transform: rotate(135deg);
}
.arrowclass-loader-flight-search:after {
content: "";
position: absolute;
height: 8px;
top: 0;
width: 2px;
background: #ccc;
right: 3px;
transform: rotate(45deg);
} */
/*===========================end=====================*/
.tts__flight__result__page .tts__flight__result__page_title {
	margin-right: 10px;
	margin-top: 0;
	font-size: 22px;
	color: #000;
}

.tts__flight__result__page .tts__flight__result__page_text {
	color: #055290;
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 10px;
}

/* .tts__flight__result__page .fa-star {
width: 15px;
height: 15px;
line-height: 15px;
color: #efb400;
font-size: 17px;
} */
.gallery-box {
	box-shadow: var(--box-shadow);
	background-color: #fff;
	border-radius: 4px;
	position: relative;
	padding: 15px;
}

.gallery-box .carousel-indicators--thumbnails {
	overflow-x: auto;
	height: 350px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.gallery-box .carousel-indicators--thumbnails li {
	position: relative;
	width: 100%;
}

.gallery-box .carousel-indicators--thumbnails li img {
	height: 131px;
	object-fit: cover;
	width: 100%;
	margin-bottom: 3px;
}

.gallery-box .carousel-item img {
	width: 100%;
	height: 350px;
}

/* .carousel-indicators--thumbnails--column {
padding-left: 0px;
} */
.hoteldetail_list_ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #ccc;
}

/*.hoteldetail_list_ul li {
margin: 10px 10px;
}*/
.ui-autocomplete-category {
	padding: 10px;
	text-transform: capitalize;
	font-size: 13px;
	font-weight: 600;
	border-bottom: 1px solid #ccc;
	background: #f1f1f1;
}

.gallery-box .section-one {
	border-bottom: 1px solid #dedede;
}

.gallery-box .section-one .gallery-checkin {
	flex-flow: row wrap;
	box-sizing: border-box;
	display: flex;
	place-content: stretch flex-start;
	align-items: stretch;
	padding: 0;
	margin: 0;
	list-style: none;
}

.gallery-box .section-one .gallery-checkin li {
	width: calc(50% - 50px);
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	transition: all .5s ease-in .1s;
}

.gallery-box .section-one .gallery-checkin li:nth-child(n+3) {
	text-align: right;
}

.gallery-box .section-one .gallery-checkin li.nights {
	width: 100px;
	text-align: center;
	padding: 0 15px 0 15px;
	flex-direction: row;
	box-sizing: border-box;
	display: flex;
	place-content: center;
	align-items: center;
}

.gallery-box .section-one .gallery-checkin li.nights h5 {
	font-size: 14px;
	color: #525252;
	padding: 10px 0 0;
	border-top: 1px dashed #000;
	white-space: nowrap;
}

.gallery-box .section-one .gallery-checkin li label {
	color: #363636;
	text-transform: uppercase;
	display: block;
	white-space: nowrap;
	font-weight: 700;
}

.gallery-box .section-one .gallery-checkin li h6 {
	font-size: 23px;
	margin: 0;
	color: #000;
}

.gallery-box .section-one .gallery-checkin li p {
	font-size: 12px;
	color: #525252;
	margin: 0;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gallery-box .section-one .gallery-checkin li.roomsGuests {
	width: 100%;
}

.gallery-box .section-one .gallery-checkin li span {
	font-weight: 400;
	font-size: 16px;
	color: #525252;
}

.gallery-box .section-two {
	padding: 30px 0 20px;
}

.gallery-box .section-two .inclusion {
	flex-flow: row wrap;
	box-sizing: border-box;
	display: flex;
	place-content: stretch flex-start;
	align-items: stretch;
	padding: 0;
	margin: 0;
	list-style: none;
}

.gallery-box .section-two .inclusion li {
	color: #5e5e5e;
	font-size: 16px;
	font-weight: 400;
	width: 50%;
	margin: 0 0 10px;
	padding: 0 0 0 15px;
}

.gallery-box .section-two .inclusion li .fa {
	font-size: 16px;
	margin-right: 6px;
}

/*========confirmation========start=====*/
.travelimp__thanku {
	background: #8e9195;
	padding: 15px;
}

.travelimp__thanku .travelimp__thanku--statuscontent {
	font-size: 35px;
	color: #fff;
}

.travelimp__thanku .travelimp__thanku--statussize {
	font-size: 18px;
	margin-left: 10px;
	font-weight: bold;
	color: rgb(112, 209, 39);
}

.travelimp__thanku .travelimp__thanku--bookingIdShow {
	font-size: 14px;
	/* margin-left: 10px;*/
	font-weight: bold;
}

.travelimp__thanku .travelimp__thanku--redirectid {
	color: #fff;
}

.flight-confirmation .travelimp__thanku--leftside {
	margin: 15px 0;
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	padding: 10px;
	background-color: #FFF;
}

.flight-confirmation .travelimp__thanku--panelHeadwrap {
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 10px;
}

.flight-confirmation .travelimp__thanku--flightFlex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #F7F7F7;
	font-size: 18px;
	color: var(--modify-Bg-color);
	border-radius: 5px;
}

.flight-confirmation .travelimp__thanku--panelHeading {
	background: #F7F7F7;
	padding: 10px;
	border-radius: 5px;
	font-size: 18px;
	color: #333;
}

.flight-confirmation .travelimp__thanku--tripdate {
	color: #999;
	font-size: 13px;
	margin-left: 15px;
	font-weight: bold;
}

.flight-confirmation .travelimp__segmentwrap--flightimg {
	max-width: 30px;
	max-height: 30px;
	margin-right: 5px;
}

.flight-confirmation .travelimp__segmentwrap {
	padding: 10px;
}

.flight-confirmation .travelimp__segmentwrap--flightul {
	line-height: 1;
	list-style: none;
	padding: 0;
	margin: 0 10px;
}

.flight-confirmation .travelimp__segmentwrap--airportul {
	line-height: 1.3;
	width: 100%;
}

.flight-confirmation .travelimp__segmentwrap--airportname {
	color: #999;
}

.flight-confirmation .travelimp__segmentwrap--terminaltext {
	color: #333;
}

.flight-confirmation .travelimp__segmentwrap--stoparrowlist {
	position: relative;
	border-bottom: 2px solid #ccc;
	font-size: 11px;
	text-align: center;
	padding-bottom: 15px;
}

.flight-confirmation .travelimp__segmentwrap--stoparrowlist::before {
	position: absolute;
	height: 2px;
	width: 12px;
	background: #ccc;
	right: -1px;
	bottom: 3px;
	content: '';
	transform: rotate(45deg);
	border-radius: 10px;
}

.flight-confirmation .travelimp__segmentwrap--stoparrowlist::after {
	position: absolute;
	height: 2px;
	width: 12px;
	background: #ccc;
	right: -1px;
	bottom: -7px;
	content: '';
	transform: rotate(-45deg);
	border-radius: 10px;
}

.flight-confirmation .label-purple {
	background: var(--tts-buttton-bg);
	color: #ffF;
	border-radius: 0;
	padding: 5px 5px 3px 5px;
	display: inherit;
	margin-top: 3px;
}

.flight-confirmation .travelimp__segmentwrap--baggageInfo {
	padding: 10px;
}

.flight-confirmation .travelimp__segmentwrap--baggageInfo p {
	margin-bottom: 0;
	line-height: 18px;
	font-size: 14px;
	color: #333;
}

.flight-confirmation .travelimp__segmentwrap--baggagecheckin {
	color: #999;
	font-size: 12px;
}

.flight-confirmation .travelimp__segmentwrap--btn {
	padding: 10px;
}

.flight-confirmation .travelimp__segmentwrap--btn .asr-viewbtn {
	background: var(--tts-buttton-bg);
	padding: 8px 12px;
	color: #FFF;
	height: auto;
	border-radius: 30px;
	border: 0;
	box-shadow: var(--box-shadow);
	transition: all 0.5s ease;
}

.flight-confirmation .travelimp__segmentwrap--btn .asr-viewbtn:hover {
	background-color: var(--tts-buttton-bg);
}

.flight-confirmation .travelimp__thanku--tablewrap th {
	white-space: nowrap;
}

.flight-confirmation .travelimp__thanku--responsivewrap {
	padding: 10px;
}

.flight-confirmation .travelimp__thanku--paxwiseprint {
	margin-right: 5px;
	cursor: pointer;
}

.flight-confirmation .travelimp__thanku--fareulborder {
	border-bottom: 1px solid #ccc;
	position: relative;
}

.flight-confirmation .travelimp__thanku--fareullist {
	display: flex;
	justify-content: space-between;
	padding: 10px;
	margin-bottom: 0;
}

.flight-confirmation .travelimp__thanku--fareulborder:last-child {
	border-bottom: 0;
}

.flight-confirmation .travelimp__termswrap--termsul {
	padding: 5px 15px;
}

.flight-confirmation .travelimp__termswrap--termslist {
	margin-bottom: 3px;
	color: #999;
}

.flight-confirmation .travelimp__thanku--rightside {
	margin: 15px 0;
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	padding: 10px;
	background-color: #fff;
}

.flight-confirmation .travelimp__thanku--moreoptions {
	border-radius: 5px;
	padding: 10px;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
}

.flight-confirmation .travelimp__thanku--morelist {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	cursor: pointer;
}

.flight-confirmation .travelimp__thanku--morecontent {
	padding: 8px;
	color: #999;
	font-size: 13px;
}

.flight-confirmation .travelimp__thanku--moreicons {
	background: var(--tts-buttton-bg);
	width: 40px;
	height: 40px;
	line-height: 40px !important;
	text-align: center;
	font-size: 16px;
	color: #fff;
}

.flight-confirmation .travelimp__thanku--anchorlink {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flight-confirmation .travelimp__thanku--tablewrap thead,
tbody,
tfoot,
tr,
td,
th {
	border-style: solid !important;
}

.modal .modal-content_confirmation {
	width: 100% !important;
	border-radius: 0;
}

.modal .modal-content_confirmation .modal-header_confirmation {
	display: flex !important;
	background-color: transparent;
}

.modal .modal-content_confirmation .modal-header_confirmation .modal-title_confirmation {
	margin-bottom: 0.5rem !important;
}

.modal .modal-content_confirmation .modal-body_confirmation .form-check-input_confirmation {
	width: 20px;
	height: 20px;
	border-radius: 0;
	margin-top: 0;
	margin-left: -1.5em;
	border: 1px solid var(--tts-buttton-bg1);
}

.modal .modal-content_confirmation .modal-body_confirmation .form-check-label {
	margin-left: 10px;
	font-weight: 600;
}

/*========confirmation========end========*/
/*========cart innformation========start========*/
.cart_information {
	padding: 50px 0;
}

.cart_information .accordion .accordion-item .accordion-button {
	padding: 10px 15px;
	background-color: transparent;
}

.cart_information .accordion .accordion-item .accordion-button:focus {
	border-color: #ccc;
}

.cart_information .accordion .accordion-item .accordion-button .acordian_heading {
	font-size: 16px;
	color: var(--tts-buttton-bg);
}

.cart_information .accordion .accordion-item {
	margin-bottom: 1%;
}

.cart_information .accordion .accordion-item .cart-details-borderline {
	padding: 15px;
	border-radius: 6px;
}

.cart_information .accordion .accordion-button::after {
	background-image: var(--bs-accordion-btn-icon);
}

.cart_information .accordion .ball__border {
	position: relative;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}

.cart_information .accordion .info_length-green {
	background: #036403;
}

.cart_information .accordion .numbering-section {
	position: absolute;
	left: 2px;
	top: 2px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--bg-white);
	font-size: 12px;
	font-family: sans-serif;
	text-align: center;
	line-height: 16px;
	transition: opacity 1s;
}

.cart_information .accordion .cart_info-field .cart_info-field--title {
	color: #9c9c9c;
	margin-bottom: 0;
}

.cart_information .accordion .cart_info-field .cart_info-field--detail {
	color: #242424;
}

.cart_information .accordion .cart_info-field a {
	color: var(--tts-buttton-bg);
}

.cart_information .accordion .note_list-content {
	background: #ffffa7;
	height: 100%;
	padding: 10px;
	border-radius: 6px;
}

.cart_information .accordion .note_list-details {
	color: #686868;
	background: #ebf6fa;
	padding: 10px;
}

.cart_information .accordion .note_list-details p {
	margin-bottom: 10px;
}

.cart_information .accordion .cssCircle.addsign {
	font-size: 12px;
	margin-left: auto;
}

.cart_information .accordion .cssCircle-plusdesign {
	color: var(--tts-buttton-bg1);
}

.cart_information .accordion .segment_body-airlogo {
	display: flex;
	align-items: center;
	text-align: center;
}

.cart_information .accordion .airline-logo {
	margin-right: 8px;
	width: 30px;
}

.cart_information .accordion .arrow_right-sm {
	width: 100%;
	margin: 10px 0;
	background: #ccc;
	position: relative;
	height: 2px;
}

.cart_information .accordion .arrow_right-sm:before {
	content: '';
	position: absolute;
	height: 8px;
	top: -6px;
	width: 2px;
	background: #ccc;
	right: 3px;
	transform: rotate(135deg);
}

.cart_information .accordion .arrow_right-sm:after {
	content: '';
	position: absolute;
	height: 8px;
	top: 0;
	width: 2px;
	background: #ccc;
	right: 3px;
	transform: rotate(45deg);
}

.cart_information .accordion .amend_details-passengers--list {
	background: var(--bg-white);
	box-shadow: var(--box-shadow);
	margin: 10px 10px 0;
	position: relative;
	padding: 10px;
	border-radius: 6px;
}

.cart_information .accordion .amend_passenger_details {
	background: #f2f1f1;
	border-radius: 6px;
	display: inline-block;
	width: 100%;
	padding: 5px;
}

.cart_information .accordion .amend_passenger_details .person-name {
	color: #004684;
	text-transform: capitalize;
}

.cart_information .accordion .amend_passenger_details .sm_font {
	font-size: 11px;
}

.cart_information .accordion .amend_passenger_details .padd-left-amendment {
	padding-left: 0;
}

.cart_information .accordion .passenger_faredetail .padd-left-amendment {
	padding-left: 0;
}

.cart_information .accordion .passenger_faredetail .form-floating>.form-control {
	padding: 22px 0px 5px 0px;
	font-size: 13px;
	height: 50px;
	margin-bottom: 10px;
	border: none;
	border-bottom: 1px solid #e5e5e5;
}

.cart_information .accordion .passenger_faredetail .form-floating>label {
	padding: 18px 0px 0px 0px;
}

.cart_information .accordion .passenger_faredetail .form-floating>.form-control:focus {
	box-shadow: none !important;
}

.cart_information .accordion .amend_passenger_details .hover_icon {
	width: 20px;
	height: 20px;
	text-align: center;
	cursor: pointer;
	color: #ffb900;
}

.cart_information .accordion .hoverInfo_content {
	background: #8e8e8e;
	color: #fff;
	padding: 5px;
}

.cart_information .accordion .hoverInfo_content-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #9a9a9a;
	padding: 2px;
}

.cart_information .accordion .hoverInfo_content-detail p {
	margin-bottom: 0;
	font-size: 13px;
}

/*========cart innformation========end==========*/
.pending-status {
	background: #FFC107;
	color: var(--bg-white);
	padding: 2px 8px;
	border-radius: 12px;
	text-align: center;
	display: inline-block;
	min-width: 73px;
	font-size: 12px;
}

.modal .modal-dialog .ref-modal-header {
	display: flex !important;
	padding: 1rem 1rem;
}

.modal .modal-dialog .modal-content-refresh {
	width: 100% !important;
}

.modal .modal-dialog .modal-footer-refresh {
	display: block !important;
	padding: 1rem 1rem;
	text-align: center;
	background-color: #fff;
}

.modal .modal-dialog .modal-body-refresh #notificationModalCaptions img {
	height: 400px;
	object-fit: cover;
}

#notificationModal .modal-dialog {
	width: 500px;
}

.modal .modal-dialog .modal-body-refresh {
	padding: 0;
	margin: 0;
}

.modal .modal-dialog .modal-body-refresh .modal-refresh-btn {
	position: absolute;
	top: -19px;
	right: -19px;
	width: 30px;
	height: 30px;
	background: rgb(255 255 255);
	color: #000;
	border-radius: 50px;
	opacity: 1;
}

.modal .modal-dialog .modal-body-refresh .modal-refresh-btn span {
	font-size: 20px;
	font-weight: normal;
}

.modal .modal-dialog .modal-footer-refresh .btn-modal-refresh {
	margin-top: 10px;
	background-color: var(--tts-buttton-bg1);
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	color: #fff;
}

.modal .modal-dialog .modal-body-refresh .carousel-indicators {
	bottom: auto;
	top: 65%;
}

/*   
.tts-amendment-partner-border {
border: 1px solid #b6b7b9; 
}
*/
.tts-amendment-admin-border {
	border: 2px solid #198754;
}

.tts_agentUserId {
	color: #00000042;
	height: 100%;
	left: 0;
	line-height: 10;
	margin: 0;
	position: fixed;
	top: 0;
	transform: rotate(-30deg);
	transform-origin: 0 100%;
	width: 200%;
	font-size: 10px;
	z-index: 0;
	word-spacing: 60px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
	opacity: 0.25;
}

.tts-pr_9 {
	padding-right: 9px;
}

.tts-refundable {
	color: #04BD6C !important;
	cursor: pointer;
}

.tts-non-refundable {
	color: #b50000;
	cursor: pointer;
}

.amendment_reply {
	border-left: 3px solid #0063ff !important;
	background: #e7eaeb;
	border-radius: 5px;
	padding: 12px 12px;
}

.amendment_box {
	background: #f6f6f6;
	padding: 17px 7px;
	border-radius: 6px;
	box-shadow: var(--box-shadow);
}

.txt-black {
	color: #000;
}

.imp_amdement_noti {
	background: white;
	padding: 21px;
	border-radius: 5px;
}

.sales-report td {
	padding: 0.75rem 0.2rem !important;
}

/*==================start-section==============*/
.StartNowstyles {
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 0;
	margin: 0px 0 80px;
}

.StartNowstyles:after {
	width: 75%;
	background-color: rgb(242, 236, 243);
	border-radius: 0px 10rem 10rem 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	content: "";
	height: 100%;
	z-index: -1;
}

.StartNowstyles-wrapper {
	width: 100%;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	max-width: 75%;
}

.StartNowstyles__box {
	max-width: 1350px;
	padding: 2rem 0px;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-direction: column;
	z-index: 2;
}

.StartNowstyles__text {
	margin-bottom: 0;
}

.StartNowstyles__title {
	font-size: 32px;
	color: rgb(10, 39, 49);
	font-weight: 800;
}

.StartNowstyles__btn {
	display: flex;
	margin-left: 7rem;
	width: 20.5rem;
	border: 1px dashed rgb(32, 119, 247);
	border-radius: 4rem;
	padding: 0.8rem;
}

.StartNowstyles__signup {
	width: 100%;
	padding: 15px 40px;
	border-radius: 5rem;
	background-image: linear-gradient(92deg, rgb(83, 178, 254) 0%, rgb(6, 90, 243) 130%);
	text-transform: uppercase;
	font-size: 16px;
	color: rgb(255, 255, 255);
	font-weight: bold;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.StartNowstyles__signup:hover {
	color: #fff;
}

.StartNowstyles__signup:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 490%;
	width: 140%;
	background: var(--bg-white);
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
	transform: translateX(-95%) translateY(-25%) rotate(90deg);
	z-index: -1;
}

.StartNowstyles__signup:hover:after {
	-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
	transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.StartNowstyles__signup:hover {
	color: #001f8d;
}

/*==================start-section==============*/
/*==================partner-section==============*/
.customer-need,
.why-partner,
.StartNowstyles-section,
.partner-section {
	padding: 80px 0;
	overflow: hidden;
}

.partner-section .feature-box {
	padding: 24px 20px;
	box-shadow: rgb(194 198 235) 0px 1px 1px 0px;
	transition: 0.3s;
	background-image: linear-gradient(263deg, rgb(232, 234, 248) 1%, rgb(254, 255, 255) 99%);
	border-radius: 8px;
	margin-bottom: 10px;
}

.partner-section .feature-box i {
	background-image: linear-gradient(92deg, rgb(83, 178, 254) 0%, rgb(6, 90, 243) 130%);
	padding: 4px;
	margin-right: 20px;
	font-size: 24px;
	border-radius: 50%;
	color: #fff;
	transition: 0.3s;
}

.partner-section .feature-box h3 {
	font-size: 16px;
	color: #012970;
	margin: 0;
}

.partner-section img {
	height: 450px !important;
	width: 100%;
	object-fit: contain;
}

/*==================partner-section========end======*/
/*==================why-partner========start======*/
.why-partner .content h3 {
	font-size: 32px;
	color: #001f8d;
	text-transform: capitalize;
}

.why-partner .content ul {
	list-style: none;
	padding: 0;
}

.why-partner .content ul li {
	display: flex;
	align-items: flex-start;
	margin-top: 40px;
}

.why-partner .content ul i {
	flex-shrink: 0;
	font-size: 48px;
	margin-right: 20px;
}

.why-partner .content ul h5 {
	font-size: 18px;
}

.why-partner .content p:last-child {
	margin-bottom: 0;
}

.why-partner .content ul p {
	font-size: 15px;
}

div.laptop-wrapper {
	position: relative;
	padding-top: 25px;
	padding-bottom: 67.5%;
	height: 0;
}

div.laptop-wrapper iframe {
	box-sizing: border-box;
	background: url('../../webroot/img/video-banner.png') center center no-repeat;
	background-size: contain;
	padding: 11.9% 15.5% 14.8%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*==================why-partner========end======*/
/*==================customer====need========start======*/
.customer-need {
	background-color: rgb(242, 236, 243);
	border-radius: 50px 50px 0% 0% / 60px;
}

.customer-need .card-group .card {
	border-radius: 2rem 2rem 0px 0px !important;
	margin: 10px;
}

.customer-need .card-group .card .card-img-top {
	border-radius: 2rem 2rem 0px 0px !important;
	height: 250px !important;
	object-fit: cover;
}

.customer-need .card-group .card .card-title {
	font-size: 18px;
	color: #001f8d;
	text-align: center;
	font-weight: bold;
	border-radius: 0px 0px 0.8rem 0.8rem;
}

.customer-need .Waiting {
	margin-top: 4rem;
	text-align: center;
}

.customer-need .Waiting h2 {
	font-size: 32px;
	color: rgb(10, 39, 49);
	font-weight: 800;
}

.customer-need .Waiting .WaitingForButton {
	padding: 15px 45px;
	border-radius: 5rem;
	background-image: linear-gradient(92deg, rgb(83, 178, 254) 0%, rgb(6, 90, 243) 130%);
	text-transform: uppercase;
	font-size: 16px;
	color: rgb(255, 255, 255);
	font-weight: bold;
	border: none;
	cursor: pointer;
	margin-top: 2.5rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-decoration: none;
}

.customer-need .Waiting .WaitingForButton:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--bg-white);
	transition: all 0.5s ease;
	z-index: -1;
	border-radius: 5rem;
}

.customer-need .Waiting .WaitingForButton:hover:after {
	width: 98%;
}

.customer-need .Waiting .WaitingForButton:hover {
	color: #001f8d;
}

/*==================customer====need========end======*/
.TopSectionstyles-section .TopSectionstyles-box {
	background-image: linear-gradient(248deg, #fff1cd 100%, #ffedd6 1%);
	padding: 20px 0;
	border-radius: 10px;
}

.TopSectionstyles-section .TopSectionstyles-box h3 {
	font-size: 25px;
	font-weight: 400;
}

.TopSectionstyles-section .TopSectionstyles-box h3 span {
	font-weight: 900;
}

.TopSectionstyles_border {
	border-right: 2px solid #e4c583;
}

.TopSectionstyles_border .Know-more {
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	color: #0092ff;
}

.TopSectionstyles-section ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.TopSectionstyles-section ul li {
	padding: 0 0 10px 30px;
	position: relative;
	font-size: 18px;
}

.TopSectionstyles-section ul li i {
	position: absolute;
	font-size: 20px;
	left: 0;
	top: 5px;
	color: #000;
}

.TopSectionstyles-section ul li span {}

.text_typing {
	animation: text1;
}

.text_typing {
	overflow: hidden;
	white-space: nowrap;
	display: inline-block;
	position: relative;
	animation-duration: 5s;
	animation-timing-function: steps(25, end);
	animation-iteration-count: infinite;
}

/*.text_1::after{
content: "|";
position: absolute;
right: 0;
animation: caret infinite;
animation-duration: 1s;
animation-timing-function: steps(1, end);
}
*/
@keyframes text1 {

	0%,
	50%,
	100% {
		width: 0;
	}

	10%,
	100% {
		width: 40%;
	}
}

@keyframes caret {

	0%,
	100% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

.btn-tts-markup {
	background: #11458d;
	color: #fff;
}

.flightDetailWrapper .flightFare .fa-edit {
	font-size: 16px;
	background-color: #f58434;
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
}

.holiday_slider {
	background: transparent !important;
}

/*==================tourista---marquee============*/
.tourista-marquee .ticker {
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	height: 50px;
}

.tourista-marquee .ticker-news {
	width: 88%;
	background: var(--bg-white);
	padding: 7px 2%;
}

.tourista-marquee .ticker-title {
	width: 12%;
	text-align: center;
	background: var(--tts-buttton-bg1);
	position: relative
}

.tourista-marquee .ticker-title h5 {
	font-size: 16px;
	margin: 8% 0;
	color: #fff;
}

.tourista-marquee .ticker-news marquee {
	font-size: 15px;
	margin: 0px 0 0 0;
}

.tourista-marquee .news-content p {
	margin-right: 41px;
	display: inline;
	font-size: 13px;
}

/*======tts===notifications======*/
.tts-notification {
	background: var(--bg-white);
	padding: 20px;
	box-shadow: var(--box-shadow);
	border-radius: 5px;
}

.tts-notification .tts-notification-title {
	font-size: 25px;
	margin-top: 0 !important;
}

.tts-notification .tts-newnoti {
	background: #df1c1c;
	color: #fff;
	display: inline-block;
	padding: 1px 8px;
	border-radius: 3px;
	font-size: 12px;
	margin-top: 20px;
}

.tts-notification .tts-nodetails {
	border-bottom: 1px solid #e2e2e2;
}

.tts-notification .tts-nodetails:last-child {
	border-bottom: none;
}

.tts-notification .tts-nodetails h5 {
	font-size: 16px;
}

/*======tts===notifications======*/
/*======successful==========*/
.success_wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.success_wrapper {
	height: initial;
	max-width: 850px;
	margin: 50px auto 50px auto;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
}

.success_wrapper_2 {
	padding: 30px;
	text-align: center;
}

.success_wrapper_2 h2 {
	font-size: 40px;
	letter-spacing: 3px;
	color: #11458d;
	margin: 0;
	margin-bottom: 20px;
}

.success_wrapper_2 h2 span {
	display: block;
	color: #000;
	letter-spacing: 1px;
	font-size: 35px;
}

.success_wrapper_2 p {
	margin: 0;
	font-size: 16px;
	color: #111;
	letter-spacing: 1px;
	/*width: 450px;*/
	margin: auto;
}

.success_login {
	color: #fff;
	background: #f38435;
	border: none;
	padding: 15px 0px;
	margin: 30px 0;
	border-radius: 30px;
	text-transform: capitalize;
	box-shadow: var(--box-shadow);
	margin-left: 10px;
	width: 250px;
	font-weight: 600;
	text-decoration: none;
	transition: all 500ms linear;
	font-size: 18px;
}

.success_login:hover {
	color: #fff;
	background: #11458d;
}

/*=================dashboard===========*/
.dashboard_banner {
	overflow: hidden;
	padding: 100px 0px;
	background: linear-gradient(115deg, var(--tts-buttton-bg) 0%, var(--tts-buttton-bg1));
}

.btrip-dashboard {
	margin-top: -100px;
	margin-bottom: 50px;
}

.dashboard_box {
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	padding: 32px 0;
	position: sticky;
	top: 15px;
	text-align: center;
	margin-bottom: 30px;
}

.dashboard_box .dashboard_img {
	margin: 0 auto 10px auto;
	width: 160px;
	height: 160px;
	background-image: linear-gradient(45deg, var(--tts-buttton-bg), #e5f3ff);
	border-radius: 8px;
	position: relative;
}

.dashboard_box .dashboard_img .proflPic {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard_box .dashboard_img .proflPic .proflPic_name {
	font-size: 40px;
	font-weight: 600;
	color: #fff;
}

.dashboard_box .dashboard_img img {
	height: 50px;
}

.dashboard_box h4 {
	text-transform: uppercase;
	font-size: 25px;
	margin-bottom: 20px;
}

.dashboard_box .dashboard_menu {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
	margin: 25px 20px 0;
}

.dashboard_box .dashboard_menu li a.active {
	background: rgba(0, 140, 255, 0.1);
	color: #0d6efd;
}

.dashboard_box .dashboard_menu li a {
	padding: 10px 20px;
	display: block;
	font-size: 15px;
	background: var(--bg-white);
	border-radius: 5px;
	margin-bottom: 5px;
	transition: all 0.5s;
}

.dashboard_box .dashboard_menu li a:hover {
	background: rgba(0, 140, 255, 0.1);
	color: #0d6efd;
}

.dashboard_box .dashboard_menu li i {
	margin-right: 5px;
}

/*=================dashboard===========*/
.dashboard_right {
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	padding: 32px 30px;
	position: relative;
	margin-bottom: 30px;
}

.dashboard_right h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	position: relative;
}

.dashboard_right h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 5px;
	height: 70px;
	background: #7e7e7e;
	left: -30px;
	right: 0;
	bottom: -30px;
	border-radius: 0px;
}

.dashboard_right .table-responsive .table {
	margin-bottom: 0;
}

.dashboard_right .table-responsive .table tbody tr:last-child {
	border-bottom: 0px solid transparent !important;
	background: transparent;
}

.dashboard_right .table-responsive .table td {
	padding: 15px 0;
}

.dashboard_right .table-responsive .table td span {}

.dashboard_right .table-responsive .table td span.greenText {
	color: #00a19c;
}

.dashboard_right .table-responsive .table td span.blueText {
	color: #0d6efd;
}

/*=================dashboard========end========*/
/*==============dashboard========Bookinglist==================*/
.btravTripsBannerWrapper {
	overflow: hidden;
	padding: 100px 0px;
	background: linear-gradient(115deg, var(--tts-buttton-bg) 0%, var(--tts-buttton-bg1));
}

.btravTripsBannerWrapper ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
}

.btravTripsBannerWrapper ol li {
	color: #ffffff;
}

.btravTripsBannerWrapper ol li+li {
	padding-left: 10px;
}

.btravTripsBannerWrapper ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #ffffff;
	content: ">";
}

.BookingStatus {
	margin-top: -100px;
}

.BookingStatusWrapper,
.BookingStatusWrappertabs {
	background-image: #fff;
	border-radius: 10px 10px 0px 0;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	text-align: center;
	margin-bottom: 0px;
}

.BookingStatusWrappertabs {
	background-image: #fff;
	border-radius: 0px 0px 10px 10px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	margin-bottom: 30px;
	padding: 40px 30px 30px 45px
}

.BookingStatusWrappertabs .emptyErr--heading {
	margin-bottom: 15px;
	font-weight: 900;
	font-size: 22px;
	line-height: 22px;
}

.BookingStatusWrappertabs .emptyErr--subHeading {
	margin-bottom: 25px;
	color: #4a4a4a;
}

.BookingStatus .BookingStatusWrapper {
	padding: 20px 30px;
}

.BookingStatus .BookingStatusWrapper .nav-pills .nav-link {
	background: transparent;
	font-size: 16px;
	color: #9b9b9b;
}

.BookingStatus .BookingStatusWrapper .nav-pills .nav-item {
	padding: 0;
	position: relative;
}

.BookingStatus .BookingStatusWrapper .nav-pills .nav-link:after {
	width: 0;
	height: 5px;
	background: transparent;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -20px;
	content: "";
	transition: all .3s ease-in-out;
	transform-origin: center center;
}

.BookingStatus .BookingStatusWrapper .nav-pills .nav-link.active:after {
	background: var(--tts-buttton-bg);
	width: 100%;
}

.BookingStatus .BookingStatusWrapper .nav-pills .nav-link.active {
	color: var(--tts-buttton-bg);
}

.BookingStatus .BookingStatusWrapper .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background: transparent;
}

.myTripBtn {
	font-size: 14px;
	padding: 12px 20px;
	border-radius: 24px;
	border: 0;
	outline: 0;
	text-decoration: upperCase;
	text-align: center;
	display: inline-block;
	text-transform: uppercase;
	cursor: pointer;
	min-width: 200px;
	flex-shrink: 0;
}

.myTripBtn--primary {
	color: #fff;
	box-shadow: var(--box-shadow);
	background-image: linear-gradient(94deg, #53b2fe, var(--tts-buttton-bg));
}

.btn__dtailAdEdt {
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: var(--bg-white);
	flex-shrink: 0;
	border-radius: 20px;
	border: 1px solid #cacaca;
	min-width: 90px;
	outline: 0;
	cursor: pointer;
	color: #0d6efd;
	font-size: 16px;
	line-height: 16px;
}

.btn__dtailAdEdt span {
	margin-right: 5px;
}

.dashboard_modal .form-control:focus,
.dashboard_modal .form-control:hover {
	box-shadow: none;
	border-color: #0d6efd;
}

.dashboard_modal .form-select:focus,
.dashboard_modal .form-select:hover {
	box-shadow: none;
	border-color: #0d6efd;
}

.dashboard_modal form .updatebutton {
	text-align: center;
}

.dashboard_modal form .btn-primary {
	padding: 0.375rem 2.25rem 0.375rem 2.25rem;
	border-radius: 23px;
	background-color: #0d6efd;
}

.dashboard_modal form .btn-primary:hover {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-bg1);
	border-color: var(--tts-buttton-bg);
}

.btn_cancel {
	margin-right: 30px;
	font-size: 16px;
	color: #4a4a4a;
	margin-bottom: 0;
}

/*==============dashboard========Bookinglist=======end=======*/
.btn-danger {
	background: var(--tts-buttton-bg);
	border: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
}

.btn-danger:hover {
	background: var(--tts-buttton-bg1) !important;
	color: var(--tts-buttton-txt1) !important;
}

.btn-outline-danger {
	background: var(--tts-buttton-bg);
	border: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
}

.googleLoginBar {
	align-items: center;
	border-bottom: 1px solid #d8d8d8;
	display: flex;
	justify-content: center;
	margin-top: 26px;
	width: 100%;
}

.googleLoginBar a {
	background-color: #fff;
	display: inline-flex;
	font-size: 14px;
	margin-bottom: -9px;
	padding: 0 10px;
}

.social-login {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 30px;
}

.social-login span {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 20px;
}

.social-login .login-social-item {
	font-size: 20px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin: 5px;
}

.social-login .bg1 {
	background-color: #3b5998;
}

.social-login .bg2 {
	background-color: #1da1f2;
}

.social-login .bg3 {
	background-color: #ea4335;
}

/*========mobile========app========*/
.site-title-tagline {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	color: var(--tts-buttton-txt);
	position: relative;
	background: var(--tts-buttton-bg);
	border-radius: 50px;
	padding: 5px 20px;
}

.download-area {
	position: relative
}

.download-img {
	text-align: center;
	position: relative;
	z-index: 1
}

.download-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 400px;
	height: 400px;
	background: #f1f0ff;
	border-radius: 50%;
	z-index: -1
}

.download-img img {
	width: 100%;
	height: auto;
}

.download-feature {
	margin: 20px 0 35px;
	padding: 0;
	list-style: none;
}

.download-feature li {
	font-weight: 500;
	margin: 15px 0;
	text-transform: capitalize
}

.download-feature li i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border-radius: 50px;
	margin-right: 10px
}

.download-link a img {
	border-radius: 12px;
}

@media all and (max-width: 991px) {
	.download-img {
		margin-bottom: 60px
	}

	.download-img::before {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 768px) {
	.download-img::before {
		width: 280px;
		height: 280px;
		left: 50%;
		transform: translateX(-50%)
	}

	.download-link a:first-child {
		margin-bottom: 15px
	}
}

.download-content .section-title h2 {
	margin-top: 10px;
	font-weight: 700;
	text-transform: capitalize;
}

.download-content .section-title p {
	margin-top: 15px;
}

/*========mobile========app====end====*/
/*======Feedback===========*/
.contactus .section-title {
	text-align: center;
	padding-bottom: 30px;
	position: relative;
	margin: auto;
}

.contactus .section-title h2 {
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: var(--tts-buttton-bg1);
	display: block;
}

.contactus .section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--tts-buttton-bg);
	bottom: 0;
	left: calc(50% - 25px);
}

.contactus .info-box {
	color: #444444;
	text-align: center;
	box-shadow: 0 0px 1px 1px rgb(0 0 0 / 19%);
	padding: 30px 20px 30px 20px;
	background: var(--bg-white);
	height: 100%;
}

.contactus .info-box i {
	font-size: 32px;
	color: var(--tts-buttton-bg1);
	border-radius: 50%;
	padding: 8px;
}

.contactus .info-box h3 {
	font-size: 20px;
	color: var(--txt-clor-4);
	margin: 10px 0;
}

.contactus .info-box p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.contactus .php-email-form {
	box-shadow: 0 0px 1px 1px rgb(0 0 0 / 19%);
	padding: 30px;
	background: var(--bg-white) !important;
}

.contactus .php-email-form input,
.contactus .php-email-form textarea {
	border-radius: 5px;
	box-shadow: none;
	font-size: 14px;
}

.contactus .php-email-form input {
	padding: 10px 15px;
}

.contactus .php-email-form input,
.contactus .php-email-form textarea {
	border-radius: 5px;
	box-shadow: none;
	font-size: 14px;
}

.contactus .php-email-form button[type=submit] {
	background: var(--tts-buttton-bg1);
	border: 1px solid var(--tts-buttton-bg1);
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 5px;
	font-weight: 500;
}

.contactus .php-email-form button[type=submit]:hover {
	background: transparent;
	color: var(--tts-buttton-bg1);
}

/*======Feedback===end======*/
/*=======activies==============*/
.result .result-wrap {
	box-shadow: var(--box-shadow);
	border-radius: 10px;
	overflow: hidden;
}

.result .result-wrap img {
	transition: 0.3s;
	position: relative;
	z-index: 1;
	width: 100%;
	object-fit: cover;
	height: 210px;
}

.result .result-wrap .result-info {
	padding: 25px 20px;
	background-color: #fff;
	position: relative;
	border-top: 1px solid #f3f3f3;
	z-index: 2;
}

.result .result-wrap .result-info h4 {
	font-size: 20px;
}

.result .result-wrap .result-info h4 a {
	color: #000;
}

.result .result-wrap .result-info h4 a:hover {
	color: var(--tts-buttton-bg);
	;
}

.result .result-wrap .result-info p {
	color: #6c757d;
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 0px;
}

.result .result-wrap .result-info p i {
	color: #c90000;
	margin-bottom: 10px;
	margin-top: 5px;
}

.result .result-wrap .pricing {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ecash-new {
	display: block;
}

.result .result-wrap .result-info h3 {
	margin: 0;
	line-height: 20px;
	font-size: 22px;
}

.result .result-wrap .result-info h3 span {
	color: #6c757d;
	font-size: 14px;
	line-height: normal;
	display: block;
}

.pricing .ecash-new .ecash-txt {
	background-color: #dbdbdb;
	color: #000;
}

.ecash-new .ecash-txt {
	padding: 2px 4px;
	border: 1px solid #dbdbdb;
	border-right: none;
	border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	color: #fff;
}

.ecash-new .ecash-amount {
	background-color: #ffd302;
	background-repeat: repeat-x;
	background-image: linear-gradient(to bottom, #ffd302, #fdb201);
	padding: 2px 4px;
	border-radius: 0 3px 3px 0;
	border: 1px solid #ffd302;
}

.result-btn {
	background: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: #fff;
	padding: 10px 15px;
	font-size: 1.071em;
	line-height: normal;
	cursor: pointer;
	border-radius: 3px;
	appearance: none;
	width: 100%;
	margin-top: 15px;
}

.result-btn:hover {
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-bg);
}

.activies-details-head {
	padding: 20px;
	background: var(--bg-white);
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.activies-details-head p {
	margin: 0;
}

.new-blue-button {
	position: relative;
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border-radius: 5px;
	border: 1px solid var(--tts-buttton-bg);
	padding: 10px 30px;
	cursor: pointer;
	font-size: 15px;
}

.hotel-info {
	padding: 20px;
	background: var(--bg-white);
	margin-bottom: 10px;
	border-radius: 5px;
}

.detail-btn {
	color: var(--tts-buttton-bg);
	background: none;
	border-radius: 0px;
	border: none;
	font-size: 14px;
}

.holidayTrendsWrapper .web_link {
	color: var(--tts-buttton-bg);
	background: none;
	border-radius: 0px;
	border: none;
	font-size: 14px;
}

.activies-details .activity-details-box {
	padding: 60px 30px;
	position: relative;
	overflow: hidden;
	background: var(--bg-white);
	box-shadow: 0 0px 1px 1px rgb(0 0 0 / 21%);
	transition: all 0.3s ease-in-out;
	border-radius: 8px;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.activies-details .activity-details-box h4 {
	color: #000;
	margin: 0 0 20px 0;
	padding-bottom: 8px;
	font-size: 22px;
	position: relative;
	display: inline-block;
	border-bottom: 4px solid #eeeeee;
	transition: 0.3s;
}

.activies-details .activity-details-box p {
	line-height: 24px;
	font-size: 14px;
}

.activies-details .activity-details-box .btn-query {
	padding: 8px 30px;
	color: var(--tts-buttton-txt1);
	border-radius: 50px;
	transition: 0.3s;
	text-transform: uppercase;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--tts-buttton-bg1);
	background: var(--tts-buttton-bg1);
	margin: auto;
}

.activies-details .activity-details-box .btn-query:hover {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border: 2px solid var(--tts-buttton-bg);
}

/* *********************** activies end *********************** */
/* *********************** breadcrumbs *********************** */
.breadcrumbs {
	padding: 18px 0;
	background: var(--tts-buttton-bg);
	min-height: 40px;
}

.breadcrumbs h2 {
	font-size: 25px;
	margin: 0;
	color: var(--tts-buttton-txt);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li {
	margin-right: 10px;
	color: var(--tts-buttton-txt);
	font-weight: bold;
}

.breadcrumbs ol a {
	color: var(--tts-buttton-txt);
	font-weight: normal;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: var(--tts-buttton-txt);
	content: "/";
}

/* *********************** breadcrumbs end*********************** */
/* *********************** blog *********************** */
.blog-single {
	padding: 40px 0 20px 0;
}

.blog-single .entry {
	padding: 30px;
	margin-bottom: 60px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
}

.blog-single .entry .entry-img {
	max-height: 440px;
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}

.blog-single .entry .entry-title {
	font-size: 28px;
	font-weight: 600;
	padding: 0;
	margin: 0 0 20px 0;
}

.blog-single .entry .entry-title a {
	color: #151515;
	transition: 0.3s;
}

.blog-single .entry .entry-meta {
	margin-bottom: 15px;
	color: var(--dark);
}

.blog-single .entry .entry-meta ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog-single .entry .entry-meta i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
}

.blog-single .entry .entry-meta a {
	color: #777777;
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog-single .entry .entry-meta ul li+li {
	padding-left: 20px;
}

.blog-single .entry .entry-content p {
	line-height: 24px;
}

.blog-single .entry .entry-content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: 600;
}

.blog-single .sidebar {
	padding: 30px;
	margin: 0 0 60px 0px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
}

.blog-single .sidebar .sidebar-title {
	font-size: 20px;
	padding: 0 0 0 0;
	margin: 0 0 15px 0;
	color: #012970;
	position: relative;
	text-transform: capitalize;
}

.blog-single .sidebar .sidebar-item {
	margin-bottom: 30px;
}

.blog-single .sidebar .recent-posts img {
	width: 80px;
	float: left;
}

.blog-single .sidebar .recent-posts h4 {
	font-size: 13px;
	margin-left: 95px;
	font-weight: 600;
	text-transform: capitalize;
}

.blog-single .sidebar .recent-posts h4 a {
	color: #012970;
	transition: 0.3s;
}

.blog-single .sidebar .recent-posts time {
	display: block;
	margin-left: 95px;
	font-style: italic;
	font-size: 14px;
	color: #aaaaaa;
}

/* *********************** blog end*********************** */
/* *********************** Recent-holidays *********************** */
.Recent-holidays .card {
	background: var(--bg-white);
	border-radius: 10px;
	border: none;
	box-shadow: var(--box-shadow);
}

.Recent-holidays .card .figure img {
	border-radius: 10px;
	height: 100%;
	max-height: 20rem;
	width: 100%;
	object-fit: cover;
}

.Recent-holidays .card .card-content .process-label {
	font-style: normal;
	font-weight: 400;
	margin-bottom: 0;
}

.Recent-holidays .card .card-content .process {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-style: normal;
	font-size: 16px;
	margin-bottom: 2rem;
}

.Recent-holidays .card .card-content .process .price {
	font-size: 20px;
	background-image: linear-gradient(141.08deg, var(--tts-buttton-bg) 3.49%, var(--tts-buttton-bg1) 99.88%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.Recent-holidays .card .card-content .btn-explore {
	text-align: center;
}

.Recent-holidays .card .card-content .btn-explore .btn {
	width: 100%;
	background-image: linear-gradient(141.08deg, var(--tts-buttton-bg) 3.49%, var(--tts-buttton-bg1) 99.88%);
	box-shadow: var(--box-shadow);
	color: var(--tts-buttton-bg1);
	border: none;
	border-radius: 2rem;
	transition: all 0.5s ease;
	padding: 12px 20px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.Recent-holidays .card .card-content .btn-explore .btn:after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 0%;
	height: 100%;
	background-image: linear-gradient(141.08deg, var(--tts-buttton-bg1) 3.49%, var(--tts-buttton-bg1) 99.88%);
	z-index: -1;
	transition: all 0.5s ease;
}

.Recent-holidays .card .card-content .btn-explore .btn:hover:after {
	width: 100%;
}

/* *********************** Recent-holidays end*********************** */
.flight-rowmain .flight-listair1 li img {
	margin-right: 8px;
	width: 28px;
	display: block;
}

/* *********************** page section ************************* */
.page-section .page-box {
	padding: 30px;
	background: var(--bg-white);
	width: 100%;
	box-shadow: 0 0px 1px 1px rgb(0 0 0 / 19%);
	border-radius: 15px;
}

.page-section .page-title {
	text-align: center;
	padding-bottom: 30px;
}

.page-section .page-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #000;
}

.page-section .page-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.page-section .page-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: var(--tts-buttton-bg);
	bottom: 0;
	left: calc(50% - 20px);
}

/* *********************** page section end************************* */
/*=======login=====modal=====*/
#login-modal-b5 .modal-content {
	background-color: transparent;
	border: none;
}

#login-modal-b5 .modal-offer-banner {
	background: linear-gradient(197.24deg, rgb(194, 212, 255) 16.45%, rgb(251, 241, 255) 39.26%, rgb(234, 243, 243) 59.99%) 0% 0% / cover;
	background-color: #fff;
	border-radius: 20px 0 0 20px;
	overflow: hidden;
	padding: 22px 20px 30px;
	min-height: 100%;
}

#login-modal-b5 .modal-offer-banner .info-item {
	width: 100%;
	margin-bottom: 20px;
	float: left;
}

#login-modal-b5 .modal-offer-banner .info-item i {
	font-size: 20px;
	width: 44px;
	height: 44px;
	background-color: #0003;
	text-align: center;
	line-height: 44px;
	border-radius: 50px;
	transition: all .3s ease-in-out;
	float: left;
	margin-right: 15px;
}

#login-modal-b5 .modal-offer-banner .info-item .info-item-content {
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
	width: 100%;
}

#login-modal-b5 .modal-offer-banner .info-item h4 {
	padding: 0;
	font-size: 17px;
	margin-bottom: 0;
}

#login-modal-b5 .modal-offer-banner .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 12px;
}

#login-modal-b5 .formmodalbox {
	border-radius: 0px 20px 20px 0px;
	overflow: hidden;
	background-color: #fff;
	padding: 30px 30px 30px;
	position: relative;
	min-height: 100%;
	/* box-shadow: var(--box-shadow); */
}

#login-modal-b5 .login-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

#login-modal-b5 .formmodalbox h5 {
	color: #000;
	font-size: 22px;
	margin-bottom: 0;
}

#login-modal-b5 .login-popup form .form-control {
	padding: 10px;
	font-size: 14px;
}

#login-modal-b5 .login-popup form .form-control:focus {
	box-shadow: none !important;
}

#login-modal-b5 .login-popup form .form-error {
	color: #ff0000 !important;
}

#login-modal-b5 .formmodalbox .btn-primary {
	width: 100%;
	height: 44px;
	padding: 13px 13px 13px 13px;
	margin-top: 22px;
	border-radius: 8px;
	background-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	outline: 0px;
	border: 1px solid var(--tts-buttton-bg);
	cursor: pointer;
	font-size: 14px;
}

#login-modal-b5 .login-popup form .btn-primary:hover,
#login-modal-b5 .login-popup form .btn-primary:focus {
	background: var(--tts-buttton-bg1);
	border: 1px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	box-shadow: none;
	outline: 0;
}

/*=======login=====modal end=====*/
.modal .form-select option {
	font-size: 13px;
}

/*======feedback======*/
.feedback-section {
	position: relative;
	padding: 50px 0;
	background: var(--bg-white);
}

.feedback-section .feedback-img {
	height: 100%;
}

.feedback-section .feedback-img img {
	height: 510px;
	width: 100%;
}

.feedback-box {
	box-shadow: 0 0px 1px 1px rgb(0 0 0 / 19%);
	padding: 20px;
	border-radius: 4px;
	background-color: #fff;
	height: 100%;
}

.feedback-box .feedback-btn {
	background: var(--tts-buttton-bg);
	padding: 10px 20px;
	height: auto;
	border-radius: 4px;
	border: 0;
	box-shadow: var(--box-shadow);
	font-size: 14px;
	color: var(--tts-buttton-txt);
	text-transform: uppercase;
}

.feedback-box .feedback-btn:hover {
	color: var(--tts-buttton-txt1);
	background: var(--tts-buttton-bg1);
}

/*======feedback end======*/
/*========trending-hotels ========*/
.newsCard {
	position: relative;
	width: 100%;
	height: auto;
	height: 400px;
	background-color: #fff;
	color: #000;
	overflow: hidden;
	z-index: 1;
}

.newsCard::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .3);
}

figure img {
	display: block;
	object-fit: cover !important;
	object-position: center center !important;
	height: 100%;
	width: 100%;
}

.newsCaption {
	padding: 20px;
	position: absolute;
	top: auto;
	bottom: 50px;
	left: 0;
	width: 100%;
	height: 35%;
	z-index: 10;
	padding: 15px;
	transform: translateY(80%);
	backface-visibility: hidden;
	transition: transform 0.4s;
}

.newsCaption h5.newsCaption-title {
	border-left: 2px solid #fff;
	color: #fff;
	font-size: 18px;
	margin-bottom: 10px;
	padding-left: 12px;
	line-height: 22px;
}

.rating {
	color: #FFE234;
}

.newsCaption-content {
	margin: 0;
	color: #fff;
}

.news-Slide-up .overlay {
	background: rgb(40, 26, 54);
	background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .8) 100%) repeat scroll 0 0;
	display: block;
	position: absolute;
	height: 50px;
	width: 100%;
	bottom: 0;
	z-index: 3;
}

.news-Slide-up:hover .overlay {
	background: rgb(64, 10, 111);
	background: linear-gradient(0deg, rgba(64, 10, 111, 1) 0%, rgba(89, 59, 116, 0) 100%);
}

.news-Slide-up:hover .newsCaption {
	transform: translateY(50%);
}

/*========trending-hotels end========*/
.visa-destination .post-img {
	margin: 0px 0px 15px 0px;
}

.trending-hotels.visa-destination .post-img:before {
	content: none;
}

.trending-hotels.visa-destination article .post-img img {
	height: 150px;
}

.trending-hotels.visa-destination article:hover .post-img img {
	transform: scale(1.0);
}

.trending-hotels.visa-destination article a:hover {
	color: var(--tts-buttton-bg);
}

/*========tourguide=====proflie==============*/
.toutprofile .toutprofilebox {
	border: 1px solid #eaeaea;
	box-shadow: var(--box-shadow);
	border-radius: 0.5rem;
	padding: 2rem 1.5rem;
	background: var(--bg-white);
	position: sticky;
	top: 110px;
}

.toutprofile .toutprofilebox .toutprofileheader {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #eaeaea;
}

.toutprofile .toutprofilebox .toutprofileheader .Title,
.toutprofile .toutprofilebox .toutprofileheader .PersonalTitle {
	font-size: 25px;
	line-height: 2rem;
	margin: 0;
}

.toutprofile .toutprofilebox .toutprofileheader .PersonalTitle {
	font-size: 20px;
}

.toutprofile .toutprofilebox .toutprofileheader .Ratingitem {
	padding: 0;
	line-height: 1rem;
	margin: 1rem 0 1.5rem;
	font-weight: 500;
}

.toutprofile .toutprofilebox .toutprofileheader .Ratingitem .Rating {
	display: inline-block;
	line-height: 1rem;
}

.toutprofile .toutprofilebox .toutprofileheader .Ratingitem .Rating i {
	color: var(--tts-buttton-bg1);
}

.toutprofile .toutprofilebox .toutprofileheader .HostImage .ImageContainer {
	width: 5rem;
	min-width: 5rem;
	height: 5rem;
	min-height: 5rem;
	background: #eaeaea;
	border-radius: 100%;
	overflow: hidden;
}

.toutprofile .toutprofilebox .toutprofileheader .HostImage .ImageContainer .Avatar {
	border-radius: 100%;
	width: 100%;
	height: 100%;
}

.toutprofile .toutprofilebox .ListItem {
	white-space: nowrap;
	line-height: 1.5rem;
	font-size: 1rem;
	margin: 0 0 0.5rem;
}

.toutprofile .toutprofilebox .ListItem i {
	margin-right: 5px;
}

.toutprofile .toutprofilebox .Contactme {
	margin-top: 2rem;
	background: var(--tts-buttton-bg1);
	font-size: 1rem;
	font-weight: 600;
	padding: 0 2rem;
	border-radius: 2.5rem;
	color: #fff;
	line-height: 3rem;
	width: 100%;
	border: none;
}

.toutprofile .toutprofilebox .sharelink {
	padding: 1rem 0 0;
	color: var(--tts-buttton-bg1);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	text-align: left;
	width: 100%;
	text-align: center;
	border: none;
	background: transparent;
}

.toutprofile .toutprofilecontent {
	margin-bottom: 30px;
	border-bottom: 1px solid #dedede;
}

.toutprofile .toutprofilecontent .TitleCardLayout {
	font-size: 1.6875rem;
	line-height: 2rem;
	margin-bottom: 2rem;
}

.toutprofile .toutprofilecontent .toutprofilecontentimg {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	display: block;
	background-color: #fff;
	overflow: hidden;
}

.toutprofile .toutprofilecontent .toutprofilecontentimg .Child {
	width: 100%;
	min-width: 100%;
	max-height: 100%;
	height: 400px;
	object-fit: cover;
}

.toutprofile .toutprofilecontent .readMoreText {
	padding: 15px;
	background: var(--bg-white);
}

.toutprofile .toutprofilecontent .readMoreTextParagraph {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin-bottom: 1rem;
	color: #000;
}

.toutprofile .ContainerCardLayout {
	margin: 1.5rem 0;
	padding: 1.5rem 1rem;
	box-shadow: var(--box-shadow);
	border-radius: 4px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .05);
	background: var(--bg-white);
}

.toutprofile .ContainerCardLayout .AvatarContainer {
	margin-bottom: 2rem;
	background: #eaeaea;
	width: 5rem;
	height: 5rem;
	min-width: 5rem;
	min-height: 5rem;
	border-radius: 100%;
}

.toutprofile .ContainerCardLayout .AvatarContainer .Avatar {
	border-radius: 100%;
	height: 100%;
	width: 100%;
}

.toutprofile .ContainerCardLayout .Title,
.toutprofile .ContainerCardLayout .Explain {
	line-height: 1.5rem;
	font-size: 1rem;
}

.toutprofile .ContainerCardLayout .Explain {
	margin: 1rem 0 2rem;
}

.toutprofile .ContainerCardLayout .Button {
	background: var(--tts-buttton-bg1);
	font-size: 1rem;
	font-weight: 600;
	padding: 0 2rem;
	border-radius: 2.5rem;
	color: #fff;
	height: 3rem;
	min-height: 3rem;
	overflow: hidden;
	border: 0;
	cursor: pointer;
}

.experienceSchedule {
	padding: 2rem 0;
	border-bottom: 1px solid #eaeaea;
}

.experienceSchedule .Title {
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 1rem 0;
	color: var(--tts-buttton-bg1);
}

.experienceSchedule .TitleEnd {
	color: var(--tts-buttton-bg1);
}

.paragraph-22D0b {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	padding-bottom: 1.5rem;
	margin-bottom: 0;
	word-break: keep-all;
}

.experienceScheduleItemsContainer {
	margin-top: 1rem;
	padding-left: 8px;
	position: relative;
}

.experienceScheduleMeetingPoint {
	padding-left: 1.5rem;
	border-left: 3px solid var(--tts-buttton-bg);
	position: relative;
}

.cuisineIcon-11dDf,
.markerIcon-WJqfT {
	position: absolute;
	top: -1px;
	fill: var(--tts-buttton-bg);
}

.markerIcon-WJqfT {
	left: -10px;
}

.experienceScheduleWhenTitle {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1rem;
	padding-bottom: 0.5rem;
}

.experienceScheduleWhat {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	padding-bottom: 2rem;
}

.experienceScheduleItem {
	padding-left: 1.5rem;
	border-left: 3px solid var(--tts-buttton-bg1);
	position: relative;
}

.experienceScheduleItem:before {
	content: "";
	width: 15px;
	height: 15px;
	position: absolute;
	background: var(--tts-buttton-bg1);
	left: -9px;
	top: 0;
	border-radius: 100%;
	border: 3px solid #fff;
}

/*========tourguide=====proflie====end=======*/
/*=======modifysearchform=====*/
.modifysearchform {
	box-shadow: var(--box-shadow);
	background-color: #fff;
	border-radius: 4px;
	padding: 15px;
}

/*=========tourguide==========*/
.activity-card {
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card .card-img-top {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* Card body styling */
.activity-card .activity-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 0.75rem;
}

.activity-card .activity-location {
	font-size: 0.875rem;
	color: #6c757d;
}

.activity-card .rating-row {
	display: flex;
	align-items: center;
}

.activity-card .star-rating .fa-solid {
	margin-right: 2px;
}

.activity-card .activity-price h6 {
	font-size: 20px;
	color: #b50000;
	margin-bottom: 0;
}

.activity-card .activity-price small {
	font-size: 10px;
	display: block;
	color: #6c757d;
}

/* Button styling */
.activity-card .activity-btn {
	font-size: 14px;
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border-radius: 25px;
	text-align: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.activity-card .activity-btn:hover {
	background-color: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	border: 1px solid var(--tts-buttton-bg1);
}

@media (max-width: 768px) {
	.activity-card .card-body {
		padding: 1rem;
	}

	.activity-card .activity-title {
		font-size: 1.125rem;
	}

	.activity-card .activity-price h6 {
		font-size: 1rem;
	}

	.activity-card .activity-btn {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}
}

.experienceCard-details {
	background: #feeddc;
}

.experienceCardAvatar {
	margin-top: -50px;
	margin-bottom: 0.5rem;
	max-height: 4rem;
	position: relative;
	z-index: 2;
	pointer-events: none;
	white-space: nowrap;
	content-visibility: auto;
	contain-intrinsic-size: 4rem;
}

.experienceCardAvatar-img {
	border-radius: 100%;
	border: 3px solid #fff;
	background: #fff;
	width: 4rem;
	height: 4rem;
	display: inline-block;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.experienceCardAvatar-img img {
	border-radius: 100%;
	display: block;
	width: 64px;
	height: 64px;
	object-fit: cover;
}

.experienceCardAvatarSecondAnimate {
	transform: translate(-2.5rem);
	transition: transform .2s ease-in .5s;
	z-index: 0;
}

.experienceCardAvatarLabel {
	background: var(--tts-buttton-bg1);
	color: #fff;
	line-height: 1.5rem;
	border-radius: 1rem;
	padding: 0 1rem;
	font-size: .6875rem;
	font-weight: 600;
	margin-left: -3.5rem;
	vertical-align: top;
	margin-top: 22px;
	display: inline-block;
	box-shadow: var(--box-shadow);
	transition: transform .4s cubic-bezier(.5, -.5, .5, 1.5) .7s;
	transform: scale(0);
	position: relative;
}

.experienceCardAvatarLabelAnimate {
	transform: scale(1);
}

.experienceCard-cityHostTitle {
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.experienceCard-hostName {
	color: var(--tts-buttton-bg1);
}

.experienceCard-experienceTitle {
	font-size: 20px;
}

.experienceCard-experienceTitle a.ExperienceLink {
	color: #000;
}

.tourguide-box .tourguide-body .Label-xfcdo {
	font-size: 20px;
	font-weight: 600;
}

.tourguide-box .tourguide-body .Label-xfcdo1 {
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 500;
}

.ExperienceItemDetails {
	font-size: .6875rem;
	line-height: 1.5rem;
	display: block !important;
	margin-top: auto;
}

.Rating-OD72C {
	display: inline-block;
	line-height: 1rem;
}

.ExperienceCardLabels {
	margin-top: 10px;
	overflow: hidden;
}

.ExperienceLabel {
	font-size: 14px;
	letter-spacing: .5px;
	background: rgba(0, 0, 0, .4);
	color: #fff;
	border-radius: 40px;
	padding: 0 0.5rem 0 0.375rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	display: block;
	margin-bottom: 7px;
}

.CategoryLabel {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
}

.CategoryLabel:hover {
	background: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}

/* .ExperienceLink {
color: #000;
font-size: 14px;
} */
.ExperienceLabel .fa-solid {
	width: 10px;
	height: 10px;
	line-height: 10px;
	color: inherit;
	margin-right: 10px;
	font-size: 14px;
}

/*=========tourguide-details======*/
.tourguidedetail {
	padding: 2rem 1.5rem;
	border-radius: 0.5rem;
	min-width: 350px;
	background: #fff;
	box-shadow: var(--box-shadow);
}

.tourguide-details .tourguidedetail ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 12px;
}

.tourguide-details .tourguidedetail ol li a {
	color: #000;
}

.tourguide-details .tourguidedetail ol li+li {
	padding-left: 10px;
}

.tourguide-details .tourguidedetail ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #000;
	content: ">";
}

.tourguide-details .tourguidedetail .MediaContainer {
	margin-bottom: 30px;
}

.tourguide-details .tourguidedetail .MediaContainer .carousel img {
	height: 400px;
	object-fit: cover;
	width: 100%;
}

.tourguide-details .tourguidedetail-title {
	font-size: 25px;
}

.HostInformation {
	padding: 1rem 0;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
}

.HostInformation .FlexWrapper {
	display: flex;
	align-items: center;
}

.HostInformation .InformationContainer .PersonalizeText {
	display: block;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 14px;
}

.HostInformation .InformationContainer .AvatarContainer .HostAvatar .HostAvatarImage {
	border-radius: 50%;
	width: 80px;
	height: 80px;
}

.HostInformation .InformationContainer .Details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.HostInformation .InformationContainer .Details .Information {
	margin: 0rem 1rem;
}

.tourguide-details .tourguidedetail ul.experienceCategoriesList {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tourguide-details .tourguidedetail ul.experienceCategoriesList li.experienceCategoriesListItem {
	line-height: 1.5rem;
	padding: 0.5rem 0;
	color: #4a4a4a;
	float: left;
	width: 33.33%;
}

.tourguide-details .tourguidedetail ul.experienceCategoriesList li.experienceCategoriesListItem i {
	padding-right: 0.5rem;
	text-align: center;
	color: var(--tts-buttton-bg1);
}

.tourguide-details .tourguidedetail .categoryInclusionsContainer p {
	font-weight: 600;
	font-size: 16px;
	padding: 1rem 0;
}

.HostInformation .Title {
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 1rem 0;
	color: var(--tts-buttton-bg1);
}

.HostInformation ul.List {
	padding: 0;
	margin: 0;
	list-style: none;
}

.HostInformation ul.List li.ListItem {
	line-height: 1.5rem;
	padding: 0.5rem 0;
	color: #4a4a4a;
	float: left;
	width: 33.33%;
}

.HostInformation ul.List li.ListItem i {
	line-height: 1rem;
	padding-right: 0.5rem;
	text-align: center;
	color: var(--tts-buttton-bg1);
}

.tourguide-details .BookBlock {
	padding: 2rem 1.5rem;
	border-radius: 0.5rem;
	background: #fff;
	box-shadow: var(--box-shadow);
}

.tourguide-details .BookBlock .BookPricing {
	font-size: 1.25rem;
	line-height: 1.5rem;
	padding-bottom: 0.5rem;
}

.tourguide-details .BookBlock .experiencePrice,
.tourguide-details .BookBlock .experienceTimer {
	font-size: 18px;
	line-height: 1.5rem;
	color: var(--tts-buttton-bg1);
	font-weight: 600;
}

.tourguide-details .BookBlock .experienceTimer {
	font-size: 14px;
	font-weight: 400;
}

.tourguide-details .BookBlock .Rating {
	padding-bottom: 1.5rem;
	font-weight: 500;
	font-size: .6875rem;
	line-height: 1rem;
}

.tourguide-details .BookBlock .Rating i {
	color: var(--tts-buttton-bg1);
	margin-right: 2px;
	vertical-align: baseline;
}

.tourguidedetail-form .popover-content {
	padding: 2rem 1.5rem;
	border-radius: 0.5rem;
	min-height: 200px;
	overflow: auto;
	background: #fff;
	box-shadow: var(--box-shadow);
}

.tourguidedetail-form .popover-content .form-group {
	margin-bottom: 1rem;
}

.tourguidedetail-form .tts_traveller__counter_span {
	border: 1px solid #dedede;
	width: 130px;
	text-align: center;
	font-size: 1rem;
}

.tourguidedetail-form .popover-content .btn-primary {
	background: #000000;
	color: #ffffff !important;
	border: none;
	z-index: 1 !important;
}

.tourguidedetail-form .popover-content .btn-primary:hover {
	background: var(--tts-buttton-bg1);
	color: #ffffff;
}

.tourguidedetail-form .popover-content .btn-block {
	display: block;
	width: 100%;
}

.tourguidedetail-item {
	margin-bottom: 30px;
}

.tourguidedetail-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 50%;
	float: left;
}

.tourguidedetail-item h4 {
	font-size: 15px;
	margin-left: 60px;
	font-weight: bold;
}

.tourguidedetail-item h4 a {
	color: #111111;
	transition: 0.3s;
}

.tourguidedetail-item p {
	display: block;
	margin-left: 60px;
	font-style: italic;
	font-size: 14px;
	color: #aaaaaa;
}

.tourguide-details .BookBlock .btnselect {
	color: #fff;
	background: var(--tts-buttton-bg1);
	max-height: 3.5rem;
	min-height: 3.5rem;
	font-size: 1rem;
	line-height: 1rem;
	margin: 0;
	padding: 0 2rem;
	border-radius: 2.5rem;
	border: 1px solid transparent;
	font-weight: 600;
	transition: .3s ease;
	width: 100%;
}

.tourguide-details .BookBlock .btnselect:hover {
	background-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-bg1);
}

/*========= tourguide details end ======*/
.breadcrumbsitem ul li {
	margin-bottom: 0.5rem;
	font-size: 12px;
	color: #212221;
	font-weight: 400;
	cursor: pointer;
}

.breadcrumbsitem ul li a {
	color: #212221;
}

.breadcrumbsitem ul li:after {
	margin-left: 5px;
}

.breadcrumbsitem ul li:not(:last-child):after {
	content: ">";
}

.breadcrumbsitem ul li:last-of-type {
	color: #212221;
}

.tourName,
.tourNameWrapper {
	width: 100%;
}

.tourName h1 {
	align-items: center;
	font-size: 22px;
	font-weight: 800;
	margin: 0;
}

.tourName h1 span:first-child {
	margin-right: 10px;
}

.tourDays {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	margin-right: 12px !important;
}

.tourDays {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	margin-right: 12px !important;
}

.priceNDates .priceDateConteiner .price-box {
	text-align: right;
	padding-right: 20px;
	min-width: 130px;
	width: calc(100% - 100px);
}

.deals-box {
	text-align: right;
	min-height: 22px;
	margin-top: -6px;
}

.holiday_details .deals-box .deal {
	display: inline-block;
	font-size: 12px;
	line-height: 10px;
	color: #5CAC33;
	vertical-align: middle;
	text-transform: uppercase;
}

.holiday_details .price-box p {
	font-size: 10px;
	line-height: 15px;
	color: #5f5f5f;
	margin-top: 3px;
	margin-bottom: 0;
}

.holiday_details .price-box span.price-discounted {
	font-size: 22px;
	font-weight: 800;
	line-height: 22px;
	color: #000;
	margin-top: 5px;
}

.holiday_details .selectDate {
	width: 200px;
	text-align: right;
}

.holiday_details .selectDate .btn-primary {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border: none;
	border-radius: 5px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	font-size: 13px;
	line-height: 18px;
	padding: 10px 20px;
	height: 40px;
	display: inline-block;
	transition: .3s all ease;
	width: 100%;
}

.package-photos #carouselExampleIndicators img {
	display: block;
	width: 100%;
	height: 400px;
	margin: 0 auto;
	border-radius: 10px;
	object-fit: cover;
}

.package-details-links {
	height: 45px;
	position: sticky;
	top: 0;
	width: 100%;
	border-bottom: 1px solid #ddd;
	background: #fff;
}

.package-details-links ul {
	width: 100%;
	display: flex;
	align-items: center;
	height: 100%;
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-y: auto;
	scrollbar-color: #747474 #dcdcdc;
	scrollbar-width: thin;
	white-space: nowrap;
}

.package-details-links .package-detail-link {
	display: inline-block;
	height: 100%;
}

.package-details-links .package-detail-link.active {
	position: relative;
}

.package-details-links .package-detail-link a {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 14px;
	color: #595959;
	padding: 0 10px;
	font-weight: 400;
	text-decoration: none;
}

.package-details-links .package-detail-link.active a {
	color: var(--tts-buttton-bg1);
}

.package-details-links .package-detail-link.active:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 3px;
	background: var(--tts-buttton-bg1);
}

ul.timeline {
	list-style-type: none;
	position: relative;
	padding-left: 1.5rem;
}

ul.timeline:before {
	content: ' ';
	background: var(--tts-buttton-bg1);
	display: inline-block;
	position: absolute;
	left: 5px;
	width: 4px;
	height: 100%;
	z-index: 400;
	border-radius: 1rem;
}

li.timeline-item {
	margin: 20px 0;
}

li.timeline-item::before {
	content: ' ';
	background: #fff;
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	border: 3px solid var(--tts-buttton-bg1);
	left: 0px;
	width: 14px;
	height: 14px;
	z-index: 400;
	box-shadow: var(--box-shadow);
}

/* .timeline-arrow {
border-top: 0.5rem solid transparent;
border-right: 0.5rem solid #c7c7c7;
border-bottom: 0.5rem solid transparent;
display: block;
position: absolute;
left: 2rem;
} */
li.timeline-item.active .timelinedate,
li.timeline-item.active .timelinetitle {
	color: var(--tts-buttton-bg1);
}

.i-inclusions ul {
	padding: 0;
}

.i-inclusions ul li {
	display: inline-block;
	font-weight: 600;
	font-size: 13px;
	color: #212220;
	padding: 10px;
	background: #F5F5F5;
	border-radius: 3px;
	margin-bottom: 10px;
	list-style: none;
	width: calc(100% - 0px);
}

.i-inclusions ul li i {
	margin-right: 10px;
}

.tourdetails {
	margin-top: 20px;
}

.tourdetails h2 {
	font-size: 18px;
	margin-bottom: 20px;
}

.PriceCalenderbox {
	border-radius: 10px 10px;
	background: #fff;
	overflow: hidden;
	padding: 15px;
}

.PriceCalenderbox h3 {
	font-size: 17px;
	text-align: center;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.PriceCalenderbox h4 {
	font-size: 15px;
}

.PriceCalenderbox .fc-basic-view .fc-body .fc-row {
	height: auto !important;
}

.tourdetails .nav {
	padding: 0;
	border-bottom: 0;
	list-style: none;
}

.tourdetails .nav .nav-item .nav-link {
	position: relative;
	display: inline-block;
	text-align: left;
	font-size: 14px;
	color: var(--tts-buttton-txt1);
	font-weight: 400;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	border-radius: 10px 10px 0 0;
	margin-right: 8px;
	background: var(--tts-buttton-bg1);
	width: 100%;
}

.tourdetails .nav .nav-item .nav-link.active {
	border-left: transparent;
	color: var(--tts-buttton-txt);
	background: var(--tts-buttton-bg);
}

.tourdetails .tab-content {
	border-top: 2px solid var(--tts-buttton-bg) !important;
	border-radius: 0 0 10px 10px;
	background: #fff;
	overflow: hidden;
	padding: 15px;
	border: 1px solid #dedede;
}

.tourdetails .list-item {
	font-size: 14px;
	color: #000;
	font-weight: 400;
	margin-top: 12px;
	padding-left: 15px;
	position: relative;
}

.tourdetails .package-section-list.bullet li:before {
	width: 6px;
	height: 6px;
	position: absolute;
	background: #1BB55C;
	left: 0;
	top: 8px;
	content: "";
	border-radius: 100%;
}

.tourdetails .package-section-list.exclusion-table li:before {
	background: #E82F2F;
}

.tourdetails .package-section-list.blackbullet li:before {
	background-color: var(--tts-buttton-bg1);
}

.tourdetails .GwMit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 36px;
	background: rgb(255, 255, 255);
	margin-left: auto;
	border: 1px solid #ced4da;
}

.tourdetails .GwMit .change-col {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: var(--tts-buttton-bg1);
	color: var(--white);
}

.tourdetails .GwMit .field-input22 {
	width: 40px !important;
	font-size: 13px;
	text-align: center;
	border: 0;
}

.packageIncludeNActions .packageInclude h2 {
	font-size: 14px;
	padding-bottom: 0;
}

.packageIncludeNActions .includeList {
	text-align: center;
	margin-top: 10px;
	overflow-y: auto;
	scrollbar-color: #747474 #dcdcdc;
	scrollbar-width: thin;
	width: 100%;
	white-space: nowrap;
	display: flex;
}

.packageIncludeNActions .includeList>div {
	margin-right: 20px;
	margin-bottom: 5px;
	float: left;
}

.packageIncludeNActions .includeList .iconsHolder {
	width: 40px;
	height: 40px;
	position: relative;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 40px;
}

.packageIncludeNActions .includeList .iconsHolder i {
	position: relative;
	z-index: 2;
}

.packageIncludeNActions .includeList .iconsHolder:after {
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 1;
	background: linear-gradient(180deg, #000000 0%, rgb(9 105 146) 100%);
	border-radius: 100%;
	content: "";
	opacity: .15;
}

.packageIncludeNActions .includeList span {
	font-size: 12px;
	color: #212121;
	display: block;
	margin-top: 5px;
	white-space: nowrap;
}

.userInfoWrapper {
	width: 100%;
	position: absolute;
	padding: 17px 17px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	border-radius: 10px;
	position: relative;
	margin-top: 30px;
}

.reviewInfo {
	padding-bottom: 15px;
}

.box-header {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}

/* .reviewInfo .roomsBox,
.reviewInfo .departureBox {
margin-top: 15px;
} */
.reviewInfo .label {
	font-size: 14px;
	color: #595959;
	min-width: 70px;
	line-height: 18px;
}

.reviewInfo .value {
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	color: #2122214d;
}

.reviewBody .departureBox {
	margin-top: 15px !important;
	width: 100%;
	position: relative;
}

.reviewInfo .value.submittedValue {
	color: #212221;
	margin-top: 5px;
	font-weight: 400;
}

.package-landing .price {
	padding: 12px 0 0px;
	border-top: 1px dashed #9D9D9D;
	margin-top: 14px;
}

.priceValueBox .actualPrice {
	font-size: 18px;
	color: #5cac33;
	font-weight: 700;
}

.priceValueBox .note {
	font-size: 10px;
	color: #595959;
	font-weight: 600;
	text-align: right;
	line-height: 10px;
}

.proceedingPatch {
	margin: 17px -17px -32px -17px;
	background: var(--tts-buttton-bg1);
	padding: 15px;
	border-radius: 0 0 10px 10px;
	color: var(--tts-buttton-txt1);
}

.userInfoWrapper .btn-primary {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border: none;
	border-radius: 5px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	font-size: 13px;
	line-height: 18px;
	padding: 10px 20px;
	height: 40px;
	display: block;
	transition: .3s all ease;
}

/*=========tourguide-details End======*/
.holiday_box {
	border-radius: 5px;
	padding: 0;
}

.holiday_box .holiday_image {
	border-radius: 5px;
	background-color: #c2c2c2;
	position: relative;
	height: 100%;
}

.holiday_box .holiday_image img {
	height: 100%;
	width: 100%;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	object-fit: cover;
}

.holiday_box .package-details {
	height: 100%;
	padding: 20px 0;
	position: relative;
	word-wrap: break-word;
}

.holiday_box .package-details .package-naming-container {
	display: flex;
	align-items: start;
	justify-content: space-between;
	flex-direction: column;
	height: 100%;
}

.holiday_box .package-details .package-naming-container .package-name {
	margin: 0px 0 10px;
	font-size: 17px;
}

.holiday_box .package-details .package-naming-container .package-seller-duration {
	margin-bottom: 15px;
	width: 100%;
	clear: both;
	word-break: break-word;
}

.holiday_box .package-details .package-naming-container .package-seller-duration .package-duration {
	border-radius: 4px;
	height: 25px;
	border: 1px solid #e4e4e4;
	display: inline-block;
	width: 110px;
	text-align: center;
	font-size: .75rem;
	line-height: 25px;
	margin-right: 15px;
	color: #666;
}

.holiday_box .package-details .package-naming-container .package-destination-itenary {
	margin-bottom: 15px;
}

.holiday_box .package-details .package-naming-container .package-destination-itenary .package-destinations {
	display: inline;
	font-weight: bold;
	border-right: 1px solid #000;
	padding-right: 5px;
	margin-right: 5px;
}

.holiday_box .package-details .package-naming-container .package-destination-itenary .package-destinations:last-child {
	border: 0;
}

.holiday_box .package-details .package-naming-container .package-inclusions {
	width: 100%;
}

.package-inclusions ul {
	list-style: none;
	overflow-y: auto;
	scrollbar-width: thin;
	width: 100%;
	display: flex;
}

.package-inclusions ul li {
	text-transform: capitalize;
	font-size: 12px;
	color: #333;
	text-align: center;
	padding: 0 15px;
	border: 0;
}

.package-inclusions ul li:first-child {
	padding-left: 0;
}

.package-inclusions ul li:last-child {
	padding-right: 0;
}

.package-inclusions ul li .icon-top {
	width: 100%;
	margin: 0;
}

.package-inclusions ul li .include-icon {
	font-size: 20px;
}

.package-inclusions ul li .icon-name {
	font-size: 12px;
	margin: 0;
}

.holiday_box .package-price-container {
	padding: 20px;
	height: 100%;
	background: #f9f9f9;
	border-radius: 5px;
}

.holiday_box .package-price-container .price-container {
	text-align: right;
	width: 100%;
}

.holiday_box .package-price-container .price-container .pricing-box {
	width: 100%;
}

.holiday_box .package-price-container .price-container .pricing-box .actual-price,
.holiday_box .package-price-container .price-container .pricing-box .final-price {
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: bold;
	margin: 0;
}

.holiday_box .package-price-container .price-container .pricing-box .actual-price {
	font-size: 12px;
	color: #999;
	line-height: 24px;
	text-decoration: line-through;
}

.holiday_box .package-price-container .price-container p.twin {
	font-size: 12px;
	color: #999;
}

.holiday_box .package-price-container .price-container .button-holder {
	width: 100%;
}

.holiday_box .package-price-container .price-container .button-holder .viewDetails,
.holiday_box .package-price-container .price-container .button-holder .enquireNow {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border: 1px solid var(--tts-buttton-bg);
	border-radius: 3px;
	min-width: 100%;
	padding: 10px 15px;
	font-size: 14px;
}

.holiday_box .package-price-container .price-container .button-holder .enquireNow {
	background: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	border: 1px solid var(--tts-buttton-bg1);
	margin-top: 10px;
	font-size: 12px;
}

.holiday_box .package-price-container .price-container .button-holder .viewDetails:hover {
	box-shadow: 0 5px 14px 0 rgb(9 105 146 / 41%);
}

.holiday_box .package-price-container .price-container .button-holder .enquireNow:hover {
	box-shadow: 0 5px 14px 0 rgb(23 56 146 / 41%);
}

/*======result page start=========*/
.resultpage {
	border-radius: 4px;
	transition: all 0.5s ease 0s;
	background-color: var(--bg-white);
	position: relative;
	height: 100%;
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.resultpage .pricebg {
	background-color: #f7f7f7;
	padding: 10px;
	border-left: 1px solid rgb(223, 210, 191);
	height: 100%;
	display: flex;
	align-items: end;
	justify-content: space-between;
	flex-direction: column;
}

/* .resultpage .pricebg .seattext {
font-size: 13px;
} */
.resultpage h5 {
	font-size: 18px;
}

.resultpage h5 span {
	font-size: 14px;
	font-weight: 400;
}

.resultpage h5 span.duration {
	border: 1px dotted #dedede;
	padding: 5px;
	font-size: 12px;
	border-radius: 5px;
}

.resultpage .dashed-line {
	border-bottom: 2px dashed #d1d1d1;
	flex-grow: 1;
	display: flex;
	margin: 0 0.5rem;
}

.resultpage h5 a {
	font-size: 13px;
	font-weight: 400;
	color: #000;
}

.resultpage .trav-busdetail {
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid rgb(223, 210, 191);
}

.resultpage .trav-busdetail .businfo {
	position: relative;
}

.resultpage .trav-busdetail .businfo a {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	position: relative;
}

.resultpage .trav-busdetail .businfo a[data-bs-toggle].collapsed:after {
	font-family: "FontAwesome";
	font-weight: 900;
	content: "\f078";
	color: #444444;
	position: absolute;
	right: -18px;
	font-size: 12px;
}

.resultpage .trav-busdetail .businfo a[data-bs-toggle]:not(.collapsed):after {
	font-family: "FontAwesome";
	font-weight: 900;
	content: "\f077";
	color: #444444;
	position: absolute;
	right: -18px;
	font-size: 12px;
}

.resultpage h5.price {
	font-size: 20px;
}

.resultpage h5.price .pricetext {
	font-size: 13px;
}

.resultpage .booknow_btn {
	padding: 0.375rem 0.75rem;
	font-size: 14px;
	background-color: var(--tts-buttton-bg);
	text-transform: capitalize;
	border-radius: 4px;
	color: var(--tts-buttton-txt);
	border: 1px solid var(--tts-buttton-bg);
	margin-top: 10px;
}

.resultpage .booknow_btn:hover {
	border: 1px solid var(--tts-buttton-bg1);
	background-color: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}

.tts__flight__wrapper__box {
	background: #fff;
	padding: 10px;
}

.date-slider {
	background-color: var(--bg-white);
}

.date-slider .btndate {
	border-radius: 0 !important;
	border-radius: initial !important;
	background-color: #fff;
	color: #444;
	border: transparent;
	border-right: 1px solid #f2f2f2;
}

.date-slider .btndate:hover {
	border: transparent;
	color: var(--tts-buttton-bg);
}

.date-slider .btndate.active {
	background-color: var(--tts-buttton-bg);
	color: var(--white);
}

.resultpage ul li .additional-info,
.resultpage ul li .amenitieslist {
	margin-right: 10px;
}

.service-rating {
	border: 1px solid transparent;
	border-radius: 0.3125rem;
	display: inline-flex;
	font-size: 12px;
	overflow: hidden;
	width: auto;
}

.service-rating div.highRating {
	background-color: #61b00f;
	min-width: fit-content;
	padding: 2px 6px;
}

.service-rating div:first-child {
	color: #fff;
}

.service-rating div:nth-child(2) {
	background-color: #f8f8f8;
	color: #b0b0b0;
	min-width: fit-content;
	padding: 2px 6px;
}

.resultpage ul li .amenitieslist {
	display: flex;
	align-items: center;
}

.resultpage ul li .amenitieslist i.fa-solid {
	margin-left: 5px;
	font-size: 14px;
	color: var(--tts-buttton-bg);
}

.resultpage ul li .amenitieslist .btn.btn-amenities {
	border-radius: 50%;
	margin-left: 0.5rem;
	padding: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	background: var(--tts-buttton-bg1);
	color: var(--white);
	font-size: 12px;
}

/* result page end */
/*flight result page */
.flight-rowmain {
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	padding: 10px;
	margin-left: 0;
	width: 100%;
	background-color: #fff;
}

.flight-rowmain .flight-leftresult .airline-name {
	display: flex;
}

.flight-rowmain .flight-leftresult img {
	width: 28px;
	height: 28px;
	margin-right: 5px;
}

.flight-rowmain .flight-leftresult h5 {
	font-size: 15px;
}

.flight-rowmain .flight-leftresult h5 span {
	font-size: 13px;
	color: #848f91;
	font-weight: normal;
}

.flight-rowmain .flight-leftresult h5 span.label-warning {
	padding: 0px 5px;
	border-radius: 0;
	background: #f3e6bb;
	color: #876e1e;
	font-size: 12px;
}

.flight-rowmain .flight-leftresult .flight-city,
.flight-rowmain .flight-leftresult .flight-stop,
.flight-rowmain .flight-leftresult .fa-long-arrow-right {
	margin-bottom: 5px;
}

.flight-rowmain .flight-leftresult .flight-durtion {
	margin-top: 5px;
}

.flight-rowmain .flight-leftresult .fa-long-arrow-right {
	color: #848f91;
}

.flight-rowmain .flight-radiolist li .baggage-icons {
	margin-right: 5px;
	margin-left: 5px;
	font-size: 12px;
	cursor: pointer;
}

/*flight result page end */
@media only screen and (min-width: 200px) and (max-width: 768px) {

	.topbar .contact-info a,
	.topbar .contact-info i span {
		font-size: 12px !important;
	}

	.search-check {
		margin-right: 5px !important;
		margin-bottom: 10px !important;
	}

	.search-check label {
		font-size: 13px !important;
	}

	.search-check label {
		padding: 0px 8px !important;
	}

	.searchform_home .search_tabs li {
		width: 25%;
	}

	.searchform_home .search_tabs li a:last-child {
		margin: 0 !important;
	}

	.searchform_home .search_tabs li a {
		padding: 10px !important;
	}

	.searchform_home .search_tabs li a span i {
		margin: 0 0 10px 0 !important;
		display: block;
		font-size: 16px !important;
	}

	.searchform_home .search_tabs {
		font-size: 12px !important;
	}

	.modalsearchform .makeflex .search_filters {
		overflow: auto;
		width: 100%;
		white-space: nowrap;
	}

	.modalsearchform .makeflex span {
		width: 92px;
		line-height: 1;
	}

	/*.hotal-filter-card ul li{
margin-bottom: 10px;
}*/
	.hotal-filter-card ul li:last-child {
		margin-bottom: 0;
	}

	.mobile-flex {
		display: flex;
		align-items: center !important;
		justify-content: space-between;
		flex-direction: row !important;
	}

	.flight-viewbtn {
		margin-top: 0;
	}

	.flight-list-tab .nav-tabs {
		overflow: auto;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.hotal-filter-card ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.hotal-filter-card ul li h5 {
		font-size: 14px;
		text-align: center;
	}

	.flightDetailWrapper .flightLeftWrapper .flightHeadWrap p,
	.head_name span,
	.flightDetailWrapper .flightLeftWrapper .flightBookDetail h4 {
		font-size: 14px !important;
	}

	.flightDetailWrapper .flightLeftWrapper .flightBookDetail .flightPoint a.farerule-btn {
		padding: 6px 10px !important;
	}

	.route-section .routebox .route-list i {
		float: none !important;
		margin-bottom: 10px;
	}

	.route-section .routebox .route-list h4 {
		margin: 0 !important;
		font-size: 13px;
		font-weight: 500;
	}

	.home_heading h2 {
		font-size: 20px !important;
	}

	.priceNDates .priceDateConteiner .price-box,
	.holiday_details .selectDate,
	.i-inclusions ul li {
		width: 100% !important;
		padding: 0 !important;
	}

	.package-photos #carouselExampleIndicators img {
		height: 250px !important;
	}

	.tourdetails .nav .nav-item .nav-link {
		margin-right: 0;
		margin-bottom: 10px;
		border-radius: 0;
	}

	.gallery-box .carousel-item img {
		height: 250px !important;
	}

	.gallery-box .carousel-indicators--thumbnails {
		height: auto;
	}

	.gallery-box .carousel-indicators--thumbnails li img {
		height: 80px !important;
		width: 80px !important;
		margin-bottom: 0;
		margin-right: 3px;
	}

	.gallery-box .carousel-indicators--thumbnails li {
		display: table-cell;
	}

	.resultpage .pricebg {
		align-items: center;
		flex-direction: row;
	}

	.resultpage .booknow_btn {
		margin-top: 0;
	}

	.gallery-box .section-one:last-child {
		border-bottom: 0;
	}
}

.modal .GwMit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 36px;
	background: rgb(255, 255, 255);
	margin-left: auto;
	border: 1px solid #ced4da;
}

.modal .GwMit .change-col {
	width: 36px;
	height: 36px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: var(--tts-buttton-bg1);
	color: var(--white);
}

.modal .GwMit .field-input22 {
	background: whitesmoke;
	width: 40px !important;
	font-size: 13px;
	text-align: center;
	border: 0;
	border-radius: 0;
}

.sidebar-toggle {
	display: flex;
	position: fixed;
	top: 85%;
	right: 15px;
	padding: 0px 5px;
	align-items: center;
	width: auto;
	height: 34px;
	text-transform: uppercase;
	line-height: 36px;
	color: var(--topbar-txt-color);
	border: 1px solid #dfdfdf;
	background: var(--tts-buttton-bg);
	cursor: pointer;
	z-index: 99;
	width: 80px;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
}

.modify-toggle {
	top: 80% !important;
	background: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}

.sidebar-toggle.modify-toggle svg {
	stroke: var(--tts-buttton-txt1);
	fill: var(--tts-buttton-txt1);
}

.sidebar-toggle svg {
	stroke: var(--tts-buttton-txt);
	fill: var(--tts-buttton-txt);
	width: 20px;
	display: block;
}

@media (min-width: 992px) {
	.sidebar-toggle {
		display: none;
	}

	.close-btn {
		display: none;
	}
}

/*=======career====start==========*/
.Career-banner {
	background: #fff;
	/*    background: linear-gradient(90deg, rgb(246 220 10) 0%, rgb(0 0 0) 100%);*/
	padding: 30px 0 35px;
}

.Career-banner #carouselExampleIndicators .carousel-item img {
	height: 300px;
}

.Career-banner h1 {
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 20px;
	color: #000;
}

.Career-banner p {
	color: rgba(0, 0, 0, 0.6);
	font-size: 16px;
}

.Career-banner .btn-get-started {
	font-size: 12px;
	padding: 6px 20px;
	margin-top: 25px;
	background: var(--tts-buttton-bg1);
	color: #fff;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	display: inline-block;
	transition: .3s all ease;
}

.Career-list {
	border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.Career-list ul.nav {
	justify-content: center;
}

.Career-list ul.nav li {
	margin-left: 80px;
}

.Career-list ul.nav li a {
	font-size: 14px;
	letter-spacing: .03em;
	color: #212220;
	padding: 20px 0 20px;
}

.Career-list ul.nav li a.active {
	border-bottom: 3px solid var(--tts-buttton-bg);
}

.job-listing {
	padding: 50px 0;
}

.job-listing .job-item {
	box-shadow: var(--box-shadow);
	padding: 16px 16px;
	transition: all ease-in-out 0.4s;
	background: #fff;
	margin-bottom: 30px;
	border-radius: 10px;
	cursor: pointer;
}

.job-listing .job-item .job-location {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: .05em;
}

.job-listing .job-item .job-title {
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	color: var(--tts-buttton-bg1);
	min-height: 40px;
}

.job-listing .job-item .job-item-action {
	margin-top: 14px;
}

.job-listing .job-item .job-item-action span {
	display: flex;
	justify-content: flex-start;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: .05em;
	color: #212220;
	text-transform: capitalize;
	word-break: break-word;
}

.job-listing .job-item .job-item-action span i {
	margin-right: 5px;
}

.job-listing .job-item .job-item-action .careerbtn {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.job-listing .job-item .job-item-action .action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	color: #212221;
	background: #e7e7e7;
	cursor: pointer;
	transition: transform .25s ease-in-out .25s;
}

.job-listing .job-item .job-item-action .action-btn svg {
	fill: #595959;
	width: 12px;
}

.job-listing .job-item:hover {
	transform: translateY(-2px);
}

.job-listing .job-item:hover .job-item-action .action-btn {
	transform: translate(3px);
}

.filter-wrap {
	position: -webkit-sticky;
	position: sticky !important;
	top: 100px;
	padding: 30px;
	background: #FFFFFF;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
}

.filter-wrap .filter-wrap-head {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #E9E9E9;
}

.filter-wrap .filter-wrap-head h3 {
	font-size: 18px;
	line-height: 23px;
	color: #212220;
	font-weight: 600;
	margin-bottom: 0;
}

.filter-wrap .filter-wrap-head a {
	font-weight: 600;
	font-size: 14px;
	line-height: 23px;
	text-decoration-line: underline;
	color: var(--tts-buttton-bg1);
}

.filter-wrap .filter-user-inputs .accordion .card {
	border: none;
}

.job-listing:not(#a) .filter-wrap .filter-user-inputs .card .card-header {
	display: flex;
	justify-content: space-between;
	background: transparent;
	padding: 0;
	height: 50px;
	align-items: center;
	border-bottom: none;
}

.filter-wrap .filter-user-inputs .accordion .card .card-header .card-title {
	margin-bottom: 0;
	font-weight: 600;
	color: #000;
}

.filter-wrap .filter-user-inputs .accordion .card-header:after {
	font-family: 'FontAwesome';
	content: "\f067";
	float: right;
}

.filter-wrap .filter-user-inputs .accordion .card .card-body {
	padding-top: 20px;
	padding-left: 0;
	padding-right: 0;
	border-top: 1px solid rgba(0, 0, 0, .125);
}

.filter-wrap .filter-user-inputs .accordion .card-header.collapsed:after {
	content: "\f068";
}

.filter-wrap .filter-user-inputs .accordion .card .card-header:last-child {
	padding: 0 0px 0px !important;
	margin-bottom: 0px !important;
}

.filter-wrap .filter-user-inputs .accordion .card .card-body .form-check-label {
	font-size: 13px;
}

/*=======career====end==========*/
/*=======career====details========start==========*/
.career-details {
	margin-top: 0;
	padding: 80px 0;
	min-height: 198px;
	background: linear-gradient(90deg, rgb(246 220 10) 0%, rgb(0 0 0) 100%) !important;
}

.j-action-head {
	margin-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #D8D8D8;
	line-height: 1;
}

.j-action-head a {
	color: var(--tts-buttton-bg1);
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	line-height: 1;
}

.j-action-head a svg {
	transform: rotate(-180deg);
	margin-right: 8px;
	fill: var(--tts-buttton-bg1);
}

.u-wrap h2 {
	position: relative;
	font-weight: 600;
	font-size: 18px;
	line-height: 23px;
	color: #212221;
	margin-bottom: 10px;
	margin-top: 30px;
}

.j-details-body ul {
	padding-left: 17px;
}

.j-details-body p,
.j-details-body li {
	font-size: 14px;
	line-height: 22px;
	color: #212221;
}

.input-fields {
	width: 100%;
	padding: 20px 50px;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
	margin: 0 0 0 auto;
	background: #FFFFFF;
}

.input-fields p,
.success-block p {
	margin-bottom: 7px;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0;
	color: #595959;
}

.input-fields .error-note,
.success-block .error-note {
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: .03em;
	color: #e82f2f;
	margin-bottom: 18px;
}

.negative .u-wrap {
	position: relative;
	padding-bottom: 30px;
}

.negative .u-wrap .form-group .form-control,
.negative .u-wrap .form-group .form-select {
	padding: 10px 16px;
	height: auto;
	margin-bottom: 10px;
}

.negative .u-wrap .form-group small {
	display: block;
	font-size: 10px;
	line-height: 18px;
	color: #5f5f5f;
	font-weight: 400;
	margin-top: 8px;
}

.actions {
	margin-top: 12px;
}

.actions .btn-primary,
.actions .btn-secondary {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border: none;
	border-radius: 5px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	line-height: 18px;
	padding: 10px 20px;
	height: 40px;
	display: inline-block;
	transition: .3s all ease;
	width: 100%;
}

.actions .btn-secondary {
	background: #FFFFFF;
	color: #212221;
	border: 1px solid #9D9D9D;
}

.actions .btn-secondary:hover {
	text-decoration: none;
	color: #212221;
	background: #E8E8E8;
}

.actions .btn-primary:hover {
	text-decoration: none;
	color: var(--tts-buttton-txt1);
	background: var(--tts-buttton-bg1);
}

@media (min-width: 1200px) {
	.negative .u-wrap {
		margin-top: -164px;
		position: relative;
	}
}

/*=====roundtrip======*/
.roundtrip-box {
	box-shadow: var(--box-shadow);
	background-color: #fff;
	border-radius: 4px;
}

.roundtrip-box img {
	margin-right: 5px;
	width: 20px;
	height: 20px;
}

.roundtrip-box h5 {
	font-size: 14px;
}

.roundtrip-box span {
	font-weight: normal;
	font-size: 12px;
}

.roundtrip-box .dropdown-menu {
	padding: 0;
}

.roundtrip-box .dropdown-menu .dropdown-item {
	font-size: 12px;
}

.roundtrip-box .dropdown-menu .dropdown-item:hover {
	color: var(--tts-buttton-bg);
}

.roundtrip-box .tts__airline__name a {
	font-size: 12px;
	color: #000;
}

.roundtrip-box span.DatetTime {
	display: block;
}

.roundtrip-box ul li {
	margin-bottom: 10px;
}

.roundtrip-box span.filghtprice {
	font-size: 15px;
}

.roundtrip-box .btn-view {
	color: var(--tts-buttton-txt);
	background: var(--tts-buttton-bg);
	font-size: 12px;
	padding: 5px 10px;
	margin: 0;
	border-radius: 4px;
	transition: 0.3s;
}

/*=======car========*/
.elementor img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

[class*=gradient-overlay-half]::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	transition: all .2s ease-in-out;
}

.gradient-overlay-half-bg-gradient-v5::before {
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.gradient-overlay-half-bg-gradient-v5::before {
	background: linear-gradient(to top, #131313 6%, rgba(19, 19, 19, 0.2) 72%, rgba(34, 34, 34, 0) 89%, rgba(44, 44, 44, 0) 100%);
	z-index: 0;
}

.holiday_details_modal .promo-img,
.content-text {
	width: 50%;
}

.holiday_details_modal .promo-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

@media (max-width: 991px) {
	.mobile-sidebar {
		transform: translate(0px) !important;
		display: block !important;
	}

	.mobile-sidebar .close-btn i {
		display: block;
	}

	.filter-toggle {
		display: none;
		transform: translate(-420px);
		position: fixed;
		top: 0px;
		bottom: 0px;
		left: 0px;
		width: 100%;
		padding: 20px;
		margin: 0px;
		transition: transform 0.2s ease-in-out 0s;
		background-color: rgb(209, 209, 209);
		z-index: 9999;
		height: 100%;
		overflow: auto;
	}

	.close-btn i {
		position: absolute;
		top: 5px;
		right: 5px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		background-color: var(--tts-buttton-bg);
		border-radius: 50px;
		color: var(--topbar-txt-color);
		box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px 0px;
		z-index: 99;
		cursor: pointer;
		display: none;
	}

	.flightDetailWrapper .flightLeftWrapper .continuePayment .btn,
	.flightDetailWrapper .flightLeftWrapper .continuePayment .btn-link {
		margin-bottom: 30px;
	}

	.mobile-flex {
		display: flex;
		align-items: end;
		flex-direction: column;
	}

	.holiday_box {
		height: 100%;
	}

	.holiday_box .holiday_image img {
		border-radius: 0;
	}

	.holiday_box .package-details {
		padding: 0 20px;
	}

	.holiday_box .package-price-container {
		border-radius: 0;
	}

	.holiday_box .package-price-container .price-container {
		float: none;
	}

	.holiday_box .package-price-container .price-container .pricing-box {
		float: none;
	}

	.package-inclusions ul {
		display: flex;
		overflow-y: auto;
		scrollbar-color: #747474 #dcdcdc;
		scrollbar-width: thin;
		white-space: nowrap;
	}

	.holiday_box .package-price-container .price-container .button-holder .enquireNow {
		margin-top: 0;
	}

	.holiday_box .package-price-container .price-container .button-holder .viewDetails,
	.holiday_box .package-price-container .price-container .button-holder .enquireNow {
		min-width: 120px;
	}

	.holiday_box .package-price-container .price-container p.twin {
		float: none;
	}
}

/*====web cheakin=====*/
.web_check .card {
	text-align: center;
	padding: 30px;
}

.web_check .card .image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	overflow: hidden;
	margin: 0 auto 20px auto;
}

.web_check .card .image img {
	height: 100%;
	width: 100%;
	border-radius: 50%;
}

.web_check .card .btn-outline-primary {
	padding: 10px 30px;
	font-size: 14px;
	border-radius: 30px;
	font-weight: 600;
	margin: 20px auto 0 auto;
	background-color: transparent;
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-bg);
	width: 150px;
}

.web_check .card .btn-outline-primary:hover,
.web_check .card .btn-outline-primary:focus {
	background-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	box-shadow: none;
}

/*======loading======*/
.listing-loader-block {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	height: 100vh;
	padding: 50px 0;
}

.tts-loading-box {
	text-align: center;
	background: var(--bg-white);
	border: 1px solid #dedede;
	padding: 20px 20px;
	border-radius: 10px;
}

.spinner-grow,
.spinner-border {
	width: 20px;
	height: 20px;
}

/********************************************************flight result Page*****************************************************************/
.content {
	padding: 60px 0;
}

.content .card {
	margin-bottom: 1.5rem;
	background-color: #FFF;
	transition: all 0.5s ease-in-out;
	border-radius: 10px;
	border: 1px solid #E4EBF1;
	box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
	color: inherit;
}


.banner-form .form-info {
	border: 1px solid #E4EBF1;
	border-radius: 4px;
	width: 100%;
}

.banner-form .form-info .form-item {
	flex: 1;
	text-align: left;
	padding: 8px;
	border-left: 1px solid #E4EBF1;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	flex-direction: column;
	cursor: pointer;
}

.banner-form .form-info .form-item:first-child {
	border-left: 0;
}

.banner-form .form-info .form-item .form-label {
	font-size: 14px;
	font-weight: 500;
	color: #292323;
	margin-bottom: 5px;
}

.banner-form .form-info .form-item .form-control {
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	min-height: 32px;
}

.banner-form .form-info .form-item .flight_text_p {
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 157px;
	display: inline-block;
	overflow: hidden;
}

.banner-form .form-info .form-item.dropdown h5 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.banner-form .form-info .form-item.dropdown h5 span.fs-14 {
	font-size: 14px;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu.dropdown-xl {
	min-width: 600px;
	width: 100%;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu {
	padding: 20px;
	max-height: 300px;
	overflow-y: auto;
}

.banner-form .info-item {
	padding: 20px;
	border-radius: 5px
}

.banner-form .form-info .form-item.dropdown .dropdown-menu h5 {
	font-size: 20px;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu h5 span {
	font-weight: 400;
	font-size: 14px;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu h6 {
	font-size: 16px;
	font-weight: 500;
}

.custom-increment .input-group {
	border: 1px solid #dee2e6;
	border-radius: 40px;
}

.custom-increment .input-group .btn-number {
	width: 32px;
	height: 32px;
	align-items: center;
	display: flex;
	justify-content: center;
	background-color: #E4EBF1;
	border: 1px solid #E4EBF1;
	color: #111827;
	border-radius: 40px;
	padding: 9px 16px;
	font-size: 14px;
	transition: all 0.5s;
	font-weight: 500;
}

.custom-increment .input-group .input-number {
	border: 0;
	flex: 1;
	text-align: center;
	color: #111827;
	font-size: 14px;
}

.banner-form .search-btn {
	padding: 20px;
	margin-left: 24px;
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
}

.banner-form .search-btn:hover,
.banner-form .search-btn:focus,
.banner-form .search-btn.focus,
.banner-form .search-btn:active,
.banner-form .search-btn.active {
	background-color: var(--tts-buttton-bg1);
	border: 1px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	box-shadow: none;
}

.banner-form .info-item .form-check-label {
	font-size: 14px;
}

.content .login-bg-info {
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border-radius: 10px;
}

.content .login-bg-info .btn.btn-white {
	background-color: var(--tts-buttton-bg1);
	border-color: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	border-radius: 40px;
	transition: all 0.5s;
	font-weight: 500;
}

.banner-form .form-info .form-item .way-icon {
	position: absolute;
	top: 50%;
	left: 0;
	background: #CF3425;
	color: #FFF;
	box-shadow: 0 1px 1px rgba(207, 52, 37, 0.5);
	padding: 0.25rem 0.45rem;
	text-transform: capitalize;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.banner-form .form-info {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 575.98px) {
	.banner-form .form-info {
		flex-direction: column;
	}

	.banner-form .form-info .form-item {
		width: 100%;
		border-left: none;
		border-bottom: 1px solid #E4EBF1;
		padding-bottom: 10px;
	}

	.banner-form .form-info .form-item .way-icon {
		left: 50px;
		top: -10px;
	}
}

@media (max-width: 767.98px) {
	.banner-form .form-info .form-item.dropdown .dropdown-menu.dropdown-xl {
		min-width: 100%;
	}
}

@media (max-width: 991.98px) {
	.banner-form .form-info {
		flex-wrap: wrap;
		margin-bottom: 16px;
	}

	.banner-form .form-info .form-item {
		flex: 1 1 auto;
	}

	.banner-form .form-info .form-item:nth-child(odd) {
		border-left: none;
	}

	.banner-form .search-btn {
		width: 100%;
		margin: 0;
		padding: 12px;
	}
}

@media (min-width: 992px) {
	.banner-form .form-info {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 10px;
	}

	.banner-form .form-info .form-item {
		flex: 1;
		border-left: 1px solid #E4EBF1;
	}

	.banner-form .search-btn {
		width: auto;
	}
}

.flight-booking-item {
	padding: 20px 20px 20px 20px;
	margin-bottom: 1.5rem;
	background-color: #FFF;
	transition: all 0.5s ease-in-out;
	position: relative;
	border-radius: 10px;
	border: 1px solid #E4EBF1;
	box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
	color: inherit;
}

.flight-booking-wrapper {
	display: flex;
	justify-content: space-between;
}

.flight-booking-item .flight-booking-content {
	display: flex;
	align-items: center;
}

.flight-booking-item .flight-booking-airline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.flight-booking-item .flight-airline-img {
	width: 50px;
	padding: 5px;
	border-radius: 10px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .05);
}

.flight-booking-item .flight-airline-img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.flight-booking-item .flight-booking-airline h5 {
	font-size: 16px;
	margin: 0;
}

.flight-booking-item .flight-booking-airline h5 span {
	font-size: 14px;
	font-weight: normal;
	display: block;
}

.flight-booking-item .flight-booking-time .start-time,
.flight-booking-item .flight-booking-time .end-time {
	display: flex;
	align-items: center;
	gap: 12px;
}

.flight-booking-item .flight-booking-time .start-time-text,
.flight-booking-item .flight-booking-time .end-time-text {
	color: #292323;
	font-weight: 700;
	font-size: 16px;
	margin: 0;
}

.flight-booking-item .flight-destination,
.flight-booking-item .flight-booking-time .start-Depart-text {
	color: #292323;
	font-weight: 500;
	margin: 0;
}

.flight-booking-item .flight-booking-time {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flight-booking-item .start-time-icon {
	font-size: 25px;
	color: #292323;
}

.flight-booking-item .flight-stop {
	text-align: center;
}

.flight-booking-item .flight-stop-number {
	color: #292323;
	font-weight: 500;
}

.flight-booking-item .flight-stop-arrow {
	margin-top: 5px;
	border-top: 2px solid #292323;
	position: relative;
	width: 140px;
}

.flight-booking-item .flight-stop-arrow::before {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 10px 10px 0 0;
	border-color: #292323 transparent transparent transparent;
	right: -1.5px;
	top: -10px;
	transform: scaleY(-1);
}

.flight-booking-item .flight-has-stop::after {
	content: "\e122";
	position: absolute;
	left: 50%;
	top: -15px;
	font-family: "Font Awesome 6 Pro";
	color: #292323;
	font-weight: bold;
}

.flight-booking-item .flight-booking-return .flight-has-stop::after {
	top: -16px;
}

.flight-booking-item .flight-booking-duration .duration-text {
	color: #292323;
	font-weight: 700;
}

.flight-booking-item .price-info {
	margin-bottom: 15px;
}

.flight-booking-item .price-info .price-amount {
	color: #b50000;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.flight-booking-item .price-info .discount-price {
	margin-right: 5px;
	color: #292323;
}

.flight-booking-item .price-info .price-amount .badge-sm {
	font-size: 10px;
	font-weight: normal;
}

.flight-booking-item .flight-booking-price {
	padding-left: 30px;
	text-align: left;
	border-left: 1px solid rgba(0, 0, 0, .05);
	height: 100%;
}

.flight-booking-item .flight-booking-price .theme-btn {
	padding: 7px 18px;
	font-size: 14px;
	color: var(--tts-buttton-txt);
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	border-radius: 10px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	border: none;
	background: var(--tts-buttton-bg);
	box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
	z-index: 1;
}

.flight-booking-item .flight-booking-price .theme-btn i {
	margin-left: 5px;
}

.flight-booking-item .flight-booking-return {
	margin-top: 20px;
}

.flight-booking-item .flight-booking-return .flight-stop-arrow::before {
	right: unset;
	left: -1.5px;
	top: -9.6px;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent #292323 transparent;
	transform: scaleY(1);
}

.flight-booking-detail {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

.flight-booking-detail-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flight-booking-detail-header p {
	color: #292323;
	margin: 0;
}

.flight-booking-detail-header a {
	color: #292323;
	font-weight: 500;
}

.flight-booking-detail-wrapper {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

.flight-booking-detail-wrapper .nav-tabs .nav-item .nav-link {
	font-weight: 500;
	color: #292323;
	border: none;
	border-bottom: 2px solid transparent;
}

.flight-booking-detail-wrapper .nav-tabs .nav-link.active {
	border-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-bg);
}

/* 
.flight-booking-detail-left .flight-booking-airline {
margin-top: 15px;
margin-bottom: 35px;
} */
/* .flight-booking-detail-left .flight-booking-content {
margin-top: 20px;
} */
.flight-booking-detail-left .flight-airline-model {
	color: #292323;
	font-weight: 500;
	font-size: 14px;
	display: block;
}

.flight-booking-detail-left .flight-airline-class {
	color: #292323;
	font-weight: 500;
}

.flight-booking-detail-left .flight-full-date {
	font-size: 14px;
	color: #292323;
	font-weight: 500;
	margin: 0;
}

.flight-booking-detail-left .flight-destination {
	font-size: 13px;
	display: block;
}

.flight-booking-detail-left .flight-stop-arrow {
	width: 100px;
	margin: auto;
}

.flight-booking-detail-right {
	position: relative;
	height: 100%;
	padding-bottom: 65px;
}

.flight-booking-detail-info {
	padding-top: 15px;
}

.flight-booking-detail-info .table {
	color: #292323;
}

.flight-booking-detail-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	background: rgba(113, 103, 255, .1);
	border-radius: 0 0 5px 0;
	left: 0;
	bottom: 0;
	padding: 8px 18px;
	border-radius: 7px;
}

.flight-detail-price-amount {
	color: #F96768;
	font-weight: 600;
	font-size: 18px;
}

.flight-booking-policy ul li {
	font-size: 14px;
	margin: 6.1px 0;
	color: #292323;
}

.layover {
	padding: 5px 15px;
	border-radius: 20px;
	background-color: #f8f8f8;
	border: 1px dashed #ccc;
	font-size: 14px;
	font-weight: bold;
	color: #1a1a1a;
	position: relative;
	margin: 15px auto;
	text-align: center;
	max-width: 300px;
}

.flight-booking-content:last-child div.layover {
	display: none;
}

.layover::before,
.layover::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 180px;
	height: 1px;
	border: 1px dashed #ccc;
}

.layover::before {
	left: -190px;
}

.layover::after {
	right: -190px;
}

.layover-label {
	color: #002147;
}

.layover-time {
	color: #e60000;
}

@media (max-width: 992px) {

	.layover::before,
	.layover::after {
		width: 100px;
	}

	.layover::before {
		left: -110px;
	}

	.layover::after {
		right: -110px;
	}
}

@media (max-width: 576px) {

	.layover::before,
	.layover::after {
		display: none;
	}
}

/* flight booking grid */
.flight-grid .flight-booking-wrapper {
	flex-direction: column;
}

.flight-grid .flight-booking-item .flight-booking-content {
	justify-content: space-between;
}

.flight-grid .flight-booking-info {
	width: 100%;
}

.flight-grid .flight-booking-item .flight-booking-price {
	border-left: 0;
	padding-left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: unset;
	width: 100%;
	margin-top: 30px;
}

.flight-grid .flight-booking-item .price-info {
	margin-bottom: 0;
}

.flight-grid .flight-booking-airline {
	flex-direction: column;
}

.flight-grid .flight-booking-detail-left .flight-booking-airline {
	flex-direction: row;
}

.flight-grid .flight-booking-detail-info .flight-airline-img {
	width: 50px;
}

.flight-grid .flight-booking-item .flight-airline-img img {
	width: 100%;
}

.flight-grid .flight-booking-item .flight-booking-content {
	flex-direction: column;
	gap: 20px;
}

.flight-grid .flight-booking-item .flight-booking-return {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

.flight-grid .flight-booking-detail-left .flight-booking-detail-info {
	padding-bottom: 30px;
}

@media all and (max-width: 1199px) {
	.flight-booking-wrapper {
		flex-direction: column;
	}

	.flight-booking-item .flight-booking-content {
		justify-content: space-between;
	}

	.flight-booking-info {
		width: 100%;
	}

	.flight-booking-item .flight-booking-price {
		border-left: 0;
		padding-left: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		text-align: unset;
		width: 100%;
		margin-top: 30px;
	}

	.flight-booking-item .price-info {
		margin-bottom: 0;
	}

	.flight-booking-item .price-info span {
		font-size: 12px;
	}

	.flight-booking-detail-left .flight-booking-detail-info {
		padding-bottom: 30px;
	}
}

@media all and (max-width: 767px) {
	.flight-booking-detail-info .flight-booking-airline {
		flex-direction: row;
	}

	.flight-booking-detail-info .flight-airline-img {
		width: 50px;
	}

	.flight-booking-item .flight-airline-img img {
		width: 100%;
	}

	.flight-booking-item .flight-booking-content {
		flex-direction: column;
		gap: 20px;
	}

	.flight-booking-item.roundtrip-item .flight-booking-content {
		gap: 10px;
	}

	.flight-booking-item.roundtrip-item .flight-booking-time {
		flex-direction: column;
		gap: 10px;
	}

	.flight-booking-item.roundtrip-item .flight-stop-arrow {
		margin: auto;
	}

	.flight-booking-item.roundtrip-item .flight-booking-time .start-time,
	.flight-booking-item.roundtrip-item .flight-booking-time .end-time,
	.flight-booking-item.roundtrip-item .flight-booking-airline {
		justify-content: center;
	}

	.flight-booking-item.roundtrip-item .flight-booking-price {
		margin-top: 10px;
	}

	.flight-booking-item .flight-stop-number {
		font-size: 13px;
	}

	.flight-booking-item .flight-stop-arrow {
		width: 100px;
	}

	.flight-booking-item .start-time-icon {
		font-size: 20px;
	}

	.flight-booking-item .flight-booking-time .start-time-text,
	.flight-booking-item .flight-booking-time .end-time-text {
		font-size: 13px;
	}

	.flight-booking-item .flight-destination {
		font-size: 12px;
	}

	.flight-booking-item .flight-booking-return {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid rgba(0, 0, 0, .05);
	}

	.flight-booking-item .flight-booking-price .theme-btn {
		font-size: 12px;
		padding: 3px 6px;
	}

	.flight-booking-item .flight-destination,
	.flight-booking-item .flight-booking-time .start-Depart-text {
		font-size: 13px;
	}

	.flight-booking-item .price-info .price-amount {
		font-size: 16px;
	}

	.flight-booking-detail-wrapper .nav-tabs .nav-item .nav-link {
		padding: 5px 10px;
		font-size: 13px;
	}

	.flight-booking-detail-info .flight-booking-time .start-time {
		justify-content: center;
		text-align: center;
	}

	.flight-booking-detail-info .flight-booking-time .end-time {
		text-align: center;
		justify-content: center;
	}
}

/*=======filter=======*/
.booking-sidebar {
	margin-bottom: 1.5rem;
	background-color: #FFF;
	transition: all 0.5s ease-in-out;
	position: relative;
	border-radius: 10px;
	border: 1px solid #E4EBF1;
	box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
	color: inherit;
}

.booking-sidebar .widget {
	background: #fff;
	padding: 20px 15px;
	border-bottom: 1px solid #e8e8e8;
}

.booking-sidebar .widget:last-child {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom: none;
}

.booking-sidebar .widget.filters {
	background-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 15px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.booking-sidebar .widget.filters .title {
	font-size: 14px;
	margin-bottom: 0;
	text-transform: capitalize;
	text-align: center;
	color: var(--tts-buttton-txt);
}

.booking-sidebar .widget.filters a {
	color: var(--tts-buttton-txt);
	font-size: 13px;
}

.booking-sidebar .widget .widget-title {
	font-size: 14px;
	color: #000;
	padding-bottom: 10px;
}

.booking-sidebar .widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.booking-sidebar .widget ul li {
	margin-bottom: 5px;
}

.booking-sidebar .widget .fa-star {
	color: #efb400;
}

.price_slider_amount {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.price_slider_amount>span {
	font-size: 15px;
	color: #000;
	text-transform: capitalize;
	margin-right: 5px;
}

.price_slider_amount>input[type="text"] {
	height: auto;
	margin-left: 0;
	text-align: left;
	width: 100px;
	border: none;
	font-size: 14px;
	color: #000;
	font-weight: 600;
}

.price_filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
	background: #ebebee none repeat scroll 0 0;
	border: medium none;
	border-radius: 0;
	height: 6px;
	margin-bottom: 20px;
	width: 95%;
	padding: 0;
}

.price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
	height: 20px;
	width: 20px;
	top: 0;
	margin-top: -7px;
	background: #ebebee;
	border-radius: 50px;
	margin-left: -1px;
	border: 5px solid var(--tts-buttton-bg1);
}

.price_filter .ui-slider .ui-slider-range {
	background-color: var(--tts-buttton-bg1);
}

.booking-sidebar .promoOffersContent {
	font-size: 14px;
}

.booking-sidebar .flight-time .form-check {
	padding: 10px 15px 10px 38px;
	border-radius: 8px;
	background: rgb(143 143 143 / 10%);
}

.booking-sidebar .form-check {
	margin-bottom: 10px;
}

.booking-sidebar .form-check-input {
	margin-top: 6px;
	box-shadow: none;
	border-color: #292323;
}

.booking-sidebar .form-check-label {
	width: 100%;
	color: #292323;
}

.booking-sidebar .flight-time .form-check-label img {
	border-left: 1px solid rgba(0, 0, 0, .1);
	padding-left: 12px;
	margin-left: 5px;
	margin-right: 5px;
	width: 30px;
}

.booking-sidebar .widget .airline-logo {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
	padding: 5px;
	float: right;
}

.booking-sidebar .widget .airline-logo img {
	width: 100%;
	border-radius: 10px;
	height: 100%;
}

/*=======filter End=======*/
.content .payment-btn {
	padding: 12px 24px;
	font-size: 16px;
	color: var(--tts-buttton-txt);
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	border-radius: 10px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	border: none;
	background: var(--tts-buttton-bg);
	box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
	z-index: 1;
}



/* Promo Options List */
.content .promo-options {
	padding: 0;
	margin: 0;
}

.content .promo-options .promoList {
	margin-top: 10px;
}

.content .promo-options .promoList input[type="radio"]:checked+div {
	color: #0d6efd;
	font-weight: 600;
}

.content .promo-options .form-check-input {
	margin-top: 6px;
	cursor: pointer;
}

.content .promo-options .form-check-label {
	display: inline-block;
	border: 1px dashed #02CB66;
	padding: 3px 10px;
	color: #02CB66;
}

.content .promo-options .promoList p {
	margin: 0;
	color: #999;
}

@media (max-width: 768px) {
	.content .promo-options .promoList {
		flex-direction: column;
		align-items: flex-start;
		padding: 8px;
	}
}

.transfer-section .card .card-img-top {
	height: 200px;
	transition: all 0.5s ease-in;
	overflow: hidden;
	object-fit: cover;
}

.transfer-section .card:hover .card-title {
	color: var(--tts-buttton-bg);
}

.transfer-section.card-body {
	flex: 1 1 auto;
	padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
	color: var(--bs-card-color);
}

.transfer-section.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.value-container {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: Arial, sans-serif;
}

.flight-booking-item.roundtrip-item {
	padding: 10px;
}

.flight-booking-item.roundtrip-item .flight-booking-airline h5 {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-booking-time .start-time-text,
.flight-booking-item.roundtrip-item .flight-booking-time .end-time-text {
	font-size: 12px
}

.flight-booking-item.roundtrip-item .flight-destination,
.flight-booking-item.roundtrip-item .flight-booking-time .start-Depart-text {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-stop {
	font-size: 12px;
}

.flight-booking-info .flight-indicator-content {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-booking-price {
	border: 0;
}

.flight-booking-item.roundtrip-item .price-info .price-amount {
	font-size: 15px;
}

.flight-booking-item.roundtrip-item .flight-booking-price .ars-lastre {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-booking-detail {
	margin-top: 10px;
	padding-top: 5px;
}

.flight-booking-item.roundtrip-item .flight-booking-detail-header a {
	font-size: 12px;
}

.sorting-list a {
	font-size: 14px;
}

.flight-booking-item.roundtrip-item .flight-stop-arrow {
	width: 100px;
}

.flight-booking-item.roundtrip-item .flight-booking-airline h5 span,
.flight-booking-item.roundtrip-item .flight-booking-detail-left .flight-airline-model {
	display: inline;
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .price-info .price-amount {
	display: block;
}

.flight-booking-item.roundtrip-item .flight-airline-img {
	width: 40px;
}

.flight-booking-item.roundtrip-item .layover::before,
.flight-booking-item.roundtrip-item .layover::after {
	display: none;
}

.flight-booking-item .flight-booking-content {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .layover {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-booking-time .flight-full-date {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .AirlineRemark {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-booking-detail-info {
	font-size: 12px;
}

.flight-booking-item.roundtrip-item .flight-booking-detail-wrapper .nav-tabs .nav-item .nav-link {
	font-size: 12px;
}

/********************************************************Hotel result Page*****************************************************************/
.hotel-list .hotel-item {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.hotel-list .hotel-item .hotel-img {
	position: relative;
	width: 280px;
	flex-shrink: 0;
	height: 250px;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
}

.hotel-list .hotel-item .hotel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
	transition: all 0.3s ease-out 0s;
}

.hotel-list .hotel-item .hotel-img .Recommended{
	position: absolute;
    z-index: 5;
    left: -8px;
    top: 15px;
    background-image: linear-gradient(to right, var(--tts-buttton-bg), var(--tts-buttton-bg1));
    width: 130px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.hotel-list .hotel-item .hotel-content {
	flex: 1;
	position: relative;
	padding: 20px 15px 10px 15px;
}

.hotel-list .hotel-item .hotel-content p {
	margin: 8px 0;
	font-weight: 500;
}

.hotel-list .hotel-item .hotel-content .hotel-text-btn a {
	padding: 8px 15px;
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border-radius: 40px;
	transition: all 0.5s;
	font-weight: 500;
	font-size: 14px;
	box-shadow: none;
	display: inline-block;
}

.hotel-list .hotel-item .hotel-content .hotel-text-btn a:hover {
	background-color: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	border: 1px solid var(--tts-buttton-bg1);
}

.hotel-list .hotel-item .hotel-content .hotel-amenities {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hotel-list .hotel-item .hotel-content .hotel-amenities li {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	transition: all 0.3s ease-in-out;
}

.hotel-list .hotel-item .hotel-content .hotel-amenities .tts_hotel_amenities_icon {
	border-radius: 50%;
	border: 1px solid #ddd;
	width: 35px;
	height: 35px;
	margin-right: 8px;
	transition: transform 0.3s ease-in-out;
	padding: 5px;
}

/* Icon Hover Effect */
.hotel-list .hotel-item .hotel-content .hotel-amenities li:hover .tts_hotel_amenities_icon {
	transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 600px) {
	.hotel-list .hotel-item .hotel-content .hotel-amenities {
		gap: 8px;
	}

	.hotel-list .hotel-item .hotel-content .hotel-amenities li {
		font-size: 12px;
		padding: 6px 10px;
	}

	.tts_hotel_amenities_icon {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 767px) {
	.hotel-list .hotel-item {
		display: block;
	}

	.hotel-list .hotel-item .hotel-img {
		width: 100%;
		border-radius: 10px 10px 0 0;
	}

	.hotel-list .hotel-item .hotel-img img {
		border-radius: 10px 10px 0 0;
	}
}

.service-wrap {
	position: relative;
}

.service-wrap .slider-wrap {
	position: relative;
}

.service-wrap img {
	border-radius: 10px;
	object-fit: cover;
}

.service-wrap .slider-wrap .service-img img {
	height: 400px;
}

.service-wrap .slider-nav-thumbnails img {
	height: 120px;
}

.service-wrap .slider-nav-thumbnails .owl-item {
	position: relative;
}

.service-wrap .slider-nav-thumbnails .owl-item.current::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgb(181 0 0 / 34%);
	border-radius: 10px;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.service-wrap .view-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 9;
	background-color: #FFF;
	border: 1px solid #FFF;
	color: #111827;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
}

.service-wrap .view-btn:hover {
	background-color: #111827;
	color: #FFF;
	border-color: #111827;
}

.service-wrap .nav-center .owl-nav button {
	width: 35px;
	height: 35px;
	font-size: 14px;
	color: #111827;
	background: #FFF !important;
	text-shadow: none;
	cursor: pointer;
	border: none;
	border-radius: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.service-wrap .nav-center .owl-nav button.owl-prev {
	left: 18px;
}

.service-wrap .nav-center .owl-nav button.owl-next {
	right: 18px;
}

.service-wrap .nav-center .owl-nav button:hover {
	background: #111827 !important;
	color: #FFF;
}

.content .card .btn-primary {
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border-radius: 40px;
	transition: all 0.5s;
	font-weight: 500;
	font-size: 14px;
	box-shadow: none;
}


.content .avatar i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	font-weight: 500;
	flex-shrink: 1;
	border-radius: 50%;
	margin-right: 5px;
}


.content .card .duration {
	position: relative;
	border: 1px solid #E4EBF1;
	background-color: #ffffff;
	border-radius: 30px;
	color: #555;
	font-size: 12px;
	font-weight: 500;
	min-width: 70px;
	padding: 5px 20px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: default;
	z-index: 1;
}

.content .card .duration::before {
	position: absolute;
	content: "";
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	right: 0;
	border: 1px solid #E4EBF1;
	width: 150px;
	z-index: -1;
}