/* Estate form widget styles */

.oganov-estate-form {
    width: 100%;
    background: #f6f6fa;
    --oganov-field-border: rgba(0, 0, 0, 0.1);
    --oganov-field-text: rgba(0, 0, 0, 0.9);
    --oganov-field-placeholder: rgba(0, 0, 0, 0.4);
}

.oganov-estate-form__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: transparent;
}

.oganov-estate-form__group {
    width: 100%;
    display: grid;
    gap: 16px;
}

.oganov-estate-form__group--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oganov-estate-form__group--two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oganov-estate-form__form .oganov-estate-form__group--two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.oganov-estate-form__group.oganov-estate-form__group--two > .oganov-estate-form__field {
    width: 100%;
    min-width: 0;
}

.oganov-estate-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oganov-estate-form__field--select {
    width: 100%;
    min-width: 0;
}

.oganov-estate-form__field--select .oganov-estate-form__select-wrap,
.oganov-estate-form__field--select .oganov-estate-form__custom-select {
    width: 100%;
}

.oganov-estate-form__group--two > .oganov-estate-form__field--select {
    width: 100%;
}

.oganov-estate-form__field-response {
    margin: 0;
    min-height: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Involve", sans-serif;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.24px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.oganov-estate-form__field.has-state .oganov-estate-form__field-response {
    opacity: 1;
}

.oganov-estate-form__field.is-success .oganov-estate-form__field-response {
    color: #4ed273;
}

.oganov-estate-form__field.is-warning .oganov-estate-form__field-response {
    color: #eaa31a;
}

.oganov-estate-form__field.is-alert .oganov-estate-form__field-response {
    color: #d24e4e;
}

