.news-and-events-list.tour {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 100px;
}
.news-and-events-list.tour .list-item {
    border: none;
    position: relative;
    padding-bottom: 0;
}
.news-and-events-list.tour .list-item .preview-image {
    aspect-ratio: 3/2;
    background-size: cover;
}
.news-and-events-list.tour .list-item .item-section {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
}
.news-and-events-list.tour .list-item .item-section span {
    background-color: #EEE3C7;
    font-size: 18px;
    color: #33302A;
    padding: 7px 10px 5px;
}
.news-and-events-list.tour .list-item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 50% 30px 30px;
    text-align: left;
    background: linear-gradient(90deg, rgba(51, 48, 42, 0.9) 0%, rgba(51, 48, 42, 0.63) 100%);
    font-size: 24px;
    font-weight: 300;
}
.news-and-events-list.tour .list-item .title span.price {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 20px;
}
.news-and-events-list.tour .list-item .title span.price > span {
    font-size: 36px;
}

.tour-filter-form {
    border: 2px solid #EEE3C7;
    padding: 50px 50px 40px 50px;
    color: #EEE3C7;
    text-transform: uppercase;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.tour-filter-item {
    flex: 1;
}
.tour-filter-item > p {
    margin-bottom: 10px;
}
.tour-filter-item > p.range-label {
    color: #fff;
    margin-bottom: 5px;
}
.tour-filter-item input, .tour-filter-item select {
    width: 100%;
}
.tour-filter-item select {
    line-height: 38px;
    height: 38px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 16px;
}
.tour-filter-item select option {
    line-height: 38px;
    height: 38px;
    padding: 10px 0px;
    color: #000;
}
.tour-filter-item select option[selected] {
    background-color: #EEE3C7;
}

input[type="range"] {
    -webkit-appearance: none; /* Removes default styling for WebKit browsers */
    appearance: none; /* Removes default styling for other browsers */
    width: 100%; /* Adjust as needed */
    height: 1px; /* Adjust as needed */
    background: #fff; /* Background color of the track */
    border-radius: 1px; /* Rounded corners for the track */
    outline: none; /* Removes outline on focus */
}
/* WebKit browsers (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-runnable-track, input[type="range"]::-moz-range-track  {
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 1px;
}

/* WebKit browsers (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px; /* Width of the thumb */
    height: 16px; /* Height of the thumb */
    background: #33302a; /* Color of the thumb */
    border-radius: 1px; /* Makes the thumb circular */
    border: 3px solid #EEE3C7;
    cursor: pointer;
}
/* Firefox */
input[type="range"]::-moz-range-thumb {
    width: 16px; /* Width of the thumb */
    height: 16px; /* Height of the thumb */
    background: #33302a; /* Color of the thumb */
    border: none; /* Removes default border in Firefox */
    border-radius: 1px; /* Makes the thumb circular */
    border: 3px solid #EEE3C7;
}



.selectel {
    max-width: 300px;
    user-select: none;
    position: relative;
}

.selectlist > div {
    padding: 10px 20px;
    cursor: pointer;
    text-transform: none;
}
.button {
    padding: 10px 0;
    cursor: pointer;
}
.selectlist > div:hover, .selectlist > div.active{
    background: #EEE3C7;
}
.button {
    height: 38px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    position: relative;
    text-transform: none;
}



.button:before {
    content: "";
    display: block;
    transform: rotate(0);
    transition: transform .1s;
    background-color: #fff;
    height: 2px;
    width: 7px;
    position: absolute;
    top: 15px;
    transform: rotate(45deg);
    right: 4px;
}

.button:after {
    content: "";
    display: block;
    transform: rotate(0);
    transition: transform .1s;
    background-color: #fff;
    height: 2px;
    width: 7px;
    position: absolute;
    top: 15px;
    right: 0;
    transform: rotate(-45deg);
}


.selectlist {
    max-height: 320px;
    overflow: auto;
    display: none;
    background-color: #fff;
    color: #000;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 10;
}

.selectlist::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
    height: 4px;
}

.selectlist::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #EEE3C7;
}


a.tour-btn {
    background-color: #EEE3C7;
    padding: 20px 50px 15px;
    text-transform: uppercase;
    color: #33302A;
    text-decoration: none;
    display: inline-block;
}
.btn-cover {
    width: 100%;
    text-align: center;
    padding-top: 0;
}

section.content {
    background-image: url(/tour/bg-premium.png);
    background-position: center bottom 70px;
    background-size: contain;
    background-repeat: no-repeat;
}


@media (max-width: 768px) {
    .tour-filter-form {
        flex-direction: column;
    }
    .news-and-events-list.tour {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }
    .news-and-events-list.tour .list-item .item-section span {
        font-size: 12px;
    }
    .news-and-events-list.tour .list-item .title {
        font-size: 14px;
        padding: 20px 50% 15px 15px;
    }
    .news-and-events-list.tour .list-item .title span.price {
        font-size: 12px;
    }
    .news-and-events-list.tour .list-item .title span.price > span {
        font-size: 20px;
    }
}