/* =========================================================
   PROPERĀ — REVIEW POPUP
   ========================================================= */

.propera-review-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


/* =========================================================
   OPEN
   ========================================================= */

.propera-review-popup.is-open {
    visibility: visible;
    opacity: 1;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.propera-review-popup__overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 63, 99, 0.72);
}


/* =========================================================
   DIALOG
   ========================================================= */

.propera-review-popup__dialog {
    position: relative;
    z-index: 1;

    width: min(620px, calc(100% - 48px));
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    padding: 30px 30px 30px;

    box-sizing: border-box;

    background: #ffffff;
    border-radius: 12px;

    color: #063f63;

    box-shadow:
        0 20px 60px rgba(6, 63, 99, 0.18);
}


/* =========================================================
   CLOSE
   ========================================================= */

.propera-review-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0 !important;
    margin: 0;

    border: 0 !important;
    border-radius: 50% !important;

    background: transparent !important;

    cursor: pointer;

    appearance: none;

    z-index: 2;
}


.propera-review-popup__close span {
    position: absolute;

    width: 20px;
    height: 1.5px;

    background: #063f63;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.propera-review-popup__close span:first-child {
    transform: rotate(45deg);
}


.propera-review-popup__close span:last-child {
    transform: rotate(-45deg);
}


.propera-review-popup__close:hover span:first-child {
    transform: rotate(45deg) scale(1.08);
}


.propera-review-popup__close:hover span:last-child {
    transform: rotate(-45deg) scale(1.08);
}


/* =========================================================
   TITLE
   ========================================================= */

.propera-review-popup__title {
    margin: 0 45px 35px 0 !important;

    font-size: 36px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;

    letter-spacing: -0.025em !important;

    color: #063f63 !important;
}


/* =========================================================
   FORM
   ========================================================= */

.propera-review-popup__form {
    width: 100%;
}


.propera-review-popup__form .wpcf7-form {
    width: 100%;
}


/* =========================================================
   FIELDS
   ========================================================= */

.propera-review-popup__form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}


.propera-review-popup__form input[type="text"],
.propera-review-popup__form input[type="email"],
.propera-review-popup__form textarea {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #d9e2e6 !important;
    border-radius: 8px !important;

    background: #ffffff !important;

    color: #063f63 !important;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.propera-review-popup__form input[type="text"],
.propera-review-popup__form input[type="email"] {
    min-height: 52px;
}


.propera-review-popup__form textarea {
    min-height: 130px;

    resize: vertical;
}


.propera-review-popup__form input:focus,
.propera-review-popup__form textarea:focus {
    border-color: #063f63 !important;

    box-shadow:
        0 0 0 3px rgba(6, 63, 99, 0.08);
}


.propera-review-popup__form input::placeholder,
.propera-review-popup__form textarea::placeholder {
    color: rgba(6, 63, 99, 0.45);
}


/* =========================================================
   LABELS / TEXT
   ========================================================= */

.propera-review-popup__form p {
    margin: 0 0 10px;

    color: #063f63;

    font-size: 15px;
    line-height: 1.5;
}


.propera-review-popup__form label {
    color: #063f63;
}


/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.propera-review-popup__form .wpcf7-acceptance {
    display: block;

    margin: 5px 0 25px;
}


.propera-review-popup__form .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: rgba(6, 63, 99, 0.75);

    cursor: pointer;
}


.propera-review-popup__form .wpcf7-acceptance input[type="checkbox"] {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin: 1px 0 0;

    accent-color: #063f63;
}


.propera-review-popup__form .wpcf7-acceptance a {
    color: #063f63;

    text-decoration: underline;
    text-underline-offset: 2px;
}


.propera-review-popup__form .wpcf7-acceptance a:hover {
    text-decoration: none;
}


/* =========================================================
   BUTTON
   ========================================================= */

.propera-review-popup__form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding: 0 42px !important;

    border: 0 !important;
    border-radius: 10px !important;

    background: #063f63 !important;
    color: #ffffff !important;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.propera-review-popup__form input[type="submit"]:hover {
    background: #052f4a !important;
    transform: translateY(-1px);
}


