.desktop-header {
    z-index: 1000;
    position: fixed;
    top: 0;
    padding: 10px;
    display: flex;
    flex-direction: row;
    height: var(--desktopHeightHeader);
    width: 100vw;
    background-color: var(--headerBackgroundColor);
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 13px 0px #0000006e;
}

.desktop-header-relative {
    z-index: 0;
    position: relative;
    width: 100vw;
    height: var(--desktopHeightHeader);
}

.desktop-header-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    max-width: var(--desktopHeaderContainerMaxWidth);
    width: 100%;
    flex-grow: 1;
    margin-left: 3%;
    margin-right: 3%;
}

.desktop-header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 20%;
    transition: 0.2s ease;
}

.desktop-header-logo-container img {
    width: 100%;
}

.desktop-header-logo-container:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.desktop-header-options-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 60%;
    height: 100%;
}

.desktop-header-options-container .desktop-option-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.desktop-header-options-container .desktop-option-container:hover {
    cursor: pointer;
}

.desktop-header-options-container .desktop-option-container:hover a {        
    transform: var(--desktopHeaderZoomFont);
    transition: 0.1s ease;
}

.desktop-header-options-container a {
    font-family: var(--desktopHeaderFontFamily);
    font-size: var(--desktopHeaderDefaultFontSize);
    color: var(--headerIconsColorButton) !important;
    transition: 0.5s ease;
}

.desktop-header-buttons-container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    column-gap: 20px;
    row-gap: 0px;
    width: 20%;
    height: 100%;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
}
.desktop-header-buttons-container a i {
    font-size: 23px;
    text-decoration: none;
    color: var(--headerIconsColorButton);
    transition: 0.2s ease;
}

.desktop-header-buttons-container a i:hover {
    transform: scale(1.1);    
}

/* Mobile */
.mobile-header {
    z-index: 1000;
    min-width: 280px;
    position: fixed;
    top: 0;
    padding: 5px;
    display: none;
    flex-direction: row;
    height: var(--mobileHeightHeader);
    width: 100vw;
    background-color: var(--mobileHeaderBackgroundColor);
    justify-content: center;
    box-shadow: 0px 1px 13px 0px #0000006e;
}

.mobile-header-relative {
    z-index: 0;
    position: absolute;
    display: none;
    width: 100vw;
    height: var(--mobileHeightHeader);
}

.mobile-header-container {
    display: flex;
    flex-direction: row;
    min-height: var(--desktopMinHeightHeader);
    width: 100%;
    flex-grow: 1;
}

.mobile-header-options {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    height: 100%;
}

.mobile-header-options img {
    height: 40%;
}

.mobile-header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: var(--desktopMinHeightHeader);
    height: 100%;
    width: 60%;
}

.mobile-header-logo-container img {
    padding-top: 10px;
    height: 100%;
    width: 70%;
}

.mobile-header-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    height: 100%;
}

.mobile-header-buttons img {
    height: 40%;
}

/* Mobile header extension*/

.mobile-header-extension {
    position: relative;
    display: none;
    z-index: 999;
    background-color: var(--mobileHeaderExtensionColor);
    width: 100vw;
    margin-top: var(--mobileHeightHeader);
    transition: 1s cubic-bezier(0.25, 0.1, 0, 1);
    top: calc(calc(var(--mobileHeightExtensionHeader) + var(--mobileHeightHeader)) * -1);
    height: var(--mobileHeightExtensionHeader);
    min-height: 200px;
    max-height: 400px;
    box-shadow: #00000061 0px 0px 12px 9px;
}

.opened-options {
    top: 0px
}

.mobile-header-extension-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}
.mobile-header-extension-container .mobile-header-extension-option {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
}

.mobile-header-extension-container .mobile-header-extension-option a {
    color: var(--mobileHeaderOptionsColor) !important;
    font-size: 15px;
    font-family: var(--mobileHeaderFontFamily);
}


.mobile-header-extension-container .mobile-header-extension-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
}

.mobile-header-extension-container .mobile-header-extension-buttons a {
    color: var(--mobileHeaderOptionsColor) !important;
    font-family: var(--mobileHeaderFontFamily);
}

.mobile-header-extension-container .mobile-header-extension-buttons a i {
    font-size: 25px;
}
/* ================ */

@media screen and (max-width: 768px) {
    .desktop-header {
        display: none;
    }

    .desktop-header-relative {
        position: absolute;
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-header-relative {
        position: relative;
        display: block;
    }

    .mobile-header-extension  {
        position: fixed;
        display: block;
    }
}