.filters_and_option {
    display: flex;
    gap: 10px;
    width: 90%;
    margin: auto;
    align-items: center;
}

.view_all_festivals_and_seasons_button_mobile {
    display: none !important;
}

.show_map_toggle {
    display: flex;
    gap: 16px;
    margin-left: 15px;
    align-items: center;
}

.switch-container {
    position: relative;
    display: inline-block;
}

.switch {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 40px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(59, 197, 37, 1);
    border-radius: 34px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 40px;
    width: 60px;
    border-radius: 20px;
    left: 0;
    bottom: 0;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: white;
}

input:checked+.slider:before {
    transform: translateX(60px);
    background-color: rgba(59, 197, 37, 1);
}

.labels {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
    z-index: 1;
    color: white;
}

.labels::before {
    content: attr(data-off);
}

.labels::after {
    content: attr(data-on);
}

input:checked~.labels::before {
    color: rgba(59, 197, 37, 1);
}

input:checked~.labels::after {
    color: white;
}

input:not(:checked)~.labels::before {
    color: rgba(59, 197, 37, 1)
}

input:not(:checked)~.labels::after {
    color: white;
}

.form-select {
    border-radius: 100px !important;
    /*background-color: transparent !important;*/
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 30px;
    height: 45px;
    /*width: fit-content !important;*/
    outline: none !important;
    box-shadow: none !important;
}

.form-select:active {
    border-radius: 100px !important;
    background-color: transparent !important;
    border: 1px solid white;
    color: white;
    font-weight: 700;
    /*padding-left: 20px;
    padding-right: 30px;*/
    height: 45px;
    width: fit-content !important;
    outline: none !important;
    box-shadow: none !important;
}

.custom-select-arrow {
    appearance: none;
    background-color: transparent;
    background-image: url("/assets/enjoy-assets/images/dropdown_arrow.svg");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 12px;
    padding-right: 10px;
    color: white;
}

.custom_date_button {
    border-radius: 100px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-weight: 700;
    padding-left: 30px;
    padding-right: 30px;
    height: 45px;
}

.all_events_outer_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    margin: auto;
    margin-bottom: 80px;
}

.must_see_card {
    width: calc(33% - 20px);
    /* Adjust width to account for gap */
    box-sizing: border-box;
    margin-top: 20px;
}

.image_inside_all_events {
    border-radius: 20px;
    width: 100%;
}

.image_container_must_see_seasons {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
}

.all_events_container {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
    justify-content: flex-start;
    /* Align items to the left */

}

.concerts_card {
    height: 441px;
    width: 100%;
    border: 1px solid rgba(238, 4, 101, 1);
    border-radius: 20px;
    display: flex;
}

.festivals_and_seasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 70px;
}

.festivals_and_seasons_title {
    font-weight: 900;
    font-size: 55px;
    line-height: 36px;
    text-align: center;
}

.festivals_and_seasons_contnet {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 70px;
}

.festivals_and_seasons_row {
    display: flex;
    gap: 30px;
    flex-wrap:wrap;
    justify-content:center;
}

.festivals_and_seasons_season {
    height: 200px;
    width: 30%;
    border: 1px solid rgba(130, 254, 72, 1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    justify-content:center;
}

.image_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.festivals_and_seasons_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black 10%, transparent 100%);
    border-radius: 20px;
}

.absolute_festival_title {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 25px;
    font-weight: 800;
    z-index: 10;
}

.view_all_festivals_and_seasons_button {
    border: 1px solid white;
    border-radius: 100px;
    width: 15%;
    height: 45px;
    background-color: transparent;
    color: white;
    font-weight: 800;
    align-self: center;
    margin-top: 30px;
}

.load_more_button {
    border: 1px solid white;
    border-radius: 100px;
    width: 15%;
    height: 45px;
    background-color: transparent;
    color: white;
    font-weight: 800;
    align-self: center;
    text-align: center;
}

.md-drppicker.ltr .calendar.left .calendar-table{
    border:none;
}

.md-drppicker.ltr .calendar.right .calendar-table {
    border: none;
}



