.ecss-loader {
    padding: 60px 0;
}

.speakers {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

@media (max-width: 600px) {
    .speakers {
        display: inline-grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.speakers.isLoading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speakers .speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
}

.speakers .speaker:hover {
    background: rgba(0, 0, 0, 0.03);
}

.speakers .speaker .speaker-picture {
    width: 202px;
    height: 202px;
    background-size: 100% auto !important;
    background-position: center center;
    margin-bottom: 16px;
    border-radius: 16px;
    transition: 0.3s;
}

.speakers .speaker:hover .speaker-picture {
    background-size: 115% auto !important;
}

@media (max-width: 600px) {
    .speakers .speaker .speaker-picture {
        width: 100%;
    }
}

.speakers .speaker span {
    text-align: center;
    color: #000;
}

.speakers .speaker .speaker-name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: #00ff5b;
}

.speakers .speaker .speaker-role {
    font-size: 13px;
    line-height: 1.2;
    font-weight: normal;
    color: #fff;
    margin-top: 8px;
}
.speakers .speaker .divider {
    height: 1px;
    background: #d7d7d7;
    width: 40px;
    margin: 15px 0;
}
.speakers .speaker .speaker-company {
    font-size: 16px;
    line-height: 1.3;
    font-weight: normal;
    color: #969696;
}


/* MODAL */
.speaker-popup {
    max-width: 1100px;
    /*max-height: 100%;*/
    /*overflow-y: auto;*/
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 24px;
    padding: 24px;
}

@media (max-width: 600px) {
    .speaker-popup {
        flex-direction: column !important;
    }
}

.speaker-popup img.picture {
    max-width: 220px;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 600px) {
    .speaker-popup img.picture {
        margin: 0 auto;
    }
}

.speaker-popup .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.speaker-popup .content h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.speaker-popup .content .speaker-role {
    font-size: 13px;
    line-height: 1.2;
    font-weight: normal;
    color: #888888;
    margin-top: 5px;
}
.speaker-popup .content .divider {
    height: 1px;
    background: #d7d7d7;
    width: 55px;
    margin: 10px 0;
}
.speaker-popup .content .speaker-company {
    font-size: 16px;
    line-height: 1.3;
    font-weight: normal;
    color: #969696;
}

.speaker-popup .content p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    color: #000;
    margin: 24px 0 0 0;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding: 70px 0 40px;
}

.fancybox__content {
    /*max-height: 90%;*/
    padding: 0;
    border-radius: 16px;
}
.fancybox__content .is-close-btn {
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    color: #e8e8e8;
    font-weight: bold;
    margin-top: -10px;
}
