/* Body styles */

body {
    background: #f9f9f9;
    line-height: 1.5;
    font-family: "Poppins", Arial, sans-serif;
    color: #2a2a2a;
}

/* General link styles */

a {
    color: #e14d67;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline:none;
}

a:hover, a:focus {
    color: #111;
    text-decoration: none;
    outline:none;
}

a.nav-menu-text:hover {
    text-decoration: underline;
}


/* Chat with us Whatsapp button */

.whatsapp-button {
    position: fixed;
    right: 10px; /* Adjust this value to change the horizontal position */
    bottom: 125px; /* Adjust this value to change the vertical position */
    z-index: 1000; /* Ensure it is above other elements */
}

.whatsapp-button img {
    width: 200px;
    height: auto;
}

@media (max-width: 767px) {
	.whatsapp-button {
		bottom: 20px;
	}

	.whatsapp-button img {
		width: 180px;
		height: auto;
	}
}

/* Horizontal break (hr) styles */

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    background-color: #ddd;
    opacity: 1;
}


/* Header styles */

.extra-content {
    color: darkblue;
    padding: 10px;
}

#header-nav-title {
    font-size: 1.5rem;
}

#header-nav-image {
    width: 60px;
    height: 60px;
}

@media (max-width: 485px) {
    #header-nav-title {
        font-size: 1.2rem;
    }

    #header-nav-image {
        width: 50px;
        height: 50px;
    }

}

/* Multi column dropdown styles -> Header tours dropdown */

.dropdown-menu {
	min-width: 200px;
	max-height: 200px;
	overflow-y: auto;
}
.dropdown-menu.columns-2 {
	min-width: 500px;
}
.dropdown-menu.columns-3 {
	min-width: 600px;
}
.dropdown-menu li a {
	padding: 5px 15px;
	font-weight: 300;
}

.multi-column-dropdown {
	list-style: none;
  margin: 0px;
  padding: 0px;
}
.multi-column-dropdown li a {
	display: block;
	clear: both;
	line-height: 1.428571429;
	color: #333;
	white-space: normal;
}

.tour-dropdown-item:hover {
	text-decoration: underline;
}
 
@media (max-width: 767px) {
	.dropdown-menu.multi-column {
		min-width: 240px !important;
		overflow-x: hidden;
	}
}

/* Input field styles (used in register.html) */

.input-material-group {
    position: relative;
    padding-top: 0.85rem;
  }
  .input-material-group .input-material {
    border: none;
    background: none;
    padding: 0.375rem 0;
    border-bottom: 1px solid #dee2e6;
    display: block;
    width: 100%;
  }
  .input-material-group .input-material:focus-visible {
    outline: none;
  }
  .input-material-group .input-material.js-validate-error-field {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
  }
  .input-material-group .input-material.is-invalid {
    position: relative;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  .input-material-group .input-material.is-valid {
    position: relative;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    border-color: #28a745;
  }
  .input-material-group .input-material.is-valid + label {
    color: #28a745 !important;
  }

  .input-material-group .label-material {
    position: absolute;
    top: 1.225rem;
    left: 0;
    font-size: 0.9rem;
    color: #a1a8ae;
    cursor: text;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: none;
    transform: none;
  }
  
  .input-material-group .label-material.active {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    top: 0;
    color: #2b90d9;
  }

  .form-control::-webkit-input-placeholder {
    font-size: 0.85rem;
  }
  .form-control::-moz-placeholder {
    font-size: 0.85rem;
  }
  .form-control:-ms-input-placeholder {
    font-size: 0.85rem;
  }
  .form-control::-ms-input-placeholder {
    font-size: 0.85rem;
  }
  .form-control::placeholder {
    font-size: 0.85rem;
  }



/* Preloader Styles */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	background-color: #fff;
	z-index: 999999999;
}

.sk-spinner-wave.sk-spinner {
	margin: -15px 0 0 -25px;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	height: 30px;
	text-align: center;
	font-size: 10px;
}

.ie8 .sk-spinner-wave.sk-spinner {
	display: none;
}


@keyframes growShrink {
    0%, 100% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.4);
    }
}


#preloader div img {
    width: 80px;
    animation: growShrink 2s infinite;
}

