.menu-header__col {
    height: 60px;
}
.menu-header__col.right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    position: relative;
}
.menu-header__col.left {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 0 18px;
}
.menu-header__items > a {
    color: black;
    padding: 0 12px;
    font-weight: 500;
    text-decoration: none;
}
.menu-header__personal > svg {
    display: inline-block;
    height: 30px;
}
.menu-header__items > a.selected {
    color: #BC1A19;
}
.menu-header__items > a:hover {
    color: #BC1A19;
}

.menu-header__searchline {
    display: none;
    position: absolute;
    top:0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    background: #f2f2f2;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
.menu-header__searchline.open {
    display: flex;
}
.menu-header__searchline > div {
    width: 100%;
    max-width: 540px;
    position: relative;
}
.menu-header__searchline input {
    border: none;
    background: #f2f2f2;
    border-bottom: 2px solid #212529;
    border-radius: 0;
}
.menu-header__searchline button {
    border-radius: 0 !important;
    background: #f2f2f2;
    border: 0 !important;
    border-bottom: 2px solid #212529 !important;
}
.menu-header__searchline input:focus{
    color: #212529;
    background-color: #f2f2f2;
    border-color: #212529;
    outline: 0;
    box-shadow: none;
}
.menu-header__panel {
    display: inline-block;
    position: relative;
}
.menu-header__panel > a {
    color: black;
    padding: 0 12px;
    font-weight: 500;
    text-decoration: none;
}
.menu-header__panelarea {
    display: none;
    position: absolute;
    padding: 60px 0 0 0;
    min-width: 400px;
    right: 0;
}
.menu-header__panelarea > div a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 5px 0;
}
.menu-header__panelarea > div .red {
    color: #BC1A19;
}
.menu-header__panelarea > div a:hover {
    color: #BC1A19;
    text-decoration: none;
}
.menu-header__panelarea > div {
    background: #F2F2F2;
    border-radius: 15px;
    padding: 15px 23px;
}
.menu-header__panel:hover .menu-header__panelarea {
    display: block;
}

.menu-header__mobile {
    display: none;
}

@media only screen and (max-width : 1365px) {

}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
    #header-menu {
        padding: 10px;
    }
    .menu-header__col.left img {
        height: 40px;
    }
    .menu-header__mobile {
        display: block;
    }
    .menu-header__items .menu-header__personal {
        display: none;
    }
    .menu-header__items {
        display: none;
        position: absolute;
        top: 65px;
        background: #ffffff;
        box-shadow: 1px 1px 3px #8a8a8a;
        padding: 20px;
        border-radius: 14px;
        right: 0;
    }
    .menu-header__items.open {
        display: block;
    }
    #header-menu__overlay {
        display: none;
    }
    .menu-header__items > a {
        display: block;
        padding: 5px 30px 5px 0;
        margin: 0;
    }
    .menu-header__panel > a {
        padding: 0;
        display: none;
    }
    .menu-header__panelarea {
        display: block;
        position: unset;
        padding: 0;
        margin: 0;
        background: 0;
        max-width: 250px;
        min-width: auto;
    }
    .menu-header__panelarea > div {
        background-color: transparent;
        padding: 0;
        margin: 0;
        font-weight: 500;
    }
    .menu-header__mobile > a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        padding: 6px 15px;
        background: white;
        border-radius: 8px;
        height: 50px;
        width: 50px;
        margin: 0 0 0 10px;
    }
    .menu-header__mobile > a svg {
        height: 20px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

@media only screen and (max-width : 575px) {

}