span.text--danger {
    color: var(--danger-color);
    font-weight: bold;
}


.map.map--fix {
    width: 100% !important;
    height: 500px !important;
    position: relative !important;
    left: 0 !important;
}

.e-modal {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 100500;
}

.e-modal__cover {
    background: rgba(255, 255, 255, .75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
}

.e-modal__cover:hover {
    background: rgba(255, 255, 255, .35);
}

.e-modal__container {
    position: relative;
    background: #FFF;
    box-shadow: 0 0 7px 5px rgba(0, 0, 0, .05);
    border-radius: .4em;
    width: 30em;
}

.e-modal__header {
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    align-items: center;
}

.e-modal__close {
    cursor: pointer;
    color: rgba(0, 0, 0, .35);
    transition: .3s;
}

.e-modal__close:hover {
    color: rgba(0, 0, 0, .75);
}

.e-modal__body {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 2em;
    align-items: center;
}

.e-box {
    width: 100%;
    display: flex;
    gap: 1em;
    flex-direction: column;
}

.e-advantage {
    width: 5em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
    transform: translateX(.5em);
}

form.e-form {
    width: 100%;
    flex-direction: column;
    gap: 1em;
    display: flex;
    background: #f2f5f9;
    padding: 1em;
    box-sizing: border-box;
    border-radius: .4em;
}

.e-form__group {
    position: relative;
}

.e-form__group input {
    width: 100%;
    padding: .75em;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    background: #FFF;
    outline: none;
    box-sizing: border-box;
}

.e-form__group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.e-form__group.active label {
    top: 0;
    font-size: .75em;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .4em;
    padding: 0 .25em;
}

button.e-form__submit {
    border: 0;
    background: #2880FC;
    color: #FFF;
    padding: .75em 1em;
    font-size: .875em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

button.e-form__submit:hover {
    opacity: 0.85;
}

.e-advantage__item i {
    font-size: 1.5em;
    color: #2880FC;
}

.e-advantage__item span {
    font-size: .75em;
    display: block;
    padding-top: .5em;
    color: rgba(0, 0, 0, .7);
    font-weight: 500;
}

.e-modal__footer {
    background: #F2F5F9;
    padding: 1em 2em;
    border-radius: 0 0 .4em .4em;
}

.e-modal__footer a {
    display: none;
}

.e-modal__footer div {
    display: flex;
    justify-content: space-between;
}

select#areaFilter {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .4em;
    padding: .5em 1em;
    box-sizing: border-box;
}

.page__header-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
    padding-bottom: 2em;
}

.page__header-action-item {
    display: flex;
    align-items: center;
    gap: .5em;
    flex-wrap: wrap;
}

.page__header-action-item input {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .4em;
    padding: .5em 1em;
    box-sizing: border-box;
}

.page__header-action label {
    color: rgba(0, 0, 0, .5);
    font-size: .875em;
}

.e-box__price span {
    font-size: 1.32em;
    font-weight: 500;
}

.e-box__price i {
    font-size: .5em;
    font-weight: 600;
}

.page__row {
    display: flex;
    flex-direction: column;
    gap: .5em;
    padding: 5em 0;
}

.page__column {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    align-items: center;
}

span.page__column-label {
    display: block;
    font-size: .75em;
    color: rgba(0, 0, 0, .5);
}

span.page__column-text {
    display: block;
    padding-top: .5em;
    font-weight: 600;
    color: rgba(0, 0, 0, .8);
}

span.page__column-text i {
    font-size: .8em;
    font-weight: 600;
    color: rgba(0, 0, 0, .5);
}

.page__column-action button {
    border: 0;
    background: #2880FC;
    color: #FFF;
    font-size: .875em;
    padding: .75em 1.25em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

.page__column-action button:hover {
    opacity: 0.85;
}

.page__column.hidden {
    display: none;
}

@media (max-width: 768px) {
    .e-advantage {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        transform: translateX(-.5em);
    }

    .e-modal__container {
        width: 100%;
        border-radius: 0;
    }

    .e-modal__footer div {
        display: none;
    }

    .e-modal__footer {
        background: #FFF;
        padding: 0 2em 2em;
        display: flex;
        justify-content: center;
    }

    .e-modal__footer a {
        display: block;
        background: #2880FC;
        color: #FFF;
        padding: .75em 2em;
        border-radius: .4em;
        text-align: center;
        max-width: 10em;
    }
}


@media (max-width: 700px) {

    .page__column {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: .5em;
    }
}