.fulloto_header {
    position: fixed;
    z-index: 999;
    height: 100px;
    background-color: #f7a600;
    width: 100vw;
}

.fulloto_logo {
    width: 200px;
    height: 80px;
    margin-top: 10px;
    object-fit: contain;
    position: absolute;
    cursor: pointer;
}

.fulloto_header_tabs {
    margin-left: auto;
    margin-right: auto;
}

.fulloto_header_tab {
    margin: auto 0 auto 0!important;
    padding: 12px;
    color: #2c2c2c;
    opacity: 0.6;
    cursor: pointer;
    user-select: none;
}

.fulloto_mobile_tablist {
    display: flex;
    flex-direction: column;
    margin: 16px;
}

.fulloto_mobile_tab {
    margin: auto 0 auto 0!important;
    padding: 12px;
    color: #2c2c2c;
    opacity: 0.85;
    cursor: pointer;
    user-select: none;
}

.fulloto_header_tab:hover {
    opacity: 1.0;
}

.fulloto_header_tab::after {
    opacity: 0.6;
}

#fulloto_header_mobilemenu {
    border: 1px solid #efefef;
    height: 40px;
    width: 40px;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 4px;
}

.fulloto_header_mobilemenuimg {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    scale: 0.7;
}

#fulloto_mobile_menu {
    display: none;
    width: 45vw;
    height: calc(100vh - 100px);
    background-color: #d7a600f0;
    position: fixed;
    z-index: 99;
    padding-top: 100px;
}


@media screen and (max-width: 1080px) {
    .fulloto_logo {
        margin-left: auto;
        margin-right: auto;
        position: static;
        scale: 0.8;
    }

    .fulloto_header_tabs {
        display: none;
    }

    #fulloto_header_mobilemenu {
        display: inline;
    }
}

@media screen and (min-width: 1080px) {
    .fulloto_header_tabs {
        display: flex;
        flex-direction: row;
    }

    #fulloto_header_mobilemenu {
        display: none;
    }
}