/* NAV */
:root{
    --landing-primary-color: #455162;
    --landing-secondary-color-dark: #24C2B6;
    --landing-secondary-color-light: #9EE8D9;
}

.landing-navbar {
    font-family: "Poppins", sans-serif;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.btn:focus{
    box-shadow: none !important;
}

.logout-text {
    display: none;
    position: absolute;
    background-color: var(--landing-primary-color);
    bottom: -20px;
    right: 10px;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    z-index: 1;
}

.logout-icon:hover + .logout-text {
    display: inline-block;
}

#closeModalX {
    color: #24C2B6;
    background: #333;
    border-radius: 5rem;
    border: 2px solid #fff;
    padding: 0;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 30px;
    float: right;
    position: relative;
    top: -30px;
    left: 30px;
}

.contact-description p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.cta-block a.btn {
    font-size: 1rem;
}

.cta-block img {
    max-height: 50px;
}

.tab-content .agenda-sponsor {
    padding-left: 30px;
}

.tab-content .agenda-sponsor img, .speaker-details .agenda-sponsor img {
    height: 40px;
}


/* Speaker details */
.speaker-details .agenda-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.speaker-details .agenda-item .agenda-time {
    width: 100%;
    display: inline-block;
    position: relative;
    left: 0;
}

.speaker-details .agenda-item .agenda-time span {
    color: var(--additional-color);
    font-weight: normal;
}

.speaker-details .agenda-item .agenda-title {
    flex: 1;
    display: inline-block;
}

@media (max-width: 599px) {

    .speaker-details .agenda-item .agenda-sponsor {
        width: 100%;
        display: inline-block;
        position: relative;
        left: 0;
    }

    .speaker-details .agenda-item .agenda-title {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-left: 0 !important;
    }

    .speaker-details .agenda-item .agenda-title div.d-flex {
        width: 100%;
        display: inline-block !important;
        gap: 0 !important;
    }

    .tab-content .agenda-item {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .tab-content .agenda-item .agenda-sponsor {
        width: 100%;
        display: inline-block;
        padding-left: 20px;
    }

    .tab-content .agenda-time, .agenda-title {
        width: 100%;
        display: inline-block;
        padding-left: 20px;
    }

    .slick-slide img {
        max-width: 380px !important;
        margin: 0 auto !important;
        margin-bottom: 20px !important;
    }
    .tab-content .agenda-sponsor {
        width: 100% !important;
    }
}



