@font-face {
    font-family: "GolosRegular";
    src: url("../fonts/golos/static/GolosText-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "GolosMedium";
    src: url("../fonts/golos/static/GolosText-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "GolosSemiBold";
    src: url("../fonts/golos/static/GolosText-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto.ttf") format("truetype");
}
@font-face {
    font-family: "RobotoItalic";
    src: url("../fonts/Roboto/Roboto-Italic.ttf") format("truetype");
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

/* wrapper */
.page {
    position: relative;
    border-radius: 24px;
    border: 1px solid #e3e3e3;
    background: #f5f5f5;
    padding: 40px;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 1240px;
    font-family: Roboto;

    margin: auto;
    height: auto;
    width: auto;
    display: flex;
    box-shadow: 0px 4px 40px 0px rgba(12, 12, 13, 0.10), 0px 32px 80px 0px rgba(12, 12, 13, 0.10);

    @media only screen and (max-width: 600px) {
        height: 100%;
        width: 100%;
        margin: unset;
        border-radius: unset;
        border: unset;
        padding: 25px;
        display: flex;
        justify-content: center;
    }
}

/* left_menu */
.left {
    display: flex;
    flex: 1;
    background: unset;
    width: 0;
    height: 0;
    visibility: hidden;
    top: 40px;
    left: 40px;

    @media only screen and (max-width: 600px) {
        position: absolute;
        top: 0;
        left: 50%;
    }
}

.left img {
    height: 56px;
}

/* right_menu */
.right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    float: unset;
    flex: 0.4;

    margin: 56px auto auto auto;

    @media only screen and (max-width: 600px) {
        flex: 1;
        margin: unset;
    }
}

.logo {
    position: absolute;
    left: 40px;
    visibility: visible;
    width: max-content;
    height: max-content;
    top: 40px;

    @media only screen and (max-width: 600px) {
        left: -50%;
        transform: translate(-50%, 0);
    }
}

.form {
    margin: 0 auto;
    transform: unset;
    position: relative;
    top: unset;
    left: unset;
    font-family: Roboto;

    padding-right: 0;
    min-width: 340px;
    width: max-content;

    @media only screen and (max-width: 600px) {
        min-width: 268px;
        width: 100%;
        margin: unset;
    }
}

input {
    color: #42474D;
}
input::-webkit-input-placeholder{
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    color: #D1D6DA;
}
input:focus::-webkit-input-placeholder{
    color: rgba(155,155,155, 0.3);
}
.form__label-gray {
    color: #9B9B9B
}
input[type=checkbox] + label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: white;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #D6DBE7;
    border-radius: 3px;
    margin-right: 13px;
    margin-bottom: -2px;
}
.form__checkbox label:before {
    /*border-radius: 3px;*/
}
input[type=checkbox] + label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 3px;
    left: 3px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type=checkbox]:checked + label:after {
    opacity: 0.2;
}

a {
    text-decoration: none;
    color: #373B40;
}
a:hover {
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    color: #6C6C6B;
}
.wrapper {

}

.form-wrapper {
    position: absolute;
    width: 416px;
    min-height: 652px;
    left: 50%;
    top: 50%;
    margin-left: -208px;
    margin-top: -326px;
}

.form.without-back {
    background: none;
    box-shadow: none;
    width: 500px;
    text-align: center;
    font-size: 16px;
    color: #6C6C6B;
}
.form.error {
    font-family: GolosMedium;
    font-size: 14px;
    color: #FB5C5E;
    min-height: 415px;
}
.form span.error {
    color: #FA4547;
    font-size: 12px;
    line-height: 16px;
}
.form__error-icon {
    height: 60px;
    width: 60px;
    margin: 100px auto 48px;
}
.form__error-message {
    font-family: GolosMedium;
    font-size: 14px;
    color: #FB5C5E;
    background-color: #FFECED;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 5px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    min-height: 43px;
}
.alert-message {
    display: flex;
    flex-direction: row;
    align-self: center;
    font-size: 13px;
    line-height: 20px;
    border-radius: 8px;
    min-height: 52px;
}

.alert-message .glyphicon {
    top: 2px;
    border: none !important;
}
.alert-message div {
    align-self: baseline;
}

