﻿:root {
    --carouselButtonBackground: #B2D4E3;
    --carouselButtonBorderColor: #B2D4E3;
    --carouselButtonTextColor: #045057;
    --carouselButtonHoverBackground: #000;
    --carouselButtonHoverBorderColor: #000;
    --carouselButtonHoverTextColor: #fff;
    --carouselButtonFontSize: 30px;
    --red: #dd0031;
    --highlightTextColor: #895f33;
    --hightBorderBottomColor: #dd0031;
    --featuredSellingQuicklyColor: #dd0031;
    --viewAllBtnBorderColor: #00204C;
}
.red {
    color: var(--red)!important;
}
.venueinfo-wrap {
    padding: 0px 20px 0px;
}
/*===  Custom Listing styles =====*/
.listing-head {
    padding-bottom: 30px;
}
#swCustomListings.customlisting-carousel {
    position: relative;
    width: 100%; /* Adjust width as needed */
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
}

.carousel-items {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-list-item{
    width: 100%;
    flex: none;
    display: flex;
    column-gap: 0px;
    align-items: center;
    justify-content: center;
}
.carousel-list-item .carousel-link-wrap{
    width: 100%;
    flex: none;
    display: flex;
    column-gap: 0px;
    align-items: center;
    justify-content: center;
}
.carousel-list-item .carousel-link-wrap:hover{
    color: var(--defaultLinkColor, #000);
    text-decoration: none;
}
.carousel-list-item .customlist-image{
    width: 60%;
}


.carousel-prev, .carousel-next {
    position: absolute;
    top: calc(50% - 30px);
    background-color: var(--carouselButtonBackground);
    color: var(--carouselButtonTextColor);
    border: 1px solid var(--carouselButtonBorderColor);
    font-size: var(--carouselButtonFontSize);
    cursor: pointer;
    z-index: 99;
    width: 34px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.carousel-prev:hover, .carousel-next:hover {
    position: absolute;
    background-color: var(--carouselButtonHoverBackground);
    color: var(--carouselButtonHoverTextColor);
    border: 1px solid var(--carouselButtonHoverBorderColor);
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

.customlist-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    max-width: 700px;
    display: block;
}

.customlist-description-wrap {
    text-align: center;
    width: 40%;
    box-sizing: border-box;
    padding: 0 80px 0 40px;

}
.customlist-description-wrap .buy-tickets {
    float: none;
}
.customlist-description-wrap .custom-list-name {
    font-size: 2em;
    margin: 0 auto 20px;
    color: #000;
}
.customlist-description-wrap .featured-items-description{
    /*color: #000;
    max-height: 146px;
    overflow: hidden;*/
}
.customlist-description-wrap .featured-items-description img{
    /*display: none;
    width: 0;
    height: 0;*/
}
.custom-list-description {
    font-size: 1.2em;
    display: block;
    padding-bottom: 30px;
    color: #000;
}
/*========  Favorite Events styles =============*/
#swFavoritelistWrap {
    display: inline-block;
    position: fixed;
    z-index: 9999;
    top: 55px;
    right: 30px;
}
#swFavoritelistWrap .sw-event-favorites-iconwrap {
    width: 40px;
    height: 60px;
    font-size: 30px;
    position: absolute;
    right: 0;
    cursor: pointer;  
}
#swFavoritelistWrap .sw-event-favorites-wrap {
    width: 260px;
    padding: 10px;
    background: #fff;
    color: #000;
    font-size: 14px;
    margin-top: 40px;
    position: absolute;
    top: 0;
    right: -400px; /* Initially off-screen */
    transition: right 0.4s ease, opacity 0.4s ease; /* Smooth transition for sliding and opacity */
    opacity: 0; /* Initially invisible */
    -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.5);
    box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.5);
}
#swFavoritelistWrap .sw-event-favorites-wrap.show {
    right: 0; /* Slide in from right */
    opacity: 1; /* Fade in */
}
#swFavoritelistWrap .sw-event-favorites-wrap ul {
    margin: 0;
    padding-left: 25px;
    line-height: 1.4;
}
#swFavoritelistWrap .sw-event-favorites-wrap ul li{
    padding: 5px 0;
}

