/* Any !important is an override - as its meant to be ;) */
body {
    color: #d8dbe0;
    font-family: Roboto;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}


#brandsContainer {
    align-items: center;
    background-color: #111111;
    bottom: 0;
    column-gap: 40px;
    display: flex;
    font-size: 24px;
    justify-content: center;
    padding: 10px;
    position: fixed;
    width: 100vw;
    z-index: 4;
}

#mainPageButtonsContainer {
    column-gap: 30px;
    display: flex;
    justify-content: center;
}

.button {
    transition: 500ms;

    align-items: center;
    border: 1px solid #eeeeee;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 0%, rgba(180,180,180,1) 100%);
    border-radius: 8px;
    color: #333333;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    height: 50px;
    justify-content: space-evenly;
    width: 175px;
}

.button:hover {
    transition: 250ms;

    box-shadow: 0 0 6px 3px #f8a100;
    scale: 1.15;
}

.ghost {
    transition: 500ms;

    border: 1px solid #666666;
    opacity: 1;
    position: absolute;
    z-index: 34;
}

.hidden {
    display: none !important;
}

.fa-circle-xmark {
    cursor: pointer;
}

#mobileContainer {
    align-items: center;
    background-color: #242f43;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-evenly;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100vw;
}
#mCWarning {
    font-weight: bold;
    font-size: 48px;
    margin: 0 20px;
}
#mCLogIn {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 7px;
    box-shadow: 0px 0px 3pc white;
    color: #333333;
    font-size: 48px;
    font-weight: bold;
    padding: 60px 130px;
    text-transform: uppercase;
}



/* More Info Buttons */
.fa-circle-question {
    cursor: help;
}
.moreInfoIcon {
    animation-duration: 5s;
    animation-name: moreInfoColourChange;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes moreInfoColourChange {
    0% { color: #ffff30; }
    25% { color: #ff3000; }
    50% { color: #ffff30; }
    75% { color: #30ff30; }
    100% { color: #ffff30; }
}
/* ***************** */

/* WOULD YOU LIKE TO KNOW MORE */
.moreInfoSpan {
    cursor: help;
    font-style: italic;
    text-transform: capitalize;
}

.moreText:hover {
    transition: 500ms;
    color: #0326FF !important;
    text-shadow: 0px 0px 1px #84F4FF !important;
}

.moreYes {
    transition: 1000ms;
}

.wouldYouLikeToKnowMore {
    background-color: #656269;
    color: white;
    cursor: pointer;
    font-family: 'Gafata';
    font-size: 21px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 20px;
    text-shadow: 0px 0px 10px #170A0A;
    padding: 12px 60px;
}

#wYLTKMPopUp {
    transition: left 0s, top 0s, transform 333ms;

    background-color: #656269;
    color: white;
    cursor: pointer;
    font-family: 'Gafata';
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    left: 0;
    letter-spacing: 1px;
    padding: 10px 30px;
    position: absolute;
    text-shadow: 0px 0px 4px #170A0A;
    top: 0;
    transform: scale(0, 1);
    transform-origin: left;
}

.wYLTKMPopUpShow {
    transform: scale(1) !important;
}
/* *************************** */



/* ABOUT ME SECTION */
#closeDevInfo {
    background-color: #390000;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    width: 1202px;
}
#developerMoreInfo {
    transition: 333ms;

    align-content: center;
    align-items: center;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 16px;
    height: 100vh;
    justify-content: center;
    left: 100vw;
    line-height: 170%;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 3;
}

.dMIShow {
    transition: 500ms !important;
    left: 0 !important;
}

#whoAmIContainer {
    transition: 333ms;

    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    opacity: 0;
    left: 100vw;
    top: 180px;
    position: fixed;
    width: 100vw;
}

#wAIHeader {
    font-size: 18px;
    font-weight: bold;
}

#wAIInformation {
    font-size: 16px;
    line-height: 160%;
}

.wAIShow {
    transition: 333ms;

    left: 0 !important;
    opacity: 1 !important;
}

#wAISpecialty {
    line-height: 160%;
    font-size: 16px;
    width: 900px;
}

