.modal-backdrop.show {
    display: none !important;
}

.modal.show {
    background-color: rgba(0, 0, 0, .5);
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #19595a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    margin: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@-webkit-keyframes spin {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.agendFull2026 {
    position: relative;
    padding: 40px 0;
    background: #f7f7f7;
}

.filter-wrapper {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.filter-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.filter-item,
.search-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
}

.filter-item select,
.search-box input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    background: #f9fafc;
    transition: 0.3s ease;
    outline: none;
    height: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.filter-item select:focus,
.search-box input:focus {
    border-color: #19595a;
    background: #fff;
    -webkit-box-shadow: 0 0 0 3px rgb(37 110 103 / 10%);
    box-shadow: 0 0 0 3px rgb(37 110 103 / 10%);
}

.filter-wrapper .btn-search,
.filter-wrapper .btn-reset {
    padding: 9px 26px;
    border-radius: 12px;
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s ease;
    height: 100%;
    font-size: 15px !important;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.filter-wrapper .btn-search {
    background: -o-linear-gradient(315deg, #42a489, #002a3d);
    background: linear-gradient(135deg, #42a489, #002a3d);
    color: #fff;
}

.filter-wrapper .btn-search:hover {
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 20px rgb(10 85 76 / 30%);
    box-shadow: 0 8px 20px rgb(10 85 76 / 30%);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.filter-wrapper .btn-reset {
    background: #f1f1f1;
    color: #333;
}

.filter-wrapper .btn-reset:hover {
    background: #e5e5e5;
}

/* ===============================
 DAY TABS
 =================================*/
.day-tabs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 1rem 40px;
}

.day-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 auto;
    width: 33.33333333%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 12px 10px 12px 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eaeaea;
    cursor: pointer;
    transition: 0.3s ease;
    min-width: 350px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.day-card:hover {
    border-color: #ddd;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.day-card.active {
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(6 151 136)), to(rgb(11 58 52)));
    background: -o-linear-gradient(bottom, rgb(6 151 136) 0%, rgb(11 58 52) 100%);
    background: linear-gradient(0deg, rgb(6 151 136) 0%, rgb(11 58 52) 100%);
    border: none;
}

.day-card.active .day-info p,
.day-card.active .day-info h3 {
    color: #fff;
}

.day-badge {
    background: #2f3345;
    color: #fff;
    font-weight: 800;
    padding: 6px 16px;
    font-size: 1.1vw;
    line-height: 1.2;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.day-card.active .day-badge {
    background: rgba(255, 255, 255, 0.2);
}

.day-info h3 {
    margin: 0;
    color: #000;
    font-size: 1.3vw;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.day-info p {
    margin: 2px 0 0;
    color: #000;
    font-size: 1.02vw;
    line-height: 1.4;
}

/* ===============================
 EVENT CARD
 =================================*/
.event-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    transition: 0.3s ease;
    position: relative;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.event-card:hover {
    -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}

/* Paid Badge */
.paid-bage {
    position: absolute;
    top: 20px;
    right: 0;
    padding: 4px 14px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 20px 0 0 20px;
    border: 1px solid #e2dfdf;
    border-right: none;
    background: #f3f1f1;
    color: #171717;
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
}

/* LEFT TIME BLOCK */
.event-time {
    min-width: 200px;
    padding: 22px 12px;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-right: 1px solid #348a78;
}

.time-range {
    font-size: 1.2vw;
    font-weight: 500;
    color: #fff;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(6 151 136)), to(rgb(11 58 52)));
    background: -o-linear-gradient(bottom, rgb(6 151 136) 0%, rgb(11 58 52) 100%);
    background: linear-gradient(0deg, rgb(6 151 136) 0%, rgb(11 58 52) 100%);
    padding: 6px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-align: center;
}

.event-date {
    font-size: 1.1vw;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 2.3vw;
    margin-top: 10px;
    padding-left: 10px;
}

.event-date em,
.event-date i {
    color: #000;
    padding-right: 5px;
}

/* RIGHT CONTENT */
.event-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 22px 26px;
}

.event-content h4 {
    font-size: 1vw;
    text-transform: uppercase;
    padding: 10px 0;
}

/* META */
.event-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.meta-pill {
    padding: 5px 16px;
    font-size: 0.9vw;
    border-radius: 50px;
    font-weight: 400;
    background: #919293;
    color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.meta-pill.stage {
    background: -o-linear-gradient(bottom, rgb(32 155 232) 0%, rgba(41, 144, 134, 1) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(32 155 232)), to(rgba(41, 144, 134, 1)));
    background: linear-gradient(0deg, rgb(32 155 232) 0%, rgba(41, 144, 134, 1) 100%);
    color: #fff;
}

.meta-pill em,
.meta-pill i {
    color: #fff;
    padding-right: 5px;
}

/* TITLE */
.event-title {
    font-size: 1vw;
    font-weight: 600;
    margin: 20px 0 10px;
    line-height: 1.5;
}

/* DESCRIPTION */
.event-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding-bottom: 20px;
}

.event-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 0;
    margin: 5px;
}