/* =========================================================
   CF7 MESSAGES
   ========================================================= */

.propera-review-popup__form .wpcf7-not-valid-tip {
    margin-top: 6px;

    font-size: 13px;
    line-height: 1.3;
}


.propera-review-popup__form .wpcf7-response-output {
    margin: 25px 0 0 !important;
    padding: 14px 16px;

    border-radius: 8px;

    font-size: 14px;
}


/* =========================================================
   BODY — POPUP OPEN
   ========================================================= */

body.propera-review-popup-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 767px) {

    .propera-review-popup__dialog {
        width: calc(100% - 32px);
        max-height: calc(100vh - 32px);

        padding: 45px 28px 35px;

        border-radius: 10px;
    }


    .propera-review-popup__title {
        margin-bottom: 30px !important;

        font-size: 30px !important;
        line-height: 1.1 !important;
    }


    .propera-review-popup__close {
        top: 14px;
        right: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .propera-review-popup__dialog {
        width: calc(100% - 24px);

        padding: 42px 20px 28px;
    }


    .propera-review-popup__title {
        margin-bottom: 25px !important;

        font-size: 26px !important;
    }


    .propera-review-popup__form input[type="submit"] {
        width: 100%;
    }

}





/* =========================================================
   FORM SPACING — COMPACT
   ========================================================= */

/* Убираем стандартные отступы CF7 */
.propera-review-popup__form .wpcf7-form > p {
    margin: 0 0 12px !important;
    padding: 0 !important;
}


/* Последний блок формы */
.propera-review-popup__form .wpcf7-form > p:last-child {
    margin-bottom: 0 !important;
}


/* LABEL */
.propera-review-popup__form .wpcf7-form > p > label {
    display: block;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;

    color: #063f63 !important;
}


/* Убираем BR, которые CF7 вставляет автоматически */
.propera-review-popup__form .wpcf7-form > p > label > br {
    display: none !important;
}


/* Обёртка поля */
.propera-review-popup__form .wpcf7-form > p > label .wpcf7-form-control-wrap {
    display: block;

    width: 100%;

    margin-top: 5px;
}


/* Поля */
.propera-review-popup__form .wpcf7-form > p > label input,
.propera-review-popup__form .wpcf7-form > p > label textarea {
    margin-top: 0 !important;
}


/* Последнее текстовое поле */
.propera-review-popup__form .wpcf7-form > p:nth-of-type(4) {
    margin-bottom: 12px !important;
}


/* Согласие */
.propera-review-popup__form .wpcf7-form > p:has(.wpcf7-acceptance) {
    margin: 0 0 18px !important;
}








/* =========================================================
   PROPERĀ — RETURN POPUP
   Использует общие стили попапа отзывов
   ========================================================= */

.propera-return-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.propera-return-popup.is-open {
    visibility: visible;
    opacity: 1;
}


.propera-return-popup__overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 63, 99, 0.72);
}


.propera-return-popup__dialog {
    position: relative;
    z-index: 1;

    width: min(620px, calc(100% - 48px));
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    padding: 30px;

    box-sizing: border-box;

    background: #ffffff;
    border-radius: 12px;

    color: #063f63;

    box-shadow:
        0 20px 60px rgba(6, 63, 99, 0.18);
}


/* =========================================================
   CLOSE
   ========================================================= */

.propera-return-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0 !important;
    margin: 0;

    border: 0 !important;
    border-radius: 50% !important;

    background: transparent !important;

    cursor: pointer;
    appearance: none;

    z-index: 2;
}


.propera-return-popup__close span {
    position: absolute;

    width: 20px;
    height: 1.5px;

    background: #063f63;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.propera-return-popup__close span:first-child {
    transform: rotate(45deg);
}


.propera-return-popup__close span:last-child {
    transform: rotate(-45deg);
}


