.header__container {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;
    padding: 40px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__estate-edit-list {
    margin-bottom: 0;

    display: flex;
    gap: 25px;
}

.header__estate-edit-item {
    width: 100%;
    max-width: 140px;

    padding-bottom: 10px;

    text-align: center;
    color: #000;
    font-family: var(--primary-font);
    border-bottom: 2px solid #b4b4b4;
}

.header__estate-edit-btn {
    display: block;

    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

.header__estate-edit-item.current {
    color: #E0C0A2;
    border-color: #E0C0A2;
}

.header__estate-edit-btn:hover {
    color: #E0C0A2;
    border-color: #E0C0A2;
}

.header__side-menu-btn {
    width: 24px;
    height: 21px;

    display: none;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='20' viewBox='0 0 27 20'%3E%3Cdefs%3E%3Cstyle%3E .prefix__cls-1%7Bfill:none;stroke:%23000;stroke-linecap:round;stroke-miterlimit:10%7D %3C/style%3E%3C/defs%3E%3Cg id='prefix__burguer_menu' data-name='burguer menu' transform='translate(.76 .67)'%3E%3Cg id='prefix__Grupo_1' data-name='Grupo 1'%3E%3Cpath id='prefix__Línea_1' d='M0 0L26 0' class='prefix__cls-1' data-name='Línea 1' transform='translate(-.26 -.17)'/%3E%3Cpath id='prefix__Línea_2' d='M0 0L25.6 0' class='prefix__cls-1' data-name='Línea 2' transform='translate(.113 9.156)'/%3E%3Cpath id='prefix__Línea_3' d='M0 0L26 0' class='prefix__cls-1' data-name='Línea 3' transform='translate(-.26 18.83)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    cursor: pointer;
}


.side-menu {
    width: 100vw;
    height: 100vh;

    padding: 25px;

    position: fixed;
    top: 0;
    right: 0;

    background-color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
    z-index: 100;

    transition: all 350ms ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(110%);
}

.side-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.side-menu__close {
    width: fit-content;

    padding: 8px;
}

.side-menu__close-icon {
    width: 24px;
    height: 24px;

    display: block;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='-0.5 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 21.32L21 3.32001' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 3.32001L21 21.32' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.side-menu__nav {
    padding-top: 50px;
}

.side-menu__estate-edit-link {
    padding: 8px 8px 8px 0;

    display: block;

    text-align: right;

    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
}

.side-menu__estate-edit-item.current .side-menu__estate-edit-link {
    color: #E0C0A2;
}


@media screen and (max-width: 690px) {
    .header__container {
        padding: 25px;
    }

    .header__logo img {
        max-width: 134px;
        max-height: 45px;
    }

    .header__estate-edit-list {
        display: none;
    }

    .header__side-menu-btn {
        display: block;
    }
}
