@font-face {
    font-family: 'Lab Grotesque';
    src: local('Lab Grotesque Regular'), local('LabGrotesque-Regular'),
        url('../fonts/LabGrotesque-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lab Grotesque';
    src: local('Lab Grotesque Medium'), local('LabGrotesque-Medium'),
        url('../fonts/LabGrotesque-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lab Grotesque';
    src: local('Lab Grotesque Bold'), local('LabGrotesque-Bold'),
        url('../fonts/LabGrotesque-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'LibelSuitRg-Regular';
    src: url('../fonts/libelsuitrg-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container-payment {
    max-width: 1270px;
    font-family: 'LibelSuitRg-Regular';
    padding: 60px 15px 0;
    display: flex;
    justify-content: space-between;
}

.container-payment__left-side,
.container-payment__right-side {
    width: 49%;
}

.title {
    font-family: 'LibelSuitRg-Regular';
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111D41;
}

.title--mb40 {
    margin-bottom: 40px;
    text-align: center;
}

.subtitle {
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 22px;
    text-align: center;
    color: #DA0E0E;
    margin-top: 34px;
    display: none;
}

.list {
    list-style-position: inside;
    list-style-type: none;
    width: 82.8%;
    margin: 34px 0 25px;
}

.list-item {
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #111D41;
    padding: 18px;
    background: #EFF1F5;
    border-radius: 8px;
    margin-bottom: 10px;
}

.text {
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #111D41;
}

.text>span {
    color: #E7266B;
}

.text--mb12 {
    margin-bottom: 12px;
}

.text--grey {
    color: #98A2BF;
}

.form {
    margin: 34px 0 0;
}

.form__row {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.form__row--w66 {
    width: 66%;
}

.form__row.error .form__svg {
    display: block;
}

.form__row.error .form__error {
    display: block;
}

.form__row.error .form__input {
    border: 1px solid #E4281C;
}

.form__row.error .checkbox__label::before {
    border: 1px solid #E4281C;
}

.form__input {
    width: 100%;
    outline: none;
    border: none;
    background: #EFF1F5;
    border-radius: 8px;
    padding: 18px;
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #111D41;
}

.form__label {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #98A2BF;
    transition: all .3s linear;
}

.form__label.active {
    transform: translate(0px, -15px);
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #111D41;
    opacity: 0.7;
}

.form__checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: 0;
}

.checkbox__label {
    user-select: none;
    display: inline-flex;
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.checkbox__label>span {
    color: #E7266B;
}

.checkbox__label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #111D41;
    border-radius: 5px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.form__checkbox:checked+.checkbox__label::before {
    border-color: #111D41;
    background-color: #FFF;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.28516 3.57143L4.71373 7L10.7137 1' stroke='%23E7266B' stroke-width='1.5'/%3E%3C/svg%3E");
}

.form__button {
    outline: none;
    border: none;
    padding: 6px;
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    background: #E7266B;
    border-radius: 8px;
}

.form__button--18_32 {
    padding: 18px 32px;
}

.form__error {
    display: none;
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #E4281C;
    opacity: 0.7;
    text-align: right;
}

.form__svg {
    display: none;
    position: absolute;
    right: 22px;
    top: 22px;
}

.qr-code__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.qr-code {
    max-width: 420px;
}

.complete {
    width: 66%;
    margin: 0 auto;
    background: #FEF2F6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 140px;
}

.complete__svg {
    margin-bottom: 40px;
}

.more {
    text-decoration: none;
    border: 1px solid #E7266B;
    border-radius: 6px;
    font-family: 'Lab Grotesque';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #E7266B;
    padding: 16px;
}

@media screen and (max-width: 768px) {
    div.container-payment > div {
        flex-direction: column !important;
        padding: 0 20px;
    }

    .container-payment__left-side,
    .container-payment__right-side {
        width: 100%;
    }

    .left-side {
        margin-bottom: 20px;
    }

    .title {
        font-size: 28px;
    }

    .qr-code {
        width: 100%;
    }

    .complete {
        width: 100%;
        padding: 30px 60px;
    }
}