.listing * {
    box-sizing: border-box;
    font-family: "Inter", Sans-serif;
}
.listing-filters-calendar {
    display: none !important;
}
.listing {
    position: relative;
}
svg.scroll_to_calendar {
    cursor: pointer;
}
#calendar_ancre {
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    text-decoration: underline;
    cursor: pointer;
}
.listing::after {
    content: '';
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    position: absolute;
    left: -30px;
    top: -30px;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
    pointer-events: none;
}

.listing::before {
    content: '';
    pointer-events: none;
    width: 70px;
    height: 70px;
    border: 3px solid #033839;
    border-radius: 100%;
    border-left: 0;
    border-top: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: loading 2s ease infinite;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2;
}

@keyframes loading {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

.listing.loading::before,
.listing.loading::after {
    opacity: 1;
}

.listing-product {
    display: flex;
    flex-direction: column;
    position: relative;
}

.listing-product-card {
    display: flex;
    flex-wrap: wrap;
}

.listing-product + .listing-product {
    margin-top: 80px;
}

.listing-product-main {
    padding: 24px 20px 20px;
    background: #f1f1f1;
    width: 320px;
    flex: 1;
    position: relative;
    text-decoration: none;
    color: black;
    z-index: 1;
}

.listing-product-main::before {
    content: '';
    position: absolute;
    right: -1px;
    width: 1px;
    height: 100%;
    border-right: 5px solid white;
    top: 0;
}

.listing-product-title {
    margin: 0;
	color: var( --e-global-color-primary ) !important;
}

@media (max-width: 992px) {
	.listing-product-title {
		color: white !important;
	}
}

.listing-product-subtitle {
    text-transform: uppercase;
    color: #282925;
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 400;
}

.listing-product-gallery-wrapper {
    position: relative;
    display: flex;
    max-width: 100%;
}

.listing-product-gallery {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 300px;
	--swiper-navigation-color: white;
	--swiper-navigation-size: 34px;
}

.listing-product-gallery-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    z-index: 1;
	color: white;
    cursor: pointer;
}

.listing-product-gallery-zoom {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease;
}

.listing-product-gallery.zoomed + .listing-product-gallery-zoom {
    opacity: 1;
    pointer-events: inherit;
}

.listing-product-gallery-zoom svg {
    width: 25px;
    height: 25px;
    color: white;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    cursor: pointer;
}

.listing-product-gallery-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.listing-product-gallery-zoom-slider {
    width: 80vw;
    height: 80vh;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transform: scale(0.95);
    transition: transform .3s ease;

    --swiper-navigation-color: white;
    --swiper-pagination-bullet-inactive-color: white;
    --swiper-pagination-color: white;
    --swiper-pagination-bullet-inactive-opacity: 0.6;
}

.listing-product-gallery.zoomed + .listing-product-gallery-zoom .listing-product-gallery-zoom-slider {
    transform: scale(1);
}

.listing-product-gallery-zoom-slider img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.listing-product-tag {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateY(50%) translateX(-50%);
    line-height: 1;
    padding: 6px 16px;
    background: black;
    text-transform: uppercase;
    z-index: 1;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 600;
}

.listing-product-tag.red {
    background: #ED6862;
}