.propera-return-popup__close:hover span:first-child {
    transform: rotate(45deg) scale(1.08);
}


.propera-return-popup__close:hover span:last-child {
    transform: rotate(-45deg) scale(1.08);
}


/* =========================================================
   TITLE
   ========================================================= */

.propera-return-popup__title {
    margin: 0 45px 35px 0 !important;

    font-size: 36px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;

    letter-spacing: -0.025em !important;

    color: #063f63 !important;
}


/* =========================================================
   FORM
   ========================================================= */

.propera-return-popup__form {
    width: 100%;
}


.propera-return-popup__form .wpcf7-form {
    width: 100%;
}


.propera-return-popup__form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}


/* =========================================================
   FIELDS
   ========================================================= */

.propera-return-popup__form input[type="text"],
.propera-return-popup__form input[type="email"] {
    display: block;

    width: 100%;
    min-height: 52px;

    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #d9e2e6 !important;
    border-radius: 8px !important;

    background: #ffffff !important;

    color: #063f63 !important;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.propera-return-popup__form input:focus {
    border-color: #063f63 !important;

    box-shadow:
        0 0 0 3px rgba(6, 63, 99, 0.08);
}


.propera-return-popup__form input::placeholder {
    color: rgba(6, 63, 99, 0.45);
}


/* =========================================================
   LABELS / TEXT
   ========================================================= */

.propera-return-popup__form p {
    margin: 0 0 10px;

    color: #063f63;

    font-size: 15px;
    line-height: 1.5;
}


.propera-return-popup__form label {
    color: #063f63;
}


/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.propera-return-popup__form .wpcf7-acceptance {
    display: block;

    margin: 5px 0 25px;
}


.propera-return-popup__form .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: rgba(6, 63, 99, 0.75);

    cursor: pointer;
}


.propera-return-popup__form .wpcf7-acceptance input[type="checkbox"] {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin: 1px 0 0;

    accent-color: #063f63;
}


.propera-return-popup__form .wpcf7-acceptance a {
    color: #063f63;

    text-decoration: underline;
    text-underline-offset: 2px;
}


.propera-return-popup__form .wpcf7-acceptance a:hover {
    text-decoration: none;
}


/* =========================================================
   BUTTON
   ========================================================= */

.propera-return-popup__form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding: 0 42px !important;

    border: 0 !important;
    border-radius: 10px !important;

    background: #063f63 !important;
    color: #ffffff !important;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.propera-return-popup__form input[type="submit"]:hover {
    background: #052f4a !important;
    transform: translateY(-1px);
}


/* =========================================================
   CF7 MESSAGES
   ========================================================= */

.propera-return-popup__form .wpcf7-not-valid-tip {
    margin-top: 6px;

    font-size: 13px;
    line-height: 1.3;
}


.propera-return-popup__form .wpcf7-response-output {
    margin: 25px 0 0 !important;
    padding: 14px 16px;

    border-radius: 8px;

    font-size: 14px;
}


/* =========================================================
   BODY
   ========================================================= */

body.propera-popup-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-return-popup__dialog {
        width: calc(100% - 32px);
        max-height: calc(100vh - 32px);

        padding: 45px 28px 35px;

        border-radius: 10px;
    }


    .propera-return-popup__title {
        margin-bottom: 30px !important;

        font-size: 30px !important;
        line-height: 1.1 !important;
    }


    .propera-return-popup__close {
        top: 14px;
        right: 14px;
    }

}


@media (max-width: 480px) {

    .propera-return-popup__dialog {
        width: calc(100% - 24px);

        padding: 42px 20px 28px;
    }


    .propera-return-popup__title {
        margin-bottom: 25px !important;

        font-size: 26px !important;
    }


    .propera-return-popup__form input[type="submit"] {
        width: 100%;
    }

}


/* =========================================================
   FORM SPACING
   ========================================================= */

.propera-return-popup__form .wpcf7-form > p {
    margin: 0 0 12px !important;
    padding: 0 !important;
}


