* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham Pro', sans-serif;
    background: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    color: #222222;
}

section {
    margin-top: 30px;
    margin-bottom: 70px;
}

.container {
    max-width: 1280px;
    margin: 15px auto;
    padding: 0 20px;
}

.header .logo img {
    height: 75px;
}

.promo {
    width: 100%;
    min-height: 542px;
    position: relative;
    padding: 93px 60px;
    border-radius: 32px;
    background: linear-gradient(171.95deg, #0D1D4E 69.71%, #16254F 73.92%, #232F57 77.6%, #182751 84.67%);
    overflow: hidden;
}

.promo_bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.promo__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 750px;
}

.promo__descr {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    width: 100%;
    max-width: 610px;
    margin-top: 50px;
}

.regBtn {
    margin-top: 60px;
    text-decoration: none;
    max-width: 300px;
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #F32D2D;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    z-index: 10;
}

.regBtn:hover {
    background: #cc1a1a;
}



/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 40px;
    z-index: 1001;
    width: 90%;
    max-width: 550px;
}

.modal-content {
    padding: 30px;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 44px;
    text-align: center;
    color: #222;

}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #777;
}

.close-modal:hover {
    color: black;
}

.registration-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.registration__group {
    margin-bottom: 15px;
}

.registration__feedback {
    color: #CC282E;
    font-size: 12px;
    margin-top: 5px;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 40px;
    z-index: 1001;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content {
    padding: 40px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #777;
}

.close-modal:hover {
    color: black;
}

/* Override the original registration container styles */
.registration-container {
    display: none;
}

/* Custom Dropdown Styles */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-value {
    width: 100%;
    border: none;
    max-width: 470px;
    height: 50px;
    border-radius: 16px;
    padding: 20px 16px;
    font-size: 16px;
    color: #17171799;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.value-flag,
.option-flag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;

}

.custom-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 250px;
    z-index: 100;
}

.custom-select-container.open .custom-select-dropdown {
    display: block;
}

.custom-select-search {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.custom-select-search input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.custom-select-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-select-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
}

.custom-select-option:hover {
    color: #fff;
    background-color: #CC282E;
}

.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}

.success-icon {
    margin: 0 auto 45px;
    width: 70px;
    height: 70px;

}

.success-message h3 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #222;
}

.success-message p {
    font-size: 18px;
    color: #171717;
}

.credentials-container {
    padding: 20px;
    margin: 0 10px;
}

.credential-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    text-align: left;
    background-color: #F5F5F5;
    font-size: 14px;
    font-weight: 400;
    border-radius: 16px;
}

.credential-row:last-child {
    margin-bottom: 0;
}

.credential-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

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

.credentials-value .login-display {
    font-weight: 700;
    font-size: 16px;
    color: #171717;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
}

.copy-btn:hover svg path {
    stroke: #c0a7a9;
}

.copy-btn.copied svg path {
    stroke: #CC282E;
}

.copy-btn::after {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.copy-btn.copied::after {
    content: "<?= $lang27; ?>";
    opacity: 1;
    visibility: visible;
}

.login-button {
    margin-top: 5px;
}

/* Registration form styles */
.registration-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: none;
}

.registration__group {
    margin-bottom: 15px;
}

.registration__control {
    width: 100%;
    border: none;
    max-width: 470px;
    height: 50px;
    border-radius: 16px;
    padding: 20px 16px;
    font-size: 16px;
    color: #17171799;
    background-color: #f5f5f5;
}

.registration__control:focus {
    outline: none;
}