.listing-product-gallery img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.listing-product-duration {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.listing-product-cures {
    margin-top: 20px;
    color: #242424;
}

.listing-product-cures p:first-child {    
	font-weight: 600;
    font-size: 14px;
}

.listing-product-cures p {
    margin: 0;
    font-weight: 400;
}

.listing-product-cure {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.listing-product-price-wrapper {
    margin-top: 20px;
    font-size: 14px;
    color: #747474;
    font-weight: 400;
}

.listing-product-price {
    color: var(--e-global-color-accent);
    font-size: 14px;
    display: block;
    font-weight: 500;
    line-height: 1.2;
}

.listing-product-persons {
    margin-top: 20px;
    font-size: 14px;
}

.listing-product-details {
    background: #f1f1f1;
    padding: 20px 20px 16px;
    display: flex;
    justify-content: space-between;
    flex: 3;
    min-width: 400px;
}

.listing-product-details > div:first-child {
	display: flex;
	flex-direction: column;
}

.listing-product-selector-label {
    font-weight: 600;
    font-size: 16px;
}

.listing-product-selector-label p {
    margin-top: 0;
} 

.listing-product-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-product-selector-toggle {
    position: relative;
    border: 1px solid black;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 10px;
    padding-right: 30px;
    background-color: white;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
}

.listing-product-selector-toggle > svg {
    color: black;
    width: 12px;
    height: 10px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.listing-product-selector-toggle.active > svg {
    transform: translateY(-50%) rotate(0);
}

.listing-product-selector > svg {
    margin-left: 16px;
    width: 40px;
    height: 32px;
    color: #747474;
}

.listing-product-selector-dropdown {
    border: 1px solid black;
    background-color: #FAFAFA;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 1;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .5s ease;
	padding: 8px 0;
}

.listing-product-selector-toggle.active ~ .listing-product-selector-dropdown {
    transform: translateY(0);
    opacity: 1;
    pointer-events: inherit;
}

.listing-product-selector-option {
    height: 30px;
    display: flex;
    align-items: center;
    font-weight: 500;
	transition: background-color .3s ease;
	padding: 0 24px;
}

.listing-product-selector-option:hover {    
	background-color: #eeeeee;
}

.listing-product-selector-option span {
    color: #ED6862;
    margin-left: auto;
    font-size: 12px;
    padding-left: 20px;
}

.listing-product-list {
    margin-top: 24px;
    font-size: 14px;
}

.listing-product-list ul {
    margin-left: 20px;
    padding-right: 20px;
}

.listing-product-btn-wrapper {
    padding-top: 24px;
    margin-top: auto;
    color: #949494;
    position: relative;
}

.listing-product-btn {
    font-size: 14px;
    font-weight: 600;
    background: var( --e-global-color-primary );
    color: white !important;
    padding: 8px 16px;
    margin-right: 8px;
    transition: background-color .3s ease;
    text-decoration: none;
	text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
}

.listing-product-btn:hover {
    background: var(--e-global-color-secondary);
    color: white;
}

.listing-product-footer {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 700;
    font-size: 14px;
}

.listing-product-dates {
    margin: -7px;
    margin-left: calc(24px - 7px);
    display: flex;
}

.listing-product-dates--nogap {
    margin-left: -7px;
    padding-bottom: 0 !important;
}

.listing-product-date {
    font-weight: 600;
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
    margin: 7px;
    padding: 6px 10px;
    cursor: pointer;
    position: relative;
    transition: background-color .3s ease;
    font-size: 12px;
}

.listing-product-date:hover {
    background: var(--e-global-color-460e6fd);
}

.listing-product-date.disabled {
    color: #BFBFBF;
    border-color: #B0B0B0BF;
    background-color: #F5F9F5;
    pointer-events: none;
}

.listing-product-date span {
    color: #ED6862;
	white-space: nowrap;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 100%;
    text-align: center;
    width: 100%;
    padding-top: 4px;
	font-style: italic;
}

.listing-product-btn-info {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
}

.listing-product-info {
    display: inline;
    margin-left: 5px;
}

.listing-product-info > svg {
    position: relative;
    top: 4px;
}

.listing-product-info .info-content svg {
    width: 12px;
    right: 12px;
    height: 12px;
    top: 12px;
}

.listing-product-info .info-content p {
    margin-bottom: 4px;
    font-size: 12px;
}

.listing-product-info-content {
    border: 1px solid #cacaca;
    background: white;
    width: 100%;
    color: black;
}

/* ************* */
/* FILTERS */
/* ************* */

.listing-filters-wrapper * {
    box-sizing: border-box;
    font-family: "Inter", Sans-serif;
}

.listing-filters-wrapper a {
    font-weight: 400;
    color: inherit !important;
}

.listing-filters-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 60px;
    z-index: 2;
    position: relative;
}

.listing-filters {
    display: flex;
    position: relative;
}

.listing-filter {
    position: relative;
    height: 40px;
    width: 180px;
}

.listing-filter svg {
    width: 10px;
    height: 5px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    color: black;
}

.listing-filter-select {
    height: 100%;
}

.listing-filter-toggle {
    height: 100%;
    width: 100%;
    font-size: 14px;
    background: #f1f1f1;
    color: var(--e-global-color-text);
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
}

.listing-filter-toggle.selected {
    color: var(--e-global-color-accent);
}

.listing-filter-toggle.active svg {
    transform: translateY(-50%) rotate(0);
}

.listing-filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(241,241,241,1);
    color: rgba(86,85,80, 0.75);
    display: flex;
    flex-direction: column;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .3s ease;
}

.listing-filter-toggle.active + .listing-filter-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: inherit;
}