.propera-return-popup__form .wpcf7-form > p:last-child {
    margin-bottom: 0 !important;
}


.propera-return-popup__form .wpcf7-form > p > label {
    display: block;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;

    color: #063f63 !important;
}


.propera-return-popup__form .wpcf7-form > p > label > br {
    display: none !important;
}


.propera-return-popup__form .wpcf7-form > p > label .wpcf7-form-control-wrap {
    display: block;

    width: 100%;

    margin-top: 5px;
}


.propera-return-popup__form .wpcf7-form > p > label input {
    margin-top: 0 !important;
}


.propera-return-popup__form .wpcf7-form > p:has(.wpcf7-acceptance) {
    margin: 0 0 18px !important;
}




.propera-return-popup__info {
    margin: -10px 0 30px;
    color: #063f63;
    font-size: 15px;
    line-height: 1.55;
}

.propera-return-popup__info p {
    margin: 0 0 12px;
}

.propera-return-popup__info p:last-child {
    margin-bottom: 0;
}

.propera-return-popup__info-title {
    margin-top: 24px !important;
    margin-bottom: 8px !important;

    font-weight: 700 !important;
}

.propera-return-popup__info-title:first-child {
    margin-top: 0 !important;
}

.propera-return-popup__info a {
    color: #063f63;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.propera-return-popup__info a:hover {
    text-decoration: none;
}


















/* =========================================================
   PROPERĀ — NEWSLETTER POPUP
   ========================================================= */

.propera-newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.propera-newsletter-popup.is-open {
    visibility: visible;
    opacity: 1;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.propera-newsletter-popup__overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 63, 99, 0.72);
}


/* =========================================================
   DIALOG
   ========================================================= */

.propera-newsletter-popup__dialog {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;

    width: min(760px, calc(100% - 40px));
    max-height: calc(100vh - 40px);

    overflow: hidden;

    background: #ffffff;

    box-sizing: border-box;

    box-shadow:
        0 20px 60px rgba(6, 63, 99, 0.22);
}


/* =========================================================
   IMAGE
   ========================================================= */

.propera-newsletter-popup__image {
    min-height: 500px;

    overflow: hidden;
}


.propera-newsletter-popup__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   CONTENT
   ========================================================= */

.propera-newsletter-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px 38px 36px;
}


/* =========================================================
   CLOSE
   ========================================================= */

.propera-newsletter-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0 !important;
    margin: 0;

    border: 0 !important;
    border-radius: 50% !important;

    background: rgba(255, 255, 255, 0.9) !important;

    cursor: pointer;
    appearance: none;

    z-index: 5;
}


.propera-newsletter-popup__close span {
    position: absolute;

    width: 18px;
    height: 1.5px;

    background: #111111;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.propera-newsletter-popup__close span:first-child {
    transform: rotate(45deg);
}


.propera-newsletter-popup__close span:last-child {
    transform: rotate(-45deg);
}


.propera-newsletter-popup__close:hover span:first-child {
    transform: rotate(45deg) scale(1.08);
}


.propera-newsletter-popup__close:hover span:last-child {
    transform: rotate(-45deg) scale(1.08);
}


/* =========================================================
   TITLE
   ========================================================= */

.propera-newsletter-popup__title {
    margin: 0 30px 25px 0 !important;

    color: #111111 !important;

    font-size: 27px !important;
    line-height: 0.98 !important;
    font-weight: 800 !important;

    letter-spacing: -0.02em !important;
}


/* =========================================================
   FORM
   ========================================================= */

.propera-newsletter-popup__form {
    width: 100%;
}


.propera-newsletter-popup__form .wpcf7-form {
    width: 100%;
}


.propera-newsletter-popup__form .wpcf7-form > p {
    margin: 0 0 12px !important;
    padding: 0 !important;
}


.propera-newsletter-popup__form .wpcf7-form > p:last-child {
    margin-bottom: 0 !important;
}


/* =========================================================
   LABELS
   ========================================================= */

