/* This css file is for Conf Dashboard project by KAR*/


html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent body scroll */
}

/* ================= Header ====================*/
/* =====================================================*/
.headerTop{
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 9%), 0 6px 20px 0 rgb(0 0 0 / 0%);
    /* z-index: 0; */
}

.headerTop .navbar-toggler{
    border: none;
}


.sideMenu{
    max-width: 300px;
}

/*.logoSmall{*/
/*    display: none;*/
/*}*/


.headerTop .navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.headerUserIcon{
    /*width: 40px;*/
    /*height: 40px;*/
    /*border-radius: 333px;*/
    display: flex;
    gap: 16px;
    align-items: center;
}

.headerUserIcon img{
    height: 48px;
    width: 48px;
    border-radius: 333px;
    object-fit: cover;
    border: 1px solid var(--grey-300);
}

.navbar {
    position: relative;
    z-index: 0;
}

.middle-text-desktop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 1.25rem;
}

.offcanvas-start {
    width: 250px;
}

.rotate-icon i {
    transition: transform 0.3s ease;
}

.rotate-icon.rotated i {
    transform: rotate(-180deg);
}

.logoLarge{
    height: 70px;
}

.logoSmall{
    height: 50px;
}


/*slide left menu===============*/

.offcanvas-body{
    display: grid;
    align-content: space-between ;

}

.offcanvas-body .nav-link{
    color: var(--grey-200);

}

.slideMenuSignOutBtn{
    border: 1px solid var(--brickRed) !important;
    color: var(--brickRed);
}

.slideConferenceBtn{
    background-color: var(--accent);
    border: 1px solid var(--grey-300);
    border-radius: 555px;
}

.offcanvas-header{
    justify-content: space-between;
}

.slideMenuHeader{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.firstColumn .navbar-nav .nav-link i {
    /* width: 28px; */
    width: 40px;
}

.offcanvas-body .nav-link i {
    width: 28px;
}


/* ================= main section ====================*/
/* =====================================================*/

/* ============= left part ============*/

.firstColumn{
    padding:0;
}

.firstColumn .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--primaryBlue);
}

#agendaCollapse{
    padding-left: 24px;
}

.firstColumn .sticky-content{
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 48px;
}

.btnMdIcoBefore{
    width: fit-content;
}

.signOutBtn{
    display: flex;
    justify-content: center;
}



.container-fluid.main-content {
    /*flex-grow: 1; */
    /*display: flex;*/

    height: calc(100vh - 80px); /* adjust header height if needed */
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.sticky-col {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    align-self: flex-start;

    overflow-y: auto;
    height: 100%;

}
.scrollable-col {
    flex-grow: 1; /* Allow it to take up available width */
    width: min-content;
    max-height: calc(100vh - 80px); /* Adjust based on header height if needed */
    height: 100%;
    overflow: scroll;
    position: sticky;
    top: 0;
}

.scrollable-col::-webkit-scrollbar {
    display: none;
}


.sticky-col.left-col {
    z-index: 0;
}

.sticky-col.right-col{
    z-index: -1;
}

.left-col{
    width: max-content;
}

.scrollable-content {
    background-color: var(--accent);
    padding: 20px;
}
.sticky-content {
    background-color: var(--white);
    padding: 20px;
}

.adsScrl{
    padding: 0 0 0 0 !important; ;
}




/* ============= middle part =============*/

.form-group {
    position: relative;
}

#searchbar {

    /*padding-right: 50px;*/
    /*background: lighten(black, 97%);*/
    padding: 1rem;
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--grey-400);
}

.icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.eventInformation{

}

.titleHeading{
    padding: 0 0 16px 0 !important;
    border-bottom: 1px solid var(--grey-400);
    color: var(--primaryBlue);
    margin-bottom: 1rem!important;
}

.mainContentSectionHmPg, .mainContentSectionSpkrPg, .mainContentSectionAgendaPg{
    background-color: var(--white);
    padding:2rem;
    border-radius: 4px;
    border: 1px solid var(--grey-400);
    display: grid;
    gap: 1rem;
}

.eventInformation{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--primaryBlue-500);
    padding: 1rem;
    border-radius: 4px;
}

