@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
*{
    box-sizing: border-box;
}
body{
    font-family: 'Inter', sans-serif;
    background-color: #f6f7fb;
}
.w-100{
    width: 100%;
}
/* Button */
.mu-btn{
    font-family: 'Inter', sans-serif;
    padding: 8px 16px;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.08), inset 0px -1px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}
.mu-btn.blue{
    color: #FFFFFF;
    background-color: #18A0FB;
}
.mu-btn:hover{
    background-color: #000;
    text-decoration: none;
}
/* End Button */
.em-card{
    padding: 24px;
    background-color: #fff;
    box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    /* max-width: 1104px; */
    margin: 0px auto;
}
.em-card .card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.channel-profile{
    display: flex;
    align-items: center;
}
.channel-profile .channel-dp{
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    padding: 10px;
}
.channel-profile .channel-dp img{
    width: 38px;
    height: 38px;
}
.channel-group{
    padding-left: 16px;
}
.channel-group .channel-name{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #202223;
}
.channel-group .channel-dep{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #7B8794;
}
.em-schedule-tab{
    margin-top: 21px;
}
.em-schedule-tab .schedule-tab{
    border: none;
    box-shadow: none;
    padding-left: 100px;
    padding-right: 100px;
}
.em-schedule-tab .nav-link{
    width: 100%;
    padding: 21px 0px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #202223;
    text-align: center;
}
.em-schedule-tab .nav-link{
    border:1px solid #f0f0f0;
    border-radius: 0px;
}
.em-schedule-tab .nav-link:hover{
    border:1px solid #f0f0f0;
    background-color: rgba(24, 160, 251, 0.10);
}
.em-schedule-tab .nav-link.active{
    border-bottom: 3px solid #18A0FB;
    font-weight: 600;
}
.em-schedule-tab .owl-prev,
.em-schedule-tab .owl-next{
    position: absolute;
    top: 0px;
    width: 100px;
    height: 64px;
    border:1px solid #f0f0f0 !important;
    background: #FFFFFF !important;
    box-shadow: inset -1px 0px 6px rgba(0, 0, 0, 0.06), inset -1px 0px 0px rgba(0, 0, 0, 0.06);
}
.em-schedule-tab .owl-prev{
    left: 0px;
}
.em-schedule-tab .owl-next{
    right: 0px;
}
.schedule-content .channel-content{
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    scrollbar-width: thin;
  scrollbar-color: #e3e3e3 transparent;
}
.schedule-content .channel-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.schedule-content .channel-content::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.schedule-content .channel-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.schedule-content .channel-content .channel-content-item{
    width: 300px;
    border:1px solid #f0f0f0;
    border-top: none;
    flex: 0 0 300px;
    padding: 24px;
}
.schedule-content .brand-logo{
    width: 100px;
    height: 92px;
    flex: 0 0 100px;
    border:1px solid #f0f0f0;
    border-top: none;
    padding: 28px;
}
.brand-logo img{width: 100%;height: 100%;}
.channel-content-group{
    display: flex;
}
.channel-content-item .event-name{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #202223;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}
.channel-content-item.active .event-name{
    color: #18A0FB;
}
.channel-content-item .event-time{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #585858;
    font-family: 'Inter', sans-serif;
}

/* no events found css */
.no-event{
    width: 100%;
    padding-left: 20px;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}
.ne-hide{display: none;}
.ne-show{display: flex;}

@media (max-width:767px) {
    .em-schedule-tab .schedule-tab{
        padding-left: 50px;
        padding-right: 50px;
    }
    .em-schedule-tab .owl-prev,
    .em-schedule-tab .owl-next{
        width: 50px;
    }
    .schedule-content .brand-logo{
        width: 50px;
        flex: 0 0 50px;
        padding: 28px 7px;
    }
    .schedule-content .channel-content .channel-content-item{
        padding: 15px;
    }
}
@media (max-width:480px) {
    .em-card{
        padding: 15px;
    }
    .channel-profile .channel-dp{
        width: 40px;
        height: 40px;
        padding: 5px;
    }
    .channel-profile .channel-dp img{
        width: 100%;
        height: auto;
    }
    .channel-group{
        padding-left: 8px;
    }
}
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Set a high z-index value to ensure the loader is on top of other elements */
}
.hidden {
    display: none !important;
}

#loader {
    text-align: center;
    z-index: 10000; /* Ensure the loader is on top of other elements within it */
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db; /* Change the color as needed */
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.em-card, .schedule-tab, .tab-content {
    z-index: 1;
}