/** 
 * 
 * GLOBAL STYLES
 * 
 **/
.itinerary-description {
	color: #555555;
    font-weight: 300;
    line-height: 23px;
}
.tour-item p {
	font-size: 18px;
    line-height: 20px;
	color: #fff;
}
.remove-overflow {
	overflow: hidden;
}


/** 
 * 
 * TOUR LISTS 
 * 
 **/
.tours-grid {
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tours-slider {
	display: flex;
    gap: 15px;
    width: 100%;
	padding: 0 10px 20px;
}
.tour-item {
    width: 300px;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #efefef;
    box-shadow: 0 0 2px 3px rgb(27 81 32 / 4%);
	transition: .3s ease;
    position: relative;
}
.tour-item:hover {
	border: 1px solid #8abd8f;
    box-shadow: 0 0 5px 4px rgb(19 84 25 / 22%);
}
.tour-img {
	overflow: hidden;
    position: relative;
}
.tour-img img {
	height: 400px;
    object-fit: cover;
	display: block;
	transition: .3s ease;
    position: relative;
}
.tour-item:hover .tour-img img {
	transform: scale(1.1);
}
.tour-content {
    position: absolute;
    z-index: 9;
    bottom: 6%;
    width: 85%;
    padding: 0px 20px;
    left: 0;
    right: 0;
    color: #fff;
}
.home .tour-content{
    width: 100%;
}

.tour-btn {
	border: 2px solid #ffab00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    float: left;
	text-decoration: none;
}
.tour-price {
	width: fit-content;
    float: right;
    font-size: 13px;
    order: 1;
    display: flex;
    flex-direction: column-reverse;
}
.date-top {
    margin: 0 0 10px;
}
.date-top .right-col {
    color: #188823;
    font-weight: 800;
}
.elegant.tour-item{
    flex: 1 1 calc(25% - 20px); 
    box-sizing: border-box;	
    /*min-width: unset;*/
    position: relative;
}

/* Scrollbar */
.tours-slider::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	background-color: #F5F5F5;
	border-radius: 10px;
}
.tours-slider::-webkit-scrollbar {
	height: 6px;
	background-color: #F5F5F5;
}
.tours-slider::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #FFF;
	background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#188823), to(#55a85d), color-stop(.2,#188823))
}
.tour-item p{
    display: none;
}
.elegant.tour-item::before, .elegant.tour-item::before{
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent);
    content: "";
    display: block;
    height: 20%;
    left: 0;
    opacity: .53;
    position: absolute;
    bottom: 0;
    transition: opacity .3s ease-in-out;
    width: 100%;
    z-index: 4;
}
.elegant.tour-item:hover::before, .elegant.tour-item:hover::before{
	background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent);
    content: "";
    display: block;
    height: 40%;
    left: 0;
    opacity: .73;
    position: absolute;
    bottom: 0;
    transition: opacity .3s ease-in-out;
    width: 100%;
    z-index: 4;
}
.elegant.tour-item:hover .tour-btn, .elegant.tour-item:hover .tour-btn{
    background-color: #ffab00;
}
/** 
 * 
 * SINGLE TOUR 
 * 
 **/
.tour h1 {
	font-size: 50px;
    font-weight: 900;
}
.breadcrumb {
	font-weight: 700;
}
.breadcrumb a {
	text-decoration: none;
	font-weight: 400;
	color: #3e4e2a;
}
.featured-image {
	width: 100%;
}