.oganov-estate-form__field.is-success .oganov-estate-form__input,
.oganov-estate-form__field.is-success .oganov-estate-form__select,
.oganov-estate-form__field.is-success .oganov-estate-form__select-trigger,
.oganov-estate-form__field.is-success .oganov-estate-form__textarea,
.oganov-estate-form__field.is-success .oganov-estate-form__phone {
    border-color: #4ed273 !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.oganov-estate-form__field.is-warning .oganov-estate-form__input,
.oganov-estate-form__field.is-warning .oganov-estate-form__select,
.oganov-estate-form__field.is-warning .oganov-estate-form__select-trigger,
.oganov-estate-form__field.is-warning .oganov-estate-form__textarea,
.oganov-estate-form__field.is-warning .oganov-estate-form__phone {
    border-color: #eaa31a !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.oganov-estate-form__field.is-alert .oganov-estate-form__input,
.oganov-estate-form__field.is-alert .oganov-estate-form__select,
.oganov-estate-form__field.is-alert .oganov-estate-form__select-trigger,
.oganov-estate-form__field.is-alert .oganov-estate-form__textarea,
.oganov-estate-form__field.is-alert .oganov-estate-form__phone {
    border-color: #d24e4e !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.oganov-estate-form__label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #232323;
    font-family: "Involve", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
}

.oganov-estate-form__required {
    color: #05f593;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1;
}

.oganov-estate-form__input,
.oganov-estate-form__select,
.oganov-estate-form__textarea,
.oganov-estate-form__select-trigger,
.oganov-estate-form__country-toggle {
    box-sizing: border-box;
    appearance: none;
    width: 100%;
    border: 1px solid var(--oganov-field-border) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: var(--oganov-field-text);
    font-family: "Involve", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.oganov-estate-form__input {
    height: 56px;
    padding: 14px 24px;
    min-width: 0;
}

.oganov-estate-form__input::placeholder,
.oganov-estate-form__textarea::placeholder {
    color: var(--oganov-field-placeholder);
}

.oganov-estate-form__input:focus,
.oganov-estate-form__select:focus,
.oganov-estate-form__select-trigger:focus-visible,
.oganov-estate-form__textarea:focus,
.oganov-estate-form__country-toggle:focus-visible {
    outline: none;
    border-color: rgba(0, 0, 0, 0.9) !important;
    color: rgba(0, 0, 0, 0.9) !important;
    background: #ffffff !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.oganov-estate-form__select-wrap {
    position: relative;
}

.oganov-estate-form__select {
    height: 56px;
    padding: 14px 48px 14px 24px;
    appearance: none;
    color: rgba(0, 0, 0, 0.4);
}

.oganov-estate-form__select:required:invalid {
    color: rgba(0, 0, 0, 0.4);
}

.oganov-estate-form__select:valid {
    color: rgba(0, 0, 0, 0.9);
}

.oganov-estate-form__select option {
    color: #232323 !important;
    background: #f1f1f4 !important;
    font-family: "Involve", sans-serif;
    font-size: 18px;
}

.oganov-estate-form__select option[value=""] {
    display: none;
}

.oganov-estate-form__custom-select {
    position: relative;
    width: 100%;
}

.oganov-estate-form__country[data-oganov-custom-select="1"] {
    position: relative !important;
}

.oganov-estate-form__custom-select > .oganov-estate-form__select[data-oganov-native-select="1"],
.oganov-estate-form__country > .oganov-estate-form__country-select[data-oganov-native-select="1"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0 !important;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100%);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.oganov-estate-form__select-trigger {
    height: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 48px 14px 24px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oganov-estate-form__field--select .oganov-estate-form__select-trigger {
    width: 100% !important;
    text-align: left !important;
}

.oganov-estate-form__select-trigger-value {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left !important;
    color: rgba(0, 0, 0, 0.4);
}

.oganov-estate-form__custom-select.has-value .oganov-estate-form__select-trigger-value {
    color: rgba(0, 0, 0, 0.9);
}

.oganov-estate-form__custom-select.is-open .oganov-estate-form__select-trigger,
.oganov-estate-form__country.is-open .oganov-estate-form__country-toggle {
    border-color: rgba(0, 0, 0, 0.9) !important;
    color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.oganov-estate-form__chevron {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.oganov-estate-form__chevron svg {
    width: 100%;
    height: 100%;
    display: block;
}

.oganov-estate-form__custom-select.is-open .oganov-estate-form__chevron,
.oganov-estate-form__country.is-open .oganov-estate-form__chevron {
    transform: rotate(180deg);
}

.oganov-estate-form__dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    z-index: 1200;
    width: 100%;
    max-height: 324px;
    overflow: hidden;
    border: 1px solid rgba(35, 35, 35, 0.16);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(35, 35, 35, 0.16);
}

.oganov-estate-form__dropdown-option {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #232323;
    font-family: "Involve", sans-serif;
    font-size: 17px;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.oganov-estate-form__dropdown-option[hidden] {
    display: none !important;
}

.oganov-estate-form__dropdown-option-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oganov-estate-form__dropdown-option:hover,
.oganov-estate-form__dropdown-option:focus-visible {
    outline: none;
    background: #f5f5f5;
}

.oganov-estate-form__dropdown-option:active {
    background: #dedede;
}

.oganov-estate-form__dropdown-option.is-selected {
    color: #232323;
    background: transparent;
}

.oganov-estate-form__phone {
    height: 56px;
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 12px 24px 12px 16px;
    box-sizing: border-box;
    border: 1px solid var(--oganov-field-border) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    overflow: visible;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    position: relative;
}

.oganov-contact-form-main .oganov-estate-form__phone {
    height: 56px;
    padding: 12px 24px 12px 16px;
}

.oganov-contact-form-main .oganov-estate-form__country {
    min-width: 74px;
    max-width: 48%;
    width: max-content;
    flex: 0 1 auto;
}

.oganov-estate-form__phone:focus-within {
    border-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.oganov-estate-form__country {
    position: relative;
    flex: 0 1 auto;
    min-width: 74px;
    max-width: 48%;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: stretch;
    padding-right: 0;
    margin-right: 0;
    box-shadow: inset -1px 0 0 var(--oganov-field-border);
}

.oganov-estate-form__country-toggle {
    height: 100%;
    width: 100%;
    padding: 0 22px 0 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    cursor: pointer;
    position: relative !important;
    line-height: 1;
}

.oganov-estate-form__custom-select .oganov-estate-form__select-trigger:hover,
.oganov-estate-form__country .oganov-estate-form__country-toggle:hover {
    background: #f5f5f5 !important;
}

.oganov-estate-form__custom-select .oganov-estate-form__select-trigger:active,
.oganov-estate-form__country .oganov-estate-form__country-toggle:active {
    background: #dedede !important;
}

.oganov-estate-form__custom-select.is-open .oganov-estate-form__select-trigger,
.oganov-estate-form__country.is-open .oganov-estate-form__country-toggle {
    background: #ffffff !important;
}

.oganov-estate-form__custom-select.is-open .oganov-estate-form__select-trigger-value,
.oganov-estate-form__country.is-open .oganov-estate-form__country-code {
    color: rgba(0, 0, 0, 0.9) !important;
}

.oganov-estate-form__country-code {
    display: inline-flex;
    align-items: center;
    color: var(--oganov-field-text);
    font-family: "Involve", sans-serif;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.oganov-estate-form__country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.oganov-estate-form__country:not(.has-value) .oganov-estate-form__country-code {
    opacity: 0.45;
}

.oganov-estate-form__country .oganov-estate-form__chevron,
.oganov-estate-form__country-toggle .oganov-estate-form__chevron {
    position: absolute !important;
    top: 50% !important;
    right: 2px !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: -8px !important;
    margin-left: 0 !important;
    width: 16px !important;
    height: 16px !important;
}

.oganov-estate-form__dropdown.is-floating {
    position: fixed !important;
    z-index: 10000 !important;
}

.oganov-estate-form__dropdown--country {
    width: min(520px, calc(100vw - 40px));
    max-height: none;
    overflow: hidden;
    padding-bottom: 0;
}

.oganov-estate-form__field--phone .oganov-estate-form__country {
    position: static !important;
}

.oganov-estate-form__field--phone .oganov-estate-form__dropdown--country:not(.is-floating) {
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    max-width: none !important;
}

.oganov-estate-form__dropdown-option--country {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    min-width: 0;
    gap: 8px;
    min-height: 46px;
    padding: 10px 16px;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: #232323 !important;
    font-size: 17px;
    line-height: 1.15;
}

.oganov-estate-form__dropdown-option--country:hover,
.oganov-estate-form__dropdown-option--country:focus-visible {
    color: #232323 !important;
    background: #f5f5f5 !important;
}

.oganov-estate-form__dropdown-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    font-size: 18px;
}

.oganov-estate-form__dropdown-country-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oganov-estate-form__dropdown-code {
    white-space: nowrap;
    font-size: 17px;
    color: rgba(35, 35, 35, 0.78);
}

.oganov-estate-form__dropdown-options {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: minmax(0, 1fr) !important;
    max-height: 304px;
    overflow-y: auto;
    padding: 2px 0;
}

.oganov-estate-form__dropdown--country .oganov-estate-form__dropdown-options {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 2px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.oganov-estate-form__dropdown--plain .oganov-estate-form__dropdown-options {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 2px 0;
}

.oganov-estate-form__dropdown--country .oganov-estate-form__dropdown-options::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.oganov-estate-form__dropdown-option--plain {
    min-height: 46px;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: #232323 !important;
    padding: 10px 16px;
}

.oganov-estate-form__dropdown-option--plain:hover,
.oganov-estate-form__dropdown-option--plain:focus-visible {
    color: #232323 !important;
    background: #f5f5f5 !important;
}

.oganov-estate-form__dropdown-option--country:active,
.oganov-estate-form__dropdown-option--plain:active {
    background: #dedede !important;
}

.oganov-estate-form__dropdown-option--country.is-selected,
.oganov-estate-form__dropdown-option--plain.is-selected {
    background: transparent !important;
    padding-right: 40px !important;
}

.oganov-estate-form__dropdown-option--country.is-selected::after,
.oganov-estate-form__dropdown-option--plain.is-selected::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23232323' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    pointer-events: none;
}

.oganov-estate-form__dropdown-options > .oganov-estate-form__dropdown-option {
    border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.oganov-estate-form__dropdown-options > .oganov-estate-form__dropdown-option:last-child {
    border-bottom: 0;
}

.oganov-popup-form .oganov-estate-form__submit {
    width: 100%;
}

.oganov-popup-form .oganov-estate-form__form {
    gap: 0 !important;
}

.oganov-popup-form .oganov-estate-form__group {
    gap: 0 !important;
}

.oganov-popup-form .oganov-estate-form__privacy {
    margin-top: 0;
    max-width: none;
}

.oganov-popup-form,
.oganov-popup-form .oganov-estate-form__form,
.oganov-popup-form .oganov-estate-form__field--phone,
.oganov-popup-form .oganov-estate-form__phone,
.oganov-popup-form .oganov-estate-form__country {
    overflow: visible !important;
}

.elementor-popup-modal,
.elementor-popup-modal .dialog-widget-content,
.elementor-popup-modal .dialog-message,
.elementor-location-popup,
.dialog-widget-content {
    overflow: visible !important;
}

.oganov-popup-form .oganov-estate-form__dropdown--country {
    z-index: 10000 !important;
}

.oganov-popup-form .oganov-estate-form__field--phone .oganov-estate-form__country {
    position: relative !important;
}

.oganov-popup-form .oganov-estate-form__field--phone .oganov-estate-form__dropdown--country {
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    width: min(290px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
}

.oganov-popup-form .oganov-estate-form__dropdown--country.is-floating {
    width: min(290px, calc(100vw - 32px)) !important;
}

.oganov-estate-form__input--phone {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 100%;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 4px;
    background: transparent !important;
    color: var(--oganov-field-text);
    box-shadow: none !important;
    font-size: 20px;
    line-height: 1.2;
}

.oganov-estate-form__input--phone::placeholder {
    color: var(--oganov-field-placeholder);
}

.oganov-estate-form__textarea {
    height: 128px;
    resize: none;
    padding: 14px 24px;
}

.oganov-estate-form__privacy {
    margin: 0;
    max-width: 872px;
    color: rgba(35, 35, 35, 0.6);
    font-family: "Involve", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.oganov-estate-form__privacy-link {
    color: #05f593;
    text-decoration: none;
}

.oganov-estate-form__privacy-link:hover,
.oganov-estate-form__privacy-link:focus-visible {
    text-decoration: underline;
}

.oganov-estate-form__submit {
    appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 292px !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    padding: 14px 24px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #00f591 !important;
    color: #232323 !important;
    text-align: center !important;
    font-family: "Involve", sans-serif !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: normal !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, opacity 0.2s ease !important;
    box-shadow: none !important;
}

.oganov-estate-form__submit.is-loading,
.oganov-estate-form__submit:disabled {
    opacity: 0.6 !important;
    cursor: wait !important;
}

.oganov-estate-form__submit:hover,
.oganov-estate-form__submit:focus-visible,
.oganov-estate-form__submit:active {
    background: #00f591 !important;
    color: #232323 !important;
    text-decoration: none !important;
}

.oganov-estate-form__response {
    margin: -20px 0 0;
    min-height: 20px;
    font-family: "Involve", sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.oganov-estate-form__response.is-success {
    color: #198754;
}

.oganov-estate-form__response.is-error {
    color: #c0392b;
}

#contact .elementor-widget-heading .elementor-heading-title,
#contact .elementor-widget-heading .elementor-heading-title span {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .oganov-estate-form__field {
        gap: 16px;
    }

    .oganov-estate-form__field-response {
        min-height: 0;
        height: 0;
        overflow: hidden;
    }

    .oganov-estate-form__field.has-state .oganov-estate-form__field-response {
        min-height: 16px;
        height: auto;
        overflow: visible;
    }

    .oganov-estate-form__form {
        gap: 16px;
    }

    .oganov-estate-form__group--three,
    .oganov-estate-form__group--two,
    .oganov-estate-form__form .oganov-estate-form__group--three,
    .oganov-estate-form__form .oganov-estate-form__group--two {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .oganov-contact-form-main .oganov-estate-form__form {
        gap: 16px;
    }

    .elementor-popup-modal .oganov-estate-form__form,
    .oganov-popup-form .oganov-estate-form__form {
        gap: 0 !important;
    }

    .elementor-popup-modal .oganov-estate-form__group,
    .oganov-popup-form .oganov-estate-form__group {
        gap: 0 !important;
    }

    .oganov-estate-form__input {
        padding: 12px 16px;
    }

    .oganov-estate-form__select {
        padding: 12px 40px 12px 16px;
    }

    .oganov-estate-form__select-trigger {
        padding: 12px 40px 12px 16px;
    }

    .oganov-estate-form__textarea {
        padding: 12px 16px;
    }

    .oganov-estate-form__phone,
    .oganov-contact-form-main .oganov-estate-form__phone {
        height: 56px;
        padding: 12px 16px;
        gap: 12px;
    }

    .oganov-estate-form__country {
        min-width: 74px;
        max-width: 52%;
        width: max-content;
        margin-right: 0;
        padding-right: 0;
    }

    .oganov-estate-form__country-code {
        font-size: 18px;
    }

    .oganov-estate-form__country-toggle {
        padding-right: 22px !important;
    }

    .oganov-estate-form__input--phone {
        font-size: 18px;
    }

    .oganov-estate-form__select-trigger {
        font-size: 18px;
    }

    .oganov-estate-form__dropdown-option {
        font-size: 17px;
    }

    .oganov-estate-form__dropdown--country {
        width: min(420px, calc(100vw - 32px));
    }

    .oganov-estate-form__dropdown--country .oganov-estate-form__dropdown-options,
    .oganov-estate-form__dropdown--plain .oganov-estate-form__dropdown-options {
        grid-template-columns: minmax(0, 1fr);
    }

    .oganov-estate-form__dropdown-option--country {
        padding: 8px 10px;
        grid-template-columns: 18px 1fr auto;
        gap: 8px;
        font-size: 15px;
    }

    .oganov-estate-form__dropdown-country-name,
    .oganov-estate-form__dropdown-code {
        font-size: 15px;
    }

    .oganov-estate-form__privacy {
        max-width: none;
        font-size: 14px;
    }

    .oganov-estate-form__submit {
        width: 100% !important;
        min-height: 0 !important;
        margin-bottom: 16px !important;
        padding: 14px 24px !important;
        border-radius: 6px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: normal !important;
        text-transform: uppercase !important;
        margin-top: 0 !important;
    }

    .oganov-estate-form__response {
        margin-top: -8px;
    }

    .oganov-popup-form .oganov-estate-form__field--phone .oganov-estate-form__dropdown--country {
        max-height: 240px !important;
    }

    .oganov-popup-form .oganov-estate-form__field--phone .oganov-estate-form__dropdown--country .oganov-estate-form__dropdown-options {
        max-height: 240px !important;
    }
}