.listing-filter-dropdown.active {
    opacity: 1;
    transform: translateY(0);
}

.listing-filter-option {
    display: flex;
    align-items: center;
    padding: 7px 12px;
    font-size: 14px;
    transition: all .3s ease;
    line-height: 1;
    cursor: pointer;
}

.listing-filter-option:hover {
    background: rgba(6, 92, 93, 0.03);
}

.listing-filter-option.active {
    background: #065C5D;
    color: white;
}

.listing-filter-select-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 400;
}

.listing-filter input,
.listing-filter select {
    display: none;
}

.listing-filter + .listing-filter {
    border-left: 5px solid #ffffff;
}

.listing-filter-dropdown-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.listing-filter-period {
    position: unset;
}

.listing-filter-period .listing-filter-dropdown {
    padding: 24px;
    font-size: 15px;
    line-height: 1;
}

.listing-filter-period svg {
    right: 250px;
}

.listing-filter-dropdown-list + .listing-filter-dropdown-list {
    margin-top: 24px;
}

.listing-filter-dropdown-list-label {
    color: black;
    width: 130px;
}

.listing-filter-dropdown-list-item {
    border: 1px solid #DADADA;
	background: white;
    color: var( --e-global-color-text );
    padding: 8px;
    margin-left: 16px;
    height: 46px;
    font-size: 14px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
}

.listing-filter-dropdown-list-item.active {
    color: var( --e-global-color-primary );
    border-color: var( --e-global-color-primary );
}

.listing-filter-dropdown-list-item:hover {
    background: rgba(6, 92, 93, 0.03);
}

.listing-filter-dropdown-list-item-group {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
    margin-left: 12px;
    margin-top: 0px;
    min-width: 310px;
    flex: 1;
}

.listing-filter-dropdown-list-item-group .listing-filter-dropdown-list-item {
    height: auto;
    margin: 4px;
}

.listing-filter-dropdown-list-label + .listing-filter-dropdown-list-item {
    white-space: nowrap
}

.listing-filters-submit {    
    height: 40px;
    width: 56px;
    background-color: #121212;
    color: white;
    border: 0;
    cursor: pointer;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-filters-submit span {
    display: none;
}

.listing-filters-submit svg {
    width: 24px;
    height: 24px;
}

.listing-filters-reset {
    display: flex;
    align-items: center;
    text-decoration: underline;
    margin-left: 40px;
    line-height: 1.3;
    cursor: pointer;
    display: none;
    width: 150px;
    font-size: 14px;
}

.listing-filters-reset.active {
    display: flex;
}

.listing-filters-reset svg {
    color: #747474;
    margin-right: 16px;
    width: 16px;
    height: 16px;
}

.listing-filters-calendar {
    display: flex;
    align-items: center;
    text-decoration: underline;
    margin-left: 40px;
    line-height: 1.3;
    cursor: pointer;
    font-size: 14px;
}

.listing-filters-calendar a {
	color: var( --e-global-color-primary ) !important;
}

.listing-filters-calendar svg {
    color: var( --e-global-color-primary );
    margin-right: 16px;
    width: 40px;
    height: 40px;
}

.listing-empty {
    border: 1px solid black;
    background: #F1F3F1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
}

.listing-filters-toggle {
    display: none;
}

.product-reviews {
    align-self: flex-start;
	margin-top: 46px;
    padding-bottom: 30px;
    position: relative;
    width: 280px;
    overflow: hidden;
}

.product-review {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
}

.product-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-review-header svg {
    margin-left: auto;
    align-self: flex-start;
}

.product-review-letter {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    background: #8d6e63;
    border-radius: 100%;
    margin-right: 15px;
    color: white;
}

.product-review-name {
    font-weight: bold;
    display: block;
    line-height: 1;
}

.product-review-date {
    opacity: .5;
    font-size: 14px;
    font-weight: 400;
}

.product-review-message {
    font-weight: 300;
    font-size: 14px;
    margin-top: 5px;
}

.product-reviews .swiper-pagination {
    position: absolute;
    bottom: 0;
}

.product-reviews .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #F4F4F4;
    border: 1px solid var( --e-global-color-primary );
    border-radius: 100%;
    opacity: 1;
    margin: 0 6px;
}

.product-reviews .swiper-pagination-bullet-active {
    background: var( --e-global-color-primary );
}

