﻿.teachers-new-modal {
    position: fixed;
    display: none;
    z-index: 20;
}

.teachers-new-modal-shadow {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
}

.teachers-new-modal-body {
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 24px 40px 24px;
    max-width: 440px;
    width: 90%;
    z-index: 21;
    border-radius: 6px;
}

.teachers-new-modal-header, .page .teachers-new-modal-header {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #004677;
}

.teachers-new-modal-list, .page .teachers-new-modal-list {
    list-style-type: disc;
    padding-left: 16px;
    max-height: 90vh;
    overflow: auto;
}

    .teachers-new-modal-list li {
        margin: 4px;
        line-height: 1.3;
        font-size: 14px;
    }

        .teachers-new-modal-list li, .page .teachers-new-modal-list li, .teachers-new-modal-list li a {
            color: black !important;
        }

            .teachers-new-modal-list li a:hover {
                text-decoration: underline;
            }

.loader-teacher-modal {
    position: relative;
    height: 30px;
}

.loader-teacher-modal-inner {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid #004677;
    border-left: transparent;
    animation-name: loader-teacher-animate;
    animation-duration: 3s;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(0);
}

@keyframes loader-teacher-animate {
    from {
        transform: translateX(-50%) rotate(0);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.teachers-new-modal-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    padding: 20px;
    border: none;
    background: transparent;
    line-height: 1;
    cursor: pointer;
    color: #506176;
}

.teacher-no-teacher, .page .teacher-no-teacher {
    font-size: 14px;
    font-weight: 700;
}


