.pass-success-text {
    margin: 0px 0px 32px !important;
}

.btn-blue {
    white-space: nowrap;
    margin: 16px 64px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #426da9;
    background: none;
    border: 2px solid #426da9;
    border-radius: 10px;
    padding: 10px 48px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.btn-blue:focus, .btn-blue:hover {
    border-color: #002855;
    color: #002855
}

.btn-red {
    border: 2px solid #DA291C;
    color: #DA291C;
}

.btn-red:hover {
    color: white;
    background: #DA291C;
    border: 2px solid #DA291C;
}

.popup-wrapper {
    height: 100vh;
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popup-wrapper button {
    max-height: 100px;
    max-width: 200px;
    font-family: RobotoMonoRegular, sans-serif !important
}

.popup-padding {
    padding-bottom: 32px
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 9999;
    background: rgba(34, 46, 84, .6);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity ease .5s;
    transition: opacity .5s ease;
    opacity: 0;
    display: none
}

.popup ::-webkit-input-placeholder {
    color: #ddd;
    text-align: center
}

/* region popup main */
.popup-main {
    width: 760px;
    max-height: 480px;
    background: #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    position: relative;
    padding: 60px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-64px);
    -ms-transform: translateY(-64px);
    transform: translateY(-64px);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: transform ease .5s;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease
}

.popup-main a:hover {
    color: #002855 !important;
    border: none !important;
    text-decoration: none !important
}

.popup-main .close {
    cursor: pointer;
    position: absolute;
    right: 32px;
    top: 32px
}

.popup-main .authorization {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #000;
    margin: 0 auto
}

.popup-main .writing-doc {
    margin-top: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.popup-main .writing-doc img {
    margin-right: 20px;
    width: 22px;
    height: 22px;
}

.popup-main .writing-doc a {
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.2em;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #426DA9;
    margin: 0 !important;
}

.popup-main .sub-text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #426da9;
    margin: 0
}

.popup-main form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 16px 0 0
}

.popup-main form .input {
    margin: 0 auto 24px
}

.popup-main form button {
    font-family: RobotoMonoRegular, monospace !important
}

.popup-main form input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    width: 460px;
    height: 50px;
    border: 2px solid #ddd;
    margin: 4px 0;
    padding: 8px;
    position: relative;
    text-align: center
}

.popup-main form input[type=email], .popup-main form input[type=password], .popup-main form input[type=text] {
    font-family: RobotoMonoRegular, sans-serif;
    width: 460px
}

.popup-main form .input.error input[type=email], .popup-main form .input.error input[type=password], .popup-main form .input.error input[type=text] {
    border: 2px solid #da291c
}

.popup-main form .input.error .error-text {
    opacity: 1;
    max-width: 460px;
    position: absolute;
    bottom: -12px
}

.popup-main form .error {
    position: relative;
    opacity: 1
}

.popup-main form .error-text {
    font-family: RobotoMonoRegular, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 11px;
    color: #e35e55;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.popup-main form p {
    display: block;
    width: 460px;
    margin: 16px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000
}

.popup-main form button {
    margin: 0
}

.popup-main a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #426da9;
    margin: 16px 0;
    border-bottom: none;
    font-family: RobotoMonoRegular, sans-serif
}
/* endregion popup main */

@media (max-width: 767px) {

    .pass-success-text {
        margin: 32px 0 !important
    }

    .success {
        font-size: 16px !important
    }

    .authorization-block, .change-password-block, .reset-password-block {
        height: 320px
    }

    .popup .input-width input {
        width: 100%
    }

    .popup-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .popup-main {
        width: 90%;
        padding: 17.5% 5% 7.5%
    }

    .popup-main .media-button {
        min-width: 320px;
        font-size: 18px;
        padding: 10px
    }

    .popup-main-height {
        max-height: 100%;
        height: auto
    }

    .popup-main .authorization {
        text-align: center;
        font-size: 20px
    }

    .popup-main .sub-text {
        padding: 0 24px
    }

    .popup-main .sub-text-margin {
        margin: 24px 0
    }

    .popup-main form {
        margin: 0
    }

    .popup-main form label {
        width: 95%;
        text-align: center;
        min-width: 280px
    }

    .popup-main form input[type=email], .popup-main form input[type=password], .popup-main form input[type=text], .popup-main form p {
        width: 90%;
        min-width: 280px
    }

    .popup-main form button {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: 280px;
        padding: 10px 24px;
        margin: 16px 0 0
    }

    .popup-main .close {
        right: 16px;
        top: 16px
    }
}

.authorization-block, .change-password-block, .reset-password-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity ease .5s;
    transition: opacity .5s ease;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 40px auto
}