.md-drppicker .btn.btn-default {
    background-color: transparent !important;
    border: 1px solid white;
    border-radius: 100px;
    color: white !important;
    text-transform: none !important;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.md-drppicker .btn {
    background-color: white !important;
    border: 1px solid white;
    border-radius: 100px !important;
    color: black !important;
    text-transform: none !important;
    padding: 0px 20px !important;
    margin: 0px 10px;
}

.md-drppicker .btn:hover, .md-drppicker .btn:focus{
background-color: white !important;
border: 1px solid white;
border-radius: 100px;
color: black !important;
text-transform: none !important;
padding-left: 20px;
padding-right: 20px;
}

.md-drppicker td.end-date {
    border-radius: 2em 0 0 2em !important;
}
.md-drppicker td.start-date {
    border-radius: 0 2em 2em 0 !important;
}
    .md-drppicker td.start-date.end-date {
        border-radius: 4px !important;
    }
.md-drppicker .clear svg {
    color: white !important;
    height: 20px;
}
.dropdown-content div .buttons_input {
    direction: ltr;
}
.md-drppicker td.available.prev, .md-drppicker th.available.prev {
    display: block;
    background-image: url(/assets/enjoy-assets/images/cal_arrow_rev.svg) !important;
    background-repeat: no-repeat;
    background-size: .5em;
    background-position: center;
    opacity: .8;
    border-radius: 2em;
    transform: rotateY(180deg);
}

.md-drppicker .calendar-table
{
    border: 0px !important;
}
.md-drppicker td.available.next, .md-drppicker th.available.next {
    /*transform: none !important;*/
    display: block;
    background-image: url(/assets/enjoy-assets/images/cal_arrow.svg) !important;
    background-repeat: no-repeat;
    background-size: .5em;
    background-position: center;
    opacity: .8;
    border-radius: 2em;
}

.md-drppicker td.available.next:hover, .md-drppicker th.available.next:hover {
transform: none!important;
  }


.md-drppicker td.available:hover, .md-drppicker th.available:hover {
    background-color: none !important;
    border-color: transparent;
    color: inherit;
    background-repeat: no-repeat;
    background-size: .5em;
    background-position: center;
    margin: .25em 0;
    opacity: .8;
    border-radius: 2em;
    transform: scale(1);
    transition: none !important;
}
@media only screen and (min-width: 769px) {
    .md-drppicker {
        width: 600px !important;
    }

}
    @media only screen and (max-width: 768px) {      

        .show {
            /*padding-left: 10px !important;*/
        }

        .custom-select-arrow[aria-expanded="true"] {
            background-color: transparent !important;
            color: white !important;
            background-image: url("/assets/enjoy-assets/images/dropdown_arrow_expanded.svg");
        }

        .event-listing-data {
            padding: 1.06rem;
            padding-bottom: 2.77rem;
            padding-top: 0px !important;
        }

        .md-drppicker {
            width: 300px !important;
            top: 0px !important;
            left: -100px !important;
        }


        #custom_input_for_date_mobile{
           background-color: transparent !important;
           color: white !important;
           border: none !important;
        }

        #custom_input_for_date_mobile::placeholder {
            color: white !important;
        }

        .buttons .buttons_input {
            display: flex;
            gap: 10px;
        }

        .md-drppicker {
            width: 300px !important;
            top: 0px !important;
            left: -100px !important;
        }

        .festivals_and_seasons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            margin: auto;
            text-align: center;
            justify-content: center;
            overflow: scroll;
        }

        .festivals_and_seasons_row {
            display: flex;
            gap: 20px;
            overflow: scroll;
            width: max-content;
            margin-right: 30px;
        }

            .festivals_and_seasons_row::-webkit-scrollbar {
                display: none !important;
            }

    .festivals_and_seasons_season {
        height: 200px;
        background-color: aquamarine;
        width: 320px !important;
        border: 1px solid rgba(130, 254, 72, 1);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        object-fit: cover;
        position: relative;
        overflow: hidden;
        cursor:pointer;
    }

        .festivals_and_seasons_contnet {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
            width: 95%;
            margin-left: auto;
            overflow-x: scroll;
        }

            .festivals_and_seasons_contnet::-webkit-scrollbar {
                display: none !important;
            }

        .filters_and_option {
            display: flex;
            gap: 10px;
            width: 90%;
            margin: auto;
            align-items: center;
            overflow-x: scroll;
            margin-bottom: 50px;
            height: 100%;
        }

            .filters_and_option::-webkit-scrollbar {
                display: none;
            }

        .view_all_festivals_and_seasons_button_mobile {
            border: 1px solid white;
            border-radius: 100px;
            width: 50%;
            height: 45px;
            background-color: transparent;
            color: white;
            font-weight: 800;
            align-self: flex-start;
            margin-top: 30px;
            margin-left: 5%;
        }

        .view_all_festivals_and_seasons_button {
            display: none;
        }

        .concerts_card {
            height: 400px;
            width: 100%;
            border: 1px solid rgba(238, 4, 101, 1);
            border-radius: 20px;
            display: flex;
        }

        .place_togo_image {
            border-radius: 20px;
            width: 100% !important;
        }

        .owl-item img {
            height: 100% !important;
        }

        .festivals_and_seasons_title {
            font-weight: 900;
            font-size: 35px;
            line-height: 36px;
            margin-bottom: 20px;
            text-align: center;
        }

        .all_events_outer_container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 90%;
            margin: auto;
            margin-bottom: 80px;
        }


        .all_events_container {
            flex-wrap: nowrap;
            padding-top: 10px;
            display: flex;
            width: max-content;
            flex-direction: row;
            overflow: scroll;
            gap: 30px;
            width: 100%;
            margin: auto;
            margin-bottom: 50px;
            justify-content: flex-start;
        }

            .all_events_container::-webkit-scrollbar {
                display: none;
            }

        .must_see_card {
            width: 100% !important;
            flex: 0 0 auto;
            box-sizing: border-box;
            margin-top: 20px;
        }

        .load_more_button {
            border: 1px solid white;
            border-radius: 100px;
            width: 50%;
            height: 45px;
            background-color: transparent;
            color: white;
            font-weight: 800;
            align-self: flex-start;
            text-align: center;
        }

        .custom_date_button {
            border-radius: 100px;
            background-color: transparent;
            border: 1px solid white;
            color: white;
            font-weight: 700;
            padding-left: 40px;
            padding-right: 40px;
            height: 45px;
        }
    }
    /* Events Search */
    .filters_and_option {
    display: flex;
    gap: 10px;
    width: 90%;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.filters_inner {
    display: flex;
    gap: 10px;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

    .custom-dropdown button:hover {
        background-color: #FFF5
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

    .dropdown-content div {
        padding-top: 8px;
        padding-bottom:8px;
        padding-left: 10px;
        padding-right: 16px;
        cursor: pointer;
        gap: 0px !important;
        margin-bottom: 0px ;        
    }

       /* .dropdown-content div:hover {
            background-color: #f1f1f1;
        }*/

.custom-dropdown.show .dropdown-content {
    display: flex;
    /*background-image: url(/assets/enjoy-assets/images/gradient_jpg.jpg);*/
    background: linear-gradient(315deg, rgb(67 124 123) 0%, rgb(5 32 110) 50%, rgb(61 114 92) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding-left: 15px;
    padding-right: 15px;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 20rem;
}

.custom-dropdown.show .dropdown-content a {
    color: white !important;
}

    .custom-dropdown.show .dropdown-content label {
        color: white !important;
    }

.custom_cal_divider {
    width: 90%;
    margin: auto;
    height: 1.5px;
    background-color: #d3d3d3;
    padding: 0px !important;
    border-radius: 100px;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.custom_dropdown_element {
    color: black;
    cursor: pointer;
    font-weight: 600;
}

/*.custom-select-arrow[aria-expanded="true"] {
    background-color: white;
    color: black;
    background-image: url("/assets/enjoy-assets/images/dropdown_arrow_expanded.svg");
}*/

.multi .multi__dropdown {
    width: 15.3rem;
    position: absolute;
    z-index: 1000;
    top: auto;
    left: auto;
    right: auto;
    background-color: #fff;
    padding: 1.11rem 1.56rem;
    border: 0;
    border-radius: 3px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    max-height: 70%;
}

.multi__dropdown {
    font-family: sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    overflow-y: auto;
}
.multi .multi__dropdown ul {
    padding: 0;
}

.multi .multi__dropdown ul .multi__li-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.89rem;
    line-height: 150%;
    color: #222;
    margin-bottom: 0.56rem;
}
    .multi .multi__dropdown ul .multi__li-item img, .dropdown-icon {
        max-width: 1.94rem;
        max-height: 1.94rem;
        width: fit-content;
        height: fit-content;
        border-radius: 50%;
        margin-right: 0.56rem;
        object-fit: cover;
        position: relative;
        z-index: -1;
    }

.multi .multi__dropdown ul .multi__li-item.multi__li-item--selected {
    color: #222;
    font-weight: 700;
    justify-content: initial;
    position: relative;
}
    .multi .multi__dropdown ul .multi__li-item.multi__li-item--selected::after
     {
        background: none;
        content: "\e91a";
        font-family: "icomoon" !important;
        font-size: 0.4rem;
        position: absolute;
        right: -0.5rem;
        left: auto;
        top: 0.2rem;
        color: #0E2E86;
        display: inline-block;
        width: .35em;
        height: .4em;
    }
.multi__display {
    appearance: none;
    background-color: transparent;
    background-image: url(/assets/enjoy-assets/images/dropdown_arrow.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
    color: white;
    height: 45px;
    width: fit-content !important;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 700;
    padding-left: 20px;
    border: 1px solid white;
    border-radius: 100px !important;
}
.multi
{
    padding:0px;
}

.multi__dropdown--toggle {
    background-color: white;
    color: black;
    background-image: url("/assets/enjoy-assets/images/dropdown_arrow_expanded.svg");
}
.multi__display::after {
background:none;
content:none;
}

.multi__li-item a{
    color:black;
}
.empty-temp-cont .temp-message, .empty-temp-cont .temp-note {
    color: white;
}

.md-drppicker {
    width: 600px;
    border: 1px solid #D9B537;
    background-image: url(../images/gradient_jpg.jpg);
    border-radius: 20px !important;
    color: white !important;
}

    .md-drppicker .calendar-table, .md-drppicker td.off {
        background-color: transparent !important;
    }

    .md-drppicker th {
        color: white !important;
        font-weight:700;
    }

/*.active-location a::after {
    background: none;
    content: "\e91a";
    font-family: "icomoon" !important;
    font-size: 0.4rem;
    position: absolute;
    right: -0.5rem;
    left: auto;
    top: 0.2rem;
    color: #0E2E86;
    display: inline-block;
    width: .35em;
    height: .4em;
}*/

.dropdown-content .active-location a {
    color: #222;
    font-weight: 700;
    justify-content: initial;
    position: relative;
}

.pagination-cont .page-counter {
    color: white;
}
/*
.filters_inner .clear-all-btn {
    position: relative;
    border: 0;
    background-color: transparent;
    outline: none;
    font-size: .78rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    margin: 0 .5rem
}

.filters_inner .clear-all-btn:focus {
    outline: none
}

.filters_inner .clear-all-btn:after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background: #666;
    transition: all .5s ease-out
}

.filters_inner .clear-all-btn:hover {
    cursor: pointer
}

    .filters_inner .clear-all-btn:hover::after {
        width: 100%
    }*/

.custom-dropdown .custom-select-arrow {
    width: 180px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0px;
}

    .custom-dropdown .custom-select-arrow.active-select {
        color: black;
        background-color: white;
        background-image: url(/assets/enjoy-assets/images/dropdown_arrow_selected.svg);
    }
.modal-body .custom_dropdown_element, .modal-body .active-location a::after {
    color: white;
}
.modal-body img.dropdown-icon {
    position: static;
}
.custom_dropdown_element.active-location .inner_mobile_filter_search_item p {
    font-weight: 900;
    width: 100%;
}

.custom_dropdown_element.active-location .inner_mobile_filter_search_item::after {
    background: none;
    content: "\e91a";
    font-family: "icomoon" !important;
    font-size: 0.4rem;
    position: relative;
    color: white;
    display: contents;
    width: .35em;
    height: .4em;
    float: left;
}
.dropdown-content .active-location a
{
    width:100%;
    display:contents;
}
.dropdown-content .active-location::after {
    /* background: none;
    content: "\e91a";
    font-family: "icomoon" !important;
    font-size: 0.4rem;
    position: relative;
    display: block;
    width: .35em;
    height: .4em;
    float: left;
    padding-top:12px;*/


    content: "\e91a";
    font-family: "icomoon" !important;
    font-size: 0.7rem;
    margin-top: -23px;
    position: absolute;
    float: left;
    color: white;
    left: 10%;
    display: flex;
    align-items: flex-end;
    align-self: center;
}
 .custom_dropdown_element
{
    padding:5px;
}

.custom_dropdown_element input {
    border-radius: 100px;
}

.new_interactions_div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #565656;
    padding: 10px;
    border-radius: 10px;
}


.share_item {
    display: flex;
    gap: 5px;
    align-items: center;
}

.wishlist_container{
    margin-bottom: 120px
}

.login_wishlist {
    border: 1px solid #10D9F4;
    border-radius: 10px;
    display: flex;
    padding: 40px;
    text-align: center;
    align-items: center;
    width: 50%;
    margin: auto;
    margin-bottom: 50px;
    background-color: rgb(0, 0, 0, 0.3);
}

.login_banner {
    width: 80%;
    margin: auto;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .login_wishlist {
        width: 90%;
    }

    .login_banner {
        width: 100%;
    }
}