﻿:root {
    --dark: rgba(14, 89, 242, 0.1019607843);
    --dark-border: #12223e;
    --dark-font: #fff;
    --dark-font-low: #f1f1f1;
    --download-btn: #051634; /* #0E59F2;*/ /*PINK: #EFD7C9*/
    --download-btn-hover: #BDD7DB; /*#F4F7FB;*/
}
.top__bar-right ul {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on small screens */
    gap: 15px; /* Adds spacing between items */
    padding: 0;
    list-style: none;
}

    .top__bar-right ul li {
        display: inline-block;
    }

/* Stack items under each other on small screens */
@media (max-width: 768px) {
    .top__bar-right ul {
        flex-direction: column;
        align-items: center; /* Center items on smaller screens */
    }

        .top__bar-right ul li {
            width: 100%; /* Ensures full width */
            text-align: center;
        }
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.original-price {
    text-decoration: line-through;
    color: gray;
}
.d-none {
    display: none!important;
}
.banner__one-content ul {
    color: #fff;
}
.banner__one-content ul > li {
    margin-left: 10px;
    font-size: 18px;
}
    .banner__one-content ul > li > a {
        text-decoration: underline;
        font-size: 18px;
    }
        .banner__one-content ul > li > a:hover {
            color: var(--download-btn);
        }
        .header__area-menubar-right-sidebar-popup-social a:hover svg g {
            fill: white;
        }


.filter-container {
    margin-bottom: 10px;
    justify-content: center;
}

#session-filter {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

    #session-filter, #session-filter option:checked, #session-filter option {
        text-transform: uppercase;
    }

        #session-filter option:checked, #session-filter option:not(:checked):hover {
            background-color: var(--accent);
        }
/****************tabs-section****************/
.tsum-tabs-bg {
    position: relative;
    padding: 15px 5px;
    /* Establish stacking context */
    z-index: 0;
}

    .tsum-tabs-bg::before {
        content: ""; /* Required for pseudo-elements */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        opacity: 0.05;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        z-index: -1; /* Place it behind the content */
    }
#tsum-tabs h1 {
    padding: 50px 0;
    font-weight: 400;
    text-align: center;
}

#tsum-tabs p {
    margin: 0 0 5px;
    padding-right: 58px;
}

.tab-description p:last-child {
    padding-right: 75px !important;
    border-left: 2px solid var(--accent);
    padding-left: 15px;
}

.tab-sec-img {
    margin-left: -7px;
}

#tsum-tabs section {
    display: none;
    padding: 47px 0 0;
    text-align: left;
}

#tsum-tabs input {
    display: none;
}

#tsum-tabs label {
    display: inline-block;
    width: 18.5%;
    text-align: center;
    margin: 0 7px 0 6px;
}

@media screen and (max-width: 1200px) {
    #tsum-tabs label {
        width: 70%;
    }
}
@media screen and (min-width: 1201px) {
    #tsum-tabs label {
        width: 50%;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
#tsum-tabs label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px;
}

#tsum-tabs label:hover {
    color: #888;
    cursor: pointer;
}

#tsum-tabs #tab1:checked ~ #content1,
#tsum-tabs #tab2:checked ~ #content2,
#tsum-tabs #tab3:checked ~ #content3,
#tsum-tabs #tab4:checked ~ #content4 {
    display: block;
}

#tsum-tabs .Effective-sec-item {
    position: relative;
    color: #fff;
    opacity: 0.8;
    box-shadow: 6px 0 18px #e0f2fd;
    padding: 23px 27px 19px;
    transition: .6s all ease-in-out;
}

    #tsum-tabs .Effective-sec-item:hover {
        border-color: transparent;
        color: #fff;
        opacity: 0.8;
        background: var(--accent);
    }

#tsum-tabs [id^="tab"]:checked + label img {
    filter: brightness(0) invert(1);
}

#tsum-tabs .Effective-sec-item-title h4,
#tsum-tabs .Effective-sec-item-title span {
    padding: 0 39px;
}
    #tsum-tabs .Effective-sec-item-title span.tabs-time {
        font-size: 14px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
        #tsum-tabs .Effective-sec-item-title span.tabs-time i {
            vertical-align: middle;
            display: inline-flex;
            margin: 6px;
        }