.event-description ul {
    margin: 0;
    padding: 0;
    padding-left: 20px;
}

.event-description li {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    list-style: disc;
}

/* ===============================
 SPEAKERS
 =================================*/
.event-speakers {
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
}

.speaker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    min-width: 260px;
}

.speaker img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #cecaca;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.speaker-name {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.speaker-role,
.speaker-country {
    font-size: 12px;
    color: #333;
}

.speaker-company {
    font-size: 13px;
    font-weight: 700;
    color: #19595a;
    margin-top: 2px;
}

/* ===============================
 MOBILE
 =================================*/
@media (max-width: 768px) {
    .day-tabs-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
.filter-item select, .search-box input {
    padding:5px 10px; font-size:13px; border-radius:4px;
}
.filter-row {
    justify-content: center;
    gap: 10px;
}
body .agendFull2026 .filter-item span.fa-angle-down {
    top: 6px;
    font-size: 13px;
}
.filter-item, .search-box {
    width: 48%;
    min-width: inherit;
    flex: 0 0 48%;
}
    .event-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .event-time {
        border-right: none;
        border-bottom: 1px solid #067565;
    }

}

/* MODAL BASE */
.speaker-modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 99;
    overflow: scroll;
    max-height: 400px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

/* CLOSE BUTTON */
.custom-close {
    color: #000;
    opacity: 1;
    top: 11px;
    position: absolute;
    right: 14px;
    z-index: 999;
}

/* LEFT SIDE */
.speaker-modal .speaker-left {
    background: #ffffff;
    border-right: 1px solid #f0f0f0;
    padding: 40px 20px;
    text-align: center;
}

.speaker-modal .speaker-img {
    border-radius: 12px;
    margin-bottom: 20px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.speaker-modal .speakermodal-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
}

.speaker-modal .speakermodal-role {
    font-size: 14px;
    line-height: 15px;
    color: #000;
    margin-bottom: 10px;
}

.speaker-modal .speakermodal-company {
    font-size: 18px;
    font-weight: 700;
    color: #19595a;
    margin-top: 2px;
    font-weight: 700 !important;
    margin-bottom: 10px;
    line-height: 20px;
}

.speaker-modal .speakermodal-country {
    font-size: 14px;
    line-height: 15px;
    color: #000;
    margin-bottom: 10px;
}

/* RIGHT SIDE */
.speaker-modal .speaker-right {
    padding: 40px;
}

