@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import "./node_modules/swiper/swiper";
@import "./node_modules/swiper/modules/effect-fade/effect-fade";
:root{
	--blue:#1A2E62;
	--darkgreen: #005763;
	--green:#427880;
    --lightgreen: #5DB085;
	--parrot:#88BC5C;
	--orange: #CE7221;
	--darkgray:#525252;
}

.saira{
	font-family: 'Saira Semi Condensed', sans-serif;
}
.lato{
	font-family: 'Lato', sans-serif;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:100%;
	overflow-x: hidden;
}
body {
	font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 22px;
	font-weight: 400;
	color: var(--blue);
}


input:focus, textarea:focus, button:focus {	outline:0;	border:0;}

a{
	color: #000;
}


a, a:hover{
	text-decoration: none;
}

ul,li,h1,h2,h3,h4,h5,h6 {
	/* list-style-type:none; */
	margin:0;
	padding:0
}

img{
	max-width: 100%;
}

p:last-child{
	margin: 0;
}

input:not([type=checkbox]):not([type=radio]):not([type=submit]), textarea, select {
    width: 100%;
    box-shadow: inset 0px -1px 58px #968C8C19;
	border: 1px solid #C3C3C3;
	border-radius: 7px;
	color: #525252;
	font-size: 16px;
	line-height: 20px;
	padding: 10px 20px;
	font-family: 'Saira Semi Condensed', sans-serif;
}

/*------------------------------------*\
    		WRAPPER CSS
\*------------------------------------*/
.container{
	max-width: 1200px;
	margin: 0 auto;
}



/*------------------------------------*\
    		BUTTON CSS
\*------------------------------------*/
.custom-btn{
	display: inline-block;
	padding: 10px 30px;
	border-radius: 30px;
    border: 1px solid var(--lightgreen);
	background: var(--lightgreen);
	color: #fff ;
	font-weight: 500;
	font-family: 'Saira Semi Condensed', sans-serif;
	position: relative;
	overflow: hidden;
	transition: all .2s linear;
}

.custom-btn:hover{
	/* box-shadow: inset 20.5em 0 0 0 var(--darkgreen); */
	/* border-color: var(--darkgreen); */
	background-color: var(--darkgreen) !important;
}

.site-form .custom-btn:hover {
    box-shadow: inset 50.5em 0 0 0 var(--darkgreen);
}

.checkout-tab .site-form .custom-btn:hover {
color: #fff !important;

}

/*------------------------------------*\
		TYPOGRAPHY FONT CSS
\*------------------------------------*/
.light{	    font-weight:300; }
.regular{	font-weight:400; }
.medium{	font-weight:500; }
.semibold{	font-weight:600; }
.bold{	    font-weight:700; }
.extrabold{	font-weight:800; }

.fs-50    {     font-size: 50px;	line-height: 58px;}
.fs-40    {     font-size: 40px;	line-height: 48px;}
.fs-32    {     font-size: 32px;	line-height: 48px;}
.fs-30    {     font-size: 30px;	line-height: 45px;}
h2        {	    font-size: 28px;	line-height: 40px;}
h3, .fs-24{ 	font-size: 24px;	line-height: 32px;}
h4, .fs-18{		font-size: 18px;	line-height: 22px;}
h5, .fs-16{		font-size: 16px;	line-height: 20px;}
h6, .fs-14{		font-size: 14px;	line-height: 17px;}
.fs-20    {		font-size: 20px;    line-height: 24px;}
.fs-22    {		font-size: 22px;    line-height: 28px;}
.fs-12    {		font-size: 12px;    line-height: 15px;}


.rounded-20{	border-radius: 20px;}
.rounded-15{	border-radius: 15px;}
.rounded-10{	border-radius: 10px;}

