@font-face {
    font-family: 'gg sans Bold';
    font-style: normal;
    font-weight: normal;
    src: local('gg sans Bold'), url('gg sans Bold.woff') format('woff');
}


@font-face {
    font-family: 'gg sans Normal Regular';
    font-style: normal;
    font-weight: normal;
    src: local('gg sans Normal Regular'), url('gg sans Regular.woff') format('woff');
}


@font-face {
    font-family: 'gg sans Medium Regular';
    font-style: normal;
    font-weight: normal;
    src: local('gg sans Medium Regular'), url('gg sans Medium.woff') format('woff');
}


@font-face {
    font-family: 'gg sans SemiBold Regular';
    font-style: normal;
    font-weight: normal;
    src: local('gg sans SemiBold Regular'), url('gg sans Semibold.woff') format('woff');
}

/* HEADER BUTTON */

.sideBarHeaderButtonMain {
    width: 42px;
    height: 42px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sideBarHeaderButtonBarContainer {
    width: 100%;
    height: calc(100%/3);

    display: flex;
    align-items: center;
    justify-content: start;

    &:hover .sideBarHeaderButtonBar {
        width: 80%;
    }
}

.sideBarHeaderButtonBar {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: 0.2s;
}

/* SIDEBAR ANIMATION */

.sideBarOpen {
    /* height: auto; */
    transform: translateY(0);
    transition: 0.2s ease-in-out;
    /* margin-left: 16px;
    margin-right: 12px; */
}

.sideBarClosed {
    /* height: 0px; */
    transform: translateY(-100%);
    transition: 0.2s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
    /* transform: translateY(-100%); */
    /* transition: max-width 0.4s ease-out, opacity 0.2s ease-out; */
    /* max-width: 0px;
    opacity: 0; */
}

/* SIDEBAR CONTENT */

.sideBarLinkItem {
    margin-left: 12px;
    margin-right: 12px;
}

.sideBarLink {
    color: rgb(200, 200, 210);
    font-size: large;
    transition: 0.2s;
    &:hover {
        color: #909aff;
    }
}
