.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* фоновый цвет */
    background: #e0e0e0e0;
    z-index: 1001;
}

.preloader__image {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}

.documents__footer-content-btn .documents__footer-start {
    background-color: #FF9C32;
    cursor: pointer;
}
.green {
    color: green !important;
}
.white {
    color: white !important;
}
html {
    position: relative;
}
#screen {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 5;
    margin: auto;
    display: none;
}
#loader {
    margin: 0 auto;
    position: absolute;
    z-index: 10;
    display: none;
    color: red;
    left: 45%;
    top: 40%;
}
#screen.visible{
    display:block;
}
#screen.visible #loader,#screen.visible #modal{
    display:block;
}
#modal {
    margin: 0 auto;
    position: absolute;
    z-index: 10;
    display: none;
    color: black;
    left: 35%;
    top: 25%;
    max-width: 300px;
    max-height: 245px;
    width: 60%;
    background-color: white;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#OkButton {
    text-decoration: none;
    transition: color .1s ease-in;
    background: #FF9C32;
    max-width: 180px;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    /*transition: background-color .2s ease-in-out;*/
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #fff;
    box-sizing: border-box !important;
    margin: 15px;
    -webkit-appearance: button;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: block;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
}
#OkButton:hover {
    background-color: #ff5200 !important;
}
#OkButton.btn_disabled{
    background-color: grey !important;
    cursor: default;
}
#modal .link_container, #modal .checkbox_container {
    padding: 15px 20px 5px 20px;
}
#modal a:hover {
}
#modal a {
    color: #0097e6;
    text-decoration: none;
    padding-top:3px;
}
i.fas.fa-paperclip {
    cursor: pointer;
}
.head_text{
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
@media screen and (max-width: 650px) {
    #modal {
        left: 5%;
        width: 90%;
        max-width: 90%;
    }
}