

/* Start:/studentu/raspisanie/css/styles.css?178817733220991*/
.header-block {
    width: 100%;
    height: 150px;

    .info {
        width: 100%;
        height: 100%;

        position: relative;
    
        .page-theme {
            width: 50%;
            height: fit-content;

            position: absolute;
            left: 0px;
            bottom: 15px;

            z-index: 10;
        
            .schedule-title {
                margin: 0;
                color: #0B2A55;
                font-family: Arial, sans-serif;
                font-size: 48px;
                font-weight: 700;
                line-height: 1.15;
                letter-spacing: -0.5px;
            }

            .schedule-subtitle {
                margin: 12px 0 0;
                color: #1A3154;
                font-family: Arial, sans-serif;
                font-size: 22px;
                font-weight: 400;
                line-height: 1.4;
            }

        }

        .header-image {
            width: 70%;
            height: 100%;

            position: absolute;
            right: 0px;

            z-index: 5;

            .image-container {
                width: 100%;
                height: 100%;

                position: relative;

                img {
                    position: absolute;
                    bottom: -40px;


                    width: 100%;
                    object-fit: cover;

                    -webkit-mask-image:
                        linear-gradient(to right, #000 0%, #000 70%, transparent 100%),
                        linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);

                    -webkit-mask-composite: destination-in;

                    mask-image:
                        linear-gradient(to right, #000 0%, #000 70%, transparent 100%),
                        linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);

                    mask-composite: intersect;
                }
            }

        }

        .page-theme, .header-image {
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }
    
    }

    .schedule-navigation {
        width: 100%;
        height: 50px;

        margin-top: 50px;
    
        .schedule-navigation-list {
            width: 100%;
            height: 100%;

            padding: 0px;

            display: flex;
            justify-content: space-around;
            align-items: center;

            gap: 35px;

            .schedule-navigation-item {
                height: 100%;

                list-style-type: none;

                .schedule-navigation-link {
                    height: 100%;

                    display: flex;
                    justify-content: center;
                    align-items: center;

                    text-align: center;

                    text-decoration: none;
                    color: #1A3154;

                    transition: all .3s ease;
                    
                }

                .schedule-navigation-border {
                    width: 100%;
                    height: 3px;

                    background-color: #1677D2;
                    border-radius: 15px;

                    transform: translateY(10px);
                    opacity: 0;

                    pointer-events: none;

                    transition:
                        transform 0.3s ease,
                        opacity 0.3s ease;
                }

            }

            .schedule-navigation-item:hover {

                .schedule-navigation-link {
                    color: #1677D2;
                    
                    transition: all .3s ease;
                }

                .schedule-navigation-border {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .schedule-navigation-item.active {
                .schedule-navigation-link {
                    color: #1677D2;
                }

                .schedule-navigation-border {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

        }
    }

    .schedule-divider {
        width: 100%;
        height: 1px;

        margin: 1px 0 0;
        padding: 0;

        border: 0;

        background-color: #D9E1EB;
    }
    
}


.important-information {
    width: fit-content;
    margin: 0 auto;

    box-sizing: border-box;
    
    margin-top: 130px;
    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 25px;
    
    background-color: #F4F8FC;
    border: 1px solid #D9E6F2;
    border-radius: 12px;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;

    .important-information-icon {
        width: 100px;
        height: 100px;

        flex-shrink: 0;

        display: flex;
        justify-content: center;
        align-items: center;

        img {
            width: 100%;
            height: 100%;

            object-fit: cover;
        }
    }

    .important-information-content {
        .important-information-title {
            margin: 0;

            color: #0B2A55;

            font-family: Arial, sans-serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
        }

        .important-information-text {
            margin: 15px 0 0;

            color: #1A3154;

            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;

            span {
                color: #1677D2;
                font-weight: 700;
            }

        }
    }

}


.schedule {
    width: 100%;

    margin-top: 25px;

    .schedule-title {
        margin: 0;

        color: #0B2A55;

        font-family: Arial, sans-serif;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;

        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }

    .schedule-underline {
        width: 140px;
        height: 3px;

        margin: 12px 0 30px;
        padding: 0;

        border: 0;
        border-radius: 3px;

        background-color: #1677D2;
    }

    .schedule-institutes {
        width: 100%;

        padding: 20px;

        display: flex;
        flex-direction: column;

        gap: 20px;

        box-sizing: border-box;

        background-color: #F8FAFD;
        border: 1px solid #E4EBF4;
        border-radius: 12px;
    }

    .schedule-institute {
        width: 100%;

        padding: 25px;

        box-sizing: border-box;

        background-color: #FFFFFF;
        border: 1px solid #E4EBF4;
        border-radius: 12px;

        .schedule-institute-header {
            width: 100%;
            min-height: 50px;

            display: flex;
            align-items: center;
            gap: 25px;

            .schedule-institute-icon {
                width: 42px;
                height: 42px;

                flex-shrink: 0;

                display: flex;
                justify-content: center;
                align-items: center;

                border-radius: 50%;
                background-color: #EEF5FD;

                pointer-events: none;
                user-select: none;
                -webkit-user-drag: none;

                img {
                    width: 35px;
                    height: 35px;

                    object-fit: cover;
                }
            }

            .schedule-institute-title {
                margin: 0;

                color: #0B2A55;

                font-family: Arial, sans-serif;
                font-size: 18px;
                font-weight: 700;
                line-height: 1.3;

                pointer-events: none;
                user-select: none;
                -webkit-user-drag: none;
            }

            .schedule-institute-toggle {
                width: 36px;
                height: 36px;

                margin-left: auto;
                padding: 0;

                display: flex;
                justify-content: center;
                align-items: center;

                border: 0;
                background: transparent;

                cursor: pointer;
                outline: none;
                -webkit-tap-highlight-color: transparent;

                img {
                    width: 35px;
                    height: 35px;

                    object-fit: cover;

                    transition: transform 0.3s ease;
                }
            }

            .schedule-institute-toggle:focus {
                outline: none;
            }

            .schedule-institute-toggle:focus-visible {
                outline: none;
            }

            @media (hover: hover) {

                .schedule-institute-toggle:hover img {
                    transform: translateY(-5px);
                }

            }

        }

        .schedule-institute-list-wrapper {
            max-height: 1000px;
            overflow: hidden;

            transition: max-height 0.75s ease-out;
        }

        .schedule-institute-list {
            width: 100%;

            display: flex;
            flex-wrap: wrap;

            gap: 15px;

            padding-top: 25px;
        }

        .schedule-institute-item {
            width: calc((100% - 30px) / 3);

            min-width: 325px;
            min-height: 115px;

            padding: 18px 20px;

            box-sizing: border-box;

            display: flex;
            align-items: center;
            justify-content: space-between;

            text-decoration: none;

            background-color: #F4F8FC;
            border: 1px solid #E4EBF4;
            border-radius: 10px;

            transition:
                background-color 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s ease;

            .schedule-institute-item-content {
                min-width: 0;

                .schedule-institute-item-groups {
                    margin: 0;

                    color: #1A3154;

                    font-family: Arial, sans-serif;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 1.4;
                }

                .schedule-institute-item-title {
                    margin: 20px 0 0;

                    color: #0B2A55;

                    font-family: Arial, sans-serif;
                    font-size: 18px;
                    font-weight: 700;
                    line-height: 1.3;
                }
            }

            .schedule-institute-item-arrow {
                width: 35px;
                height: 35px;

                flex-shrink: 0;

                margin-left: 15px;

                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    width: 35px;
                    height: 30px;

                    object-fit: cover;

                    transition: transform 0.3s ease;
                }
            }

        }

        .schedule-institute-item:hover {
            background-color: #EEF5FD;
            border-color: #C9DDF2;

            .schedule-institute-item-arrow img {
                transform: translateX(4px);
            }
        }

    }

    .schedule-institute.collapsed {

        .schedule-institute-list-wrapper {
            max-height: 0;
        }

        .schedule-institute-toggle img {
            transform: rotate(180deg);
        }
    }

}


.sessions-schedule {
    width: 100%;

    margin-top: 60px;

    .sessions-schedule-title {
        margin: 0;

        color: #0B2A55;

        font-family: Arial, sans-serif;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;

        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }

    .sessions-schedule-underline {
        width: 140px;
        height: 3px;

        margin: 12px 0 30px;
        padding: 0;

        border: 0;
        border-radius: 3px;

        background-color: #1677D2;
    }

    .sessions-schedule-institutes {
        width: 100%;

        padding: 20px;

        display: flex;
        flex-direction: column;

        gap: 20px;

        box-sizing: border-box;

        background-color: #F8FAFD;
        border: 1px solid #E4EBF4;
        border-radius: 12px;
    }

    .sessions-schedule-institute {
        width: 100%;

        padding: 25px;

        box-sizing: border-box;

        background-color: #FFFFFF;
        border: 1px solid #E4EBF4;
        border-radius: 12px;

        .sessions-schedule-institute-header {
            width: 100%;
            min-height: 50px;

            display: flex;
            align-items: center;
            gap: 25px;

            .sessions-schedule-institute-icon {
                width: 42px;
                height: 42px;

                flex-shrink: 0;

                display: flex;
                justify-content: center;
                align-items: center;

                border-radius: 50%;
                background-color: #EEF5FD;

                pointer-events: none;
                user-select: none;
                -webkit-user-drag: none;

                img {
                    width: 35px;
                    height: 35px;

                    object-fit: cover;
                }
            }

            .sessions-schedule-institute-title {
                margin: 0;

                color: #0B2A55;

                font-family: Arial, sans-serif;
                font-size: 18px;
                font-weight: 700;
                line-height: 1.3;

                pointer-events: none;
                user-select: none;
                -webkit-user-drag: none;
            }

            .sessions-schedule-institute-toggle {
                width: 36px;
                height: 36px;

                margin-left: auto;
                padding: 0;

                display: flex;
                justify-content: center;
                align-items: center;

                border: 0;
                background: transparent;

                cursor: pointer;
                outline: none;
                -webkit-tap-highlight-color: transparent;

                img {
                    width: 35px;
                    height: 35px;

                    object-fit: cover;

                    transition: transform 0.3s ease;
                }
            }

            .sessions-schedule-institute-toggle:focus {
                outline: none;
            }

            .sessions-schedule-institute-toggle:focus-visible {
                outline: none;
            }

            @media (hover: hover) {

                .sessions-schedule-institute-toggle:hover img {
                    transform: translateY(-5px);
                }

            }
        }
    }

    .sessions-schedule-institute-list-wrapper {
        max-height: 1000px;

        overflow: hidden;

        transition: max-height 0.7s ease-out;
    }

    .session-schedule-table-wrapper {
        width: 100%;

        padding-top: 25px;

        overflow-x: auto;
    }

    .session-schedule-table {
        width: 100%;

        border-collapse: separate;
        border-spacing: 0;

        border: 1px solid #E1E7EF;
        border-radius: 12px;

        overflow: hidden;

        font-family: Arial, sans-serif;

        th,
        td {
            padding: 16px 18px;

            text-align: center;
            vertical-align: middle;

            border-right: 1px solid #E1E7EF;
            border-bottom: 1px solid #E1E7EF;
        }

        th {
            background-color: #F1F6FC;

            color: #0B2A55;

            font-size: 16px;
            font-weight: 700;
        }

        td {
            color: #1A3154;

            font-size: 15px;
            font-weight: 400;

            line-height: 1.4;
        }

        th:first-child,
        td:first-child {
            min-width: 160px;
        }

        th:last-child,
        td:last-child {
            border-right: none;
            min-width: 130px;
        }

        tbody tr:last-child td {
            border-bottom: none;
        }

        tbody tr {
            transition: background-color 0.2s ease;
        }

        tbody tr:hover {
            background-color: #F8FAFD;
        }

        td:first-child {
            color: #0B2A55;
            font-weight: 600;
        }

        a {
            display: inline-block;

            margin-top: 6px;

            color: #1677D2;

            font-size: 15px;
            font-weight: 600;

            text-decoration: none;

            transition:
                color 0.3s ease,
                transform 0.3s ease;
        }

        a:hover {
            color: #0B2A55;

            transform: translateX(3px);
        }
    }

    .sessions-schedule-institute.collapsed {

        .sessions-schedule-institute-list-wrapper {
            max-height: 0;
        }

        .sessions-schedule-institute-toggle img {
            transform: rotate(180deg);
        }
    }

    .sessions-schedule-institute-toggle:focus {
        outline: none;
    }

    .sessions-schedule-institute-toggle:focus-visible {
        outline: none;
    }
}




.mobile-br {
    display: none;
}

.md-w_280 {
    display: none!important;
}

.additional-section-menu-left {
    display: none!important;
}

.md-w_890 {
    width: 100%!important;
}

.mr_30 {
    margin-right: 0px!important;
}

.schedule-gia, .sessions-schedule-ocz, .bell-schedule {
    margin-top: 135px !important;
}

.bell-schedule {

    .sessions-schedule-institute {
        padding: 0px;
        background-color: #FFFFFF;
        border: 1px solid #ffffff;
        border-radius: 12px; 

        .session-schedule-table th {
            line-height: 20px !important;
        }
       
    }

    .session-schedule-table-wrapper {
        padding-top: 0px!important;
    }

}



@media(max-width: 600px) {

    .bx-breadcrumb {
        display: none;
    }
    
    .header-block {
        width: 100%;
        height: 175px;
    }

    .page-theme {
        width: 100%!important;
        bottom: 0px;
        top: 5px;

        .schedule-title {
            font-size: 37px!important;
        }

        .schedule-subtitle {
            font-size: 19px!important;
        }

        .mobile-br {
            display: block!important;
        }

    }

    .header-image {
        width: 100%!important;
    }

    .image-container {

        img {
            bottom: -95px!important;
            right: 10px!important;
            width: 150%!important;
        }
    }

    .schedule-navigation {
        height: 75px!important;

        margin-top: 100px!important;

        .schedule-navigation-list {
            overflow-x: auto;
            overflow-y: hidden;

            touch-action: pan-x;

            scrollbar-width: none;

            .schedule-navigation-link {
                text-align: center;
            }

            .schedule-navigation-border {
                transform: translateY(-2px)!important;
            }

        }

        .schedule-navigation-list::-webkit-scrollbar {
            display: none; 
        }

    }


    .important-information {
        margin-top: 200px;
        padding: 20px 10px;
        gap: 10px;

        .important-information-icon {
            width: 70px!important;
            height: 70px!important;
        }

        .important-information-content {

            .important-information-title {
                font-size: 18px;
            }

            .important-information-text {
                font-size: 14px;
                line-height: 1.45;
            }
        }
    }


    .schedule-institutes, .schedule-institute, .sessions-schedule-institutes, .sessions-schedule-institute {
        padding: 10px!important;
    }

    .schedule-institute-header {
        .schedule-institute-title {
            text-align: center;
        }
    }

    .sessions-schedule-institute-header {
        .sessions-schedule-institute-title {
            text-align: center;
        }
    }

    .schedule-institute-list, .sessions-schedule-institute-list {
        padding-top: 10px!important;
        gap: 10px!important;
    }

    .schedule-institute-item, .sessions-schedule-institute-item {
        min-width: 100%!important;
        min-height: 90px!important;
        padding: 10px 15px!important;
    }

    .schedule-institute-item-title, .sessions-schedule-institute-item-title {
        margin: 10px 0 0!important;
    }




    .schedule-gia, .sessions-schedule-ocz, .bell-schedule {
       margin-top: 200px !important;
    }

    .bell-schedule {

       .sessions-schedule-institute {
          padding: 0px !important;

          .session-schedule-table {
               th:first-child, td:first-child {
                 min-width: 75px;
               }

          }
       }

    }

}
/* End */
/* /studentu/raspisanie/css/styles.css?178817733220991 */