.registration__feedback {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.registration__group-iagree {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #171717;
}

.registration__group-iagree label {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.registration__group-iagree a {
    color: #171717;
}

.registration__group-iagree>label>input[type="checkbox"] {
    accent-color: #CC282E;
}


.registration__submit {
    padding: 12px;
    border-radius: 12px;
    background: #CC282E;
    color: #FFFFFF;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    background-color: #CC282E;
    color: white;
    border: none;
    margin-top: 20px;
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
}

.registration__submit:hover {
    background: #9e0d12;
}

/* Success modal styles */
.success-info {
    margin: 20px 0;
}

.success-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.copy-btn {
    margin-left: 10px;
    padding: 5px 10px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.goto-cabinet {
    display: inline-block;
    margin-top: 20px;
}

/* Country flags styles */
.country-flag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
}

.registration__control-country option,
.registration__control-code option {
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 40px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px 20px;
}

/* Dropdown styling for country selectors */
.select-with-flag {
    display: flex;
    align-items: center;
    position: relative;
}

.select-with-flag .country-flag {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.select-with-flag select {
    padding-left: 40px;
}

.country-dropdown {
    position: relative;
}

.country-option {
    display: flex;
    align-items: center;
}

.phone-code-dropdown .country-flag {
    margin-right: 5px;
}

.phone-code-dropdown .country-option {
    padding: 5px 10px;
}

.country-select-container {
    position: relative;
}

.country-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f5f8fc;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.country-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.country-dropdown-toggle.active+.country-dropdown-menu {
    display: block;
}

.country-search {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.country-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.country-option {
    cursor: pointer;
}

.country-option:hover {
    background-color: #f5f8fc;
}

.country-option.selected {
    background-color: #e6f0ff;
}

/* Flag position adjustment for phone code dropdown */
.phone-code-dropdown .country-flag {
    margin-right: 5px;
}

.phone-code-wrapper {
    display: flex;
    align-items: center;
}

/* Improved design for the phone input section */
.registration__group-mobile .phone-input__wrap {
    display: flex;
    gap: 5px;
}

.registration__group-mobile .phone-code-dropdown {
    width: 30%;
}

.registration__group-mobile .phone-input {
    width: 70%;
}

@media screen and (max-width: 1199px) {
    .header .logo img {
        height: 46px;
    }

    .promo {
        min-height: 360px;
        padding: 50px 40px;
        border-radius: 28px;
        background: linear-gradient(170.95deg, #0D1D4E 69.71%, #16254F 73.92%, #232F57 77.6%, #182751 84.67%);
        margin-top: 15px;
    }

    .promo h1 {
        margin-top: 20px;
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
        max-width: 460px;
    }

    .promo__descr {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 24px;
        max-width: 365px;
    }

    .regBtn {
        margin-top: 30px;
        padding: 12px;
        font-size: 15px;
        border-radius: 10px;
        width: 250px;
    }

    .promo img {
        max-height: 355px;
    }
}

/* Enhanced Responsive Styles */
@media screen and (max-width: 1023.98px) {

    /* Modal responsive */
    .modal {
        width: 95%;
        max-width: 500px;
    }

    .modal-content {
        padding: 25px 20px;
    }

    .modal-content h2 {
        font-size: 32px;
    }

    .success-message h3 {
        font-size: 32px;
    }

    .credential-row {
        padding: 10px;
    }
}

@media screen and (max-width: 767.98px) {

    /* Modal responsive adjustments */
    .modal-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .success-message h3 {
        font-size: 28px;
    }

    .success-message p {
        font-size: 16px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .credentials-container {
        padding: 15px 0;
    }

    .credential-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    .credential-value {
        width: 100%;
        margin-top: 5px;
        justify-content: space-between;
    }

    .custom-select-container {
        width: 100%;
    }

    .custom-select-value {
        padding: 10px;
        height: 45px;
    }
}

@media screen and (max-width: 500px) {
    .container {
        padding: 0 10px;
        margin: 10px auto;
    }

    .modal {
        width: 95%;
    }
}

.registration__control-country,
.registration__control-code {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: #fff;
}

@media screen and (max-width: 768px) {

    /* Modal styles for tablet */
    .modal {
        max-width: 450px;
        border-radius: 30px;
    }


    .modal-content h2 {
        font-size: 28px;
    }

    .registration__control {
        height: 48px;
        padding: 12px 15px;
        font-size: 16px;
    }

    .success-message h3 {
        font-size: 28px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
    }

    .credentials-container {
        padding: 15px 10px;
    }

    .credential-row {
        padding: 10px 15px;
    }

    .registration__submit {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 7px;
    }

    .promo {
        position: relative;
        height: 100vh;
        max-height: 542px;
        padding: 10px 20px;
        text-align: center;
        background: linear-gradient(164.95deg, #0D1D4E 69.71%, #16254F 73.92%, #232F57 77.6%, #182751 84.67%);
    }

    .promo_bg {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
    }

    .promo__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .promo__content .title {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 28px;
        max-width: 460px;
    }

    .promo__content .promo__descr {
        margin-top: 0;
    }

    .promo .regBtn {
        position: absolute;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
    }


    .modal {
        width: 85%;
    }

    .modal {

        border-radius: 20px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .success-message h3 {
        font-size: 24px;
    }

    .registration__control {
        height: 45px;
        padding: 10px;
    }

    .registration__group {
        margin-bottom: 12px;
    }


    .custom-select-search input {
        padding: 4px;
    }

    .custom-select-options {
        max-height: 180px;
    }

    .custom-select-option {
        padding: 6px 8px;
    }

    .registration__control {
        font-size: 12px;
    }

    .select-with-flag select {
        font-size: 12px;
    }

    .value-text {
        font-size: 12px;
    }

    .registration__group.registration__group-iagree label {
        display: flex;
        align-items: flex-start;
    }

    .registration__group-iagree span {
        font-size: 12px;
        line-height: normal;
    }

    .registration__group-iagree a {
        font-size: 12px;
    }

    .modal-content {
        padding: 25px 25px;
    }

    input.registration__control {
        height: auto;
    }


}

@media screen and (max-width: 400px) {


    .registration__group-mobile>div {

        gap: 10px;
    }

    .registration__group-mobile>div>div:first-child,
    .registration__group-mobile>div>div:last-child {
        width: 100%;
    }

    .close-modal {
        top: 10px;
        right: 15px;
    }

}

/* Benefits section styles */
.benefits {
    margin-top: 40px;
    margin-bottom: 70px;
}

.benefits__content {
    width: 100%;
}

.benefits__title {
    font-size: 36px;
    font-weight: 700;
    margin-left: 19px;
    margin-bottom: 40px;
    color: #222222;
}

.benefits__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 10px;
}

.benefit__item {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    padding: 40px;
}

.benefits__items div:nth-child(4) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    grid-column: span 3;
    max-height: 124px;
}

.benefit__item--featured {
    width: 100%;
    max-width: 442px;
    grid-column: 4;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(243, 45, 45, 1);
    color: #FFFFFF;
}

.benefit__item--featured .benefit__text span {
    color: #FFFFFF;
}

.benefit__icon {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits__items div:nth-child(4)>.benefit__icon {
    margin: 0 20px 0 10px;
}

.benefit__icon img {
    height: 44px;
}

.benefit__text {
    font-size: 24px;
    font-weight: 400;
}

.benefit__text span {
    color: #222222;
}

.benefits .regBtn {
    margin: 25px auto 0;
}
/* Responsive styles for benefits section */
@media screen and (max-width: 1199px) {
    .benefits__title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .benefit__text {
        font-size: 15px;
    }

    .benefit__item--featured {
        max-width: 300px;
    }
}

@media screen and (max-width: 991px) {}

/* Mobile styles for benefits section */
@media screen and (max-width: 767px) {
    .benefits__items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        width: 100%;
    }
    .benefits__items div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
      }
    
      .benefits__items div:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
      }
    
      .benefits__items div:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
      }
    
      .benefits__items div:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        max-height: 100%;
        flex-direction: column;
        margin: 0;
      }
      .benefits__items div:nth-child(4) .benefit__icon {
        margin-bottom: 30px;
      }
      .benefits__items div:nth-child(5) .benefit__icon {
        margin-bottom: 0;
        margin-right: 10px;
      }
      .benefit__item {
        padding: 30px 15px;
        width: 100%;
        max-width: 100%;
      }
    .benefit__item--featured {
        grid-column: 1 / span 3;
        /* Растянуть на всю ширину */
        grid-row: 3;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 599px) {
}

@media screen and (max-width: 400px) {}

/* How to get section styles */
.how-to {
    margin-top: 40px;
    margin-bottom: 70px;
}

.how-to__title {
    font-size: 36px;
    font-weight: 700;
    margin-left: 19px;
    margin-bottom: 40px;
    color: #222222;
}

.how-to__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-to__item {
    width: 1192;
    height: 98;
    justify-content: space-between;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 1px 1px 10px 0px #0000001A;
    background: #FFFFFF;
    transition: transform 0.15s ease;
}

.how-to__text span{
    font-weight: 700;
}

.how-to .regBtn {
    width: 100%;
    max-width: fit-content;
    padding: 12px 40px;
    margin: 30px auto 0;
}

@media screen and (max-width: 1199px) {
    .how-to__title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .how-to__item {
        padding: 20px;
    }
    .how-to__text {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .how-to__text {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .how-to__text {
        font-size: 16px;
    }
}

.flex-container-qr {
    display: flex;
    align-items: center;
    margin: 0 0 100px 0;
}
.flex-container-qr .col-qr:first-child {
    text-align: center;
}
.col-qr {
    flex-basis: 50%;
}
.text-m {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 20px 0;
}
.text-s {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin: 0 0 20px 0;
}
.qr-smart {
    max-width: 395px !important;
    margin: 0 auto !important;
}
.mobile_img {
    border-radius: 6px;
}
.qr_btn_container {
    display: flex;
}
.mobile_img {
    width: 140px !important;
    height: 44px;
}
#qrBtn {
    border: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 6px;
}
.qr_img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
.qr_btn_container{
    text-align: center;
    margin-top: 20px;
}
.qr_btn_container img {
    border: 1px solid #5A6270;
}
.qrcode-container{
    margin-top: 20px;
    display: flex;
    justify-content:space-evenly;
}
#svg-xml-output-google,#svg-xml-output-apple{
    width:50%;
    text-align:center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
@media (max-width: 1000px){
    .qr_btn_container {
        margin: 0 auto;
    }
}
@media (max-width: 1024px){
    .qr-smart {
        max-width: 330px !important;
    }
}
@media (min-width: 992px){
    .mobile_img{
        max-width:100%;
    }
    #svg-xml-output-google,#svg-xml-output-apple{
        width:30%;
        font-size: 32px;
    }
}
@media (min-width: 375px){
    #svg-xml-output-google,#svg-xml-output-apple{
        font-size: 18px;
    }
}

@media (min-width: 375px){
    #svg-xml-output-google,#svg-xml-output-apple{
        font-size: 18px;
    }
}

@media (min-width: 425px){
    #svg-xml-output-google,#svg-xml-output-apple{
        font-size: 20px;
    }
}
@media (min-width: 768px){
    .qr_btn_container{
        text-align: left;
        width: max-content;
    }
    .btnQR {
        display:inline-block;
    }
    .mobile_img{
        max-width:130px;
    }
    #svg-xml-output-google,#svg-xml-output-apple{
        width:40%;
        font-size: 24px;
    }
}
@media (max-width: 350px) {
    #app_store .mobile_img {
        margin-right: 0px !important;
        margin-bottom: 10px;
    }
    #app_store_2 .mobile_img {
        margin-right: 0px !important;
        margin-bottom: 10px;
    }
    #google_play .mobile_img {
        margin-bottom: 10px;
    }
    #google_play_2 .mobile_img {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px){
    .qr-block div{
        text-align: center !important;
    }

    .qr-block p{
        text-align: center !important;
    }
    .qr_btn_container {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    .qr-smart {
        max-width: 302px !important;
    }
    .text-m {
        font-size: 28px;
        line-height: 33px;
        font-weight: 600;
    }
    .text-s {
        font-size: 14px;
    }
    .flex-container-qr {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 575px){
    .qr-smart {
        max-width: 260px !important;
    }
}
/* The Modal (background) */
.modal__qr {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 15%; /* Location of the box */
    right: 0;
    bottom: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content__qr {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px 20px 40px;
    border: 1px solid #888;
    border-radius: 20px;
    width: 80%;
    max-width: 640px;
}
/* The Close Button */
.close {
    position: absolute;
    right: -20px;
    top: -20px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
