/* Events Home: Featured Events */
.fevents{
    margin-bottom: 50px;
}
.fevents-cards{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}
/* Card */
.fevents-card{
    background-color: #fff;
    padding: 10px 10px 20px;
    border-radius: 10px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.fevents-card-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.fevents-card-txt{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.fevents-card-h{
    margin-bottom: 10px;
}
.fevents-card-p{
    line-height: 1.25;
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);

    display: -webkit-box;
    -webkit-line-clamp: 3;   /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fevents-card-bg{
    display: none;
}
@media (min-width: 744px) {
    .fevents-cards{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .fevents-h{
        font-size: 31.25px;
        line-height: 1.25;
        margin-bottom: 30px;
    }
    .fevents-cards{
        gap: 30px;
    }
    .fevents-card{
        padding: 20px;
        border-radius: 20px;
    }
    .fevents-card-h{
        font-size: 28px;
        line-height: 1.25;
    }
    .fevents-card-p{
        margin-bottom: 15px;
        font-size: 20px;
    }
}
@media (min-width: 1200px) {
    .fevents-cards {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
    .fevents-card-img{
        max-width: 460px;
        margin-bottom: unset;
    }
    .fevents-card{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        gap: 30px;
        background-color: unset;
        padding: 30px 60px 30px 0;
        border-radius: 0;

        position: relative;
    }
    .fevents-card-bg{
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        right: 0;
        left: 100px;
        background-color: #fff;
        z-index: -1;
        border-radius: 20px;
    }
    .fevents-card-txt{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}





/* Events Home: Upcoming Section */
.uevents{
    margin-bottom: 105px;
}
.uevents-h{
    margin-bottom: 30px;
}
.uevents-cards{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

/* Card */
.uevents-card{
    border-radius: 10px;
    overflow: hidden;
    padding: 145px 10px 20px;

    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
}
.uevents-card-whitebg{
    position: absolute;
    z-index: -100;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.uevents .arrow-link{
    margin-top: 35px;
}
.uevents-card-img_wrap{
    height: 125px;
    width: 100%;

    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
}
.uevents-card-date_wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;

    position: absolute;
    z-index: 0;
    left: 20px;
    bottom: 15px;
}
.uevents-card-date-date{
    font-family: 'Recoleta';
    font-size: 48px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
}
.uevents-card-date-month{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}
.uevents-card-time{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.8);

    position: absolute;
    z-index: 0;
    right: 14px;
    bottom: 20px;
}
.uevents-card-bg{
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.uevents-card-bg-img{
    position: absolute;
    z-index: -6;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.uevents-card-bg-overlay{
    background-color: rgba(65, 64, 66, 0.75);

    position: absolute;
    z-index: -5;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.uevents-card-bg-img-alt{
    position: absolute;
    z-index: -8;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.uevents-card-txt-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.uevents-card .eyebrow-txt{
    margin-bottom: 8px;
    line-height: 1.25;
}
.uevents-card-h{
    font-family: 'Recoleta';
    font-weight: 500;
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #0C344A;

    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.uevents-card-h:hover{
    color: #4D8390;
    text-decoration: underline;
}
.uevents.uevents-single{
    padding-top: 30px;
    border-top: 1px solid rgba(65, 64, 66, 0.2);
    margin-top: 25px;
    margin-bottom: 80px;
}
@media (min-width: 744px) {
    .uevents-cards{
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
    .uevents.uevents-single .uevents-cards .uevents-card:last-of-type{
        display: none;
    }
}
@media (min-width: 1024px) {
    .uevents-card .eyebrow-txt{
        font-size: 13px;
    }
    .uevents-cards{
        gap: 30px;
    }
    .uevents-card {
        padding: 155px 20px 30px;
    }
    .uevents-h {
        font-size: 31.25px;
        line-height: 1.25;
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .uevents.uevents-single{
        border-top: unset;
    }
    .uevents-cards{
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }
    .uevents.uevents-single .uevents-cards .uevents-card:last-of-type{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}








/* ============Individual Event Page========= */
.ievent .primary_btn{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}
#tribe-events-pg-template {
    margin: unset !important;
    max-width: unset !important;
    padding: unset !important;
}
#tribe-events-pg-template {
    background-color: unset !important;
}
.ievent-rside .ievent-sched,
.ievent-rside .ievent-atc,
.ievent-rside .ievent-venue{
    display: none;
}
.ievent-lside{
    padding-top: 20px;
    margin-bottom: 20px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;

    position: relative;
}
.ievent-h{
    margin-bottom: 12px;
    line-height: 45px;
}
.ievent-img{
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}
@media (min-width: 744px) {
    .ievent-img{
        height: unset;
    }
}
@media (min-width: 1024px) {
    .ievent .container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        gap: 40px;
        position: relative;
    }
    .ievent-h{
        font-size: 48.83px;
        line-height: 1.25;
        margin-bottom: 20px;
    }
    .ievent-img{
        margin-bottom: 30px;
    }
    .ievent-lside .primary_btn,
    .ievent-lside .ievent-sched,
    .ievent-lside .ievent-atc,
    .ievent-lside .ievent-venue{
        display: none;
    }
    .ievent-rside{
        margin-top: 55px;
        height: auto;
    }
    .ievent-lside {
        padding-top: 40px;
        margin-bottom: 0;
    }
    .ievent-lside .ievent-notice{
        display: none;
    }
    .ievent-rside .ievent-atc,
    .ievent-rside .ievent-venue{
        display: block;
    }
    .ievent-rside .ievent-sched{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .ievent .primary_btn{
        position: sticky;
        top: 108px;
        z-index: 50;
    }
    .ievent .blog-body p {
        margin-bottom: 20px;
    }
}
@media (min-width: 1200px) {
    .ievent .container{
        gap: 80px;
    }
    .ievent-rside{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 300px;
                flex: 0 0 300px;
    }
}
@media (min-width: 1500px) {
    .ievent-lside .blog-body {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Mini Box: Schedule */
.ievent-sched{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(65, 64, 66, 0.25);
    margin-bottom: 20px;
}
.ievent-sched-day{
    font-family: 'Recoleta';
    font-weight: 500;
    font-size: 40px;
    line-height: 40px;
    color: #414042;
}
.ievent-sched-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
}
.ievent-sched-month{
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    color: rgba(65, 64, 66, 0.8);
}
.ievent-sched-time{
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(65, 64, 66, 0.8);
}
@media (min-width: 1024px) {
    .ievent-sched{
        padding: 20px 25px;
    }
    .ievent-sched-day {
        font-family: 'Recoleta';
        font-weight: 500;
        font-size: 52px;
        line-height: 50px;
        color: #414042;
    }
}






/* Mini Box: Add to Calender */
.ievent-atc{
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(65, 64, 66, 0.2);
    width: 100%;
    margin-bottom: 20px;
}
.ievent-atc-h{
    font-size: 14px;
    margin-bottom: 6px;
    color: rgba(65, 64, 66, 0.8);
    line-height: 1.25;
}
.ievent-atc-boxes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.ievent-atc-box{
    width: 65px;
    height: 50px;
    border-radius: 5px;
    background-color: rgba(65, 64, 66, 0.1);
    cursor: pointer;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.ievent-atc-box:hover{
    background-color: rgba(65, 64, 66, 0.15);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


/* Block: Venue */
.ievent-venue{
    width: 100%;
    margin-bottom: 30px;
}
.ievent-venue-h{
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(65, 64, 66, 1);
}
.ievent-venue-address{
    font-size: 16px;
    line-height: 22px;
    /* margin-bottom: 15px; */
    color: rgba(65, 64, 66, 0.8);
}
.ievent-venue-link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    color: #60A4B4;
    text-decoration: underline;
    /* margin-bottom: 20px; */
    margin-top: 15px;

    -webkit-transition: all 0.2s ease;

    -o-transition: all 0.2s ease;

    transition: all 0.2s ease;
}
.ievent-venue-arrow-icon{
    -webkit-transition: all 0.2 ease;
    -o-transition: all 0.2 ease;
    transition: all 0.2 ease;
    position: relative;
}
.ievent-venue-link:hover .ievent-venue-arrow-icon{
    bottom: 1px;
    left: 1px;
}
.ievent-venue-map{
    width: 100%;
    height: 180px;
    border-radius: 10px;
    border: 1px solid rgba(65, 64, 66, 0.2);
    overflow: hidden;
    margin-top: 20px;
}
@media (min-width: 1024px) {
    .ievent-rside .ievent-venue{
        margin-bottom: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(65, 64, 66, 0.2);
    }
}




/* Block: Organizers */
.ievent-organizers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(65, 64, 66, 0.2);
    width: 100%;

    border-top: 1px solid rgba(65, 64, 66, 0.2);
    padding-top: 25px;
    margin-top: 25px;
}
.ievent-organizers-h{
    font-size: 18px;
    font-weight: 700;
    color: rgba(65, 64, 66, 1);
    line-height: 1.25;
}
.ievent-organizers-boxes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}
.ievent-organizers-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}
.ievent-organizers-box-name{
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(65, 64, 66, 0.8);
}
.ievent-organizers-box-contact{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
}
.ievent-organizers-box-contact-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.ievent-organizers-box-contact-box-icon{
    height: 22px;
}
.ievent-organizers-box-contact-box-a{
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    color: rgba(65, 64, 66, 0.75);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.ievent-organizers-box-contact-box-a:hover{
    color: #4D8390;
}
@media (min-width: 1024px) {
    .ievent-organizers{
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
}



/* Block: Share */
.ievent-share{
    margin-top: 20px;
}
.ievent-share-h{
    font-size: 18px;
    font-weight: 700;
    color: rgba(65, 64, 66, 1);
    line-height: 1.25;
    margin-bottom: 10px;
}
.ievent-share-p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(65, 64, 66, 0.8);
    line-height: 22px;
    margin-bottom: 20px;
}
.ievent-share-socials{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}
.ievent-share-socials-icon-a,
.ievent-share-socials-icon{
    height: 30px;
}


/* Tickets Modal */
.dbwp-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    padding:24px;
    z-index:99999;
}
.dbwp-modal[hidden]{
    display:none;
}
.dbwp-modal__body{
    background:#fff;
    width:100%;
    max-width:580px;
    max-height:85vh;
    overflow:auto;
    padding:0;
    border-radius:12px;
}
.dbwp-modal__close{
    position:absolute;
    top:14px;
    right:18px;
    padding:0;
    margin:0;
    border:0;
    background:transparent;
    font-size:28px;
    line-height:1;
    cursor:pointer;
}
.entry .entry-content .event-tickets .tribe-tickets__tickets-form, .event-tickets .tribe-tickets__tickets-form{
    max-width: unset !important;
    margin: 0 !important;
}
.tribe-common a.tribe-common-c-btn--small, .tribe-common button.tribe-common-c-btn--small, .tribe-common input[type=button].tribe-common-c-btn--small, .tribe-common input[type=submit].tribe-common-c-btn--small{
    background-color: #60A4B4 !important;
}
.tribe-common a.tribe-common-c-btn--small:active, .tribe-common a.tribe-common-c-btn--small:disabled, .tribe-common a.tribe-common-c-btn--small:focus, .tribe-common a.tribe-common-c-btn--small:hover, .tribe-common button.tribe-common-c-btn--small:active, .tribe-common button.tribe-common-c-btn--small:disabled, .tribe-common button.tribe-common-c-btn--small:focus, .tribe-common button.tribe-common-c-btn--small:hover, .tribe-common input[type=button].tribe-common-c-btn--small:active, .tribe-common input[type=button].tribe-common-c-btn--small:disabled, .tribe-common input[type=button].tribe-common-c-btn--small:focus, .tribe-common input[type=button].tribe-common-c-btn--small:hover, .tribe-common input[type=submit].tribe-common-c-btn--small:active, .tribe-common input[type=submit].tribe-common-c-btn--small:disabled, .tribe-common input[type=submit].tribe-common-c-btn--small:focus, .tribe-common input[type=submit].tribe-common-c-btn--small:hover{
    background-color: #4D8390 !important;
}
.entry .entry-content .event-tickets .tribe-tickets__attendee-tickets-item--has-focus, .event-tickets .tribe-tickets__attendee-tickets-item--has-focus{
    border-left-color: #60A4B4 !important;
}
.entry .entry-content .event-tickets .tribe-tickets__attendee-tickets-item--has-focus:after, .entry .entry-content .event-tickets .tribe-tickets__attendee-tickets-item--has-focus:before, .event-tickets .tribe-tickets__attendee-tickets-item--has-focus:after, .event-tickets .tribe-tickets__attendee-tickets-item--has-focus:before{
    background: #60A4B4 !important;
}
.event-tickets .tribe-tickets__form .tribe-common-form-control-checkbox__input:checked, .event-tickets .tribe-tickets__form .tribe-common-form-control-radio__input:checked {
    background-color: #60A4B4 !important;
    border-color: #60A4B4 !important;
}

/* Event Checkout Section */
.event-checkout-sec{
    margin-bottom: 50px;
}
.event-checkout-sec .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.event-checkout-sec-wrap{
    margin-top: 50px;
    margin-bottom: 60px;
    max-width: 600px;
    width: 100%;
}
.tribe-tickets__commerce-checkout-header-link-modify-attendees{
    display: none !important;
}
.page-id-277 .event-checkout-sec-wrap{
    margin-bottom: 80px !important;
}
.event-tickets .tribe-tickets__commerce-checkout-purchaser-info-wrapper, .tribe-common .tribe-tickets__commerce-checkout-purchaser-info-wrapper {
    margin-bottom: 0 !important;
}
.event-tickets .tribe-common-c-loader{
    background-color: transparent !important;
}
@media (min-width: 1024px) {
    .event-checkout-sec{
        margin-bottom: 100px;
    }
}

/* Event notice */
.ievent-notice{
    font-size: 16px;
    line-height: 1.25;
    color: #664D03;
    padding: 25px 20px;
    font-style: italic;
    background-color: #FFF3CD;
    border-radius: 15px;
    border: 1px solid rgba(102, 77, 2, 0.2);
    margin-bottom: 20px;
    text-align: center;

    width: 100%;
}

/* Mini Events */
.ievent-core{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
}
.ievent-soa-p{
    margin-bottom: 12px;
    color: rgba(0, 0, 0, .75);
}
.ievent-soa-boxes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 30px;
    margin-bottom: 15px;
    max-width: 650px;
}
.ievent-soa-box{
    background-color: #E4E3E2;
    padding: 80px 15px 20px;
    width: 100%;

    position: relative;
}
.ievent-soa-boxes .ievent-soa-box:nth-child(even) {
    background-color: #fff;
}
.ievent-soa-box-time_wrap{
    position: absolute;
    top: 20px;
    left: 15px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    gap: 2px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.ievent-soa-box-time-num{
    font-family: "Recoleta", sans-serif;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.25;
    font-style: normal;
    color: #414042;
}
.ievent-soa-box-time-allday{
    position: absolute;
    top: 20px;
    left: 15px;

    font-family: "Recoleta", sans-serif;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.25;
    font-style: normal;
    color: #414042;
}
.ievent-soa-box-time-period{
    font-family: "Recoleta", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    font-style: normal;
    color: #414042;
    margin-bottom: 6px;
}
.ievent-soa-box-link {
    font-size: 16px;
    line-height: 1.25;
    margin-top: 12px;
}
.ievent-soa-box-link:after {
    vertical-align: -6px;
}
.ievent-soa-box-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* gap: 8px; */
}
.ievent-soa-box-h{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: #414042;
}
.ievent-soa-box-p{
    font-size: 16px;
    line-height: 22px;
    color: rgba(65, 64, 66, 0.8);
    font-weight: 400;
    margin-top: 8px;
}
@media (min-width: 744px) {
    .ievent-soa-box {
        padding: 25px 30px 20px 180px;
    }
    .ievent-soa-box-link:after {
        width: 8px;
        height: 8px;
        margin-left: 6px;
    }
    .ievent-soa-box-time_wrap,
    .ievent-soa-box-time-allday {
        top: 20px;
        left: 25px;
    }
}
@media (min-width: 1024px) {
    .ievent-soa-h{
        font-size: 31.25px;
    }
    .ievent-soa-p {
        margin-bottom: 20px;
    }
}


/* Events category filter */
.events-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 40px 0 20px;
}
.events-filter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ffffff;

    /* Arrow */
    background-image: url("/wp-content/themes/dbwp/img/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;

    border: 1px solid #d6e2e7;
    border-radius: 14px;

    padding: 14px 46px 14px 18px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #0b2f3a;

    cursor: pointer;

    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;

    transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;

    -o-transition: border-color 0.2s ease, box-shadow 0.2s ease;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;

    transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;

    min-width: 240px;
}
.events-filter select:hover {
    border-color: #9cc7d3;
}
.events-filter select:focus {
    outline: none;
    border-color: #4ea4b8;
    -webkit-box-shadow: 0 0 0 3px rgba(78, 164, 184, 0.15);
            box-shadow: 0 0 0 3px rgba(78, 164, 184, 0.15);
}
@media (max-width: 768px) {
    .events-filter {
        margin: 30px 0 10px;
    }

    .events-filter select {
        width: 100%;
        min-width: unset;
    }
}
/* Dropdown options */
.events-filter select option {
    font-size: 15px;
    padding: 10px;
    color: #0b2f3a;
    background-color: #ffffff;
}

/* Selected option */
.events-filter select option:checked {
    background-color: #e6f2f6;
}
















