/* MAIN MENU */

#MainMenuBlocker {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-end;
    background-color: rgb(0, 0, 0, 0.5);
    overflow: auto;
    z-index: 10000;
}

#MainMenuBlocker.Visible {
    display: flex;
}

#MainMenu {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.5s;
    background-color: var(--colorGrayRegular);
}

#MainMenu.Visible {
    transform: translateX(0%) !important;
}

#MainMenuHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--colorGrayLight);
    height: 40px;
    padding: 30px 25px;
}

#MainMenuHeader img {
    width: 15px;
    height: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

#MainMenuHeader img:hover {
    transform: rotate(180deg);
}

#MainMenuLogoAndLogotipCntr {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    padding: 25px 5px;
    background-color: white;
}

#MainMenuLogotip {
    display: flex;
    flex-direction: column;
    font-family: "Cascadia Mono";
    font-size: 20px;
    letter-spacing: 2px;
}

nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

nav a {
    width: 100%;
    padding: 30px 25px;
    background-color: var(--colorGreenRegular);
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    border-bottom: 1px white solid;
    text-align: left;
    letter-spacing: 1px;
    transition: all 0.3s;
}

nav a.Emphasize {
    width: 100%;
    background-color: var(--colorBlueRegular);
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav a.Emphasize span {
    display: flex;
    align-items: center;
}

nav a.Emphasize span::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-image: url("../images/Link.svg");
    background-size: contain;
    vertical-align: middle;
}

nav a:hover {
    background-color: var(--colorGrayLight);
    color: black;
}

#TempAPI2026,
#MenuItemRegister {
    padding: 15px 25px !important;
}
