header {
    background-color: rgba(247, 248, 249, 1);
    padding: .0rem 0 0;
    position: absolute;
    display: block;
    width: 100%;
}
.gameRotationIconsRow {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.menus {
    position: relative;
    width: 100%;
    background-color: white;
}
.menus ul {
    position: absolute;
    display: block;
    list-style-type: none;
    width: 70%;
    top: 0.3vw;
    height: 100%;
}
.menu {
    padding: .0rem 0rem;
    position: relative;
    display: block;
    z-index: 2;
    width: 100%;
}
.dropdownMenu {
    position: relative;
    display: block;
}
header .topTiles {
    width: 100%;
    position: relative;
    left: 0px;
    top: 0px;
}
header .backgroundContainer {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
header .background {
    position: relative;
    width: 100%;
}
header ul {
    height: 0px;
    margin: 0;
    padding: 0;
}
header a {
    text-decoration: none;
    padding: 0;
    display: block;
}
.headerLinkHolder {
    width: 7%;
    height: 16%;
    position: absolute;
    text-align: center;
}
.headerLink {
    position: relative;
    width: 100%;
    height: 100%;
}
.headerLinkIcon{
    top: 12.5%;
    left: 0%;
    max-width: 70%;
    max-height: 70%;
    position: relative;
    min-height: 40%;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: transform;
}
img.logo.headerLinkIcon {
    max-width: 75%;
    min-width: 50%;
    height: 70%;
    top: 10%;
}
header .logoLinkHolder {
    width: 7%;
    top: 3.1%;
    left: 46.65%;
}
header .gamePageLinkHolder {
    top: 3.1%;
    left: 59.25%;
}
header .clientAreaLinkHolder {
    top: 11.6%;
    left: 66%;
}
header .careersPageLinkHolder {
    top: 28.6%;
    left: 65.6%;
}
img.clientAreaIcon.headerLinkIcon {
    left: -5%;
    top: 15%;
}
header .dropdownMenu {
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font: inherit;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: 7%;
    height: 10%;
    position: absolute;
    top: 0;
    left: 66.3%;
    z-index: 6;
}
.dropdown-toggle{
    display: block;
    position: relative;
    height: 100%;
    z-index: 2;
    width: 40%;
    left: 23%;
    top: 0;
}
.headerLinkHolder:hover .headerLinkIcon {
    transform: scale(1.1);
}
.dropdown-toggle-icon{
    transition-property: height;
    transition-delay: 0.5s;
    background-color: #fff;
    cursor: pointer;
    display: block;
    height: 2px;
    top: 45%;
    position: relative;
}
.dropdown-toggle-icon::before, .dropdown-toggle-icon::after {
    transition-property: height;
    transition: all 0.5s;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0px;
    background-color: #fff;   /* same color as the icon */  
}
.dropdown-toggle-icon::before { bottom: 600%; } /* top line of the hamburger icon */  
.dropdown-toggle-icon::after { top: 600%; } /* bottom line of the hamburger icon */  
.change .dropdown-toggle-icon { 
    transition-property: height;
    transition-duration: 0s;
    transition-delay: 0s;
    height: 0px;
} 
.change .dropdown-toggle-icon::before { 
    transition-duration: 0.5s; 
    transform: rotate(45deg) translateX(5%) translateY(5%);
    bottom: 0%;
} /* first line of the X icon */  
.change .dropdown-toggle-icon::after {
    transition-duration: 0.5s;
    transform: rotate(-45deg) translateX(5%) translateY(5%);
    bottom: 0%;
} /* second line of the X icon */  
header .dropdown-items {
    position: absolute;
    display: none;
    width: fit-content;
    right: -1vw;
    background-color: #DE3558;
    font-size: 1.2vw;
    white-space: nowrap;
    padding-top: 4.5vw;
    top: -1vw;
    z-index: 1;
    text-align: right;
}
header .dropdown-items a {
    height: fit-content;
    text-decoration: none;
    padding: 0;
    display: block;
    padding-left: 50px;
    padding-right: 10px;
    color: white;
}
header .dropdown-items a:hover {
    background-color: #fdc753;
    color: black;
}
header .dropdown-items a:visited {
    text-decoration: none;
}
header .dropdown-items a:active {
    text-decoration: none;
}
header .dropdown-items a:focus {
    text-decoration: none;
}
header .dropdown-item {
    margin: 0 auto;
    padding: 1.2vh;
    display: inline-block;
    transition: background-color 300ms ease;
}
img.clientAreaDropdownIcon.headerLinkDropdownIcon {
    max-height: 1rem;
    display: inline-block;
    position: relative;
    padding-right: 10px;
}
.dropdown-item-clientArea {
    display: flex !important;
    align-items: center;
}
.dropdown-item-link-clientArea {
    background-color: #fdc753;
    color: black !important;
}
.dropdown-item-link-clientArea:hover {
    background-color: #DE3558 !important;
    color: white !important;
}
.topSpacerDiv{
    position: relative;
}

/* MEDIA QUERIES */

@media screen and (max-width: 980px) {
    header .dropdown-items {
        font-size: 2vw;
        right: -2vw;
        padding-top: 7.5vw;
    }
    header .dropdown-items a {
        padding-right: 20px;
    }
    .dropdown-toggle-icon::before { bottom: 550%; } /* top line of the hamburger icon */  
    .dropdown-toggle-icon::after { top: 550%; } /* bottom line of the hamburger icon */ 
}

@media screen and (max-width: 805px) {
    header .dropdown-items {
        font-size: 2vw;
        padding-top: 11vw;
        top: -4.5vw;
    }
    .dropdown-toggle-icon::before { bottom: 500%; } /* top line of the hamburger icon */  
    .dropdown-toggle-icon::after { top: 500%; } /* bottom line of the hamburger icon */ 
}

@media screen and (max-width: 630px) {
    .dropdown-toggle-icon{
        height: 1px;
    }
    .dropdown-toggle-icon::before, .dropdown-toggle-icon::after {
        height: 1px;
    }
    img.clientAreaDropdownIcon.headerLinkDropdownIcon {
        top: 2px;
    }
    .dropdown-toggle-icon::before { bottom: 1500%; } /* top line of the hamburger icon */  
    .dropdown-toggle-icon::after { top: 1500%; } /* bottom line of the hamburger icon */ 
    header .dropdown-items {
        font-size: 4vw !important;
        padding-top: 15vw;
    }
    header .dropdown-items a {
        padding-left: 20px;
        padding-right: 10px;
    }
    header .dropdown-item {
        padding: 1vw;
    }
    .change .dropdown-toggle-icon::before {
        top: -2px;
    }
    .menus {
        width: 185%;
        left: -58.5%;
    }
}

@media screen and (max-width: 455px) {
    header .dropdown-items {
        font-size: 10vw;
        padding-top: 17vw;
    }
    img.clientAreaDropdownIcon.headerLinkDropdownIcon {
        height: 0.8rem;
    }
    .dropdown-toggle-icon::before { bottom: 1000%; } /* top line of the hamburger icon */  
    .dropdown-toggle-icon::after { top: 1000%; } /* bottom line of the hamburger icon */ 
}

@media screen and (max-width: 368px) {
    .dropdown-toggle-icon::before { bottom: 700%; } /* top line of the hamburger icon */  
    .dropdown-toggle-icon::after { top: 700%; } /* bottom line of the hamburger icon */ 
    img.clientAreaDropdownIcon.headerLinkDropwownIcon {
        top: 3px;
        height: 0.6rem;
    }
}