#wAIStrengths {
    border: 1px solid #333333;
    max-height: 80vh;
    max-width: 1200px;
    overflow-y: auto;
    padding: 10px;
    width: 1200px;
}
/* **************** */


/* CLIENT SECTION */
#clientLogInButton {
    padding: 10px 50px;
    border: 1px solid;
    width: 165px;
    text-align: center;
    cursor: pointer;
    background-color: #333333;
    color: white;
    margin-top: 20px;
}

#clientLogInContainer {
    transition: 500ms;

    align-items: center;
    border: 5px solid white;
    border-radius: 50% 50% 0% 0%;
    color: #444444;
    display: flex;
    font-size: 20px;
    height: 100vh;
    justify-content: center;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: fixed;
    top: 300px;
    width: calc(100vw - 10px);
    z-index: -1;
}
.cLShow {
    transition: 500ms;

    background-color: #cccccc;
    border: 5px solid #cccccc !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    top: 0px !important;
    z-index: 50 !important;
}

#cLICInner {
    background-color: #ffffff;
    border: 2px solid #999999;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    row-gap: 20px;
    width: 500px;
}

#cLICHeader {
    border-bottom: 2px solid;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.cLICInput {
    color: #ee7700;
    font-size: 20px;
    padding: 5px 10px;
}

.cLICLabel {
    width: 40%;
}

.cLICRow {
    display: flex;
}
/* ************** */

#currentClientCounts {
    font-size: 14px;
    line-height: 150%;
}

#currentWorkLoad {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

#cCCDayLoad, #cCCWeekLoad {
    background-color: #009b00;
    border: 1px solid #266b00;
    color: white;
    height: 30px;
    text-align: center;
    text-shadow: 2px 2px 3px black;
};


/* EGO */
#egoContainer {
    align-content: center;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    height: 100px;
    justify-content: center;
    position: fixed;
    right: 25px;
    width: 100px;
    z-index: 10;
}
@keyframes rotate4 {
    0% { transform: translate(75px,-15px); font-size: 16px; z-index: 5; color: #999999; }
    25% { font-size: 12px; z-index: 5;  color: #444444; }
    50% { transform: translate(-75px,15px);  font-size: 16px; z-index: 15; color: #999999; }
    75% { font-size: 32px;  font-size: 24px; z-index: 15;  color: #FFFFFF;}
    100% { transform: translate(75px,-15px);  font-size: 16px; z-index: 5; color: #999999; }
}
#Four {
    animation-duration: 3s;
    animation-name: rotate4;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

    position: relative;
    top: 16px;
    font-size: 24px;
    font-weight: bold;
    right: 38px;
}
#O {
    background-color: #1b1b1b;
    border: 5px solid white;
    border-radius: 100%;
    box-shadow: 0px 0px 20px 10px white;
    height: 50px;
    width: 50px;

    z-index: 10;
}
/* *** */



/* MY GAMES and DEMOS CONTAINER */
#myDemosContainer, #myGamesContainer {
    transition: 333ms;

    align-items: center;
    background: #002DB2;
    background: linear-gradient(135deg,rgba(0, 45, 178, 1) 0%, rgba(77, 166, 255, 1) 25%, rgba(0, 45, 178, 1) 50%, rgba(77, 166, 255, 1) 75%, rgba(0, 45, 178, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    left: 100vw;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 50;
}
.mDCShow, .mGCShow {
    transition: 333ms;

    left: 0 !important;
}

#mDInnerContainer, #mGInnerContainer {
    align-content: flex-start;
    column-gap: 50px;
    display: flex;
    flex-wrap: wrap;
    height: 90vh;
    row-gap: 50px;
    width: 90vw;
}

.demoContainer, .gameContainer {
    transition: 333ms;

    align-items: center;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #4c6fb5;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 8px black;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: bold;
    height: 220px;
    justify-content: flex-end;
    padding: 15px;
    width: 200px;
}
.demoContainer:hover, .gameContainer:hover {
    transition: 333ms;

    border: 1px solid #f8a100 !important;
    box-shadow: 0 0 3pc #f8a100;
    scale: 1.05;
    transform: perspective( 600px ) rotateY( 33deg );
}
/* ****************** */