﻿#mobileHeader {
    display: none;
}

.mobile-header-button {
    display: block;
    border: none;
}

.mobile-header-button-selected {
    color: #2493EA !important;
}

    .mobile-header-button-selected img {
        filter: invert(69%) sepia(59%) saturate(6106%) hue-rotate(183deg) brightness(94%) contrast(94%);
    }

    .mobile-header-button-selected svg path {
        stroke: #2493EA;
    }

@media (max-width: 590px) {
    #mobileHeader {
        display: flex;
        align-items: center;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        z-index: 9998;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(10px);
    }

        #mobileHeader > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            color: #979797;
        }
}