.sk-spinner-wave div {
	background-color: #ccc;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
	animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-spinner-wave .sk-rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.sk-spinner-wave .sk-rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.sk-spinner-wave .sk-rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.sk-spinner-wave .sk-rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
	0%, 40%, 100% {
		-webkit-transform: scaleY(0.4);
		transform: scaleY(0.4);
	}
	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

@keyframes sk-waveStretchDelay {
	0%, 40%, 100% {
		-webkit-transform: scaleY(0.4);
		transform: scaleY(0.4);
	}
	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

/* Layer element styles */

/* Opacity mask when left open */
.layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    z-index: 100;
    min-height: 100%;
    background-color: #000;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    -moz-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    -ms-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    -o-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    opacity: 0;
    visibility: hidden;
}
.layer-is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    -moz-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    -ms-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}

/* Swiper styles */

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	/* height: 50vh; */
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.swiper-slide a {
    display: block; /* Ensures the anchor behaves like a block element */
    text-decoration: none; /* Removes any default text decorations */
}

.swiper-slide a img {
    display: block; /* Ensures the image does not create extra space */
    width: 100%; /* Makes the image fit the slide */
    height: auto; /* Maintains the aspect ratio of the image */
	object-fit: cover;
}

/* Tour, FIT, Cruise Slider div styles */

.tourSlider, .FITSlider, .cruiseSlider {
    background-color: #f9f9f9;
}

/* Main Title styles */

.main_title {text-align:center; font-size:16px; margin-bottom:30px;}
.main_title h2 {text-transform: uppercase; font-weight:700; letter-spacing:-1px; font-size:30px; margin-bottom:0;margin-top:0;}
.main_title p {font-weight:400; font-size:20px; color: #555;}

h2 span, h3 span, h4 span {
    color: #FE0000;
}

@media (max-width: 767px) {

    .main_title {
		font-size: 14px;
	}
	
	.main_title h2 {
		font-size: 24px;
	}
	
	.main_title p {
		font-size: 16px
	}
}


/* Popular packages table styles (Tours index page) */

#popular-packages-container {
	max-height: 300px;
	overflow-y: auto;
}


#popular-packages-table {
	font-size: 14px;
}


/* Airline element styles */

#airlineCode {
    color: #fa1919;
}

#airlineCol:hover {
    text-decoration: 2px blue underline;
}

/* Cookies info bar styles */

.cookies-info {
    background-color: #FFCBA4;
    color: black;
    padding: 10px 20px;
    position: fixed;
    bottom: 55px;
    left: 0;
    right: 0;
    z-index: 1029;
}

.cookies-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookies-text {
    font-size: 1rem;
    /* padding-left: 15px; */
    margin: 5px 0;
}

.cookies-actions {
    display: flex;
    align-items: center;
}