#tsum-tabs [id^="tab"]:checked + label {
    background: var(--button-color);
    color: var(--primary-color);
    opacity: 1;
}

    #tsum-tabs [id^="tab"]:checked + label:after {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        position: absolute;
        border-style: solid;
        border-width: 12px 10px 0 10px;
        border-color: transparent transparent transparent transparent;
        left: 50%;
        transform: translate(-10px, 97px);
        top: 0px;
    }

#tsum-tabs .Effective-sec-item-title span {
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
}

#tsum-tabs .Effective-sec-item-title small {
    font-size: 18px;
    line-height: 20px;
}
/****************tabs-section-mobile****************/
@media only screen and (max-width: 1199px) {
    #tsum-tabs .Effective-sec-item {
        padding: 15px 18px 15px;
    }

    #tsum-tabs .Effective-sec-item-title span {
        font-size: 22px;
    }

    #tsum-tabs [id^="tab"]:checked + label:after {
        transform: translate(-10px, 85px);
    }
}

@media only screen and (max-width: 991px) {
    #tsum-tabs .Effective-sec-item-title h4, #tsum-tabs .Effective-sec-item-title span {
        padding: 0 0px;
    }

    #tsum-tabs .Effective-sec-item {
        padding: 15px 16px 15px;
    }

    .tabs-content {
        padding: 15px 15px 15px 20px;
        margin-bottom: 25px;
        display: inline-block;
    }

    #tsum-tabs label {
        width: 44%;
    }
}

@media only screen and (max-width: 767px) {
    #tsum-tabs label {
        width: 40%;
    }

    #tsum-tabs .Effective-sec-item {
        padding: 12px 10px 12px;
    }

    #tsum-tabs .Effective-sec-item-title span {
        font-size: 18px;
    }

    #tsum-tabs .Effective-sec-item-title small {
        font-size: 16px;
        line-height: 18px;
    }

    #tsum-tabs [id^="tab"]:checked + label:after {
        transform: translate(-10px, 80px);
    }

    #tsum-tabs section {
        padding: 30px 0 0;
    }
}

@media only screen and (max-width: 575px) {
    #tsum-tabs label {
        width: 45%;
        margin-bottom: 15px;
    }

    #tsum-tabs [id^="tab"]:checked + label:after {
        display: none;
    }

    #tsum-tabs .Effective-sec-item {
        padding: 10px 10px;
    }
}
/****************schedule design-body****************/
.filter-container {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .filter-container label {
        font-size: 1rem;
        font-weight: bold;
    }

    .filter-container select {
        margin-top: 0.5rem;
        padding: 0.5rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        width: 100%;
    }

/* Schedule Content */
.tabs-content {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .tabs-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
.value-sec.column {
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    min-width: 50%;
}
.space-evenly {
    justify-content: space-evenly !important;
}
.value-sec {
    flex: 0 0 15%;
    text-align: center;
    padding-right: 1rem;
}

    .value-sec .count {
        font-size: 2rem;
        font-weight: bold;
        color: #343a40;
    }

    .value-sec .date-con {
        font-size: 0.875rem;
        color: #6c757d;
    }

.detail-sec {
    flex: 1;
    display: flex;
    align-items: center;
}

figure {
    margin: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 1rem;
}

    figure img {
        width: 100%;
        height: auto;
    }
        figure img.circle {
            border: 4px solid var(--color-accent);
            border-radius: 50%;
        }
        #content2 figure img.circle {
            border: 4px solid var(--primary-color-1);
        }
.admin-con {
    margin-left: 20px;
}

    .admin-con h5, .admin-con h4 {
        margin: 0 0 0.5rem;
        font-size: 1rem;
        color: #007bff;
    }

    .admin-con ul {
        padding: 0;
        margin: 0;
        list-style: none;
        font-size: 0.875rem;
        color: #495057;
    }

    .admin-con li {
        margin-right: 1rem;
    }

        .admin-con li i {
            margin-right: 0.5rem;
            color: #6c757d;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .admin-con {
        margin-left: 3px;
    }

    .tabs-content {
        flex-direction: column;
        text-align: center;
    }

    .value-sec {
        margin-bottom: 1rem;
    }

    figure {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .admin-con h5, .admin-con h4 {
        font-size: 0.875rem;
    }

    .value-sec .count {
        font-size: 1.5rem;
    }
}

/* Button Styles */
.btn-download-agenda {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: var(--download-btn);
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-download-agenda:hover {
        background: var(--download-btn-hover);
        transform: translateY(-2px);
        color: var(--download-btn);
    }

    .btn-download-agenda:active {
        background: #cca300;
        transform: translateY(0);
    }
/* Dark Mode */
#tsum-tabs.dark .filter-container {
    background: var(--dark);
    color: #e0e0e0;
}

    #tsum-tabs.dark .filter-container select {
        background: var(--dark);
        color: #f0f0f0;
        border-color: var(--dark-border);
    }

        #tsum-tabs.dark .filter-container select option {
            background: var(--dark-border);
            color: var(--dark-font-low);
        }
