* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-box-sizing-box-sizing: border-box;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'ProximaNovaRegular', sans-serif;
    font-weight: 500;
    position: relative;
    color: #000;
    min-width: 320px;
}

@font-face {
    font-family: 'ProximaNovaLight';
    src: url('../font/prno+/ProximaNova-Light.woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNovaRegular';
    src: url('../font/prno+/ProximaNova-Regular.woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNovaSemibold';
    src: url('../font/prno+/ProximaNova-Semibold.woff2');
    font-weight: 600;
    font-style: normal;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*Modal style*/
.modal-form {
    max-width: 530px;
    padding-top: clamp(25px, 3vw, 45px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 45px);
    padding-left: clamp(15px, 3vw, 45px);
    border-radius: 22px;
}

.modal-form__tabs {
    display: flex;
    margin-bottom: 40px;
    gap: clamp(25px, 3vw, 35px);
}

.modal-form__tab {
    color: #737373;
    font-size: clamp(16px, 3vw, 18px);
    line-height: clamp(16px, 3vw, 18px);
    font-family: 'ProximaNovaSemibold';
    cursor: pointer;
    padding-bottom: 5px;
}

.modal-form__tab.active {
    border-bottom: 2px solid #f3c020;
    color: #000;
}

.modal-form__label,
.lk-form__label {
    display: block;
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 14px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-form__input,
.lk-form__input {
    width: 100%;
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 14px;
    padding: 12px 10px;
    border: 1px solid #C4C4C4;
    border-radius: 6px;
    color: #000;
}

.modal-form__input::placeholder,
.lk-form__input::placeholder {
    color: #757575;
}

.modal-form__password-toggle {
    position: relative;
}

.modal-form__password-icon {
    position: absolute;
    background-size: cover;
    background-position: center center;
    width: 23px;
    height: 23px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.modal-form__textarea,
.lk-form__textarea {
    display: block;
    min-height: 77px;
}

.password-open {
    background-image: url(../images/lk_img/password-open-icon.svg);
}

.password-close {
    background-image: url(../images/lk_img/password-close-icon.svg);
}

.modal-form__label-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-family: 'ProximaNovaRegular';
    font-size: 10px;
    line-height: 12px;
    cursor: pointer;
}

.checkbox {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 11px;
    height: 12px;
    margin-top: 2px;
    margin-left: 0;
}

.checkbox::before {
    position: absolute;
    content: '';
    left: -1px;
    top: -1px;
    width: 15px;
    height: 15px;
    background-color: #D2D2D2;
    border-radius: 3px;
    cursor: pointer;
}

.checkbox:checked::after {
    position: absolute;
    content: '';
    left: 2px;
    top: 2px;
    width: 9px;
    height: 9px;
    background-color: #238441;
    border-radius: 2px;
}

.error-message {
    display: none;
    align-items: center;
    gap: 15px;
    background: #FFCFCF;
    color: #a94442;
    border-radius: 6px;
    padding: 15px 18px;
    font-family: 'ProximaNovaRegular';
    font-size: 12px;
    line-height: 15px;
    margin-top: 24px;
    max-width: 440px;
}

.error-message-icon {
    background-image: url(../images/lk_img/error-icon.svg);
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 24px;
    height: 24px;
}

.error-message b {
    cursor: pointer;
}

.modal-form__buttons {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-block;
    padding: 11px 28px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 14px;
    transition: 0.2s;
    text-decoration: none;
}

.btn-yellow {
    background: #f3c020;
    color: black;
}

.btn-yellow:hover {
    background: #ffb803;
}

.btn-gray {
    background: #eee;
}

.btn-gray:hover {
    background: #e1e1e1
}

.btn-border {
    background: #fff;
    color: #000;
    border: 1px solid #238441
}

.btn-border:hover {
    background: #238441;
    color: #fff;
    border: 1px solid #238441
}

.success-alert {
    max-width: 530px;
    padding-top: clamp(25px, 3vw, 55px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 55px);
    padding-left: clamp(15px, 3vw, 45px);
    border-radius: 22px;
    text-align: center;
}

.success-alert__icon {
    margin-bottom: 12px;
}

.success-alert__title {
    font-family: 'ProximaNovaSemibold';
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
}

.success-alert__text {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 25px;
}

/*Modal style end*/

/*lk style*/
.header-lk {
    padding: 22px 0;
    background-color: #fff;
}

.header-lk__container {
    display: flex;
    align-items: flex-start;
    padding: 0 10px;
}

.header-lk__info {
    max-width: 420px;
    margin-left: auto;
    margin-right: 12%;
}

.header-lk__organization {
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(18px, 2vw, 20px);
    font-family: 'ProximaNovaSemibold';
    max-width: 415px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 18px;
    color: #000;
}

.header-lk__manager {
    font-family: 'ProximaNovaLight';
    font-size: 12px;
    margin-bottom: 5px;
}

.header-lk__manager-box {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 24px);
}

.header-lk__name,
.header-lk__phone a,
.header-lk__mail a {
    font-family: 'ProximaNovaRegular';
    font-size: clamp(11px, 3vw, 14px);
    line-height: clamp(12px, 3vw, 14px);
    color: #000;
    text-decoration: none;
    transition: 0.2s;
    white-space: nowrap;
}

.header-lk__phone a:hover,
.header-lk__mail a:hover {
    color: #238441;
    transition: 0.2s;
}

.header-lk__logout {
    display: flex;
    color: #000;
    align-items: center;
    gap: 14px;
    margin-top: 3px;
    font-family: 'ProximaNovaSemibold';
    font-size: 16px;
    line-height: 17px;
    cursor: pointer;
}

.lk-section {
    margin-top: clamp(35px, 6vw, 90px);
    margin-bottom: clamp(35px, 6vw, 90px);
}

.lk-container {
    display: flex;
    padding: 0 10px;
}

.lk-menu {
    flex: 0 0 26%;
}

.lk-nav li {
    display: block;
    position: relative;
    padding-left: 13px;
    margin-bottom: clamp(12px, 2vw, 20px);
}

.lk-nav li:nth-last-child(1) {
    margin-bottom: 0;
}

.lk-nav li a {
    color: #737373;
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(18px, 2vw, 20px);
    font-family: 'ProximaNovaRegular';
    cursor: pointer;
    text-decoration: none;
    padding-top: 2px;
    padding-bottom: 2px;
    transition: 0.2s;
}

.lk-nav li a:hover {
    color: #000;
    transition: 0.2s;
}

.lk-nav li a.active {
    color: #000;
    font-family: 'ProximaNovaSemibold';
}

.lk-nav li a.active::before {
    position: absolute;
    content: '';
    height: 23px;
    width: 4px;
    background-color: #f3c020;
    left: 0;
    top: -1px;
}

.lk-content {
    flex: 1;
}

.lk-content__title {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(22px, 2vw, 28px);
    line-height: clamp(22px, 2vw, 28px);
    margin-bottom: clamp(20px, 2vw, 30px);
}

.lk-content__subtitle {
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(18px, 2vw, 20px);
    font-family: 'ProximaNovaRegular';
    margin-bottom: clamp(15px, 2vw, 24px);
}

.lk-request {
    display: flex;
    padding: 30px 50px 50px 50px;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
    margin-bottom: 25px;
}

.lk-request__item:nth-last-child(1) {
    align-self: center;
    margin-left: auto;
}

.lk-request__status {
    display: inline-block;
    background-color: #D3E89B;
    color: #141519;
    padding: 2px 9px;
    font-size: 13px;
    line-height: 18px;
    font-family: 'ProximaNovaLight';
    border-radius: 14px;
    margin-bottom: 7px;
}

.lk-request__number {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(16px, 2vw, 18px);
    color: #757575;
    margin-bottom: 2px;
}

.lk-request__date {
    font-family: 'ProximaNovaLight';
    font-size: 12px;
    line-height: 12px;
}

.lk-divider {
    width: 2px;
    background-color: #ADADAD;
}

.lk-request__divider {
    margin-right: clamp(10px, 2.5vw, 32px);
    margin-left: clamp(10px, 2.5vw, 32px);
}

.lk-request__price {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(20px, 2vw, 24px);
    line-height: clamp(20px, 2vw, 24px);
    color: #238441;
    margin-bottom: 12px;
}

.lk-request__months {
    font-family: 'ProximaNovaSemibold';
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
}

.lk-request__technic {
    max-width: 160px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    font-size: clamp(11px, 2.5vw, 14px);
    line-height: clamp(15px, 3vw, 16px);
}

.lk-request__buttons,
.lk-sale__buttons {
    display: flex;
    gap: 12px;
}

.lk-promo {
    position: relative;
    overflow: hidden;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
    margin-bottom: 25px;
}

.lk-promo__logo {
    margin-bottom: 10px;
}

.lk-promo__title {
    font-family: 'ProximaNovaSemibold';
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: clamp(28px, 3vw, 38px);
    color: #238441;
    margin-bottom: clamp(17px, 3vw, 20px);
}
.lk-promo__subtitle {
    margin-bottom: 12px;
}

.lk-promo__list ul {
    padding-left: 0;
    margin: 0;
}

.lk-promo__list li {
    position: relative;
    padding-left: 20px;
    list-style: none;
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    line-height: 17px;
    margin-bottom: clamp(6px, 2vw, 12px);
}

.lk-promo__list li:nth-last-child(1) {
    margin-bottom: 0;
}

.lk-promo__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 8px;
    background-color: #238441;
    border-radius: 50%;
}
.lk-promo__buttons {
    margin-top: clamp(20px, 3vw, 28px);
}

.lk-promo__image {
    position: absolute;
    right: calc(-140px + 8vw);
    bottom: 0;
    max-width: 475px;
    height: 100%;
    z-index: 0;
}

.lk-promo__image img {
    height: 100%;
}


.lk-sale {
    display: flex;
    justify-content: center;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
}

.lk-sale__percent {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(46px, 4vw, 64px);
    line-height: clamp(46px, 4vw, 58px);
    color: #238441;
}

.lk-sale__percent span {
    display: block;
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    line-height: 16px;
    color: #000;
    margin-top: 8px;
}

.lk-sale__divider {
    margin-left: clamp(40px, 4vw, 60px);
    margin-right: clamp(40px, 4vw, 65px);
}

.lk-sale__info {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 16px;
    max-width: 430px;
    margin-bottom: 17px;
}

.lk-data__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lk-data__group {
    max-width: calc(50% - 10px);
    width: 100%;
}

.lk-data__subtitle {
    margin-bottom: 0;
    margin-top: clamp(20px, 3vw, 30px);
}

.lk-data__buttons {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.lk-documents__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px 40px;
    margin-bottom: 35px;
}

.lk-documents__item,
.documents__item {
    position: relative;
    max-width: calc(50% - 20px);
    width: 100%;
    padding-left: 35px;
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    line-height: 18px;
}

.lk-documents__item a,
.documents__item a {
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}

.lk-documents__item a:hover,
.documents__item a:hover {
    color: #238441;
    transition: 0.2s;
}

.lk-documents__item::before,
.documents__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 28px;
}

.lk-documents__item.doc-icon::before,
.documents__item.doc-icon::before {
    background-image: url(../images/lk_img/word-icon.svg);
}

.lk-documents__item.pdf-icon::before {
    background-image: url(../images/lk_img/pdf-icon.svg);
}

.lk-documents__item.xls-icon::before,
.documents__item.xls-icon::before {
    background-image: url(../images/lk_img/exel-icon.svg);
}

.lk-documents__requisite {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lk-documents__requisite-item {
    max-width: calc(50% - 10px);
    width: 100%;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
}

.lk-documents__requisite-logo {
    margin-bottom: 20px;
}

.lk-documents__requisite-info {
    font-family: 'ProximaNovaLight';
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 25px;
}

.lk-requisite__modal {
    position: relative;
    max-width: 545px;
    padding-top: clamp(50px, 4vw, 60px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 22px;
}

.lk-requisite__modal-logo {
    line-height: 0;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.lk-requisite__modal-logo img {
    max-width: 100%;
}

.lk-requisite__modal-title {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(18px, 2vw, 20px);
    margin-bottom: clamp(12px, 2vw, 23px);
}

.lk-requisite__modal-text {
    font-family: 'ProximaNovaRegular';
    font-size: clamp(16px, 2vw, 18px);
    line-height: clamp(18px, 2vw, 20px);
    margin-bottom: clamp(12px, 2vw, 23px);
}

.lk-requisite__modal-subtitle {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
    color: #757575;
}

.lk-requisite__modal-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 2vw, 30px);
}

.lk-requisite__modal-group {
    max-width: calc(33% - 15px);
    width: 100%;
}

.lk-requisite__modal-qr {
    line-height: 0;
    margin-top: clamp(25px, 3vw, 40px);
}

.lk-requisite__modal-close {
    position: absolute;
    right: 19px;
    top: 20px;
    cursor: pointer;
}


.lk-partners__box {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 35px;
}

.lk-partners__item {
    max-width: calc(33% - 11px);
    width: 100%;
    padding-top: clamp(20px, 3vw, 25px);
    padding-right: clamp(15px, 3vw, 35px);
    padding-bottom: clamp(20px, 3vw, 25px);
    padding-left: clamp(15px, 3vw, 35px);
    background: #F1F4F7;
    border-radius: 24px;
}

.lk-partners__item-logo {
    height: 80px;
    max-width: 220px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.lk-partners__item-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.lk-partners__item-name {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(18px, 2vw, 20px);
    margin-bottom: 10px;
    color: #238441;
}

.lk-partners__item-text {
    font-family: 'ProximaNovaLight';
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
}

.lk-partners__item-link a {
    font-family: 'ProximaNovaLight';
    font-size: 14px;
    line-height: 14px;
    color: #238441;
}

.lk-partners__item-link a:hover {
    text-decoration: none;
}

.lk-partners__callback {
    position: relative;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
    margin-top: 40px;
}

.lk-partners__callback-image img {
    position: absolute;
    height: 110%;
    right: 0;
    bottom: 0;
}

.lk-partners__callback-box {
    max-width: 400px;
}

.lk-partners__callback-title {
    font-family: 'ProximaNovaSemibold';
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: clamp(28px, 3vw, 38px);
    color: #238441;
    margin-bottom: clamp(20px, 3vw, 25px);
}

.lk-partners__callback-text {
    font-family: 'ProximaNovaRegular';
    font-size: clamp(14px, 3vw, 16px);
    line-height: clamp(16px, 3vw, 18px);
    margin-bottom: 25px;
}

#callback-success-block {
    background-color: #fff;
    z-index: 99;
}

.lk-catalog__box {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}

.lk-catalog__item {
    max-width: calc(33% - 11px);
    width: 100%;
    border: 1px solid #F1F4F7;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lk-catalog__item-image {
    position: relative;
    text-align: center;
    height: 200px;
    overflow: hidden;
}

.lk-catalog__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lk-catalog__item-discount {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 16px;
    background-color: #ACC909;
    font-family: 'ProximaNovaSemibold';
    font-size: 18px;
    line-height: 18px;
    color: #fff;
}

.lk-catalog__item-box {
    background-color: #F1F4F7;
    padding-top: clamp(20px, 2vw, 25px);
    padding-right: clamp(15px, 2vw, 28px);
    padding-bottom: clamp(20px, 2vw, 25px);
    padding-left: clamp(15px, 2vw, 28px);
}

.lk-catalog__item-name {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(16px, 2vw, 18px);
    line-height: clamp(18px, 2vw, 20px);
    margin-bottom: 16px;
}

.lk-catalog__item-info {
    display: flex;
    gap: clamp(20px, 3vw, 45px);
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(16px, 2vw, 18px);
    line-height: clamp(18px, 2vw, 20px);
    margin-bottom: clamp(20px, 2vw, 28px);
}

.lk-catalog__item-info span {
    display: block;
    font-family: 'ProximaNovaRegular';
    font-size: 12px;
    line-height: 12px;
    color: #7e7e7e;
    margin-bottom: 8px;
}

.lk-support__button {
    margin-top: 20px;
}

.lk-support__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: clamp(40px, 4vw, 60px);
}

.lk-support__contacts-title {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
}

.lk-support__contacts-info {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(20px, 2vw, 24px);
    line-height: clamp(20px, 2vw, 24px);
    color: #238441;
}

.lk-time__modal {
    position: relative;
    max-width: 545px;
    padding-top: clamp(50px, 4vw, 60px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 22px;
}

.lk-time__title {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(22px, 3vw, 28px);
    line-height: clamp(24px, 3vw, 30px);
    margin-bottom: 20px;
}

.lk-time__space {
    margin-top: clamp(25px, 3vw, 35px);
}

.lk-time__label {
    display: block;
    font-family: 'ProximaNovaRegular';
    font-size: 12px;
    line-height: 12px;
    color: #7e7e7e;
    margin-bottom: 10px;
}

.lk-time__data-time {
    display: flex;
    gap: 25px;
    margin-bottom: 22px;
}


.lk-time__data select,
.lk-time__time select {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 14px;
    padding: 12px 10px;
    border: 1px solid #C4C4C4;
    border-radius: 6px;
    color: #000;
}

.lk-time__subtitle {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 20px;
}

.lk-time__button {
    margin-top: 30px;
}


.calculator__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.calculator__group {
    max-width: calc(33% - 11px);
    width: 100%;
}

.calculator__button {
    align-self: center;
    margin-top: 18px;
}

.lk-form__range {
    margin: auto;
    outline: none;
    padding: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(#238441 0 0) 0/50% 100% no-repeat #F1F4F7;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: 18px;
}

/* Chrome & Safari */
.lk-form__range::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    border-radius: 4px;
}

.lk-form__range::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    background: #238441;
    border-radius: 50%;
    border: none;
    margin-top: -6px;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Firefox */
.lk-form__range::-moz-range-track {
    height: 6px;
    background: #F1F4F7;
    border-radius: 4px;
}

.lk-form__range::-moz-range-progress {
    background-color: #238441;
    height: 6px;
    border-radius: 4px;
}

.lk-form__range::-moz-range-thumb {
    height: 18px;
    width: 18px;
    background: #238441;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* IE & Edge */
.lk-form__range::-ms-track {
    height: 8px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.lk-form__range::-ms-fill-lower {
    background: #238441;
    border-radius: 4px;
}

.lk-form__range::-ms-fill-upper {
    background: #F1F4F7;
    border-radius: 4px;
}

.lk-form__range::-ms-thumb {
    height: 18px;
    width: 18px;
    background: #238441;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.calculator__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(30px, 3vw, 50px);
}

.calculator__data {
    padding-top: clamp(35px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 40px);
    padding-bottom: clamp(35px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 40px);
    background: #F1F4F7;
    border-radius: 26px;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 40px);
    max-width: 598px;

}

.calculator__data-title {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(19px, 2vw, 22px);
    line-height: clamp(19px, 2vw, 22px);
    color: #238441;
    margin-bottom: 5px;
}

.calculator__data-text {
    font-size: clamp(11px, 2.5vw, 14px);
    line-height: clamp(15px, 3vw, 16px);
}
.calculator__description-item:nth-last-child(1) {
    margin-top: 12px;
}
.calculator__description-title {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(16px, 2vw, 18px);
    line-height: clamp(16px, 2vw, 18px);
    color: #238441;
    margin-bottom: 4px;
}

.calculator__description-text {
    font-size: clamp(11px, 2.5vw, 14px);
    line-height: clamp(15px, 3vw, 16px);
}

.calculator__request {
    margin-top: 25px;
    margin-bottom: clamp(25px, 3vw, 35px);
}

.calculator__request .btn, .btn-plus{
    position: relative;
    padding-left: 35px;
}

.calculator__request .btn::after, .btn-plus::after{
    content: "";
    position: absolute;
    left: 20px;
    top: 11px;
    background-color: #fff;
    width: 2px;
    height: 14px;
}

.calculator__request .btn::before, .btn-plus::before{
    content: "";
    position: absolute;
    left: 14px;
    top: 17px;
    background-color: #fff;
    width: 14px;
    height: 2px;
}

.calculator__chart {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.calculator__chart-column {
    max-width: calc(50% - 10px);
    width: 100%;
}

.calculator__chart-column table {
    width: 100%;
}

.calculator__chart-column table th {
    text-align: left;
    color: #238441;
    padding-bottom: 3px;
}

.calculator__chart-column table tbody tr:first-child td {
    width: 30%;
}

.calculator__chart-column table tbody tr:first-child td:first-child {
    font-weight: bold;
}

.calculator__chart-download {
    margin-top: 30px;
}

.calculator__sail {
    position: relative;
    overflow: hidden;
    padding-top: clamp(30px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(28px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
    margin-top: 40px;
}

.calculator__sail-image img {
    position: absolute;
    height: auto;
    right: 0;
    bottom: 0;
    max-width: 510px;
    z-index: 0;
}

.calculator__sail-box {
    position: relative;
    max-width: 480px;
    z-index: 1;
}

.calculator__sail-title {
    font-family: 'ProximaNovaSemibold';
    font-weight: 600;
    font-size: clamp(22px, 3vw, 28px);
    line-height: clamp(24px, 3vw, 28px);
    margin-bottom: clamp(20px, 3vw, 25px);
    color: #424242;
}

.calculator__sail-info {
    display: inline-block;
    font-family: 'ProximaNovaSemibold';
    font-weight: 600;
    font-size: clamp(16px, 3vw, 21px);
    line-height: clamp(16px, 3vw, 21px);
    background-color: #C4D850;
    padding: 12px 25px 11px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.calculator__sail-text {
    font-size: clamp(15px, 3vw, 17px);
    line-height: clamp(15px, 3vw, 17px);
    margin-bottom: clamp(20px, 3vw, 30px);
}

.calculator__sail-description {
    font-size: clamp(11px, 2vw, 13px);
    line-height: clamp(13px, 2vw, 15px);
    margin-top: clamp(15px, 3vw, 20px);
    color: #5d5d5d;
    max-width: 320px;
}

.requests__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.requests__filter {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.requests__row {
    display: flex;
    align-items: flex-end;
    gap: 12px
}

.requests__group label {
    color: #7e7e7e;
    font-size: 13px;
    line-height: 13px;
}

.requests__input {
    background-color: #F1F4F7;
    border: 1px solid transparent;
    max-height: 43px;
    max-width: 110px;
    width: 100%;
}

.requests__filter-controls button:first-child {
    margin-right: 10px;
}

.requests__group:nth-last-child(1) .requests__input {
    max-width: 100%;
}

.search-icon {
    position: relative;
}

.search-icon::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    background-image: url('/local/templates/rshb_lizzing/images/lk_img/search-icon.svg');
    background-size: cover;
    width: 16px;
    height: 16px;
}

.requests__box {
    margin-top: 35px;
}

.requests__item {
    display: flex;
    justify-content: space-between;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(10px, 3vw, 35px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(10px, 3vw, 35px);
    background: #F1F4F7;
    border-radius: 26px;
    margin-bottom: 25px;
}

.requests__info:nth-last-child(1) {
    align-self: center;
    margin-left: 15px;
}

.requests__info:first-child {
    max-width: clamp(160px, 13vw, 180px);
    width: 100%;
}

.requests__info:nth-child(3) {
    margin-right: auto;
}

.requests__info-check {
    max-width: 150px;
}

.requests__status {
    display: inline-block;
    padding: 2px 9px;
    font-size: clamp(10px, 0.8vw, 11px);
    line-height: 18px;
    font-family: 'ProximaNovaLight';
    border-radius: 14px;
    margin-bottom: 7px;
    color: #000;
}

/* .requests__status.decline {
    background-color: #FFCFCF;
    color: #000;
}

.requests__status.verification {
    background-color: #238441;
    color: #fff;
} */


.requests__status.st-new {
    background-color: #E3F2FD; 
    color: #0D47A1; 
}

.requests__status.st-reject,
.requests__status.st-reject2 {
    background-color: #FFCDD2;
    color: #B71C1C; 
}

.requests__status.st-stop,
.requests__status.st-stop2 {
    background-color: #FFF3CD;
    color: #856404;  
}

.requests__status.st-progress,
.requests__status.st-progress2 {
    background-color: #E0F7FA; 
    color: #006064; 
}

.requests__status.st-info-need,
.requests__status.st-info-need2 {
    background-color: #EDE7F6; 
    color: #4527A0;
}

.requests__status.st-approved,
.requests__status.st-approved2 {
    background-color: #C8E6C9; 
    color: #1B5E20;           
}

.requests__status.st-contract {
    background-color: #D1C4E9; 
    color: #311B92;            
}

.requests__number {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(16px, 2vw, 18px);
    color: #757575;
    margin-bottom: 2px;
}

.requests__date {
    font-family: 'ProximaNovaLight';
    font-size: 12px;
    line-height: 12px;
}

.requests__divider {
    margin-right: clamp(10px, 1.5vw, 32px);
    margin-left: clamp(10px, 1.5vw, 32px);
}

.requests__price {
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(20px, 2vw, 24px);
    line-height: clamp(20px, 2vw, 24px);
    color: #238441;
    margin-bottom: 12px;
}

.requests__months {
    font-family: 'ProximaNovaSemibold';
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
}

.requests__technic {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: clamp(11px, 2.5vw, 14px);
    line-height: clamp(15px, 3vw, 16px);
}

.requests__buttons button {
    padding: 11px 22px;
    font-size: clamp(12px, 1.2vw, 14px);
}

.requests__buttons button:disabled {
    background-color: #CCCCCC;
    color: #E3E3E3;
}

.requests__label-checkbox {
    display: flex;
    gap: 7px;
    font-family: 'ProximaNovaRegular';
    font-size: 10px;
    line-height: 12px;
    cursor: pointer;
}

.requests__pagination {
    display: flex;
    justify-content: center;
}

.pagination-arrow,
.pagination-number {
    width: 26px;
    height: 26px;
    font-family: 'ProximaNovaSemibold';
    font-size: clamp(16px, 2vw, 18px);
    text-align: center;
    font-weight: bold;
    color: #757575;
    cursor: pointer;
}

.pagination-arrow {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pagination-arrow.left {
    background-image: url('/local/templates/rshb_lizzing/images/lk_img/arrow-left.svg');
}

.pagination-arrow.right {
    background-image: url('/local/templates/rshb_lizzing/images/lk_img/arrow-right.svg');
}

.pagination-number.active {
    color: #238441;
}

.lk-requests__modal {
    max-width: 950px;
    position: relative;
    background-color: #fff;
    width: 100%;
    z-index: 10;
    overflow: auto;
    max-height: 100%;
}
.modal_form_wrap {transition: opacity 0.1s;}
.modal_form_wrap.modal-open {
    opacity: 1;
    transition: opacity 0.1s;
    z-index: 30;
}

.lk-requests__form-title {
    margin-bottom: 0;
    margin-top: clamp(20px, 3vw, 40px);
}

.lk-requests__form-title:first-child {
    margin-top: 0;
}

.lk-requests__form-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.lk-requests__form-group {
    max-width: calc(50% - 6px);
    width: 100%;
}

.lk-requests__form-group-area {
    max-width: 100%;
}

.lk-requests__button {
    margin-top: 20px;
}
/*lk style end*/

.burger {
    width: 20px;
    cursor: pointer;
    position: relative;
}

.burger span {
    display: block;
    line-height: 0;
    width: 100%;
    height: 2px;
    margin-bottom: 4px;
    background: #FDC537;
    transition: 0.2s;
}

.burger span:nth-last-child(1) {
    margin-bottom: 0;
}

.burger.active span:nth-last-child(1),
.burger.active span:nth-last-child(3) {
    position: absolute;
    transition: 0.2s;
}

.burger.active span:nth-last-child(1) {
    transform: rotate(45deg);
    right: 0;
    top: 0;
}

.burger.active span:nth-last-child(3) {
    transform: rotate(-45deg);
    left: 0;
    top: 0;
}

.burger.active span:nth-last-child(2) {
    display: none;
}

.header-mobile__lk {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background-color: #fff;
}

.header-mobile__lk .header-lk__info {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-left: 0;
    margin-top: 20px;
}

.header-mobile__lk .header-lk__container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-mobile__lk .header-lk__logo {
    line-height: 0;
}

.header-mobile__lk .header-lk__logo a {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    opacity: 0;
    right: -100vw;
    top: 70px;
    height: calc(100% - 31px);
    background: #fff;
    width: 100%;
    overflow-y: scroll;
    z-index: 2;
    padding-top: clamp(15px, 3vw, 30px);
    transition: 0.2s;
}

.mobile-menu-overlay.opened {
    opacity: 1;
    right: 0;
    transition: 0.1s;
}

.header-mobile__lk.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
}

.mobile-menu-container {
    max-width: 670px;
    padding: 0 10px;
}

.mobile-menu-overlay .header-lk__logout {
    margin-top: clamp(40px, 5vw, 60px);
}

@media (max-width: 1100px) {
	.lk-promo__content {max-width:450px;}
	.lk-promo__image {right: calc(-200px + 10vw);}
    .requests__filter {
        flex-direction: column;
        align-items: flex-start;
    }

    .requests__filter-inputs {
        width: 100%;
    }

    .requests__row {
        flex-wrap: wrap;
    }

    .requests__row .requests__group {
        width: 20%;
    }

    .requests__row .requests__group:nth-last-child(1) {
        width: 100%;
    }

    .requests__filter-controls {
        margin-top: 20px;
    }

    .requests__input {
        max-width: 100%;
    }

}

@media (max-width: 1000px) {

    .header-lk,
    .lk-menu {
        display: none;
    }

    .header-mobile__lk {
        display: flex;
    }
    
    .calculator__group {
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 780px) {
    .lk-request {
        flex-wrap: wrap;
        max-width: 500px;
    }

    .lk-request__item:nth-last-child(1) {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .lk-promo {
        max-width: 500px;
    }
	.lk-promo__content {max-width:100%;}

    .lk-promo__image {
        position: relative;
        width: 100%;
        max-width: 100%;
        text-align: right;
        line-height: 0;
        right: -20px;
        bottom: -25px;
		height: initial;
    }

    .lk-promo__image img {
        max-width: 370px;
		height: initial;
    }

    .lk-sale {
        flex-wrap: wrap;
        max-width: 500px;
    }

    .lk-sale__divider {
        display: none;
    }

    .lk-sale__item {
        width: 100%;
    }

    .lk-sale__percent {
        margin-bottom: 12px;
    }

    .lk-sale__percent,
    .lk-sale__percent span {
        font-family: 'ProximaNovaSemibold';
        font-size: 24px;
        line-height: 26px;
        color: #238441;
    }

    .lk-sale__percent span {
        display: inline-block;
    }

    .lk-catalog__item{
        max-width: 272px;
    }
    .lk-partners__item {
        max-width: 100%;
    }

    .lk-partners__item,
    .lk-catalog__item {
        width: calc(50% - 11px);
    }

    .lk-partners__callback-box {
        max-width: 250px;
    }
    
    .calculator__info {
        flex-direction: column;
        align-items: flex-start;
    }
    .calculator__data {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 450px;
        padding: 32px 34px 29px 34px;
    }
    .calculator__data-title {
        font-size: clamp(22px, 2vw, 23px);
        line-height: clamp(22px, 2vw, 23px);
    }
    .calculator__data-text {
        font-size: clamp(13px, 3vw, 14px);
    }
    .calculator__description {
        display: flex;
        gap: 20px;
    }

    .calculator__description-item, .calculator__description-item:nth-last-child(1) {
        max-width: clamp(142px, 25vw, 180px);
        margin-top: 20px;
    }
    .calculator__description-title {
        font-size: clamp(19px, 2vw, 21px);
        line-height: clamp(19px, 2vw, 21px);
    }
    .calculator__description-text {
        font-size: clamp(13px, 3vw, 14px);
        line-height: clamp(16px, 3vw, 17px);
    }

    .calculator__chart-column {
        max-width: 100%;
    }

    .calculator__sail-image {
        text-align: right;
        margin-top: -20px;
    }

    .calculator__sail-image img {
        position: relative;
        right: -20px;
        bottom: -35px;
        max-width: 360px;
    }
    
    .requests__item {
        flex-wrap: wrap;
        max-width: 500px;
    }

    .requests__row .requests__group {
        max-width: calc(32% - 4px);
        width: 100%;
    }

    .requests__row .requests__group:nth-last-child(1) {
        max-width: 100%;
    }

    .requests__info-check {
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }

    .requests__info:nth-last-child(1) {
        margin-left: 0;
    }

    .requests__buttons button {
        margin-top: 15px;
    }

    .requests__info:nth-last-child(1),
    .requests__info-check {
        width: 100%;
        margin-left: 0;
    }

    .requests__buttons button:disabled {
        display: none;
    }
}

@media (max-width: 580px) {

    .header-mobile__lk .header-lk__info {
        max-width: 345px;
    }

    .lk-content {
        width: 100%;
    }

    .lk-request__technic {
        max-width: 125px;
        text-wrap: wrap;
    }

    .lk-documents__requisite-item {
        max-width: 400px;
    }

    .lk-requisite__modal-group {
        max-width: calc(50% - 8px);
    }

    .lk-data__group,
    .lk-documents__item,
    .documents__item {
        max-width: 100%;
    }

    .lk-partners__item,
    .lk-catalog__item {
        width: 100%;
    }

    .lk-partners__callback {
        overflow: hidden;
    }

    .lk-partners__callback-box {
        position: relative;
        max-width: 230px;
        z-index: 1;
    }

    .lk-partners__callback-image img {
        height: 90%;
        right: -20px;
    }

    .btn {
        font-size: 13px;
        line-height: 13px;
        padding: 10px 20px;
    }
    

    .calculator__group {
        max-width: 100%;
    }

    .calculator__chart-column table {
        font-size: 14px;
    }

    .calculator__chart-column table tbody tr:first-child td {
        width: auto;
    }
    
    .requests__item {
        max-width: 450px;
        justify-content: flex-start;
    }

    .requests__divider {
        margin-left: auto;
    }

    .requests__price {
        font-size: 18px;
    }

    .requests__info-check {
        margin-top: 12px;
        max-width: 160px;
    }

    .btn-plus {
        padding: 10px 20px 10px 35px;
    }

    .btn-plus::after {
        top: 8px;
    }

    .btn-plus::before {
        top: 14px;
    }

    .requests__label-checkbox {
        text-align: left;
    }

    .requests__info:nth-child(3) {
        margin-right: 0;
    }

    .requests__info:first-child {
        max-width: 160px;
    }

    .requests__technic {
        max-width: 105px;
        text-wrap: wrap;
    }

    .lk-requests__form-row {
        flex-wrap: wrap;
    }

    .lk-requests__form-group {
        max-width: 100%;
    }
}


.lk.page-forms {
    max-width: 600px;
    margin: 100px auto 50px auto;
}

.lk.page-forms .form_wrapper {
    display: none;
}

#form-login-wrap {
    display: block;
}

.lk.page-forms .smart-captcha,
#form-forgot_pass .smart-captcha,
#form-set_perm_pass .smart-captcha {
    margin-top: 36px;
}

.btn-loader {
    background: #ffd655;
    color: transparent;
    pointer-events: none;
    position: relative;
    user-select: none;
}

.btn-loader:after {
    display: block;
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #555 90%, #0000);
    background:
        var(--_g) 0% 50%,
        var(--_g) 50% 50%,
        var(--_g) 100% 50%;
    background-size: calc(100%/4) 80%;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%
    }

    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%
    }

    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%
    }

    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%
    }
}


#form-login {
    display: block;
}

.forgot-pass_link {
    color: #000;
}

.lk-notice {
    display: flex;
    padding: 30px 50px 50px 50px;
    padding-top: clamp(25px, 3vw, 35px);
    padding-right: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
    padding-left: clamp(15px, 3vw, 45px);
    background: #F1F4F7;
    border-radius: 26px;
    margin-bottom: 25px;
}


#form-support-success-block,
#forgot_password-success-block,
.perm_password-block,
#register-success-block {
    margin: 100px auto;
}

.modal_form_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: -30;
    opacity: 0;
}

.modal_form_wrap.opened {
    z-index: 30;
}

.modal_form_wrap .overlay {
    background: #141519;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.modal_form_wrap .modal_form {
    max-width: 524px;
    background-color: #fff;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    padding: 17px 36px 22px 40px;
}

.modal_form_wrap.tall .modal_form {
    overflow: auto;
    max-height: 100%;
}

.modal_form_wrap .modal_form .close_modal {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.modal_form_wrap .modal_form .modal_form__head {
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 120%;
    color: #141519;
    margin-bottom: 16px;
    padding-top: 24px;
}

.modal_form_wrap .modal_form .modal_form__desc {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: #141519;
    margin-bottom: 15px;
}

.modal_form_wrap .modal_form .modal_form__subdesc {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 120%;
    color: #818288;
}

.modal-form__input[readonly],
.lk-form__input[readonly] {
    background-color: #f5f5f5;
    color: #757575;
    cursor: not-allowed;
}


/* Стили для сообщений формы заявки */
.lk-requests__message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  display: none;
}

.lk-requests__message.success {
  display: block;
  background: #E3F5D8;
  color: #2B6030;
  border: 1px solid #95D39A;
}

.lk-requests__message.error {
  display: block;
  background: #FFEBEE;
  color: #D33A3A;
  border: 1px solid #F5C2C7;
}

.lk-requests__message:not(.success):not(.error) {
  display: none;
}

.view-mode-title {
    margin-top: 20px;
}