.form__field label {
    cursor: pointer;
}
.form__field label a {
    border-bottom: 1px dashed #e61d25;
}
.form__field label a:hover {
    border-color: transparent;
}
.form__checkbox {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 7px;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0 10px -6px 0;
    position: relative;
    transition: 0.5s ease;
}

.form__checkbox:hover {
    border-color: #333c55;
}

.form__checkbox:checked {
    background: #e61d25;
}

.form__checkbox::after {
    content: "✓";
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.form__checkbox:checked::after {
    opacity: 1;
}

.form__checkbox label {
    cursor: pointer;
}
.form__checkbox.invalid {
    border-color: #e61d25;
}

body .realty-widget-balloon__content_has-button {
    height: 310px;
}
body .leaflet-popup-content .realty-widget-balloon__content_has-button {
    height: 378px;
}
body .realty-widget-info__container {
    max-height: 270px /* 370px */;
}
body .realty-widget-form__rows {
    height: 265px;
}
body .realty-widget-form__row label {
    cursor: pointer;
}
body .realty-widget-form__checkbox {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #808080;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0 5px -2px 0;
    position: relative;
    transition: 0.5s ease;
}
body .realty-widget-form__checkbox:hover {
    border-color: #333c55;
}
body .realty-widget-form__checkbox:checked {
    background: #e61d25;
    border-color: #e61d25;
}
body .realty-widget-form__checkbox::after {
    content: "✓";
    font-size: 8px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s;
}
body .realty-widget-form__checkbox:checked::after {
    opacity: 1;
}
body .realty-widget .realty-widget-field_error {
  border-color: #ec4e4e !important;
}
