/*-----------------------------------------------------------------------*/
.etapDisciplini table{

}
.etapDisciplini table tr{
    cursor: pointer;
}
.etapDisciplini table tr.disabled{
    cursor: not-allowed;
}
.etapDisciplini tr.active td{
    background-color: #4997f8;
    color: white;
}
.etapDisciplini .form-control{
    max-width: 200px;
}
/*-----------------------------------------------------------------------*/
.tableInner{
    position: relative;
}

.tableInner.loading .spinner2 {
    visibility: visible;
    opacity: 1;
}
.tableInner .spinner2 {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    background-color: rgb(0 0 0 / 3%);
    transition: .5s background-color;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    font-size: 24px;
    transition: visibility 0.3s linear,opacity 0.3s linear;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.tableInner.loading tr[data-id] {
    filter: blur(1px);
}
.tableInner .spinner2 > i {
    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    margin-top: 22px;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
/*-----------------------------------------------------------------------*/
.check-list{
    text-align: left; 

    margin-left: auto;
    margin-right: auto;
}
.check-item{
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.check-item img{
    width: 25px;
    flex-shrink: 0;
    margin-right: 10px;
    display: block;
}
.check-text{
    display: flex;
    flex-direction: column;
}
.check-name{
    font-weight: 500;
}
.check-error{
    margin-top: 5px;
    margin-bottom: 10px;
    color: #CD3D34;
    font-size: 10px;
}
.check-success{
    margin-top: 5px;
    color: darkgreen;
    font-size: 10px;
}
.check-info{
    margin-top: 5px;
    font-size: 10px;
}
.check-row{
    display: flex;
    align-items: center;
}
.check-list .btn-red{
    margin-right: 15px;
}
.check-why{
    text-decoration: underline;
    color: #CD3D34;
    cursor: pointer;
    font-size: 12px;
    user-select: none;
}
.check-why:hover {
    text-decoration: none;
}
.check-img-loading {
    animation: rotating cubic-bezier(0, 0, 1, 1) 1s infinite;
}
@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.connectWindow{
    background-color: white;
    padding: 20px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
}
.etapConnect .zagolovok{
    text-align: center;
}
.etapConnect .text{
    text-align: center;
}
/*-----------------------------------------------------------------------*/
#myCamera{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 175px;
    height: 150px;
    background-color: black;
    display: none;
    height: auto;
    cursor: move;
}
#myCamera.active{
    display: block;
}
@media screen and (max-width: 950px) {
    #myCamera{
        position: fixed;
        top: 0px;
        right: 0px;
        height: 65px;
        width: auto;
    }
}
/*-----------------------------------------------------------------------*/
.etapIframe{
    position: relative;
}
.etapIframe iframe{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.nav.disabled{
    display: none;
}
/*-----------------------------------------------------------------------*/
header .empty .btn-primary{
    background-color: #0c83e2;
    border-color: #0c7cd5;
    color: white;
    margin-left: 20px;
}
header .empty .btn-primary:hover{
    background-color: #146fb8;
    border-color: #2196f3;
}
header .empty .btn-primary.examMode{
    background-color: transparent;
    text-decoration: underline;
}
@media screen and (max-width: 950px) {
    header .empty .btn-primary{
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
/*-----------------------------------------------------------------------*/
#myScreen{
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 175px;
    height: 150px;
    background-color: black;
    height: auto;
    cursor: move;
    visibility: hidden;
}
#myCanvas{
    position: fixed;
    left: 25px;
    top: 25px;
    width: 175px;
    background-color: black;
    height: auto;
    cursor: move;
    visibility: hidden;
}
/*-----------------------------------------------------------------------*/
body.examIsGoing footer{
    display: none;
}
/*-----------------------------------------------------------------------*/