.eventInfoInner{
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 380px;
    background-color: var(--accent);
    border-radius: 4px;
    border: 1px solid var(--grey-400);
}

.aboutBox{
    display: flex;
    gap: 3rem;
    justify-content: center;
    text-align: center;
}

/*calender home page*/
.mainContentSectionHmPg .calendar-table th, .calendar-table td {
    border: 1px solid #dee2e6;
    min-height: 60px;
    vertical-align: middle;
    padding: 8px;
    text-align: center;
    height: 70px;
}

.mainContentSectionHmPg .calendar-table th.time-slot,
.mainContentSectionHmPg .calendar-table td.time-slot {
    background-color: var(--offWhite);
    text-align: center;
    color: var(--grey-200);
    /*font-weight: bold;*/
}

.time-slot{
    /*background-color: var(--grey-400);*/
}

.mainContentSectionHmPg .calendar-table {
    table-layout: fixed;
    width: auto;
}

.mainContentSectionHmPg .calendar-container {
    overflow-x: auto;
}

.mainContentSectionHmPg .table-primary th{
    background-color: var(--brickRed-400);
    color: var(--primaryBlue);
    font-size: 1rem;
    font-weight: 400;
}

.mainContentSectionHmPg .table-primary small{
    background-color: var(--brickRed-400);
    color: var(--primaryBlue);
    font-size: 20px;
    /*font-weight: 500;*/
    font-family: "CanelaDeck Bold", serif;
}

.blueBox{
    border: 2px solid var(--primaryBlue)!important;
    background-color: var(--primaryBlue-400)!important;
    color: var(--primaryBlue)!important;
    font-weight: 600;
}

.redBox{
    border: 2px solid var(--brickRed)!important;
    background-color: var(--brickRed-400)!important;
    color: var(--brickRed)!important;
    font-weight: 600;
}

.greenBox{
    border: 2px solid var(--natureGreen)!important;
    background-color: var(--natureGreen-400)!important;
    color: var(--natureGreen)!important;
    font-weight: 600;
}

.eventCalenderHomepage {
    width: inherit;
    overflow: auto;
}

.eventsDateParent .row{
    gap: 1rem;

}