#tsum-tabs.dark .tabs-session {
    padding: 15px;
    /*border-left: 3px solid var(--dark-border);
    background: url(https://rh.premadz.com/hayil_assets/icons/tabsession_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
    border-radius: 20px;
    border-left: 1px solid lightblue;
    border-bottom: 3px solid lightblue;
}
/* Hide tabs-session when its tabs-content child is display:none */
.tabs-session:has(.tabs-content[style*="display: none"]) {
    display: none;
}

/* Or if the content is hidden via visibility */
.tabs-session:has(.tabs-content[style*="visibility: hidden"]) {
    display: none;
}
#tsum-tabs.dark #content2 .tabs-session {
    border-left: 1px solid var(--primary-color-1);
    border-bottom: 3px solid var(--primary-color-1);
}
#tsum-tabs.dark .tabs-session .session-title {
    color: var(--text-heading-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 8px 15px;
    background-color: var(--color-accent);
    border-radius: 6px;
    display: inline-block;
}
#tsum-tabs.dark #content2 .tabs-session .session-title {
    background-color: var(--primary-color-1);
}
#tsum-tabs.dark .tabs-session .session-subtitle {
    font-size: 14px;

}
#tsum-tabs.dark .tabs-session .right-moderator,
#tsum-tabs.dark .tabs-content {
    cursor: pointer;
}

    /* Make sure only the speaker parts are clickable in tabs-content */
    #tsum-tabs.dark .tabs-content figure,
    #tsum-tabs.dark .tabs-content span:has(i.fa-user) {
        cursor: pointer;
    }
#tsum-tabs.dark .tabs-session .right-moderator {
    margin-bottom: -1.5rem;
    top: -50px;
    position: relative;
    width: 50%;
    right: 0;
    transform: translate(90%, 0%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#tsum-tabs.dark .tabs-session .right-moderator figure {
    width: 90px;
    height: 90px;
}
    #tsum-tabs.dark .tabs-content {
    background: var(--dark);
    border-color: var(--dark-border);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

    #tsum-tabs.dark .tabs-content:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

#tsum-tabs.dark .value-sec .count {
    color: #f1f1f1;
}

#tsum-tabs.dark .value-sec .date-con {
    color: var(--dark-font-low);
}

#tsum-tabs.dark .admin-con h5, #tsum-tabs.dark .admin-con h4 {
    color: #6ab7ff;
}
#tsum-tabs.dark #content2 .admin-con h5, #tsum-tabs.dark #content2 .admin-con h4 {
    color: var(--primary-color-1);
}

#tsum-tabs.dark .admin-con ul {
    color: var(--dark-font);
}

#tsum-tabs.dark .admin-con li i {
    color: var(--dark-font-low);
}

#tsum-tabs.dark .btn-download-agenda {
    background: var(--download-btn);
    color: #fff;
    border: 2px solid var(--download-btn-hover);
}

    #tsum-tabs.dark .btn-download-agenda:hover {
        background: var(--download-btn-hover);
        /*color: var(--download-btn);*/
    }

    #tsum-tabs.dark .btn-download-agenda:active {
        background: var(--download-btn-hover);
        color: var(--download-btn);
    }