/*------------------------------------*\
		TEXT COLOR CSS
\*------------------------------------*/
.text-orange{	color: var(--orange);}
.text-darkgreen {	color: var(--darkgreen);}
.text-green {	color: var(--green);}
.text-lightgreen {	color: var(--lightgreen);}
.text-parrot {	color: var(--parrot);}
.text-darkgray  {  color: var(--darkgray); }
.text-red{   color: #FA1A1A; }

/*------------------------------------*\
    		FORM CSS
\*------------------------------------*/
input:focus, select:focus{
	outline:none;
}

input[type=checkbox]{
	width: 15px;
	min-width: 15px;
	height: 15px;
	accent-color: var(--lightgreen);
}
input[type='radio']{
	width: 15px;
	height: 15px;
	accent-color: var(--parrot);

}

textarea{
	resize: none;
}

/*------------------------------------*\
    		HEADER CSS
\*------------------------------------*/
.top-header{
	background-color: var(--darkgreen);
}
.bottom-header a{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.bottom-header a span.number{
	position: absolute;
	top: -11px;
	left: 30px;
	right: 0px;
	width: 23px;
    height: 19px;
    font-size: 13px;
	line-height: 19px;
	background: #C2F0D8 0% 0% no-repeat padding-box;
	border-radius: 4px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.bottom-header h4 span, .bottom-header .sign-in{
	color: #A7A7A7;
}
.bottom-header .header-btn i, .bottom-header .header-btn .head-icon{
	height: 45px;
	min-width: 45px;
	width: 45px;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bottom-header .header-btn .head-icon img {
    width: 27px;
	height: 20px;
    object-fit: contain;
}

.nav_area{
	position: relative;
	z-index: 2;
}
.nav_area ul li a{
	font-size: 18px;
	line-height: 24px;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
}
.addcart-dropdown {
	min-width: 340px;
	box-shadow: 0px 3px 20px #00000029;
	border: 1px solid #E8E8E8;
}
.addcart-dropdown .cart-product img {
    max-width: 80px;
    height: 80px;
}

/*------------------------------------*\
    		FOOTER CSS
\*------------------------------------*/
.footer-top{
	background-color: #033C45;
	color: #f4f4f4;
}
ul.footer-menu li a{
	font-size: 18px;
	line-height: 20px;
	color: #f4f4f4;
	padding-bottom: 24px;
	display: inline-block;
	font-family: 'Saira Semi Condensed', sans-serif;

}

/*------------------------------------*\
    		MAIN CSS
\*------------------------------------*/
.home-slider:after {
    content: '';
    display: block;
    width: 100%;
    height: 180px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, #F6F8FA00 0%, #F6F8FA 100%) 0% 0% no-repeat padding-box;
    background-position: bottom center;
}

.banner-item:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/banner-overlay.png) no-repeat center;
	background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-item img {
    height: auto;
    object-fit: cover;
    min-height: 600px;
}

.slider-content h2{
	font-size: 74px;
	line-height: 80px;
}


.section-experience {  
    margin-top: -40px;

}

.experience-item{
	border-radius: 32px;
	transition: all .5s ease;
	box-shadow: 0px 0px 20px #0000002B;
	margin: 20px 20px;
}

.experience-item hr{
	border-top: 3px solid #9BB8BC;
	width: 40px;
	opacity: 1;
}

.experience-item:hover{
	background: var(--darkgreen) !important;
}

.experience-item:hover .custom-btn:hover {
	box-shadow: none;
	border-color: #5CAF85;
}

.experience-item:hover h3, .experience-item:hover  p {
	color:#FFFFFF;
}
.experience-item:hover hr{
	border-color: #fff;
}

.rating .fa{
	color: #FDD16E;
}

.rating .far{
	color: #ffffff;
	font-weight: 700;
}

.place-info{
	background: transparent linear-gradient(to top, #000000 0%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

ins{
	color: var(--orange);
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: bold;
	font-size: 26px;
	line-height: 32px;
	text-decoration: none;
}

del{
	color: #C4C4C4;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: medium;
	font-size: 21px;
	line-height: 36px;
	text-decoration: line-through;
}

.place-prize{
	box-shadow: 0px 12px 20px #00000029;
	border-radius: 0px 0px 12px 12px;
	min-height: 80px;
	padding: 10px 18px;
	z-index: 9;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.place-img{
	height: 320px;
	object-fit: cover;
}

.badge{
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 15px;
	background: #FFDC8D;
	font-family: 'Lato', sans-serif;
	color:#606060;
	font-weight: 400;
	padding: 9px 15px;
	border-radius: 20px;
}

.section-become{

	background-size: cover;
}
.section-become .orange-btn{
	background: #C96F20;
	border: 1px solid #C96F20;
}
.product-section .wishlist-btn{
	background: #F7F7F7;
	color: #000;
}



.text-gray{
	color: #C4C4C4;
}

.box-shadow{
	box-shadow: 0px 3px 20px #00000029;
}
 .wishlist-btn, .cart-btn {
	display: inline-flex;
    border-radius: 6px;
    color: #000;
    width: 35px;
    height: 35px;
    justify-content: center;
    line-height: 30px;
	align-items: center;
}
 .wishlist-btn {
    background: #F7F7F7;
}
.cart-btn{
	background: rgb(103 175 90 / 7%);
}
.product-item .promo{
	background: #FFDC8D;
	border-radius: 37px;
	padding: 7px 13px;
}

.product-item .rating .far{
	color: #E2E2E2;
}
.product-item .fa-cart-shopping{
	color: #67AF5A;
}

/* .wishlist-btn{
	background: rgba(255,255, 255,.27);
	color: #fff;
} */

.product-slider .product-item img{
	width: auto;
	margin: 0 auto;
}
.product-slider.owl-theme .owl-dots, .event-slider.owl-theme .owl-dots{
	bottom: 15px;
}
.help-section{
	
	background-size: cover;
}


#cartModal .cart-product img{
	width: 100px;
	height: 100px;
}


#cartModal .modal-dialog{
	position: fixed;
    right: 0;
    height: 100vh;
    top: 0;
    margin: 0;
	background: #fff;
	overflow: auto;
}
/* -------------------- */
.event-item h2{
	line-height: 40px;
}
.newsletter{
	background: url('../img/newsletter-bg.png') no-repeat center;
	background-size: cover;
}
.newsletter input::placeholder{
	font-size: 18px;
	line-height: 22px;
}

.newsletter h4 span, .newsletter h5{
	color: #5CAF85;
}

/* ---------- */
.place-slider.owl-theme .owl-dots, .esplora-slider.owl-theme .owl-dots{
	bottom: 10px;
}
.place-slider .owl-nav {
    top: 40%;
    width: calc(100% + 50px);
    left: -25px;
}
.place-slider .place-info h5{
	color: #A5C466;
}
.place-slider a.wishlist-btn{
	color: #000 !important;
}
.place-slider a.cart-btn{
	color: var(--parrot) !important;
}

/*------------------------------------*\
    		EXPERIENCE PAGE
\*------------------------------------*/
.experience-info{
	position: relative;
	z-index: 99;
	margin-top: -10px;
}

.pagination a{
	display: inline-block;
	color: #5DB085;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 5px;
	text-align: center;
	margin: 0 4px;
	font-family: 'Saira', sans-serif;
	font-weight: 500;
}

.pagination .current{
	background: #5DB085;
	color: #fff;
}

.see-more[aria-expanded="true"] i{
	rotate: 180deg;
}

.widget-area{
	border-radius: 18px;
	background: #FAFAFA ;
}

.filter-rating .far{
	color: #E2E2E2;
}
/*------------------------------------*\
    		FAVOURITE PAGE
\*------------------------------------*/
.favourite-list .wishlist-btn i{
	font-weight: 700;
}


/*------------------------------------*\
    		CONTATTI PAGE
\*------------------------------------*/
.text-green2{
	color: #427880;
}
.text-blue{
	color: var(--blue);
}
.tour-widget hr {
    border-top: 3px solid #9BB8BC;
    width: 50px;
    opacity: 1;
}
.contact-detail{
	background: transparent linear-gradient(180deg, #F6F8FA 0%, #F6F8FA 100%);
	opacity: 1;
}
select {
    background-image: url(../img/icon/dropdown.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    -webkit-appearance: none;
	background-size: 15px;
}

select.lang-dropdown {
    background: transparent;
	border: 0;
    box-shadow: none;
    width: 50px;
    padding: 0;
    color: #000;
    font-family: 'Saira Semi Condensed', sans-serif;
    opacity: .3;
	-webkit-appearance: auto;
}


.woocommerce-table tbody tr td {
    padding: 20px 0px;
}
.woocommerce-table img{
	max-width: 80px;
	height: 80px;
}
.woocommerce-table thead tr th{
	padding: 15px 0;
	font-weight: 400;
	color: var(--blue);
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 20px;
}
.woocommerce-table thead tr th:first-child{
	font-weight: 700;
}
.add-number span, .children-number span {
    border: 1px solid #D5D5D5;
    width: 40px;
    height: 40px;
	border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    font-size: 30px;
	cursor: pointer;
}
.add-number input, .children-number input{
    max-width: 45px;
	color: var(--blue) !important;
    text-align: center;
	padding: 0 !important;
    border: 0 !important;
	box-shadow: none !important;
}
.default-icon , .default-icon2{
    width: 45px;
    height: 45px;
    border: 1px solid var(--darkgreen);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 24px;
}

.default-icon2 img{
	width: 24px;
	fill: #005763;
}

.account-detail .log-out{
	display: inline-block;
	background: #EAEAEA 0% 0% no-repeat padding-box;
	border-radius: 13px;
}
.about-banner{
	background-size: cover;
}
.about-banner h1{
	font-size: 80px;
	line-height: 95px;
}
.icon-section:before {
    content: '';
    display: block;
    width: 100%;
    height: 70%;
    background: transparent linear-gradient(180deg, #F6F8FA 0%, #F6F8FA23 93%, #F6F8FA0B 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
}
.icon-section {
   
    background-size: cover !important;
    position: relative;
}
.icon-section .container{
	position: relative;
	z-index: 9;
}

.about-newsletter{
	background: url('../img/about-newsletter.png') no-repeat center;
	background-size: cover;
	opacity: 0.9;
}

/*------------------------------------*\
    		ERROR PAGE
\*------------------------------------*/
.error{
	background: url('../img/error-bg.png') no-repeat center;
	background-size: cover;
}

.error h1{
	font-size: 80px;
	line-height: 80px;
}
/*------------------------------------*\
    		REGISTRAZIONE PAGE
\*------------------------------------*/
.breadcrumb-item+.breadcrumb-item::before{
	content: var(--bs-breadcrumb-divider, "-");
}

.breadcrumb .breadcrumb-item a{
	color: var(--darkgray) !important;
	font-weight: 400;
}
.breadcrumb .breadcrumb-item.active{
	color: var(--darkgray);
	font-weight: 600;
}
a.registrati{
	color: var(--blue);
}

.account-table tbody tr td:nth-child(2) {
    min-width: 250px;
}

/*------------------------------------*\
    		EVENT-DETAIL PAGE
\*------------------------------------*/
.interested-event{
	background: url('../img/interested-event.jpg') no-repeat center;
	background-size: cover;
	border-radius: 14px;
}

/*------------------------------------*\
    		SHOP-DETAIL PAGE
\*------------------------------------*/
.customer-pic{
	min-width: 65px;
}
.review-form-section{
	background: transparent linear-gradient(0deg, #F6F8FA 0%, #F6F8FA 100%);
}
.review-rating i{
	font-weight: 300;
	color: #000 !important;
}
.technical-table tbody tr td{
	padding: 15px 0;
}

.deal-slider.owl-carousel .owl-dot {
    background-size: cover;
	border-radius: 40px;
	margin: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-slider .deal-item > img{
	border-radius: 40px;
}

.deal-slider.owl-theme .owl-dots{
	bottom: 0px;
}
.deal-slider.owl-theme .owl-dots .owl-dot.active span, .deal-slider.owl-theme .owl-dots .owl-dot:hover span{
	background: transparent;
}

.deal-slider.owl-carousel .owl-dots {
    position: relative;
}

.deal-slider.owl-carousel .owl-dot span{
	border: none;
	width: 250px;
    height: 250px;
	border-radius: 40px;
}

.deal-slider.owl-carousel .owl-dots::-webkit-scrollbar{
	display: none;
}

.colors-tag input:checked ~ label{
	box-shadow: 0 0 0 2px var(--lightgreen);
}

.colors-tag label {
    width: 23px;
    height: 23px;
	cursor: pointer;
    border-radius: 50%;
    border:2px solid #fff;
	background-color: var(--color);
}

/**********/

.range-slider{
	height: 44px;
	margin-top: 20px;
}

.range-slider input {
    pointer-events: none;
    position: absolute;
    top: 18px;
    height: 18px;
    padding: 0 !important;
	box-shadow: none !important;
	border: 0 !important;
	z-index: 1;
}

.range-slider input::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 1;
    outline: 0;
}

.range-slider input::-moz-range-thumb {
    pointer-events: all;
    position: relative;
    z-index: 10;
    -moz-appearance: none;
    width: 9px;
}

.range-slider input::-moz-range-track {
    position: relative;
    z-index: -1;
    background-color: rgba(0, 0, 0, 1);
    border: 0;
}

.range-slider input:last-of-type::-moz-range-track {
    -moz-appearance: none;
    background: none transparent;
    border: 0;
}

.range-slider input[type=range]::-moz-focus-outer {
  border: 0;
}

.rangeValue {
	width: 30px;
}

.output {
  position: absolute;
  background: #fff;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  font-family: 'Saira Semi Condensed', sans-serif;
  text-align: center;
  color: #000;
  display: inline-block;
  bottom: 75%;
  left: 50%;
  transform: translate(-50%, 0);
}

span.output.outputOne {
    margin-left: 15px;
}

.output.outputTwo {
	left: 85%;
	margin-left: -30px;
}
.output.radiusTwo{
    margin-left: -25px;
}

input[type=range] {
  -webkit-appearance: none;
  background: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
  border: none;
  border-radius: 3px;
  background: transparent;
}

input[type=range]::-ms-track {
  height: 5px;
  background: transparent;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-track {
  height: 5px;
  background: transparent;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--lightgreen);
  margin-top: -5px;
  position: relative;
  z-index: 10000;
}

input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--lightgreen);;
  margin-top: -5px;
  position: relative;
  z-index: 10000;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--lightgreen);;
  margin-top: -5px;
  position: relative;
  z-index: 10000;
}

input[type=range]:focus {
  outline: none;
}

.full-range,
.incl-range,
.incl-radius {
	width: 100%;
	height: 2px;
	left: 0;
	top: 27px;
	position: absolute;
	background: rgba(84, 130, 53, 0.32);
	border-radius: 5px;
}

.incl-range, .incl-radius {
	background: var(--lightgreen);
}


/*------------------------------------*\
    		EXPERIENCE-DETAIL PAGE
\*------------------------------------*/
.experience-detail-slider.owl-carousel .owl-stage-outer {
    border-radius: 20px;
}

.tour-section{
	background: url('../img/tour-bg.jpg') no-repeat center;
	background-size: cover;
	border-radius: 14px;
}
.tour-section img{
	width: 200px;
	height: 200px;
	border: 3px solid #fff;
    border-radius: 50%;
}
.itinerary-accordion .accordion-button::after, .faq-accordion .accordion-button::after{
	content: '\2b';
    font-family: 'Font Awesome 6 Pro';
	background-image: none;
	border: 1px solid #D5D5D5;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
	font-size: 15px;
}

.itinerary-accordion .accordion-button:not(.collapsed)::after, .faq-accordion .accordion-button:not(.collapsed)::after{
	content: '\f068';
    font-family: 'Font Awesome 6 Pro';
	background-image: none;
}
.itinerary-accordion .accordion-item{
	box-shadow: inset 0px -1px 58px #968C8C19;
	border: 1px solid #C3C3C3;
	border-radius: 20px;
}
.accordion-button:focus, .accordion-button{
	box-shadow: none !important;
}

.account-table input{
	box-shadow: none !important;
	border: none !important;
}
.event-sidebar .default-icon{
	width: 73px;
	height: 73px;
	font-size: 22px;
}


/* --------------------- */
.text-blue2{
	color: #1E365C;
}
.nav_area ul li a:hover{
	color: var(--lightgreen);
}

.footer-bottom a{
	color: #033C45;
}
.contact-info a{
	color: #4F5A81;
}
.about-logo{
	background: #F6F8FA;
}
/* ------------------ */
.thanks{
	/* background: url('../img/thanks-bg.png') no-repeat center; */
	background-size: cover;
}
.companion-section{
	background-color: rgb(0 87 99 / 16%);
	max-width: 400px;
	border-radius: 24px;
}

.companion-section img {
    border: 5px solid #d6e4e6;
    width: 100px;
    height: 100px;
    padding: 0;
    box-shadow: 0 0 0 2px var(--lightgreen);
}


ul.listing li{
	position: relative;
	padding-left: 30px;
}
ul.listing li::before{
	content: '\f178';
	position: absolute;
	left: 0;
	font-size: 20px;
	color: var(--lightgreen);
    font-family: 'Font Awesome 5 Pro';

}
.custom-date {
	position: relative;
	padding: 10px;
}
.custom-date:before {
	font-family: 'FontAwesome';
	content: '\f133';
	width: 20px;
	height: 20px;
	position: absolute;
	top: 15px;
	left: 25px;
	color: var(--parrot);
	z-index: 1;
}
/* .custom-date::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 20px;
	z-index: 2;
	opacity: 0;
} */
/* .custom-date{
	background-image: url(../img/icon/downarrow.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
} */
.time-slider.owl-theme .owl-nav [class*="owl-"]{
	width: auto;
	height: auto;
	box-shadow: none;
}
.time-slider.owl-theme .owl-item h4{
	border-radius: 7px;
}
.work-section{
	background: #F6F8FA;
}
.work-section .inner-box{
	box-shadow: 0px 3px 20px #00000029;
	border-top: 10px solid var(--lightgreen);
}
.work-section .inner-box span{
	background: var(--lightgreen);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -45px;
    position: absolute;
    transform: translate(-50%, 50%);
    left: 50%;
}
.work-section .box{
	position: relative;
}
.work-section .box:nth-child(2)::before {
	content: '\f178';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	left: -12px;
	top: 50%;
	font-size: 25px;
	color: var(--lightgreen);

}
.work-section .box:nth-child(2)::after {
	content: '\f178';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	right: -12px;
	top: 50%;
	font-size: 25px;
	color: var(--lightgreen);
}
.checkout-tab .nav-link{
	color: rgb(30 54 92 / 27%);
}
.checkout-tab .nav-link.active{
	color: #1E365C;
}
.checkout-sidebar .cart-product img {
    max-width: 100px;
    height: 100px;
}
.checkout-sidebar .add-number span{   
    width: 30px;
    height: 30px;
	min-width: 30px;
    line-height: 27px;
    font-size: 20px;
}
.checkout-sidebar .add-number input{
	max-width: 35px;
}

.checkout-sidebar {
    position: sticky;
    top: 0;
	height: 100vh;
    overflow: auto;
}

.text-left{
	text-align: left;
	margin-left: -100px;
	padding: 0px;
}

.account img{
	width: 54px;
	fill: #005763;
}

.show-pointer{
	cursor: pointer;
}

.custom-datepicker {
	z-index: 9999 !important; /* Set the desired z-index value */
}

/* .custom-list {
	list-style-type: circle;
} */