.authorization-block, .authorization-block .popup-main, .change-password-block, .change-password-block .popup-main, .reset-password-block, .reset-password-block .popup-main {
    background: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.authorization-block .popup-main, .change-password-block .popup-main, .reset-password-block .popup-main {
    width: 760px;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    padding: 60px 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.authorization-block ::-webkit-input-placeholder, .change-password-block ::-webkit-input-placeholder, .reset-password-block ::-webkit-input-placeholder {
    color: #ddd;
    text-align: center
}

.authorization-block .popup-main form button, .change-password-block .popup-main form button, .reset-password-block .popup-main form button {
    margin: 6px 0 0
}

.authorization-block .popup-main form p, .change-password-block .popup-main form p, .reset-password-block .popup-main form p {
    margin: 8px 0 48px
}

.success-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 48px auto
}

.success-block, .success-block .popup-main {
    background: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.success-block .popup-main {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.success-block .popup-main img {
    width: 96px;
    height: 96px
}

.success-block .popup-main .success {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #426da9;
    margin: 48px 0
}

.popup-main input[type=text]::-webkit-input-placeholder {
    text-align: center !important
}

.popup-main input[type=text]:-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=text]::-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=text]::-moz-placeholder {
    text-align: center !important
}

.popup-main input[type=text]::placeholder {
    text-align: center !important
}

.popup-main input[type=password]::-webkit-input-placeholder {
    text-align: center !important
}

.popup-main input[type=password]:-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=password]::-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=password]::-moz-placeholder {
    text-align: center !important
}

.popup-main input[type=password]::placeholder {
    text-align: center !important
}

.popup-main input[type=email]::-webkit-input-placeholder {
    text-align: center !important
}

.popup-main input[type=email]:-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=email]::-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=email]::-moz-placeholder {
    text-align: center !important
}

.popup-main input[type=email]::placeholder {
    text-align: center !important
}

.popup-main input[type=number]::-webkit-input-placeholder {
    text-align: center !important
}

.popup-main input[type=number]:-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=number]::-ms-input-placeholder {
    text-align: center !important
}

.popup-main input[type=number]::-moz-placeholder {
    text-align: center !important
}

.popup-main input[type=number]::placeholder {
    text-align: center !important
}

.popup-main input, .popup-main input[type=email], .popup-main input[type=number], .popup-main input[type=password], .popup-main input[type=text] {
    text-align: center !important
}

.popup-main .checkbox span {
    margin: 0 !important
}

#checkbox_err {
    display: block;
    height: 32px;
    position: absolute;
    bottom: 0;
    left: 44px;
    color: #e35e55
}

.popup-main_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.popup-main_row .btn-blue {
    margin: 0 16px
}

@media (max-width: 1020px) {
    .popup-main_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .popup-main_row .btn-blue {
        margin: 16px 0
    }
}

.product-features__popup {
    opacity: 0;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: scroll;
    z-index: 400
}

.product-features__popup img {
    max-width: 100%;
    height: auto
}

.product-features__popup .close {
    background: url(img/pop_close_ico.jpg) 0 0 no-repeat;
    position: absolute;
    right: 70px;
    top: 70px;
    width: 68px;
    height: 68px;
    text-decoration: none;
    display: block;
    border: 0
}

.product-features__popup .close:hover {
    opacity: .7
}

.product-features__popup .inn {
    font-family: futuraregular;
    font-size: 18px;
    text-align: center;
    padding: 0 20px 100px;
    max-width: 800px;
    margin: auto;
    line-height: 1.4em;
    opacity: 0
}

.product-features__popup .inn h3 {
    margin: 10px 0;
}

.product-features__popup .inn p {
    margin: 0 0 40px
}

.product-features__popup .inn .name {
    font-size: 2em;
    color: #0090d9;
    line-height: 1.4em;
    font-family: futurablack;
    text-transform: uppercase;
    margin: 0 0 40px
}

.product-features__popup .inn .text .intro {
    font-size: 1.33333em;
    line-height: 1.4em;
    margin: 0 0 40px
}

.product-features__popup .inn .text .release_text {
    text-align: left
}

.product-features__popup .inn .text .release_text h3 {
    font-family: futurademic;
    font-weight: 400
}

.product-features__popup .inn .text .release_text ul {
    margin: 0 0 20px;
    padding: 0
}

.product-features__popup .inn .text .release_text ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none
}

.product-features__popup .inn .text .release_text ul ul {
    padding: 0 0 0 25px;
    margin: 20px 0
}

@media only screen and (max-width: 640px) {
    .product-features__popup .close {
        left: 50%;
        margin: 0 0 0 -32px;
        top: 50px
    }
}

.err_popup {
    display: none;
    background: #fff;
    text-align: left;
    padding: 60px 60px 40px;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 0 0 -300px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    width: 600px;
    z-index: 300;
    color: red
}

.err_popup .title {
    color: #000
}

.err_popup .close {
    background: url(img/pop_close_ico.jpg) 0 0 no-repeat;
    background-size: 40px auto;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0
}

@media only screen and (max-width: 640px) {
    .err_popup {
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 100%;
        margin: 0
    }
}