.dBox{
    /*overflow: inherit;*/
    /*text-decoration: none;*/
    padding: 1rem;
    background-color: var(--primaryBlue);
    /*width: 140px;*/
    width: auto;
    border-radius: 4px;
    background: linear-gradient(180deg, #FFF0F1 0%, rgba(255, 255, 255, 0.75) 30.29%, #BECEFE 64.71%, #1e398c 100%);
    color: #454545;
}

.dBox a{
    text-decoration:none;
    color: var(--primaryBlue);

}

.eventDateHome{
    margin: inherit;
}

.event-date-home {
    margin:0;
    padding:1rem;
    background-color: var(--primaryBlue-500);
}


/* ============= right part =============*/

.OurSponsors{
    /*background-color: var(--brickRed-400);*/
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.OurSponsors h4{
    padding: 0 1rem!important;
}

.vertical-slider-wrapper {
    position: relative;
    height: 75vh; /* Set the height as needed */
    /*height: auto;*/
    overflow: hidden;
    /*border: 2px solid #007bff;*/
    /*border-radius: 10px;*/
}

.vertical-slider-content {
    display: flex;
    flex-direction: column;
    animation: scroll-up 60s linear infinite;
}

.vertical-slider-content > div {
    /*padding: 15px;*/
    /*border-bottom: 1px solid #ccc;*/
    /*background-color: #f8f9fa;*/
}

.vertical-slider-content img{
    width: -webkit-fill-available;
    width: -moz-available;
}

.ads{
    height: inherit;
    /*background-color: #ffe7e7;*/
}

@keyframes scroll-up {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}
/* ============= Track page =============*/
.trackUICard {
    background: var(--accent);
    border: 1px solid #dee2e6;
    border-radius: 4px;
    /*padding: 20px;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trackUICardHeading{
    color: var(--white);
    background-color: var(--primaryBlue);
    padding: 1rem;
    border-radius: 4px 4px 0 0;
}

.trackUICardHeading h4 {
    /*font-size: 24px;*/
    margin-bottom: 8px;
}
.trackUICardHeading h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.trackUICardContent{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trackUICardContentInner {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-400);
}
.btnSmFilled {
    /*background-color: #0d6efd;*/
    /*color: #fff;*/
    /*padding: 4px 10px;*/
    /*border-radius: 5px;*/
    /*font-size: 14px;*/
    /*text-decoration: none;*/
}
.btnLink {
    text-decoration: underline;
    font-weight: 500;
}
.colorPrimaryBlue {
    color: #0d6efd;
}
.colorBrickRed {
    /*color: #c0392b;*/
}

.moreDetailsBtn{
    text-align: right;
    border-bottom: none;
    padding-bottom: 0;

}


/* ==========================speaker page*/

.speakerUI{
    text-align: center;
    width: 276px;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid var(--grey-400, #D5D5D5);
    background: linear-gradient(180deg, #FFF0F1 0%, rgba(255, 255, 255, 0.75) 30.29%, #BECEFE 64.71%, #1B2F6E 100%);
}

.speakerImage{
    max-width: 200px;

}

.speakerInfo{
    margin-top: 1rem;
    display: grid;
    gap: 8px;
}

.mainContentSectionSpkrPg{
    display: grid;
    gap: 1rem;
}

.speakerSecParent{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/*==*/

.spk .custom-card {
    /*background: linear-gradient(135deg, #4e54c8, #8f94fb);*/
    background: linear-gradient(180deg, #FFF0F1 0%, rgba(255, 255, 255, 0.75) 30.29%, #BECEFE 64.71%, #1B2F6E 100%);

    color: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(175 175 175 / 20%);
    /*transition: transform 0.3s;*/
    padding: 1rem;
    text-align: center;
    height: 100%;
}


.spk .custom-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.spk .card-body {
    padding: 1rem;
    text-align: center;
}

.spk .card-time i {
    margin-right: 5px;
    font-size: 14px;
}

.spk .custom-card img{
    max-width: 200px;

}

#speakersContainer img {
    border-radius: 333px;
    border: 1px solid var(--grey-400);
}


/*Agenda page===================*/

.mainContentSectionAgendaPg{
    /*display: grid;*/
    /*gap: 1rem;*/
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.agendaBtns{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.agendaBtns a{
    width: 100%;
    text-align: center;

}

.timeFirst{
    /*display: flex;*/

}

.agendaTable{
    width: inherit;
    overflow: auto;
}

.agendaTable .table > thead {
    vertical-align: middle;
    text-align: center;
}



.agendaTable thead th{
    background-color: var(--brickRed-400);
    border: 1px solid var(--grey-400);

}

.agendaTable .date-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}


.agendaTable .cell-content{
    display: flex;
}

.agendaTable .box{
    border: 1px solid var(--grey-400);
    width: 100%;
    position: relative;
    text-align: left;
    padding: 12px;
    padding-bottom: 50px;
    border-radius: 4px;
    background-color: var(--primaryBlue-500);
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-height: 120px;
}

.withData{
    display: flex;
    background-color: var(--accent)!important;
}


.boxP{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    align-items: stretch;
}

.agendaTable td{
    height: auto;
}

.posrel{
    position: absolute;
    bottom: 8px;
    right: 8px;
    margin-top: 0;
}

.track-name {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    margin-bottom: 0;
}

.session-title-container {
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.session-title-container a:hover {
    text-decoration: underline !important;
}

/* Button positioning and styling */
.agendaTable .box .posrel {
    z-index: 10;
}

.agendaTable .box .btn {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agendaTable .box .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Ensure boxes take full width even with small content */
.agendaTable .box {
    flex-basis: 100%;
    max-width: 100%;
}

/* When there are multiple boxes, they can share the width */
.boxP:has(.box:nth-child(2)) .box {
    flex-basis: calc(50% - 4px);
    max-width: calc(50% - 4px);
}

.boxP:has(.box:nth-child(3)) .box {
    flex-basis: calc(33.333% - 6px);
    max-width: calc(33.333% - 6px);
}

.date-heading i{
    transition: 0.2s;
}

.date-heading i:hover{
    color: var(--brickRed)!important;
}

.agendaTable .time-slot{
    color: var(--grey-200);
    font-weight: 500;
}


#announcementModal, #termsModal{
    background: rgba(0, 0, 0, 0.6);
    /* z-index: 99999999999999; */
}
/* ================= Media query ====================*/
/* =====================================================*/

@media (min-width: 1450px) {

    .speakerUI{
        width: 276px;
    }
}


@media (min-width: 1400px) {

    .mainContentSectionHmPg .calendar-table {
        width: 100%;
    }

}

@media (max-width: 1400px) {

}

@media (max-width: 1399px) {
    .mainContentSectionHmPg{
        overflow: hidden;
    }
    .eventInformation{
        overflow: auto;
    }

}

@media (min-width: 1200px) {

    .speakerUI{
        width: 276px;
    }
}

@media (max-width: 1199px) {
    .speakerSecParent{
        justify-content: center;
    }
    
}


@media (min-width: 992px) and (max-width: 1200px) {
/*=========header=========*/

    .speakerUI{
        width: 230px;
    }

}


@media (min-width: 992px) {
    /*Header*/
    .navbar-toggler {
        display: none;
    }

    .mobile-logo {
        display: none;
    }

    .unread-badge{
        margin-left: 8px;
    }


/*    right coloum*/

    .resAds{
        display: none;
    }


}

@media (max-width: 991.98px) {
    .slideConferenceFull{
        display: none;
    }

    .speakerSecParent{
        justify-content: center;
    }

/*  =========  right side panel =========*/
    .img-container{
        padding: 0;
    }

    .right-col{
        display: none;
    }

    .navbar {
        z-index: 1;
    }
}


@media (max-width: 991px) {

    .contentPart{
        padding: 0;
    }

    .left-col{
        display: none;
    }

    .scrollable-col{
        height: 80vh;
    }

    .signOutBtn{
        /*display: none;*/
    }

    .firstColumn .sticky-content{
        /*padding: 0;*/
    }

    .middle-text-desktop {
        display: none;
    }

    .mobile-logo {
        display: inline;
        height: 60px;
    }
    .userIcon{
        margin: inherit!important;
    }

    /*    right colour*/
    .right-col{
        width: 100%;
        z-index: -1;
    }

    .adsScrl{
        display: none!important;
    }

    .resAds{
        margin: 0;
        padding: 1rem;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

/* ========= track page */


/*  =========  event track*/

}


@media (min-width: 768px) {


}

@media (max-width: 767px) {

    .confInfo h5, .confInfo p{
        text-align: left;

    }

/* =========   left part =========*/


    .left-col .sticky-content{
        padding: 0;
    }

    .left-col .sticky-col{
        height: auto;
    }


/*    speaker*/

    .speakerUI{
        width: 230px;
    }

    .boxP:has(.box:nth-child(2)) .box {
        flex-basis: 100%;
        max-width: 100%;
    }

    .boxP:has(.box:nth-child(3)) .box {
        flex-basis: 100%;
        max-width: 100%;
    }
}


@media (min-width: 576px) {
   
}

@media (max-width: 575px) {

    .mainContentSectionHmPg, .mainContentSectionSpkrPg, .mainContentSectionAgendaPg {
        padding: 1.5rem;
    }

    /* ========= middle section */
    /* ========= event info */

    .aboutBox{
        display: block;
        margin: auto;
    }

    .contentWithBrochure{
        margin-bottom: 16px;
    }

    .eventInfoInner{
        width: inherit;
    }

/* =========   speaker =========*/

    .speakerUI{
        width: 350px;
    }

/* =========   track =========*/

    .singleEventTrack{
        padding: 0;
    }

/*    agenda page*/
    .mainContentSectionAgendaPg{
        padding: 1.4rem;
    }

}

@media (max-width: 450px) {
/*agenda*/

    .agendaBtns{
        flex-direction: column;
    }

}


@media (max-width: 390px) {
    /*header*/
    .headerTop .navbar-toggler {
       padding-left: 0;
        padding-right: 0;
    }

}

@media (max-width: 991px) {
    /*header*/
    .conferenceSelect {
       display: none;
    }
    .offcanvas .conferenceSelect {
        display: block;
    }

}