/*========  Featured Events styles ========*/
#swFeaturedEventsWrap {
    padding: 20px 0;
}
.featured-events-wrap {
    width: 100%;
    display: flex;
    column-gap: 30px;
    row-gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.topinfo-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
}
.ondemand-item-wrap {
    width: 230px;
    background: rgba(167, 228, 146, .7);
    padding: 8px 15px;
    text-align: center;
    border-radius: 30px;
    color: #000;
    box-sizing: border-box;
    margin-left: calc(50% - 115px);
    font-size: 12px;
    float: left;
    margin-bottom: 20px;
}
.ondemand-item-wrap span{
    display: block;
    font-size: 14px;
}
.ondemand-item-wrap span.indemand-additional-desc{
    font-style: italic;
}
.ondemand-item-wrap .indemand-title {
    font-weight: 600;
}
.featured-events-wrap .calendar-limited-availability-legend-icon {
    height: 3px;
    width: 20px;
    background-color: var(--featuredSellingQuicklyColor);
    display: inline-block;
}
.featuredevent-box {
    width: calc(33% - 20px);
    height: 350px;
    color: #fff;
    border-radius: 8px;
    padding: 20px 0px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 20px;
    cursor: pointer;
}
.featuredevent-box.highlightthisbox .featuredevent-infowrap {
    position: relative;
}
.featuredevent-box.highlightthisbox .featuredevent-infowrap:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    bottom: -3px;
    background-color: var(--hightBorderBottomColor);
    z-index: 99;
}
.featuredevent-box .background-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    flex-wrap: wrap;
    align-content: space-between;
}
.featuredevent-infowrap {
    display: block;
    text-align: center;
    padding: 30px 20px;
    color: #000;
    width: 100%;
    cursor: pointer;
    max-height: 101px;
    box-sizing: border-box;
}


.bottominfo-wrap {
    width: 100%;
    margin-bottom: 15px;
}
.bottominfo-wrap .left{
    width: calc(100% - 50px);
}
.featuredevent-title  {
    font-weight: 600;
}

.bottominfo-wrap .right{
    width: 50px;
    margin: 5px 10px 0;
    position: absolute;
    right: 0px;
    bottom: 40px;
}

.featured-togglelink {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    font-size: 30px!important;
}
.fav-link {
    color: #fff;
}
.fav-link:hover {
    color: var(--red);
}
.fav-link > i {
    transition: tansform 0.5s ease-in-out;
}
.featuredevent-favorite {
    color: #fff;
    font-size: 30px;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: 100%;
    margin: 5px 10px;
}

.bestseller-wrap {
    height: 30px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
}