.info-message {

}
.info-message .glyphicon {
    top: 2px;
}
.info-message div {
    align-self: baseline;
}

.inst {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 13px;
    line-height: 20px;
}

.form__input {
    background: #FFFFFF;
    border: none;
    width: 100%;
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
    padding: 12px;

    outline: 1px solid #0000003b;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4375em;
    letter-spacing: 0;

    height: 48px;
    border-radius: 4px;
}
.form__input[type="password"] {
    padding-right: 35px;
}
.form__input.short {
    width: 54%;
    margin-left: 32px;
}
.form__qr-code {
    height: 120px;
    width: 120px;
    background: #D7DDEA;
    float: left;
}
.form__qr-code-info {
    width: 200px;
    float: right;
    font-size: 11px;
    color: #4A4A4A;
    margin-left: 38px;
    margin-bottom: 28px;
}
.form__submit {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: none;
    margin-top: 32px;
    color: #fff;
    font-weight: unset;

    line-height: 24px;
    background: #187f9b;

    padding: 12px 24px;
    font-size: 16px;
}
.form__submit:hover {
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;

    background-color: #095e76;

}
.form__submit:disabled {
    background-color: #EDF1F2;
    color: #B0BABF;
}
.form__social {
    display: block;
    margin: 16px auto 0;
    width: 100%;
    background: #fff;
    height: 40px;
    border-radius: 8px;
    border-style: solid;
    border-color: #CCD6D9;
    font-family: GolosMedium;
    font-size: 14px;
    font-weight: unset;
    line-height: 2.5;
    box-shadow: unset;
    -webkit-box-shadow: unset;
}
.form__social img {
    width: 20px;
    margin-right: 12px;
}
.form__social:hover {
    color: #6C6C6B;
}
.form__registration {
    display: block;
    margin-top: 10px;
    width: 100%;
    background: #fff;
    height: 45px;
    font-size: 16px;
    cursor: pointer;
    line-height: 3;
    border: none;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form__registration:hover {
    color: #6C6C6B;
}
.form__forgot {
    display: block;
    margin-top: 12px;
    width: 100%;
    background: #fff;
    height: 40px;
    font-family: GolosMedium;
    color: #42474D;
    font-size: 14px;
    line-height: 3;
    border: none;
    box-shadow: unset;
    font-weight: unset;
}
.form__forgot:hover {
    color: #6C6C6B;
}
.form__message {
    margin-bottom: 26px;
    color: #6C6C6B;
}
.form__header {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.form__header.big {
    font-size: 28px;
    width: 300px;
    padding-bottom: 48px;
}
.form__header .img {
    height: 72px;
    padding-bottom: 3px;
}
.form__header .desc {
    font-size: 13px;
    font-weight: unset;
    color: #42474D;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 32px;
}
.form__header .title {
    font-size: 20px;

    color: #303030;
    font-family: Roboto;

    font-weight: 500;
    line-height: 26px;
}
.form__header_back span {
    font-size: 14px;
    align-self: center;
}

.form__form {
}
.form__group {
    position: relative;
    display: grid;
}
.form__icon {
    position: absolute;
    right: 12px;
    color: #7B868C;
    width: 16px;
    top: 55px;
}
.form__helper-wrapper {
    visibility: hidden;
    opacity: 0;
}
.form__helper {
    position: absolute;
    width: 320px;
    height: 60px;
    left: 390px;
    top: -6.5px;
    background: #FFFFFF;
    border: 1px solid #EEF1F8;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.17);
}
.form__helper::after, .form__helper::before {
    content: '';
    position: absolute;
    background: #fff;
    left: -10px;
    bottom: 20px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.17);
    z-index: -1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.form__helper::before {
    z-index: 1;
    box-shadow: none;
}
.form__group input:focus ~ .form__helper-wrapper {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}
.form__group label {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #7B868C;
    padding-top: 16px;
    font-weight: unset;
}

.instruction__form {

}

.instruction__regular {
    font-family: GolosRegular;
    font-size: 14px;
    text-align: center;
    padding-bottom: 10px;
    color: #4A4A4A;
}
.instruction_back {
    display: flex;
}
.instruction_back a {
    margin-left: auto;
    width: 18%;
    margin-right: auto;
    border: 1px solid;
    border-radius: 8px;
    height: 35px;
    padding-top: 5px;
    font-size: 15px;
    color: #22406A;
}
.instruction__password {
    font-size: 12px;
    color: #7B868C;
    margin-top: 8px;
}
.bi-arrow-90deg-left::before {
    padding-right: 5px;
}

.form__header-p {
    font-size: 12px;
    color: #9B9B9B;
    letter-spacing: 0;
    padding-left: 22px;
    height: 60px;
    vertical-align: middle;
    display: table-cell;
}
.form__links {
    font-size: 13px;
    line-height: 24px;
    /*padding: 0 50px 35px;*/
}

.form__links fieldset {
    border: none;
}

.form__links-left {
    padding-left: 45%;
}
.form__input:focus {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;

    outline-color: #187f9b;

}
.form__input.error {
    border: 1px solid #FA4547;
    outline: 2px solid #FDC7C8;
}
.bottom-link {
    display: block;
    position: relative;
    font-size: 13px;
    top: 10px;
}
fieldset{
    padding: 0 0;
    border-top: 1px solid;
    border-top-color: #DCE3E5;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin-top: 16px;
}
legend{
    font-family: GolosRegular;
    font-size: 14px;
    line-height: 20px;
    color: #7B868C;
    margin: auto auto;
    padding: 0 4px;
    width: auto;
    border-bottom: none;
}
.mobile {
    display: none;
}
.refresh {
    text-align: end;
    margin: 0 71px;
    position: relative;
    height: 30px;
}
.refresh__btn {
    font-family: GolosRegular;
    font-size: 13px;
    color: #9B9B9B;
    cursor: pointer;
    float: right;
}
.refresh__btn:hover {
    color: #3377FF;
}
.refresh__icon {
    position: absolute;
    height: 10px;
    width: 10px;
    right: 65px;
    top: 2px;
}
.ie_label {
    display: block;
}

.feedback-error {
    font-size: 13px;
    color: #7D2223;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 16px;
    border: 1px solid #FDC7C8;
    border-radius: 8px;
    background-color: #FFECED;
}
/*.feedback-error svg path {*/
/*    fill: #7D2223;*/
/*}*/

.feedback-success {
    font-size: 13px;
    color: #4b9e39;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 16px;
    border-radius: 8px;
    border: 1px solid #c7dfc1;
    background-color: #e4f1e1;
}
.feedback-success svg path {
    fill: #4b9e39;
}

.feedback-warning {
    font-size: 13px;
    color: #f17528;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 16px;
    border-radius: 8px;
    border: none;
    /*border-color: #f17528;*/
    background-color: #fef1e9;
}
.feedback-warning svg path {
    fill: #f17528;
}

.feedback-info {
    font-size: 13px;
    color: #1257BF;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 24px;
    border-radius: 8px;
    border: 1px solid #B9D3FA;
    background-color: #E8F0FD;
}
.feedback-info svg path {
    fill: #176DEF;
}

.bottom-block {
    width: 500px;
    margin: 10% auto 0;
}
.bottom-block__link {
    font-size: 13px;
    color: #3A529B;
}
.bottom-block__link-right {
    float: right;
}
.bottom-block__phone {
    font-size: 16px;
    color: #6C6C6B;
    margin-bottom: 5px;
}
.bottom-wrapper {
    margin-bottom: 1px;
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.cert-button {
    text-decoration: none;
    padding-bottom: 35px;
    display: block;
}
.btn-default {
    color: #4d5258;
    background-color: #eeeeee;
    border-color: #b7b7b7;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #4d5258;
    background-color: #d5d5d5;
    border-color: #989898;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

table {
    border-collapse: collapse;
}
th {
    height: 50%;
    font-size: 14px;
    color: #9B9B9B;
    padding-bottom: 23px;
}
th:first-child {
    width: 180px;
}
tr {
    text-align: left;
}
td {
    padding-bottom: 10px;
    padding-top: 10px;
}
tr, td {
    font-family: GolosRegular;
    font-size: 14px;
    color: #3A529B;
}
tr:hover td {
    color:  #44A9ED;
    cursor: pointer;
}
