@media (min-width: 992px){
    .site-footer__list {
        flex-shrink: 10;
    }
}
.modal1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    background: #ffffff9e;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition-duration: .3s;
    transition-property: width,height,left,top,opacity;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000
}

@media (min-width: 992px) {
    .modal1 {
        align-items:center;
        padding: 0
    }
}

.modal1--opened {
    pointer-events: auto;
    opacity: 1
}

.modal1--opened .modal1__block {
    width: 100%;
    height: auto;
    padding-top: 40px;
    overflow-x: visible;
    overflow-y: auto;
    opacity: 1;
    position: relative
}

@media (min-width: 992px) {
    .modal1--opened .modal1__block {
        width:640px;
        padding: 40px;
        border-radius: 12px
    }
}

@media (min-width: 1190px) {
    .modal1--opened .modal1__block {
        padding:48px 70px
    }
}

@media (min-width: 992px) {
    .modal1--opened .modal1__block--form {
        width:100%;
        max-width: 1190px
    }

    .modal1--opened .modal1__block--field-setting {
        width: 100%;
        max-width: 430px
    }
}

.modal1__block {
    width: 0;
    height: 0;
    max-height: 90vh;
    padding-top: 20px;
    background: #fff;
    box-shadow: 0 10px 25px 0 rgba(0,0,0,.2);
    transition-duration: .3s;
    transition-property: width,height,opacity;
    overflow: hidden;
    opacity: 0;
    position: relative
}

.modal1__closer {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    display: block;
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-image: url(../img/icon-closer.svg);
    background-position: center;
    font-size: 0;
    transition-duration: .2s;
    transition-property: opacity;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px
}

.modal1__closer:focus {
    outline: 0
}

.modal1__closer:active,.modal1__closer:hover {
    opacity: .7
}

.modal1__overlay {
    width: 100vw;
    height: 100%;
    font-size: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0
}

.intro__header {
    margin-bottom: 6px;
    font-weight: 800;
}
@media (min-width: 992px) {
    .main-header {
        font-size: 32px;
    }
}
.intro__header--login::before {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background-image: url(../img/icon-ava-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #4b8bfb;
}
.intro__text {
    margin: 0 0 55px;
    font-size: 16px;
    font-weight: 400;
    color: #a1a3ab;
    text-align: center;
}
.intro__text a {
    border-bottom: 1px solid #4b8bfb;
    text-decoration: none;
}
.catalog__update-action, .intro__text a {
    color: #4b8bfb;
    transition-duration: .2s;
    transition-property: opacity;
}
.intro__add {
    margin: 0;
    padding: 15px 0 0;
    text-align: center;
}
.intro__buttons {
    padding-top: 32px;
}
.intro__link {
    border-bottom: 1px solid #0d246d;
    font-size: 16px;
    font-weight: 500;
    color: #0d246d;
    text-decoration: none;
    transition-duration: .2s;
    transition-property: opacity;
}
.intro__link[href]:hover {
    opacity: .7;
    cursor: pointer;
}
.spinner-loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    /*height: 100vh;*/
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6);
    color: beige;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /*animation: disapear 5000ms ease-in-out both;*/
    display: none;
    bottom: 0;
    z-index: 1000000;
}

.circle1 {
    position: absolute;
    height: 250px;
    margin: 0 auto;
    width: 250px;
    border: 4px solid rgba(75, 139, 251, 0);
    border-radius: 50%;
    animation: border-loader 1300ms ease-in-out 600ms 3 both;
    animation-iteration-count: infinite;
}

.circle2 {
    position: absolute;
    height: 200px;
    width: 200px;
    border: 4px solid rgba(75, 139, 251, 0);
    border-radius: 50%;
    animation: border-loader 1s ease-in-out 550ms 3 both;
    animation-iteration-count: infinite;
}

.circle3 {
    position: absolute;
    height: 220px;
    width: 220px;
    border: 4px solid rgba(75, 139, 251, 0);
    border-radius: 50%;
    animation: border-loader 1150ms ease-in-out 450ms 3 both;
    animation-iteration-count: infinite;
}

@keyframes border-loader {
    0% {
        border-top-color: rgba(75, 139, 251, 0);
        transform: rotate(0deg);
    }

    10% {
        border-top-color: rgba(75, 139, 251, 0.3);
    }

    30% {
        border-top-color: rgba(75, 139, 251, 0.5);
    }

    60% {
        border-top-color: rgba(75, 139, 251, 0.8);
    }

    100% {
        border-top-color: rgba(75, 139, 251, 0);
        transform: rotate(360deg);
    }
}

.spinner-loader h3 {
    font-size: 2rem;
    opacity: 0;
    /*animation: disapear 1150ms ease-in-out 150ms 3 both;*/
}
p.error {
    color: #f00;
}
#modal-privacy-policy .modal1__block, #modal-user-agreement .modal1__block, #modal-soglasie .modal1__block {
    width: 1024px;
}