/*button*/

.burgerBox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    width: 22px;
    padding: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.burgerBox .bar {
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 100ms ease-in-out;
}

.burgerBox:hover {
    cursor: pointer;
}



/*button toggle*/

.y {
    height: 22px;
    width: 22px;
    padding: 10px;
}

.x {
    background-color: white !important;
}

.x:nth-of-type(1) {
transition: all 100ms ease-in-out;
transform: rotate(45deg);
transform-origin: top left;
width: 28px;
}

.x:nth-of-type(2) {
transition: all 100ms ease-in-out;
transform: rotate(-45deg);
transform-origin: bottom left;
width: 28px;
}


/*menu*/

#hamburgerMenu {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0%;
    background-color: #6CA6E6; /*#00234C;*/

    opacity: 0;

    transition: 0.5s;
}

.hamburgerTransparentLeftSide {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 0%;

    opacity: 0;
}

.tabsHamburger {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 0px;
    padding-left: 20%;
    font-family: Jost;
    font-size: 20px;
    text-align: left;
    color: white;
    cursor: pointer;

    /* Google Chrome prevent blue highlighting */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.tabActive {
    background-color: #4F94DF !important;
}

.circleHamburger {
    display: inline-block;
    position: relative;
    transform: translate(0,-50%);
    margin-right: 13px;
    width: 5px;
    height: 5px;
}

.circleActive {
    background-color: white;
    border-radius: 50%;
}

.lineHamburger {
    position:relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;

    background-color: #DDD;
    height: 1px;
    width: 80%;
}