.online2__top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.online2__h2 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

.online2__main {
}

.online2__main-content-container {
    margin-top: 50px;
}

.online2__calendar-container {
    position: sticky;
    top: -1px;
    z-index: 2;
    background: #f3f3f3;
}

.online2__calendar-month-switch {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.online2__calendar-month-switch-arrow {
    color: #2B84FA;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color .3s;
}

.online2__calendar-month-switch-arrow:hover {
    color: #FC6A31;
}

.online2__calendar-month-switch-arrow svg path {
    transition: stroke .3s;
}

.online2__calendar-month-switch-arrow:hover svg path {
    stroke: #FC6A31;
}

.online2__calendar-month-switch-arrow span {
    margin: 0 10px;
}

.online2__calendar-month-switch_prev {
}

.online2__calendar-month-switch_next {
}

.online2__calendar-month-switch_month {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333333;
}

.online2__calendar-month-switch_month-name {
}

.online2__calendar-month-switch_month-year {
}


.online2__calendar-days-switch {
    width: 100%;
    position: absolute;
    display: none;
    top: 0;
}

.online2__calendar-days-switch-active {
    display: block;
    position: relative;
}

.online2__calendar-days__arrows {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    top: 0;
}

.online2__calendar-days__arrow {
    width: 24px;
    height: 24px;
    background: #FC6A31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.online2__calendar-days__arrow-prev {
    left: -7px;
}

.online2__calendar-days__arrow-next {
    right: -13px;
}

.online2__calendar-days__slider {
    display: flex;
    overflow-x: scroll;
    padding: 20px 20px;
    position: relative;
    padding-top: 10px;
}

.online2__calendar-days__slider:after {
    content: "";
    display: block;
    width: 10px;
    flex-shrink: 0;
}

.online2__calendar-days-switch-active:after {
    content: "";
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: -40px;
    left: 0;
    background: linear-gradient(-180deg, rgb(243, 243, 243) 20%, rgba(243, 243, 243, 0.1) 100%);
}

.online2__calendar-days__slider-day {
    background: #e2e2e2;
    padding: 10px 10px;
    border-radius: 10px;
    text-align: center;
    margin: 0 5px;
    user-select: none;
    min-width: 80px;
    flex-shrink: 0;
    transition: .3s;
}

.online2__calendar-days__slider-day:last-child {
}

.online2__calendar-days__slider-day-active {
    background: #EBF3FF;
    border: 1px solid #2B84FA;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.online2__calendar-days__slider-day-number {
    font-weight: bold;
}

.online2__calendar-days__slider-day-name {
    font-size: 12px;
}

.online2__calendar-days__slider-day__sections {
    display: flex;
    margin-top: 6px;
    justify-content: center;
}

.online2__calendar-days__slider-day__section {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin: 0 3px;
}

.online2__calendar-days__slider-day__section-yellow {
    background: #FFA828;
}

.online2__calendar-days__slider-day__section-red {
    background: #FC6A31;
}

.online2__calendar-days__slider-day__section-blue {
    background: #2B84FA;
}

.online2__calendar-days__slider-day__section-green {
    background: #44D69B;
}

.online2__calendar-days__slider::-webkit-scrollbar {
    display: none;
}

.online2__main-content {
    display: none;
    /* margin-top: 50px; */
    position: absolute;
    top: 0;
}

.online2__main-content-flex {
    display: flex;
}

.online2__main-content-active {
    display: block;
    position: relative;
}

.online2__sections-container {
    width: 60%;
}

.online2__sections-item-container {
    display: flex;
    height: inherit;
    position: relative;
}

.online2__sections-item__date-container {
    margin-right: 20px;
    margin-top: -11px;
    width: 50px;
    flex-shrink: 0;
}

.online2__sections-item__line {
    width: 1px;
    height: inherit;
    background: #2B84FA;
    position: relative;
    flex-shrink: 0;
    margin-right: 40px;
}

.online2__sections-item__line-circle {
    position: absolute;
    /* top: 50%; */
    left: -50%;
    width: 22px;
    height: 22px;
    border: 1px solid #2B84FA;
    border-radius: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.online2__sections-item__content {
    margin-bottom: 40px;
}

.online2__sections-item__date_time {
    font-size: 12px;
    font-weight: bold;
}

.online2__sections-item__date_date {
    font-size: 12px;
    white-space: nowrap;
}

.online2__sections-item__title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.online2__sections-item__hubs-list {
    display: flex;
    margin-top: 5px;
}

.online2__sections-item__hub {
    font-size: 14px;
    color: #2B84FA;
    margin-right: 20px;
    cursor: pointer;
    transition: color .3s;
}

.online2__sections-item__hub:hover {
    color: #FC6A31;
}

.online2__sections-item__hub:before {
    content: '#';
}

.online2__sections-item__hub-active {
    background: #F2C94C;
    color: #333;
}

.online2__sections-item__desc {
    line-height: 1.5;
    margin-top: 5px;
}

.online2__sections-item__participants-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.online2__sections-item__participants-item {
    position: relative;
    width: 30%;
    cursor: pointer;
    margin-bottom: 15px;
}

.online2__sections-item__participants-name {
    color: #2B84FA;
    font-weight: bold;
    flex: 1;
}

.online2__sections-item__participants-job {
    color: #9A9A9A;
    font-size: 14px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    padding-right: 15px;
}

.online2__sections-item__participants-photo-container {
    margin-right: 11px;
}

.online2__sections-item__participants-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.online2__sections-item__participants__popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    min-width: 330px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity .3s;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.online2__sections-item__participants__popup-container .online2__sections-item__participants-job {
    display: block;
    margin-top: 3px;
    width: 100%;
}

.online2__sections-item__participants-item:hover .online2__sections-item__participants__popup-container {
    opacity: 1;
    pointer-events: initial;
}

.online2__sections-item__more-btn {
    background: #2B84FA;
    color: #fff;
    margin-right: 30px;
}

.online2__sections-item__partner-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.online2__sections-item__partner-title {
    font-size: 12px;
    color: #2B2A29;
    opacity: .5;
}

.online2__sections-item__partner-logo {
    width: 136px;
    height: 70px;
    object-fit: contain;
    margin-left: 15px;
}

.online2__player-container {
    width: 40%;
    padding-left: 50px;
}

.online2__player {
    position: sticky;
    top: 250px;
}

.online2__player-online_title {
    font-size: 18px;
    font-weight: bold;
    margin-left: 4px;
    color: #F54749;
}

.online2__player-online {
    display: flex;
    align-items: center;
}

.online2__player-online_player {
    width: 100%;
    border-radius: 10px;
    height: 185px;
    margin-top: 10px;
}

.online2__player-online-publish_title {
    color: #2B84FA;
    font-size: 18px;
    font-weight: bold;
}


.online2__section-page-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 14;
    overflow-y: scroll;
}

.online2__section-page-close {
    position: fixed;
    right: 40px;
    top: 20px;
    font-size: 25px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.online2__section-page-close-line {
    width: 100%;
    height: 2px;
    background: #777;
    position: absolute;
    top: 50%;
    left: 50%;
}

.online2__video-link {
    margin-top: 10px;
}

.online2__video-link .online2__player-online-publish_title {
    transition: .3s;
}

.online2__video-link:hover .online2__player-online-publish_title {
    color: #FC6A31;
}

.online2__video-link:hover .online2__player-online-publish_title path {
    stroke: #FC6A31;
}

.online2__sections-item__line-circle_pulsate {
    width: 11px;
    height: 11px;
    background: #FC6A31;
    border-color: #FC6A31;
    margin-left: 0.3px;
}

.online2__sections-item__line-circle_pulsate-item {
    border: 1px solid #FC6A31;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulsate_circle 3s infinite forwards linear;
    transform-origin: center center;
}

@keyframes pulsate_circle {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.online2__sections-item__buttons-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.online2__sections-item__favorite-button {
    border: 1px solid #F2994A;
    color: #F2994A;
}

.online2__sections-item__favorite-button-icon {
    margin-right: 8px;
}

.online2__sections-item__favorite-button-icon path {
    fill: #F2994A;
}

.online2__sections-item__favorite-button-caption {
}

.online2__sections-item__favorite-button-active {
    background: #F2994A;
    color: #F2F2F2;
    border-color: #F2F2F2;
}

.online2__sections-item__favorite-button-active .online2__sections-item__favorite-button-icon path {
    fill: #F2F2F2;
}

.online2__sections-item__favorite-button-caption-active {
    display: none;
}

.online2__sections-item__favorite-button-active .online2__sections-item__favorite-button-caption-active {
    display: initial;
}

.online2__sections-item__favorite-button-active .online2__sections-item__favorite-button-caption {
    display: none;
}

.online2__section-favorite-button {
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #BDBDBD;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: .3s;
    display: inline-flex;
}

.online2__section-favorite-button:hover {
    background: #ccc;
}

.online2__section-favorite-button-active:hover {
    background: #de9223;
}

.online2__section-favorite-button-active path {
    fill: #FFA828;
    stroke-width: 0;
}

.online2__player-online__mobile-popup {
    width: 90%;
    max-width: 790px;
    position: fixed;
    /* height: 80%; */
    background: #fff;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
    padding: 20px 20px 120px;
}

.online2__player-online__mobile-button {
    position: fixed;
    bottom: 15px;
    background: #FE4344;
    width: 150px;
    color: #fff;
    padding: 10px;
    box-shadow: 0px 4px 25px #E8444F;
    left: 20px;
    /* transform: translate(-50%); */
    white-space: nowrap;
    /* display: none; */
    text-align: center;
    font-weight: normal;
    z-index: 3;
}

.online2__player-online__mobile-popup-h2 {
    font-size: 25px;
    text-align: center;
}

.online2__player-online__mobile-popup-close {
    background: #2B84FA;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

.online2__player-online__mobile-popup-close-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
}

.online2__filters-container {
    display: flex;
    align-items: center;
}

.online2__search-container {
    position: relative;
    z-index: 3;
}

.online2__search-button {
    padding: 10px 14px 10px 30px;
    background: #FC6A31;
    color: #fff;
    border-radius: 250px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: .3s;
}

.online2__search-button:hover {
    color: #000;
}

.online2__search-button svg path {
    transition: .3s;
}

.online2__search-button:hover svg path {
    stroke: black;
}

.online2--filter-hub.active {
    background: #2B84FA;
    color: #fff;
}

.online2__search-input {
    border-radius: 20px;
    border: 1px solid #2B84FA;
    padding: 5px 18px;
    font-size: 13px;
    margin-bottom: 20px;
}

.online2__search-popup {
    position: absolute;
    top: 50%;
    background: #fff;
    width: 710px;
    right: 0;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 40px 20px 20px;
    left: 50%;
    transform: translateX(-50%);
}

.online2__special-filter {
    padding: 10px 20px;
    border-radius: 250px;
    cursor: pointer;
    border: 2px solid #fff;
    color: #000;
    margin-left: 15px;
    transition: .3s;
}

.online2__search-button-arrow {
    margin-left: 15px;
}

.online2--hub {
    font-size: 13px;
}


@media screen and (max-width: 700px) {
    .online2__h2 {
        font-size: 35px;
    }

    .online2__sections-container {
        width: 100%;
    }

    .online2__player-container {
        display: none;
    }

    .online2__sections-item__participants-item {
        width: 100%;
    }

    .online2__sections-item__date-container {
        position: absolute;
        left: 50px;
        display: flex;
        top: 10px;
    }

    .online2__sections-item-container {
        width: 100%;
        padding-left: 10px;
    }

    .online2__sections-item__participants__popup-container {
        min-width: 100%;
        left: 40%;
    }

    .online2__sections-item__title {
        margin-top: 40px;
    }

    .online2__sections-item__date_date {
        order: -1;
        margin-right: 20px;
    }

    .online2__sections-item__line {
    }

    .online2__calendar-month-switch-arrow {
        font-size: 12px;
    }

    .online2__calendar-month-switch_month {
        text-align: center;
        font-size: 13px;
    }

    .online2__calendar-month-switch_next span {
        text-align: right;
    }

    .online2__sections-item__partner-container {
        flex-direction: column;
        align-items: center;
    }

    .online2__calendar-days__arrow {
        display: none;
    }

    .online2__sections-item__buttons-container {
        flex-direction: column;
    }

    .online2__sections-item__more-btn {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .online2__player-online__mobile-button {
        display: block;
    }

    .online2__top_row {
        flex-direction: column;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .nprogram--fav-button {
        display: none;
    }

    .online2__search-button-arrow {
        display: none;
    }

    .online2__search-button {
        padding: 10px 14px;
        font-size: 12px;
    }

    .online2__special-filter {
        font-size: 12px;
        margin-left: 0;
        padding: 10px 14px;
    }

    .nprogram--fav {
        padding: 10px 14px;
        margin-left: 0;
        height: auto;
        width: auto;
    }

    .online2__top_row .online2__h2 {
        display: none;
    }

    .online2__filters-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .online2__search-popup {
        width: 340px;
        right: auto;
        left: 0;
        overflow-y: scroll;
        height: 620px;
    }

}

@media screen and (max-width: 1024px) {
    .online2__player-online__mobile-button {
        display: block;
    }

    .online2__top_row {
        flex-direction: column;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .nprogram--fav-button {
        display: none;
    }

    .online2__search-button-arrow {
        display: none;
    }

    .online2__search-button {
        padding: 10px 14px;
        font-size: 12px;
    }

    .online2__special-filter {
        font-size: 12px;
        margin-left: 0;
        padding: 10px 14px;
    }

    .nprogram--fav {
        padding: 10px 14px;
        margin-left: 0;
        height: auto;
        width: auto;
    }

    .online2__filters-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .online2__search-popup {
        width: 340px;
        right: auto;
        left: 0;
        overflow-y: scroll;
        height: 620px;
    }

    .nprogram--fav-caption {
        margin: 0 auto;
        font-size: 12px;
    }

    .online2__filters-container div {
        margin: 0 7px;
    }

    .online2__player {
        top: 300px;
    }

    .online2__sections-item__participants-item {
        padding: 0 5px;
        width: 50%;
    }

    .online2__sections-item__buttons-container {
        /* flex-direction: column; */
        /* align-items: flex-start; */
    }

    .online2__sections-item__favorite-button {
        /* margin-top: 15px; */
        font-size: 12px;
    }

    .online2__sections-item__favorite-button-icon {
    display: none;
    }
    .online2__sections-item__more-btn {
    margin-right: 10px;
    font-size: 12px;
}
}
