nav.topNav {
    z-index: 12;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: row wrap;
    /* justify-content: space-between; */
    align-items: center;
    background: var(--black-80);
    border-bottom: 1px solid var(--black-80);
    box-shadow:
        0 3px 3px -2px #0003,
        0 3px 4px 0 #00000024,
        0 1px 8px 0 #0000001f;
    height: 60px;
    padding-left: 8px;
    padding-right: 8px;
}

nav.topNav div.homeLogoWrap,
nav.topNav div.homeLogoWrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 3px;

    line-height: 1;
    font-weight: 400;
    color: #fff;
    margin-top: 2px;
    margin-left: 5px;
    font-size: 1.575rem;
}

nav.topNav div.phatgamesLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    /* top: 1px; */
    position: relative;
    margin-right: 10px;
}

.phatBtn {
    border-radius: 30px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 16px;
    box-sizing: border-box;
}

button.sideNavBtn {
    background: transparent;
    border-radius: 30px;
    margin: 4px;
    padding: 0;
    width: 45px;
}

/* .headerLeftSection {
    height: 48px;
    width: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
} */

/* .icon__open_nav {
    -webkit-mask-image: url("/assets/open-nav-1c1fbe08.svg");
    mask-image: url("/assets/open-nav-1c1fbe08.svg");

    position: absolute;

    cursor: pointer;
    font-family: 'Nunito', 'Nunito Fallback';
    font-weight: 800;
    font-size: 16px;
    background-color: #eff0f7;
} */

span[role='img'] {
    height: 24px;
    width: 24px;
}

.searchGames {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    margin: 0 auto;
}

.searchGames .searchGamesInput {
    border-radius: 30px;
    /* fill: #aaadbe; */
    height: 40px;
    background-color: #373952;
    border: 1px solid #0000;
    box-shadow: 0 0;
    /* font-weight: 700;
    font-size: 16px; */
    /* color: #aaadbe; */

    color: #fff;
    padding-left: 18px;
    padding-right: 8px;
    margin-bottom: 0;
    margin-top: 2px;
}

.searchGames .searchGamesInput::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: #fff;
}

.searchGames .searchGamesIconWrap {
    justify-content: center;
    position: absolute;
    top: 3px;
    right: 10px;
    background: linear-gradient(to right, transparent 0%, #373952 25%);
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    align-items: center;
    display: flex;
    color: #aaadbe;
    height: 36px;
    width: 36px;
    padding: 0px;
    margin: 0px;
}

.searchGames .searchGamesIconWrap .icon {
    width: 20px;
    height: 20px;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    display: inline-block;
}

.iconSearch {
    mask-image: url("/assets/search-bf490835.svg");
    background-color: #fff;
}

.hamburgIcon {
    mask-image: url("/assets/open-nav-1c1fbe08.svg");
    background-color: #fff;
    display: flex;
    height: 20px;
    align-items: center;
    width: 50px;
    min-width: 50px;
    text-align: center;
    justify-content: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    cursor: pointer;
    margin: 0 0 0 5px;
    display: none;
}

.hamburgIcon.open {
    mask-image: url("/assets/close-nav-e60ad569.svg");
}

@media (max-width: 987px) {
    .hamburgIcon {
        display: flex;
    }

    .homeLogoWrap a span {
        display: none;
    }

    nav.topNav div.homeLogoWrap {
        margin: 0;
        padding: 0;
    }

    .hamburgIcon {
        min-width: 40px;
        width: 40px;
    }

    .searchGames {
        width: 50%;
        right: -20%;
    }
}
