.exc-search {
    gap: 15px;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    background: #fff;
    transition: 0.35s all ease-in-out;
    z-index: 3;
}
.exc-search.sticky {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.32);
}
.search-field-wrap {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    position: relative;
}
.search-field-wrap .field-item {
    padding-left: 38px;
}
.search-field-wrap .field-item:focus {
    border-color: #f3f3f3;
}
.search-btn {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 15px;
    left: 10px;
    background: url(../images/icons/search.svg) no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    outline: none;
}
.search-reset-btn {
    display: none;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 15px;
    right: 10px;
    background: url(../images/icons/close-dark.svg) no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    outline: none;
    opacity: 0.6;
}
.exc-search.active .search-reset-btn {
    display: block;
}
.filters-toggler {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-image: url(../images/icons/filter.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}
.exc-filters-row {
    padding: 10px;
}
.exc-filter-item {
    padding: 10px 0;    
}
.exc-filter-item:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.exc-filter-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}
.exc-filter-label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.exc-filter-label:not(:last-child) {
    margin-bottom: 10px;
}
.exc-filter-label > input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;    
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    transition: 0.35s ease;
}
.exc-filter-label > input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-color: var(--theme-color);
}
.range-values > input {
    display: none;
}
.exc-filters-actions {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px;
    gap: 15px;
    background: #fff;
    box-shadow: 0px 5px 24px rgba(0,0,0,0.2);
    z-index: 3;
}
.exc-filters-actions .btn {
    min-width: auto;
}
.exc-filters-reset {
    background: #f3f3f3;
    color: var(--alter-color);
}
.exc-list {
    margin-top: 20px;
    margin-bottom: 25px;
}
.exc-item {
    min-height: 120px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.07);    
    color: var(--text-color);
    text-decoration: none;
    overflow: hidden;
}
.exc-item.exc-item-prior {
    box-shadow: 0px 0px 4px 2px var(--theme-color);
}
.exc-item:not(:last-child) {
    margin-bottom: 15px;
}
.exc-item-media {
    position: relative;
    -webkit-flex-basis: 35%;
    flex-basis: 35%;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
}
.exc-item-fav {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
}
.exc-item-hot {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(../images/icons/hot.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 2;
}
.exc-item-slider {
    height: 100%;
}
.exc-item-slide {
    height: auto;
}
.exc-item-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.exc-item-info {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    gap: 5px;
    padding: 8px;
}
.exc-item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.exc-item-types {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 10px;
}
.exc-item-type {
    padding: 4px 8px;
    line-height: 1;
    background: var(--alter-color);
    border-radius: 6px;
    color: #fff;
    text-transform: lowercase;
}
.exc-item-desc {
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 12px;
}
.exc-item-duration,
.exc-item-age {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.exc-item-duration {
    margin-bottom: 5px;
}
.exc-item-duration:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../images/icons/timer.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.exc-item-age:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../images/icons/profile-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.exc-item-bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
}
.exc-item-rating {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
}
.exc-item-rating span {
    line-height: 1;
}
.exc-item-price {
    font-weight: 600;
}
.exc-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    overflow: hidden;
    background-color: var(--bg-color);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 3;
}
.exc-nav.cat-nav-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.exc-nav-slider {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
}
.exc-nav-item {
    width: auto;
    padding: 5px 10px;
    background: #f3f3f3;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}
.exc-nav-item.nav-active {
    background: var(--theme-color);
    color: #fff;
}
.exc-page {
    padding-top: 0;
    padding-bottom: 40px;
}
.exc-top {
    position: relative;
}
.exc-slider {
    height: 360px;
}
.exc-slider .swiper-pagination {
    bottom: 40px;
}
.exc-slide-video {
    position: relative;
}
.exc-video-play {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: transparent;
    background-image: url(../images/icons/play.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 1;
    border: none;
    cursor: pointer;
    visibility: visible;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    transition: 0.35s ease;
    z-index: 3;
}
.exc-slide-video:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-image: url(../images/icons/play.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.6;
    visibility: visible;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    transition: 0.35s ease;
}
.exc-slide-video.playing:before {
    opacity: 0;
    visibility: hidden;
}
.exc-slide-video.playing .exc-video-play {
    opacity: 0;
    visibility: hidden;
}
.exc-slide-video.playing img {
    opacity: 0;
    visibility: hidden;
}
.exc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}
.exc-slide-video img {
    opacity: 1;
    visibility: visible;
    transition: 0.35s ease;
}
.exc-slide-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.exc-slider .swiper-pagination-bullet {
    width: 16px;
    height: 5px;
}
.exc-top-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 3;
}
.exc-top-actions .fav-btn {
    position: static;
    width: 28px;
    height: 28px;
    background-size: 18px;
    background-color: rgba(255,255,255,0.4);
    background-image: url(../images/icons/heart-white.svg);
}
.exc-top-actions .back-btn {
    width: 28px;
    height: 28px;
    background-color: rgba(255,255,255,0.4);
    background-image: url(../images/icons/arrow-left-white.svg);
    background-size: 22px;
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
}
.exc-content {
    position: relative;
    margin-top: -20px;
    background: var(--bg-color);
    border-radius: 15px 15px 0 0;
    padding-top: 15px;
    z-index: 2;
}
.exc-content-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
}
.exc-content-top .exc-item-hot {
    position: static;
    width: 28px;
    height: 28px;
    background-size: 20px;
}
.exc-rating {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    line-height: 1;
}
.exc-content-block {
    margin-top: 30px;
}
.exc-content-block .inner-title {
    margin-bottom: 15px;
}
.exc-desc-wrap.exc-content-block {
    margin-top: 10px;
}
.exc-desc {
    position: relative;
    height: auto;
    max-height: 150px;
    transition: 0.35s ease;
    overflow: hidden;
}
.exc-desc:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    opacity: 1;
    background: linear-gradient(360deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    transition: 0.35s ease;
}
.exc-desc p:first-child {
    margin-top: 0;
}
.exc-desc p:last-child {
    margin-bottom: 0;
}
.exc-desc-wrap .more {
    margin-top: 8px;
}
.exc-desc.opened {
    max-height: 1500px;
}
.exc-desc.opened:after {
    opacity: 0;
}
.exc-location {    
    margin-top: 15px;
}
.exc-location-content {
    position: relative;
}
.exc-route {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background-color: var(--text-color);
    background-image: url(../images/icons/route.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 2;
}
.exc-location-map {
    height: 160px;    
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
}
.exc-location-map *[class*="copyright"] {
    display: none !important;
}
.exc-icons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.exc-icon {
    width: 30px;
    height: 30px;
    background-color: #fff;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}
/*.exc-icon.exc-icon-single {
    background-image: url(../images/icons/exc-single.svg);
}
.exc-icon.exc-icon-group {
    background-image: url(../images/icons/exc-group.svg);
}
.exc-icon.exc-icon-transfer {
    background-image: url(../images/icons/exc-transfer.svg);
}
.exc-icon.exc-icon-ship {
    background-image: url(../images/icons/exc-ship.svg);
}
.exc-icon.exc-icon-nature {
    background-image: url(../images/icons/exc-tree.svg);
}*/
.exc-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: var(--bg-color);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    z-index: 9;
}
.exc-price {
    font-size: 16px;
    font-weight: 600;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
}
.exc-actions .btn {
    min-width: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
}
.exc-booking-block {
    padding: 10px 0;
}
.exc-booking-dates {
    gap: 10px;
}
.exc-booking-date {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
}
.exc-booking-date > input {
    display: none;
}
.exc-booking-date label {
    height: 100%;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 12px;
    box-shadow: 0 0 4px 2px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}
.exc-booking-date--select {
    position: relative;
}
.exc-booking-date--select svg {
    display: block;
}
.exc-booking-date.exc-booking-date--select > input {
    display: block;
    position: absolute;
    opacity: 0;
    width: 100%;
}
.exc-booking-date > input:checked + label,
.exc-booking-date.active label {
    background-color: var(--theme-color);
    color: #fff;
}
.exc-booking-date--select > input:checked + label svg path,
.exc-booking-date--select.active label svg path {
    fill: #fff;
}
.exc-booking-client {
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 13px;
}
.exc-booking-client:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}
.exc-booking-client-info {
    width: 40%;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
}
.exc-booking-cleint-price {
    display: block;
    color: var(--theme-color);
}
.exc-booking-client-nums {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
}
.exc-booking-client-cost {
    font-weight: 600;
}
.exc-booking-total-wrap {
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.exc-booking-total-loc {
    font-size: 12px;
    width: 50%;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
}
.exc-booking-total-loc p {
    margin-top: 0;
    margin-bottom: 5px;
}
.exc-booking-total-loc p:last-child {
    margin-bottom: 0;
}
.ext-total-num {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.exc-total-val {
    font-size: 22px;
    font-weight: 600;    
}
.exc-booking-block.block-fields {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 10px;
}
.booking-form-fields {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    gap: 10px;
}
.exc-booking-actions {
    gap: 15px;
}
.exc-booking-actions .btn {
    min-width: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
}
.exc-reviews-block-title {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.exc-reviews {
    margin-bottom: 15px;
}
.exc-review {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
}
.exc-review:not(:last-child) {
    margin-bottom: 20px;
}
.exc-review-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.exc-review-user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.exc-review-user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.exc-review-info > div:first-child {
    margin-bottom: 5px;
}
.exc-review-text {
    margin-top: 10px;
}
.review-toggle {
    font-size: 14px;
    color: var(--theme-color);
    text-decoration: underline;
}
.exc-reviews-empty {
    padding: 10px;
    background: #dbdbdb;
    text-align: center;
    border-radius: 10px;
}
.exc-review-form {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    gap: 20px;
}
.review-rate-btn.scored svg path, 
.review-rate-btn:hover svg path, 
.review-rate-btn:hover ~ .review-rate-btn svg path {
    fill: #FFBA00;
}
.review-form-rating {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.exc-review-form textarea {
    height: 80px;
}
.ask-field-wrap {
    margin-bottom: 20px;
}
.ask-field-wrap label {
    color: var(--alter-color);
}
.ask-field-wrap textarea {
    height: 100px;
    margin-top: 5px;
}