.cookies-actions a {
    color: black;
    text-decoration: none;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.cookies-actions a:hover {
    text-decoration: underline;
}

.cookies-actions button {
    margin-left: 10px;
}

@media (max-width: 767px) {

	.cookies-info {
		position: static;
	}

    .cookies-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookies-actions {
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }

    .cookies-text {
        padding-left: 0;
    }

    .cookies-actions a,
    .cookies-actions button {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
}



/* Footer styles */

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

.page-footer {
    background-color: #FE0000;
    font-weight: bolder;
    align-items: center;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
}

.footer-ul {
	display: flex;
	justify-content: space-evenly;
	font-size: 1rem;
}

.footer-text {
    display: inline;
}


@media (max-width: 767px) {

	.page-footer {
		position: static;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1030;
	}

	.footer-ul li {
		margin: 3px 0;
	}

	.footer-text {
		display: none;
	}

	.footer-ul li {
		font-size: 1.5rem;
	}

}


/* Blink animation styles */

@keyframes blink {
    25% {
      opacity: 0.5;
    }
    50% {
      opacity: 0;
    }
    75% {
      opacity: 0.5;
    }
}
  
.blink-animation {
    animation: blink 2s linear infinite;
}


/* Ribbon styles */

.ribbon {
	position: absolute;
	top: 0;
	left: -1px;
	width: 78px;
	height: 78px;
	z-index: 1;
}

.ribbon.popular {
	background: url(../img/ribbon_popular.png) no-repeat 0 0;
}

.ribbon.top_rated {
	background: url(../img/ribbon_top_rated.png) no-repeat 0 0;
}

.ribbon_table {
	width: 99px;
	height: 97px;
	position: absolute;
	left: -7px;
	top: -7px;
	display: block;
	background: url(../img/ribbon.png) no-repeat 0 0;
	z-index: 101;
}


.ribbon_2 {
	width: 99px;
	height: 97px;
	position: absolute;
	left: -5px;
	top: -5px;
	display: block;
	background: url(../img/ribbon.png) no-repeat 0 0;
	z-index: 101;
}

.strip_all_tour_list .ribbon_3 {
	left: 7px;
}

.strip_all_tour_list .ribbon_4 {
	left: 7px;
}

.strip_all_tour_list .ribbon_5 {
	left: 7px;
}

.tour_container .ribbon_3{
    z-index: 9;
}
  
.tour_container .ribbon_4{
    z-index: 9;
}

.tour_container .ribbon_5{
    z-index: 9;
}

.ribbon_3 {
	position: absolute;
	left: -5px;
	top: -5px;
	z-index: 1;
	overflow: hidden;
	width: 75px;
	height: 75px;
	text-align: right;
}

.ribbon_4 {
	position: absolute;
	left: -5px;
	top: -5px;
	z-index: 1;
	overflow: hidden;
	width: 75px;
	height: 75px;
	text-align: right;
}

.ribbon_5 {
	position: absolute;
	left: -5px;
	top: -5px;
	z-index: 1;
	overflow: hidden;
	width: 75px;
	height: 75px;
	text-align: right;
}

.ribbon_3 span {
	font-size: 10px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	width: 100px;
	display: block;
	background: #79A70A;
	background: linear-gradient(#9BC90D 0%, #79A70A 100%);
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 19px;
	left: -21px;
}

.ribbon_4 span {
	font-size: 10px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	width: 100px;
	display: block;
	background: #79A70A;
	background: linear-gradient(#9BC90D 0%, #79A70A 100%);
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 19px;
	left: -21px;
}

.ribbon_5 span {
	font-size: 10px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	width: 100px;
	display: block;
	background: #79A70A;
	background: linear-gradient(#9BC90D 0%, #79A70A 100%);
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 19px;
	left: -21px;
}

.ribbon_3 span::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 100%;
	z-index: -1;
	border-left: 3px solid #638908;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #638908;
}

.ribbon_3 span::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-right: 3px solid #638908;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #638908;
}

.ribbon_4 span::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 100%;
	z-index: -1;
	border-left: 3px solid #638908;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #638908;
}

.ribbon_4 span::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-right: 3px solid #638908;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #638908;
}

.ribbon_5 span::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 100%;
	z-index: -1;
	border-left: 3px solid #638908;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #638908;
}

.ribbon_5 span::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-right: 3px solid #638908;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #638908;
}

.ribbon_3.popular span {
	background: linear-gradient(#f14f3f 0%, #cb4335 100%);
}

.ribbon_4.popular span {
	background: linear-gradient(#c77006 0%, #c77006 100%);
}

.ribbon_5.popular span {
	background: linear-gradient(green 0%, green 100%);
}

.ribbon_3.popular span::before {
	border-left: 3px solid #a3362a;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #a3362a;
}

.ribbon_3.popular span::after {
	border-left: 3px solid transparent;
	border-right: 3px solid #a3362a;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #a3362a;
}

.ribbon_4.popular span::before {
	border-left: 3px solid #c77006;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #c77006;
}

.ribbon_4.popular span::after {
	border-left: 3px solid transparent;
	border-right: 3px solid #c77006;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #c77006;
}

.ribbon_5.popular span::before {
	border-left: 3px solid green;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid green;
}

.ribbon_5.popular span::after {
	border-left: 3px solid transparent;
	border-right: 3px solid green;
	border-bottom: 3px solid transparent;
	border-top: 3px solid green;
}


/* Tour container (package card) styles */
/* Tour title styles */

.tour_container {
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	margin: 0;
	margin-bottom: 30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
}

/* .list_carousel .tour_container {
	position: static;
} */

.tour_container .tour_title {
	font-family: 'Poppins', sans-serif;
	padding: 15px 15px 10px 15px;
	position: relative;
}

.tour_container .tour_title .rating {
	font-size: 14px;
	margin-left: -3px;
}

.tour_container .tour_title h3 {
	margin: 0 0 3px 0;
	font-size: 13px;
	text-transform: uppercase;
}

.tour_container .tour_title h4 {
	margin: 0 0 3px 0;
	font-size: 14px;
	text-transform: uppercase;
}

.tour_container .tour_title h2 {
	margin: 0 0 3px 0;
	font-size: 16px;
	text-transform: uppercase;
	color: #FE0000;
}

.owl-theme.list_carousel .item .tour_container, .owl-theme.list_carousel .item .hotel_container {
	margin-bottom: 0;
	position: relative;
}

.img_container_2 .tour_container{
    position: relative;
}


/* Image container styles */

.img_container {
	position: relative;
	overflow: hidden;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.img_container a:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.img_container img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	/* -webkit-backface-visibility: hidden; */
}


.img_container_2{
    position: relative;
    height: 100%;
}


#top-destination-image {
	width: 100%;
	max-height: 14em;
}


/* Enquiry and Booking message bar */

.message-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 767px) {

	#send-message-div {
		margin: 5px 0;
	}
}