.product-review-star:not(.active) svg {
    fill: none;
}

.wc-bookings-booking-form + .product-reviews {
    width: 100%;
    margin-top: 50px;
}



@media (max-width: 1200px) {
    .listing-product-reviews {
        display: none;
    }

    .listing-product-gallery {
        width: 250px;
    }

    .listing-product-details {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .product-reviews {
        display: none;
    }

    .listing-product-card {
        flex-direction: column;
        position: relative;
        border: 0;
    }

    .listing-product-gallery {
        width: 100%;
        height: 220px;
        border-radius: 0;
        max-width: unset;
    }

    .listing-product-main {
        width: auto;
        position: unset;
        padding: 24px 20px;
        max-width: 100%;
    }

    .listing-product-main::before {
        display: none;
    }

    .listing-product-title-wrapper {
        position: absolute;
        top: 30px;
        left: 45px;
        color: white;
    }
	
	.listing-product-gallery img {
    	filter: brightness(0.8);
	}

    .listing-product-title, 
    .listing-product-subtitle {
        color: white;
    }

    .listing-product-cures {
        margin: 0;
    }

    .listing-product-price-wrapper,
    .listing-product-persons {
        margin-top: 14px;
    }

    .listing-product-details {
        padding: 24px 20px;
        max-width: 100%;
        min-width: unset;
        border-radius: 0;
    }

    .listing-product-btn-wrapper {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .listing-product-btn {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .listing-product-selector-label {
        font-size: 14px;
    }

    .listing-product-list ul {
        padding-left: 20px;
    }

    .listing-product-footer {
        flex-direction: column;
        align-items: flex-start;
        font-weight: 400;
        width: auto;
    }

    .listing-product-dates {
        margin-top: 8px;
        justify-content: flex-start;
        margin-left: -7px;
        padding-bottom: 35px;
    }

    .listing-product-date {
        white-space: nowrap;
    }

    .listing-product-date-null {
        width: 20px;
        padding: 10px;
    }

    .listing-product-dates-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
        overflow: hidden;
        overflow-x: scroll;
        max-width: 95vw;
    }

    .listing-product-tag {
        right: 0;
        left: unset;
        transform: unset;
        bottom: unset;
        padding: 8px 20px;
    }

    .listing-filters-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background: white;
        margin: 0;
        padding: 20px;
    }

    .listing-filters-toggle {
        background: black;
        color: white;
        height: 39px;
        display: flex;
        align-items: center;
        padding: 0 23px;
        border: 0;
        white-space: nowrap;
        font-size: 16px;
        cursor: pointer;
    }

    .listing-filters-wrapper {
        flex-wrap: wrap;
        z-index: 10;
    }

    .listing-filters-calendar {
        margin-left: 22px;
        font-size: 14px;
    }

    .listing-filters-calendar svg {
        width: 34px;
        height: 34px;
    }

    .listing-filters {
        order: 1;
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
        border: 0;
        display: none;
    }

    .listing-filter {
        width: 100%;
        margin-bottom: 10px;
        border: 1px solid black;
        border-color: black !important;
    }

    .listing-filters-reset {
        order: 2;
        margin: 0;
        width: auto;
        margin-top: 10px;
    }

    .listing-filter-period .listing-filter-select {
        position: relative;
    }

    .listing-filter-period svg {
        right: 12px;
        top: 50%;
    }

    .listing-filter-dropdown {
        top: unset;
        bottom: calc(100% + 10px);
    }

    .listing-filters-submit {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .listing-filters-submit span {
        display: inline;
        padding-right: 8px;
    }

    .listing-filter-dropdown-list {
        flex-wrap: wrap;
        align-items: center;
    }
    
    .listing-filter-dropdown-list-label {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .listing-filter-dropdown-list-item {
        margin-left: 0;
        margin-right: 16px;
    }

    .listing-filter-dropdown-list-item:last-child {
        margin-right: 0;
    }

    .listing-filter-dropdown-list-item-group {
        max-width: 70%;
        margin-left: 0;
    }

    .listing-filters-toggle.active + .listing-filters {
        display: block;
    }

    .listing-filters-toggle--opened {
        display: none;
    }

    .listing-filters-toggle.active .listing-filters-toggle--opened {
        display: inline;
    }

    .listing-filters-toggle.active .listing-filters-toggle--closed {
        display: none;
    }
}