/** TABS SECTION **/
.tabs,
.dtabs{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.tabs label,
.dtabs label {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 25px;
	margin-right: 5px;
	cursor: pointer;
	background-color: #3e4e2a12;
	color: #555;
	font-size: 17px;
	font-weight: 400;
	transition: background-color ease 0.3s;
}
.tabs .tab,
.dtabs .dtab {
	flex-grow: 1;
	width: 100%;
	height: 100%;
	display: none;
	padding: 1rem 0rem;
	color: #000;
	background-color: #fff;
}
/*.tabs .tab > *:not(:last-child),
.dtabs .dtab > *:not(:last-child) {
	margin-bottom: 0.8rem;
}*/
.tabs [type=radio],
.dtabs [type=radio] {
	display: none;
}
.tabs [type=radio]:checked + label,
.dtabs [type=radio]:checked + label {
	background-color: #fff;
	color: #3e4e2a;
	border-top: 4px solid #3e4e2a;
}
.tabs [type=radio]:checked + label + .tab,
.dtabs [type=radio]:checked + label + .dtab {
	display: block;
}
.tab p{
    font-size: 18px;
}

/* Ratings */
.rating-bars {
    margin: 10px 0 30px;
}
.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rating-label {
    width: 60px;
    font-weight: bold;
    color: #3e4e2a;
}
.progress {
    width: 70%;
    height: 20px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 10px;
}
.progress-bar {
    height: 100%;
    background-color: #e48900;
}
.rating-count {
    width: 40px;
    text-align: right;
}
.sidebar-details .reviews {
    margin-top: 20px;
}
.cdsROW.wide {
    height: auto !important;
    width: 100% !important;
    overflow: visible !important;
}
.cdsROW.wide .cdsROWContainer {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    row-gap: 8px !important;
    padding-bottom: 10px !important;
}
.cdsROW.wide .cdsROWContainer .cdsLocName {
    width: 100% !important;
    max-width: 100% !important;
}


/* GALLERY */
.gallery-section {
	padding: 20px 0 60px;
}
.gallery-items {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.gallery-item:first-child { grid-area: 1 / 1 / 3 / 3; }
.gallery-item:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
.gallery-item:nth-child(3) { grid-area: 2 / 3 / 3 / 4; }
.gallery-item:nth-child(4) { grid-area: 1 / 4 / 2 / 5; }
.gallery-item:nth-child(5) { grid-area: 2 / 4 / 3 / 5; }
.gallery-item img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {

	.tabs label,
	.dtabs label {
		order: 1;
		width: auto;
	}

	.tabs .tab,
	.dtabs .dtab {
		order: 9;
	}

	.tabs [type=radio]:checked + label,
	.dtabs [type=radio]:checked + label {
		border-bottom: none;
	}
	.main-content {
		display: flex;
		gap: 55px;
	}
	.left-content {
		width: 70%;
	}
	.tour-sidebar {
		width: 30%;
	}
	.elegant.tour-item{ 
         box-sizing: border-box;	
      /*min-width: unset;*/
      position: relative;
      margin-right: 20px;
      }
    
}

/** 
 * 
 * INCLUDES
 * 
**/
.tour-includes h2,
.tour-excludes h2 {
    color: #3e4e2a;
    margin: 35px 0 15px;
    font-size: 30px;
    font-weight: 400;
}
.tour-excludes h2 {
    color: #606060;
}
.tour-includes, .tour-excludes {
    background: #3d670924;
    border: 2px solid #fff;
    box-shadow: 0 0 1px 2px #3e4e2a;
    height: 100%;
    padding: 0 30px 17px;
    width: 44%;
    float: left;
}
.tour-excludes {
    background: #ededed;
    box-shadow: 0 0 1px 2px #606060;
    float: right;
}
.tour-includes span, .tour-excludes span {
    display: block;
    background: #ffffff;
    margin-bottom: 5px;
    font-size: 16px;
    color: #555555;
    font-weight: 300;
    line-height: 23px;
    padding: 4px 20px;
    border-radius: 21px;
}

@media( min-width: 768px ){

    #includes-dtab {
        grid-template-columns: 1fr 1fr !important;
    }
    
}


/** 
 * 
 * TEAM
 * 
**/
.staff-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.staff-member {
    display: flex;
    gap: 10px;
    overflow: hidden;
    border-radius: 150px 0 0 150px;
    background: #e7f3e9;
    border: 3px solid #ffffff;
    box-shadow: 0 0 1px 2px #188823;
}
.staff-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
}
.staff-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.staff-content h3 {
    margin: 0 0 15px;
}
.staff-content h3 a {
    font-size: 40px;
    text-decoration: none;
    color: #000000;
    font-weight: 200;
}
.staff-content h4 {
    color: #188823;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}
.staff-content p {
    margin: 10px 0;
}

@media( min-width: 768px ){

    .staff-list {
        grid-template-columns: 1fr 1fr;
    }
    
}


/** 
 * 
 * ACCOMMODATIONS
 * 
**/
.accomodations-list {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 15px;
    row-gap: 15px;
}
.accomodations-list a {
    position: relative;
    height: 350px;
}
.accomodations-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.accomodations-list h3 {
    margin: 0;
    position: absolute;
    bottom: 20px;
    color: #fff;
    padding: 15px 15px;
    font-size: 25px;
    text-shadow: 2px 2px 3px #333;
}
.detail-row {
    background: #e7f3e9;
    margin-bottom: 5px;
    display: flex;
    max-width: 500px;
}
.detail-row > * {
    flex: 1;
    border: 1px solid #188823;
    padding: 3px 8px;
}
.left-col {
    border-right: none;
}
.tour-info li {
    color: #555555;
    font-weight: 300;
    line-height: 23px;
}

@media( min-width: 768px ){

    .accomodations-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

}

@media( min-width: 900px ){

    .accomodations-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    
}


/** 
 * 
 * SIDEBAR
 * 
**/
.sidebar-details {
	background: rgb(24 136 35 / 10%);
    padding: 40px 30px;
    border-radius: 10px;
	/*position: sticky;*/
    top: 0;
}
.single-days {
	font-size: 25px;
}
.single-price,
.add-price {
	font-size: 15px;
    padding: 3px 0;
}
.add-price {
    text-align: right;
}
.single-price span {
	font-size: 30px;
    color: #3e4e2a;
    font-weight: 800;
}
.add-price span {
	font-size: 15px;
    font-weight: 500;
    position: relative;
}
.single-price sup,
.add-price sup {
	color: #ffab00;
    font-size: 14px;
    font-weight: 600;
    padding-right: 3px;
}
.bookbtn {
	display: flex !important;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.wishbtn {
	display: flex !important;
    margin-top: 15px;
    justify-content: center;
    gap: 6px;
    background: #f8f9fb !important;
    color: #188823 !important;
}
@media (min-width: 600px){
    .swarp{
        max-width: 1300px;
        margin: auto;
    }
	.itinerary-item{
    display: flex;
    gap: 20px;
    background: #f6f6f6;
    padding: 10px;
    overflow: hidden;
    align-items: stretch;
    margin-bottom: 20px;
}

.itinerary-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.ItineraryContents{
    width: 70%;
}
.itinerary-image{
    width: 30%;
}
}
/* POPUP */
/*.full-itinerary,
.full-tour-details {
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    height: 100%;
	visibility: hidden;
    opacity: 0;
	transition: all 0.3s ease-in-out;
	transform: scale(1.5);
}
.itinerary-active {
	visibility: visible;
  	opacity: 1;
	overflow-y: scroll;
	transform: scale(1);
}*/
.tour-details {
    max-width: 900px;
    /*margin: auto;
    padding: 2rem 0;*/
}
.days-detail {
    margin-top: 2rem;
}
.tour-info {
    margin-bottom: 2rem;
}
.itinerary-cols {
	display: flex;
    gap: 60px;
}
.itinerary-cols > div {
	flex: 1;
}
.map-inner {
	position: sticky;
    top: 0;
	display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
}
.close-itinerary {
	border-color: #fff !important;
    font-size: 15px;
    width: fit-content;
    padding: 11px 30px;
	cursor: pointer;
}
.tab.Overview{
    max-width: 900px!important;
}
.tour-map img {
	max-height: 450px;
}
span.itinerary-anchors > span a {
    padding: 5px 12px;
    background: rgb(24 136 35 / 10%);
    color: #000;
    text-decoration: none;
    margin-left: 4px;
    border: 1px solid #3e4e2a;
}
.ItineraryContents > h3 span {
	background:#3e4e2a;
    color: #fff;
    padding: 6px 10px;
    margin-right: 15px;
}
.itinerary-meals {
	display: flex;
    align-items: center;
	gap: 15px;
	padding: 7px 20px;
    background: rgb(24 136 35 / 10%);
    margin: 10px 0 0px;
}
.meals-ctnt h4 {
	margin: 0 0 5px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: #3e4e2a;
}
.meals-ctnt span {
	color: #555555;
}

.itinerary-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/** TOURS RATING **/
.tour-rating {
	padding: 10px 10px;
    border: 1px solid #188823;
    margin: 20px 0;
    background: #f8f9fb;
    border-radius: 10px;
}
.rating-stars {
    display: block;
    width: 300px;
    padding: 10px 40px 20px 20px;
    background: linear-gradient(90deg, #ffffff90 200px, #fff0 200px 100%);
    border-radius: 25px;
    position: relative;
}
.rating-counter {
    font-size: 24px;
    font-family: Arial, Helvetica, serif;
    color: #9aacc6;
    width: 50px;
    text-align: center;
    background: #0006;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border-radius: 0 25px 25px 0;
    line-height: 50px;
}

.ratingControl input { display: none; }

.ratingControl label {
    width: 30px;
    height: 30px;
    background: #000b;
    display: inline-flex;
    cursor: pointer;
    margin: 5px 7px;
    transition: all 0.3s ease;
    clip-path: polygon(50% 0%, 66% 32%, 100% 38%, 78% 64%, 83% 100%, 50% 83%, 17% 100%, 22% 64%, 0 38%, 34% 32%);
}

.ratingControl label[for=rs0] {
    display: none;
}

.ratingControl label:before {
    width: 90%;
    height: 90%;
    content: "";
    background: linear-gradient(90deg, yellow, #e0a538 30%, #46a54f 50%, #188823 100%);
    display: block;
    margin-left: 5%;
    margin-top: 5%;
    clip-path: polygon(50% 0%, 66% 32%, 100% 38%, 78% 64%, 83% 100%, 50% 83%, 17% 100%, 22% 64%, 0 38%, 34% 32%);
    background-size: 200% 100%;
    background-position: 0 0;
    transition: all 0.3s ease;
}

.ratingControl label:hover:before {
    background-position: 100% 0;
}

.ratingControl input:checked + label ~ label:before {
    background-position: 100% 0;
}

.ratingControl input:checked + label:hover ~ label:before {
    background-position: 0% 0;
}

.rating-counter:before {
    content: "0";
    transition: all 0.25s ease 0s;
}

#rs1:checked ~ .rating-counter:before {
    content: "1";
}

#rs2:checked ~ .rating-counter:before {
    content: "2";
}

#rs3:checked ~ .rating-counter:before {
    content: "3";
}

#rs4:checked ~ .rating-counter:before {
    content: "4";
}

#rs5:checked ~ .rating-counter:before {
    content: "5";
}

.ratingControl label:hover ~ .rating-counter:before {
    color: #9aacc6 !important;
    animation: pulse 1s ease 0s infinite;
}

@keyframes pulse {
    50% { font-size: 28px; }
}

.ratingControl input:checked:hover ~ .rating-counter:before {
    animation: none !important;
    color: #ffab00 !important;
}

.ratingSummary {
  margin-top: 20px;
}
.ratingSummary__item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ratingSummary__item span.norate {
  width: 18%;
}
.progress {
  background-color: #e0e0e0;
  border-radius: 3px;
  width: 70%;
  height: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.progress-bar {
  background-color: #f2b600;
  height: 100%;
  border-radius: 3px;
  width: 0%;
}
@media (max-width:600px){
    .ItineraryContents h3{
        display:grid;
    }
    .tour h1{
        font-size: 24px;
    }
    .featured-image{
        height: 300px;
        object-fit: cover;
    }
    .tour-item{
        width: calc(100% - 20px);
        margin: auto;
    }
    .tour-img{
         display: flex;
    align-items: center;
    justify-content: center;
    }
}