/* Card styles (enquiry and booking) */

.card {
	margin-bottom: 10px;
}
.card-header {
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #ddd;
	background-color: #fff;
	border-bottom: none;
	padding-bottom: 10px;
}

.card-header h4{
	font-size: 16px;
	padding-top: 10px;
}

.card-header a {
	display: block;
	color: #777;
}

.card-body {
	padding: 30px;
	line-height: 1.6 !important;
	border-top: 1px solid #ddd;
}

.card-header a .indicator {
	color: #e04f67;
}

.card-header a:hover .indicator {
	color: #333;
}

/* Package information styles */

#package-code, #package-duration, #package-title, #package-description, #package-button-div, #departures-div, #room-remarks-div {
	padding: 0 3rem;
}

#package-description, #package-button-div {
	font-size: 1rem;
}

#package-button-div {
	display: flex;
	justify-content: start;
	gap: 1.5rem;
}

#departures-table-div {
	overflow-x: auto;
	text-wrap: nowrap;
	width: 100%;
}


@media (max-width: 767px) {

	#package-code, #package-duration, #package-title, #package-description, #package-button-div, #departures-div, #room-remarks-div {
		padding: 0 0.25rem;
	}
}


/* Bank button on package page styles */

.package-button {
	color: #0242d8;
	text-decoration: underline;
	/* font-weight: bold; */
	/* margin-right: 1.25rem; */
}

.package-button:hover {
	color: red;
	text-decoration: underline;
}


/* Tour Package Itinerary and PDF Buttons div */

#tour-view-buttons {
	text-align: right;
}


#viewItineraryButton, #viewPDFButton {
	color: #FE0000;
	margin: 0 0.25rem;
	font-size: 15px;
}

#viewItineraryButton:hover, #viewPDFButton:hover {
	text-decoration: underline;
}


@media (max-width: 767px) {

	#tour-view-buttons {
		text-align: left;
		margin-top: 1rem;
	}

	#viewItineraryButton, #viewPDFButton {
		padding: 0;
		margin: 0 0.5rem 0 0;
	}
}


/* Contact Us page styles */

#company-name, #company-mobile, #company-whatsapp, #business-hours-title {
	font-weight: 600;
}

#company-name, #business-hours-title {
	color: darkblue;
}

/* Tour Itinerary styles */

/* #package-duration {
	color: red;
	font-weight: bold;
} */

#package-title {
	color: darkblue;
	font-weight: bold;
}

#itineraryOptions {
	text-align: right;
	letter-spacing: 0;
}

#itineraryOptions a span {
	font-size: 15px;
}

#itinerary-item-title {
	color: darkblue;
	font-weight: 600;
	/* border: 1px solid darkblue;
	border-radius: 25px; */
	font-size: 1.25rem;
}

#itinerary-item-hotel, #itinerary-item-meals {
	color: #01263d;
	font-size: 1.25rem;
}

#itinerary-item-hotel strong, #itinerary-item-meals strong {
	color: darkblue;
}

#itinerary-item-description {
	font-size: 1.25rem;
}



@media (max-width: 767px) {

	#package-code, #package-duration, #package-title {
		padding: 0 0.25rem;
	}

	#itineraryOptions {
		margin: 1rem 0;
		display: flex;
		flex-direction: column;
	}

	#itineraryOptions a {
		margin: 0 auto 0 2rem;
	}

	#itinerary-item-title, #itinerary-item-hotel, #itinerary-item-meals, #itinerary-item-description {
		font-size: 1rem;
	}

}

/* Package Itinerary PDF (In FIT and cruises) */

.package-itinerary-pdf {
	width: 50%;
	aspect-ratio: 4 / 3;
	height: 75vh;
	margin: 5rem 0;
}

.whatsapp-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px; /* Adjust size */
	height: 60px; /* Adjust size */
	background-color: #25D366; /* WhatsApp Green */
	color: white;
	border-radius: 50%; /* Makes it circular */
	text-decoration: none;
	position: fixed;
	bottom: 20px; /* Adjust positioning */
	right: 20px; /* Adjust positioning */
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease-in-out;
}

.whatsapp-button:hover {
	transform: scale(1.1);
}

.whatsapp-button i {
	font-size: 32px; /* Adjust icon size */
}