.bestseller-wrap .bestseller {
    padding: 10px 30px 10px 30px;
    background: rgba(0, 0, 0, 1);
    border-radius: 20px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
/* .bestseller-wrap .bestseller:after {
    content: "";
    width: 35px;
    height: 35px;
    background: url(/images/3stars-bestseller-icon.png) no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    left: 10px;
    top: -8px;
} */


.highlightinfo-wrap {
    margin: 10px 0 16px;
    -webkit-border-radius: 8px;
	-moz-border-radius:8px;
	border-radius:8px;
    padding: 32px 60px;
    -webkit-box-shadow: 0px -2px 2px -2px rgba(26,26,26,0.16), 0px 2px 2px 0px rgba(26,26,26,0.24) ;
    -moz-box-shadow: 0px -2px 2px -2px rgba(26,26,26,0.16), 0px 2px 2px 0px rgba(26,26,26,0.24);
    box-shadow: 0px -2px 2px -2px rgba(26,26,26,0.16), 0px 2px 2px 0px rgba(26,26,26,0.24);
    margin-bottom: 16px;
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    display: flex;
    position: relative;
}
.highlightdescription-wrap {
    width: 100%;
}
.highlighttitle-wrap {
    width: 100%;
    padding-bottom: 20px;
}
.highlighttitle-wrap .highlight-title {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.6;
}
.highlight-dateschedule-wrap {
    padding: 5px 0;
}
.highlighttitle-wrap .highlight-date,
.highlighttitle-wrap .highlight-schedule
{
    color: var(--highlightTextColor);
    font-weight: 600;
    line-height: 1.5;
}

.highlightinfo-wrap .button-wrap{
   padding-top: 16px;
}
.highlightinfo-wrap .button{
   float: none;
}
.event-pricing-wrap {
    padding-top: 15px;
}
.event-pricing-wrap span {
    display: block;
}
.event-pricing-wrap .pricing-title{
    font-weight: 600;
}
.highlightinfo-wrap .prevevent-btn,
.highlightinfo-wrap .nextevent-btn {
    position: absolute;
    top: calc(50% - 30px);
    background-color: var(--carouselButtonBackground);
    color: var(--carouselButtonTextColor);
    border: 1px solid var(--carouselButtonBorderColor);
    font-size: var(--carouselButtonFontSize);
    cursor: pointer;
    z-index: 99;
    width: 28px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.nextevent-btn:hover, .prevevent-btn:hover {
    position: absolute;
    background-color: var(--carouselButtonHoverBackground);
    color: var(--carouselButtonHoverTextColor);
    border: 1px solid var(--carouselButtonHoverBorderColor);
}
.prevevent-btn {
    left: 0;
}
.nextevent-btn {
    right: 0;
}

/*===  Start New home page layout for Event Images  =====*/
.homefeaturedimages-wrap {
    width: 490px;
    min-width: 490px;
}
.highlightimages-wrap {
    min-width: 490px;
    position: relative;
    width: 490px;
    height: 350px;
    overflow: hidden;
}
.hideimageswrap {
    display: none;
}

.featured-images {
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    object-fit: contain;
    object-position: top;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.featured-images:first-of-type {
    opacity: 1;
}
.featured-images.active {
    opacity: 1;
}
.homefeaturedimages-pagination {
    position: relative;
    bottom: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-right: 40px;
}
.homefeaturedimages-pagination span {
    width: 15px;
    height: 15px;
    background-color: lightgray;
    border-radius: 50%;
    cursor: pointer;
}
.homefeaturedimages-pagination .active {
    background-color: black;
}
/*===  End New home page layout Event Images  =====*/




/*===  Custom Filters Style =====*/
.browseoptions-wrap {
    display: flex;
    width: 100%;
    column-gap: 10px;
}

#dateRangeWidget {
   width: 40%;
   min-width: 350px;  
}
.datefilter-wrap {
    width: 100%; 
    display: block;
    height: 34px;
    padding: 6px 12px;
    padding-right: 30px;
    font-size: 14px;
    line-height: 1.43em;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("../images/select_down.png")!important;
    background-repeat: no-repeat!important;
    background-position: right center!important;
    box-sizing: border-box;
    font-family: "Robot", sans-serif;
}
#filterCalendarWrap {
    width: 100%;
    position: absolute;
    top: 36px;
    left: 0;
    padding: 15px 10px;
    background: #fff;
    border: 1px solid #000;
    z-index: 999;
    box-sizing: border-box;
}
/*===  Custom Season Category Style =====*/
.datefilter-wrap {
    width: 100%; 
    display: block;
    height: 34px;
    padding: 6px 12px;
    padding-right: 0px;
    font-size: 14px;
    line-height: 1.43em;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("../images/select_down.png")!important;
    background-repeat: no-repeat!important;
    background-position: right center!important;
    box-sizing: border-box;
    font-family: "Robot", sans-serif;
}
.filterdropdown-wrap {
    width: 100%;
    position: absolute;
    top: 36px;
    left: 0;
    padding: 0px;
    background: #fff;
    border: 1px solid #000;
    z-index: 999;
    box-sizing: border-box;
}

.filter-checkbox-wrap {
    padding: 10px;
}
.filter-checkbox-wrap .checkboxes{
    display: flex;
    align-items: center;
    line-height: 0;
    flex-wrap: nowrap;
    column-gap: 10px;
    row-gap: 10px;
    padding: 6px;
}
.filter-checkbox-wrap .checkboxes:hover{
    background: #f2f2f2;
}

.filter-checkbox-wrap .checkboxes input{
    margin: 0;
}
.filter-checkbox-wrap .checkboxes label{
    padding: 0;
}

.filterdropdown-wrap select.showare-select[multiple] {
    height: auto;
    width: 100%;
    padding: 0;
    background: none!important;
    box-shadow: none!important;
    border: none!important;
    border-radius: 0px!important;
}
.filterdropdown-wrap select.showare-select[multiple] option {
    padding: 5px 0 5px 5px;
    width: 100%;
}
.filterdropdown-wrap select.showare-select[multiple] option:checked:hover {
    background-color: light-dark(rgb(206, 206, 206), rgb(84, 84, 84));
    color: light-dark(rgb(16, 16, 16), rgb(255, 255, 255));
}

/*===  Selected Filter style =====*/
.home-filter-wrap {
    margin: 20px 0px;
}
.filters-total-wrap {
    margin: 20px 0px;
}
.filterstotal-text {
    font-weight: 500;
}
.options-selected-wrap {
    display: flex;
    column-gap: 10px;
    row-gap: 20px;
    padding: 0px 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.options-selected-wrap .button {
    font-size: 14px;
    margin-bottom: 0;
}
.view-all-btn-wrap {
    width: 130px;
}
.view-all-btn-wrap .button {
    background: #fff;
    border: 1px solid var(--viewAllBtnBorderColor);
    color: var(--viewAllBtnBorderColor);
    padding: 10px 20px;
    line-height: 1;
    text-transform: none;
}
.view-all-btn-wrap .button:hover {
    background: var(--viewAllBtnBorderColor);
    border: 1px solid var(--viewAllBtnBorderColor);
    color: #fff;
}
.options-wrap {
    display: flex;
    row-gap: 10px;
    column-gap: 10px;
    width: calc(100% - 150px);
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.options-wrap .filter-item{
    padding: 10px 20px;
    background: #f2f2f2;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    column-gap: 10px;
    cursor: pointer;
    align-items: center;
}
.close-option {
    display: inline-flex;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    line-height: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-sizing: border-box;
    font-weight: 600;
}

/*===  Custom Date Range Calendar style =====*/
.sw-datepicker.daterange-calendar {
    font-family: 'Roboto', sans-serif;
}
.sw-datepicker.daterange-calendar .month-wrap {
    background-color: #fff !important;
    border: 1px solid #fff !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.sw-datepicker.daterange-calendar .month {
    display: inline-block;
    line-height: 1.5em;
    font-weight: bold;
    font-size: 14px;
    color: #1d1d1c;
}
.sw-datepicker.daterange-calendar .month-wrap {
    background-color: #fff!important;
    border: 1px solid #fff!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-align: center;
}

.sw-datepicker.daterange-calendar .bn_prev, 
.sw-datepicker.daterange-calendar .bn_next {
    color: #707073;
    margin: 0;
    border: none;
}
.sw-datepicker.daterange-calendar .bn_prev .fa, 
.sw-datepicker.daterange-calendar .bn_next .fa {
    color: #707073;
    font-size: 20px;
}
.sw-datepicker.daterange-calendar .bn_prev:hover .fa, 
.sw-datepicker.daterange-calendar .bn_next:hover .fa {
    color: #1d1d1c;
}
.sw-datepicker.daterange-calendar .bn_prev .fa.fa-backward:before {
    content: ""!important;
}
.sw-datepicker.daterange-calendar .bn_next .fa.fa-forward:before {
    content: ""!important;
}

.sw-datepicker.daterange-calendar .bn_prev:hover, 
.sw-datepicker.daterange-calendar .bn_prev:focus, 
.sw-datepicker.daterange-calendar .bn_next:hover, 
.sw-datepicker.daterange-calendar .bn_next:focus {
    margin: 0px;
    background-color: #fff;
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.sw-datepicker.daterange-calendar table {
    width: 100%;
}
.sw-datepicker.daterange-calendar .weekdays abbr {
    font-size: 12px;
    font-weight: 400;
    color: #707073;
    opacity: 1;
}
.sw-datepicker.daterange-calendar .weekdays th {
    /*border-bottom: 1px solid #555; */
}
.sw-datepicker.daterange-calendar table td.today {
    background: #fff;
}

.sw-datepicker.daterange-calendar table td.today span.calendar-day {
    background: lightblue;
}
.sw-datepicker.daterange-calendar table td span.calendar-day {
    display: inline-flex;
    height: 1.6em;
    width: 1.6em;
    line-height: 1.5em;
    border-radius: 10px;
    margin: .1em;
    position: relative;
    border: 1px solid #ccc;
    background: #fcfcfc;
    color: #707073;
    cursor: pointer;
    letter-spacing: -1px;
    justify-content: center;
    align-items: center;
}
.sw-datepicker.daterange-calendar table td.focus {
    background: #fafafa;
}
.sw-datepicker .day-cell.muted{
    cursor: default !important;
}











@media screen and (max-width: 1650px){
    /* === If cart is present with the logo section, make sure that it will not be behind the favorite section  ===*/
    .headerbuttons {
        margin-right: 50px!important;
    }
}

@media screen and (max-width: 1400px){
    .filterdropdown-wrap {
        width: 180px;
    }
}
@media screen and (max-width: 1024px){
    .sw-nav {
        z-index: 9999!important;
    }
    .main-constrain-width {
        padding: 10px 20px;
    }
	.featuredevent-box {
        width: calc(50% - 20px);
    }
    .highlighttitle-wrap .button,
    .customlist-description-wrap .button {
        width: auto!important;
        padding: .5em 1.5em;
        line-height: 1.4;
    }
    .highlightinfo-wrap {
        margin: 0px 0 16px;
        padding: 30px 30px 20px;
    }
    .carousel-prev {
        left: 0px;
    }
    .carousel-next {
        right: 0px;
    }
    .customlist-image {
        width: 45%;
    }
    .customlist-description-wrap {
        width: 50%;
    }
    .carousel-list-item {
        width: 100%;
        display: flex;
        column-gap: 0px;
    }
    .browse-labels-wrap {
        padding: 10px;
        display: none;
    }
    .options-wrap {
        display: flex;
        row-gap: 10px;
        column-gap: 15px;
        width: calc(100% - 100px);
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .view-all-btn-wrap .button {
        background: #fff;
        border: 1px solid var(--viewAllBtnBorderColor);
        color: var(--viewAllBtnBorderColor);
        min-width: 80px;
        padding: 10px 20px;
        border-radius: 20px;
        line-height: 1;
        text-transform: none;
    }
    .home-filter-wrap .close-widget {
        display: none!important;
    }
    .filterdropdown-wrap {
        width: 180px;
    }
     #activiyTypeWidget .filterdropdown-wrap {
        left: auto;
        right: 0;
    }
    .filter-checkbox-wrap .checkboxes {
        line-height: 1;
    }
    .sw-nav {
        padding-right: 75px;
    }
    #dateRangeWidget {
        min-width: 300px;
    }
    #swFavoritelistWrap {
        top: 12px;
        right: 10px;
    }
    .customlist-description-wrap .featured-items-description {
        max-height: 100%!important;
    }
    /* === If cart is present witht he logo section, make sure that it will not be behind the favorite section  ===*/
    .sw-nav #cartformobile {
        position: absolute;
        right: 80px;
    }
}
@media screen and (max-width: 960px){
    .highlighttitle-wrap {
        width: 100%;
    }
    #dateRangeWidget {
        width: 50%;
    }
    .browseoptions-wrap {
        display: flex;
        width: 100%;
        column-gap: 10px;
        flex-wrap: wrap;
        row-gap: 15px;
    }
    .control-box {
        padding: 0px;
        width: calc((100% / 3) - 15px);
    }
    #seasonWidget {
        width: calc(50% - 13px);
    }
    .filterdropdown-wrap {
        width: 100%;
    }
    .homefeaturedimages-wrap {
        display: none!important;
    }
    .highlightdescription-wrap {
        padding: 0 20px;
    }
}
@media screen and (max-width: 780px){
    .carousel-list-item {
        width: 100%;
        flex-wrap: wrap;
    }
    .customlist-description-wrap {
        width: 100%;
        padding: 30px;
    }
    .customlist-image {
        width: 100%;
        text-align: center;
    }
    .highlightinfo-wrap {
        flex-wrap: wrap;
        padding: 30px 40px;
    }

    .highlightdescription-wrap {
        width: 100%;
        padding-top: 20px;
    }
	.featuredevent-box {
        width: 100%;
    }
    .options-wrap {
        width: 100%;
    }
    .view-all-btn-wrap {
        width: 100%;
    }
    #filterCalendarWrap {
        width: 450px;
    }
    #dateRangeWidget {
        width: 100%;
    }
    .carousel-list-item .carousel-link-wrap {
        flex-wrap: wrap;
    }
    .carousel-list-item .customlist-image {
        width: 100%;
    }
    .customlist-image img {
        width: 100%;
        height: auto!important;
        object-fit: cover;
        display: block;
    }
    .control-box,
    #seasonWidget  {
        padding: 0px;
        width: calc(50% - 5px);
    }
    #seasonWidget {
        width: 100%;
    }
    .highlightinfo-wrap .prevevent-btn,
    .highlightinfo-wrap .nextevent-btn {
        width: 20px;
        height: 40px;
        padding: 0;
    }
    .highlightinfo-wrap .prevevent-btn i,
    .highlightinfo-wrap .nextevent-btn i{
        font-size: 18px;
    }
    .carousel-prev, .carousel-next {
        width: 20px;
        height: 40px;
        padding: 0;
    }
    .carousel-prev i,
    .carousel-next i{
        font-size: 18px;
    }
    .venueinfo-wrap {
        letter-spacing: .2px;
    }
    .featuredevent-box.highlightthisbox .featuredevent-infowrap:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        left: 0;
        bottom: -3px;
        background-color:transparent!important;
        z-index: 99;
    }
    .highlightdescription-wrap {
        padding: 0px;
    }
}
@media screen and (max-width: 500px){
    .browseoptions-wrap {
        row-gap: 10px;
    }
    
    #dateRangeWidget {
        width: 100%;
    }
    
    #filterCalendarWrap {
        width: 100%;
    }
    .browseoptions-wrap {
        justify-content: space-between;
    }
    /* === If cart is present with the logo section, make sure that it will not be behind the favorite section - this is set mainly for Gaylord design ===*/
    .sw-nav #cartformobile {
        position: absolute;
        right: 50px;
    }
    .sw-nav  .header-logo-image {
        width: 210px;
        max-width: 200px;
    }
    i#menu-icon {
        width: 20px!important;
    }
    #swFavoritelistWrap .sw-event-favorites-iconwrap {
        width: 30px;
        top: 5px;
        font-size: 24px;
    }
}