.speaker-modal .speakermodal-bio p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.speaker-modal .sessionmodal-heading {
    margin-top: 30px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

/* SESSION BOX */
.speaker-modal .sessionmodal-box {
    margin-top: 15px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.speaker-modal .sessionmodal-box:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TOP ROW */
.speaker-modal .sessionmodal-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.speaker-modal .sessionmodal-top em,
.speaker-modal .sessionmodal-top i {
    color: #fff;
    padding-right: 5px;
}

.speaker-modal .sessionmodal-time {
    background: #19595a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.speaker-modal .sessionmodal-date em,
.speaker-modal .sessionmodal-date i {
    color: #000;
    padding-right: 5px;
}

.speaker-modal .sessionmodal-date {
    font-weight: 400;
    background: #ebe8e5;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

/* TAGS */
.speaker-modal .sessionmodal-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.speaker-modal .sessionmodal-tags i,
.speaker-modal .sessionmodal-tags em {
    color: #fff;
    padding-right: 5px;
}

.speaker-modal .tag-primary {
    padding: 5px 16px;
    font-size: 0.9vw;
    border-radius: 50px;
    font-weight: 400;
    background: #919293;
    color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.speaker-modal .tag-location {
    background: #2d6cdf;
    padding: 5px 16px;
    font-size: 0.9vw;
    border-radius: 50px;
    font-weight: 400;
    color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* TITLE */
.speaker-modal .sessionmodal-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
}

.filter-wrapper {
    position: sticky;
    top: 0%;
    z-index: 99;
    background: #fff;
    padding: 20px;
}

.filter-wrapper.sticky-active {
    background: #fff;
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gitexmaincontainer {
    overflow: unset !important;
}

.modal-backdrop.show {
    z-index: 999;
}

.Tab_content {
    display: none;
}

.Tab_content.active {
    display: block;
}


@media only screen and (min-width: 320px) and (max-width: 768px) {
    .filter-wrapper {
        position: relative;
    }

    .day-card {
        min-width: auto;
        gap: 5px;
    }

    .day-badge {
        padding: 6px 10px;
        font-size: 12px;
        margin-right: 5px;
    }

    .day-card {
        padding: 12px 10px 12px 10px;
    }

    .day-info h3 {
    margin: 0;
    font-size: 10px;
    text-align: center;
}

    .day-info p {
        margin: 2px 0 0;
        font-size: 10px;
    }

    .time-range {
        font-size: 12px;
    }

    .event-date {
        font-size: 12px;
        line-height: 18px;
        margin-top: 0;
        padding-left: 10px;
    }

    .paid-bage {
        top: 14px;
    }

    .meta-pill {
        padding: 5px 10px;
        font-size: 9px;
    }

    .event-content {
        padding: 20px 10px;
    }

    .event-title {
        font-size: 12px;
        margin: 20px 0 10px;
        line-height: 15px;
    }

    .event-description p {
        font-size: 10px;
        line-height: 1.6;
        margin: 0;
    }

    .event-content h4 {
        font-size: 12px;
    }

    .event-speakers {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .day-tabs-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .event-time {
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
    }

.day-card {
    width: 30%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
}


@media only screen and (min-width: 320px) and (max-width: 768px) {
    .speaker-modal .speaker-left {
        background: #f7f7f7;
        padding: 30px 20px;
        padding-bottom: 0;
    }

    .speaker-modal .speakermodal-name {
        padding-top: 20px;
    }

    .speaker-modal .sessionmodal-heading {
        margin-top: 20px;
    }

    .speaker-modal .speaker-right {
        padding: 10px 10px;
    }

    .speaker-modal .sessionmodal-box {
        padding: 10px;
    }

    .speaker-modal .sessionmodal-time {
        padding: 6px 5px;
        border-radius: 6px;
        font-size: 10px;
    }

    .speaker-modal .sessionmodal-date {
        padding: 6px 5px;
        border-radius: 6px;
        font-size: 10px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

    .speaker-modal .tag-primary {
        font-size: 10px;
        padding: 5px 10px;
    }

    .speaker-modal .tag-location {
        padding: 5px 10px;
        font-size: 10px;
    }

    .speaker-modal .sessionmodal-title {
        font-weight: 600;
        font-size: 12px;
        line-height: 14px;
    }
}

.agendFull2026 .filter-item select.form-select {
    position: relative;
    background-image: none !important;
}

.agendFull2026 .filter-item span.fa-angle-down {
    position: absolute;
    right: 0.5rem;
    top: 0.625rem;
    color: #727272;
    font-size: 1.125rem;
    line-height: 1.5;
}



/*  */