.propera-newsletter-popup__form .wpcf7-form > p > label {
    display: block;

    margin: 0 !important;
    padding: 0 !important;

    color: #111111 !important;

    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}


/* CF7 BR */

.propera-newsletter-popup__form .wpcf7-form > p > label > br {
    display: none !important;
}


/* =========================================================
   INPUTS
   ========================================================= */

.propera-newsletter-popup__form
input[type="text"],
.propera-newsletter-popup__form
input[type="email"] {

    display: block;

    width: 100%;
    min-height: 48px;

    box-sizing: border-box;

    margin-top: 6px !important;
    padding: 11px 14px;

    border: 1px solid #777777 !important;
    border-radius: 8px !important;

    background: #ffffff !important;

    color: #111111 !important;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.propera-newsletter-popup__form
input[type="text"]:focus,
.propera-newsletter-popup__form
input[type="email"]:focus {

    border-color: #92278f !important;

    box-shadow:
        0 0 0 2px rgba(146, 39, 143, 0.08);
}


.propera-newsletter-popup__form
input::placeholder {

    color: rgba(17, 17, 17, 0.45);
}


/* =========================================================
   PRIVACY
   ========================================================= */

.propera-newsletter-popup__form
.wpcf7-acceptance {

    display: block;

    margin: 8px 0 20px;
}


.propera-newsletter-popup__form
.wpcf7-acceptance label {

    display: flex;
    align-items: flex-start;

    gap: 7px;

    margin: 0;

    color: #111111;

    font-size: 12px;
    line-height: 1.4;

    cursor: pointer;
}


.propera-newsletter-popup__form
.wpcf7-acceptance input[type="checkbox"] {

    flex: 0 0 auto;

    width: 14px;
    height: 14px;

    margin: 1px 0 0;

    accent-color: #92278f;
}


.propera-newsletter-popup__form
.wpcf7-acceptance a {

    color: #92278f;

    font-weight: 700;

    text-decoration: none;
}


.propera-newsletter-popup__form
.wpcf7-acceptance a:hover {

    text-decoration: underline;
}


/* =========================================================
   BUTTON
   ========================================================= */

.propera-newsletter-popup__form
input[type="submit"] {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 48px;

    padding: 0 20px !important;

    border: 0 !important;
    border-radius: 24px !important;

    background: #92278f !important;
    color: #ffffff !important;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.propera-newsletter-popup__form
input[type="submit"]:hover {

    background: #7d217a !important;

    transform: translateY(-1px);
}


/* =========================================================
   CF7 MESSAGES
   ========================================================= */

.propera-newsletter-popup__form
.wpcf7-not-valid-tip {

    margin-top: 4px;

    color: #c62828;

    font-size: 11px;
    line-height: 1.3;
}


.propera-newsletter-popup__form
.wpcf7-response-output {

    margin: 15px 0 0 !important;
    padding: 10px 12px;

    border-radius: 6px;

    font-size: 12px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .propera-newsletter-popup__dialog {

        display: flex;
        flex-direction: column;

        width: calc(100% - 28px);
        max-height: calc(100vh - 28px);

        overflow-y: auto;
    }


    .propera-newsletter-popup__image {

        height: 220px;
        min-height: 220px;
    }


    .propera-newsletter-popup__image img {

        object-position: center 35%;
    }


    .propera-newsletter-popup__content {

        padding: 28px 24px 26px;
    }


    .propera-newsletter-popup__title {

        margin-bottom: 20px !important;

        font-size: 24px !important;
    }


    .propera-newsletter-popup__close {

        top: 10px;
        right: 10px;
    }

}


@media (max-width: 480px) {

    .propera-newsletter-popup__dialog {

        width: calc(100% - 20px);
    }


    .propera-newsletter-popup__image {

        height: 190px;
        min-height: 190px;
    }


    .propera-newsletter-popup__content {

        padding: 24px 20px 22px;
    }


    .propera-newsletter-popup__title {

        font-size: 21px !important;
    }

}