/* Startof menu_vertical */
.menu-vertical {
    display: grid;
    grid-template-columns: 20% calc(80% - 24px);
    gap: 24px;
    align-items: center;
}
.menu-vertical-left {
    position: relative;
    z-index: 4;
}
.menu-vertical-dropdown {
    display: none;
    background: var(--module-background);
    position: absolute;
    z-index: 1;
    width: 100%;
    box-shadow: 0 2px 2px #ddd;
    border-radius: var(--radius);
}
.menu-vertical-wrap:hover .menu-vertical-dropdown {
    display: block;
}
.menu-vertical-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.force-active {
    display: block !important;
    margin-top: 26px;
    box-shadow: 0 0 5px #ddd;
}
.menu-vertical-dropdown-left-link {
    display: flex;
    justify-content: space-between;
    color: var(--btn-menu-color);
    border-bottom: solid 1px var(--border-menu-color);
    padding: 10px 0;
}
.menu-vertical-line:last-child .menu-vertical-dropdown-left-link {
    border-bottom: 0;
}
.menu-vertical-line {
    padding: 0 20px;
    position: relative;
}
.noposrel {
    position: initial;
}
.self-child {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--module-background);
    box-shadow: 5px 0 10px var(--color-general-border);
    width: 100%;
}
.noposrel .self-child {
    height: calc(100% + 1px);
    width: calc(400% + 7px);
}
.menu-vertical-line:hover .self-child {
    display: block;
}
.row-vertical-self-child {
    display: grid;
    grid-template-columns: repeat(1, 12fr);
    padding: 0 20px 20px;
}
.noposrel .row-vertical-self-child {
    grid-template-columns: repeat(4, 12fr);
}
.sublinkmenu {
    display: block;
    padding: 0 20px;
    color: var(--btn-menu-color);
}
.menu-vertical-dropdown-right-link-text {
    display: block;
    color: var(--btn-menu-color);
    margin-top: 20px;
}
.menu-vertical-right {
    display: flex;
    gap: 12px;
    position: relative;
    height: calc(100% + 12px);
    align-items: center;
}
.menu-vertical-col-right-link-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-dropdown);
    border: 1px solid var(--color-general-border);
    min-width: 200px;
    padding: 10px;
}
.menu-vertical-col-right-button:hover .menu-vertical-col-right-link-dropdown {
    display: block;
}
.menu-vertical-col-right-link {
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--color-black);
}
.menu-vertical-alt-dropdown-right-link {
    display: block;
    color: var(--btn-menu-color);
    padding: 5px 0;
}
/* Endof menu_vertical */

/* Startof menu_horizontal */
.menuname {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    display: flex;
    padding: 0 20px;
    align-items: center;
    line-height: 121px;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    font-family: "Montserrat", serif;
    white-space: nowrap;
}
.menuname:hover {
    text-decoration: underline;
    color: #000;
}
.meniucomplet:hover .menuname {
    bcolor: #000;
    text-decoration: underline;
}
.menuname2 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 10px;
    line-height: 70px;
    justify-content: center;
}
.menuname2:hover {
    color: #fff;
    text-decoration: underline;
    background: #8c857d;
}
.bgmenuarea {
    background: #000;
}
.menuarea {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.menunivel2 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    background: #5f5144;
    justify-content: space-evenly;
    display: flex;
}
.meniuright .menunivel2 {
    left: initial !important;
    right: 0 !important;
}
.meniucomplet:hover .menunivel2 {
    opacity: 1;
    visibility: visible;
}
.menunivel2inside:hover .menunivel3 {
    opacity: 1;
    visibility: visible;
}
.menunivel2inside {
    position: relative;
    width: 100%;
}
.menunivel3 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    background: #ddd;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}
.menuname3 {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: center;
    padding: 0 10px;
    line-height: 40px;
}
.menuname3:hover {
    color: #fff;
    text-decoration: underline;
    background: var(--color-secondary);
}
.menunivel2inside:hover {
    background: #8c857d;
}
.menunivel2inside:hover .menuname2 {
    color: #fff;
}
.menusecundar {
    display: flex;
}
/* Endof menu_horizontal */

.headerfix .menunivel2 {
    background: #8c857d;
}
.headerfix .menuname2:hover {
    background: #5f5144;
}
.headerfix .menuname:hover {
    color: #fff;
}