﻿
@font-face {
    font-family: Bemio;
    src: url(../fonts/Bemio.otf);
}

html, body {
    height: 100%;
}

body {
    background: url(../images/background.png);
    background-size: cover;
    /*display: flex;
    flex-direction: column;*/
    margin: 0px; /* Why do I have to set this? Without it the default is 8px and it effs up the flexboxes */
}

.mainContent {
    flex: 1 0 auto;
    /*margin-top: 100px;*/ /* TODO: For now. We'll update this when the pulldown tab changes */
}

/*
    TODO: This isn't a real footer at the moment, as it doesn't float to bottom
*/
.footer {
    flex-shrink: 0;
    text-align: center;
    font-family: Bemio;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 33px;
    /* identical to box height, or 165% */
    text-decoration-line: underline;
    color: #337DFF;
    margin-bottom: 20px;
    margin-top: 50px;
}

#mainDiv {
    height: 100%;
    width: 100%;
}


#titleDiv {
    padding-top: 50px;
    padding-bottom: 60px;
}

.centeredImage {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#joinGameDiv {
    text-align: center;
}

#tosDiv {
    margin-top:10px;
    font-size:small;
}

.twitchLoginButton {
    margin-top: 25px !important;
    width: 280px !important;
    background-color: #9146FF !important;
}

.textSpan {
    font-family: Bemio;
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 33px;
    /* or 127% */
    text-align: center;
    text-transform: uppercase;
    color: #344184;
}

.textSpanSmall {
    font-size: 14px;
    line-height: 20px;
}

.textSpanBig {
    font-size: 40px;
    line-height: 49px;
    /*TODO:*/
    /*should be bemio*/
}

.inputClass {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 300px;
    text-align: center;
    font-family: Bemio;
    font-style: normal;
    font-weight: normal;
    font-size: 40px;
    line-height: 49px;
    /* identical to box height */
    text-align: center;
    color: #344184;
    border: 3px solid #337DFF;
    box-sizing: border-box;
    border-radius: 10px;
}

.gameCodeInputClass {
    text-transform: uppercase;
    margin-top: 10px;
}

.nameInputClass {
    font-size: 30px;
    margin-top: 10px;
}

.buttonClass {
    width: 315px;
    height: 64px;
    background: #337DFF;
    border-radius: 41px;
    font-family: Bemio;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 33px;
    /* identical to box height, or 165% */
    text-align: center;
    color: #FFFFFF;
}

    .buttonClass:disabled,
    .buttonClass[disabled] {
        background-color: #337dff66;
    }

#waitingForGameToStartDiv {
    text-align: center;
}

.avatar-image-big {
    width: 58%;
    max-width: 300px;
    margin-bottom: 20px;
}

#startGameButton {
    margin-top: 40px;
}

#waitingForPlayersNonMvp {
    margin-top: 40px;
}

.fancyTiltedText {
    font-family: SignPainter;
    font-size: 49.6px;
    line-height: 58px;
    text-align: center;
    color: #344184;
    text-shadow: -2.5px 1.5px 0px #33C1FF;
    transform: rotate(-7deg);
}

#seeScreenDiv {
    text-align: center;
}

.helpIconsDiv {
    display: flex;
    justify-content: center;
}

.seeRoleDiv {
    margin-bottom: 10%;
    background: url(../images/pd-background-temp.png);
    width: 205px;
    height: 41px;
    color: #fff;
    border-radius: 20px;
    font-family: Bemio;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seeHelpDiv {
    margin-bottom: 10%;
    background: url(../images/pd-background-temp.png);
    width: 108px;
    height: 41px;
    color: #fff;
    margin-left: 20px;
    border-radius: 20px;
    font-family: Bemio;
    display: flex;
    justify-content: center;
    align-items: center;
}

#roundDiv {
    text-align: center;
    padding-top: 10%;
}

.roundDivChild {
    text-align: center;
}


.swiper-container-hInput {
    height: 120px;
}

.programmerHint {
    margin-bottom: 40px;
    color: #a88fad;
    border-color: #a88fad;
    opacity: 0.4;
}

.autoFitTextCentered {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: 75px;
}

#waitingForOtherPlayersDiv {
    text-align: center;
}

#votingDiv {
    text-align: center;
    padding-top: 10%;
}

.votingDivMainContainer {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -30px;
}

.votingDivHorizontalLayout {
    display: flex;
    flex-direction: row;
}

#votingDivPlayerContainer {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    text-align: center;
    /*overflow: auto;*/
    /* Eventually make it so the scroll box fits on screen */
}

    #votingDivPlayerContainer::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

.votingDivSide {
    flex-grow: 0;
    width: 57px;
}

.votingDivMiddle {
    flex-grow: 1;
}

/*This datalist the circle*/
.votingDivVoteDiv {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    border: 2px solid;
}

.votingDivRobotVoteDiv {
    border-color: #e63875;
}

.votingDivProgrammerVoteDiv {
    border-color: #9733e5;
}

.votingDivRobotVoteDiv.selectedVote {
    background-color: #e63875;
}

.votingDivProgrammerVoteDiv.selectedVote {
    background-color: #9733e5;
}

.votingDivPlayerDetails {
    font-family: Bemio;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 45px;
    align-items: center;
    text-align: center;
}

.votingDivPlayerName {
    color: #A88FAD;
    text-transform: uppercase;
}

.votingDivPlayerClue {
    color: #344184;
}

.votingDivLine {
    height: 1px;
    border: 1px solid #0D1C82;
    margin-top: 15px;
    margin-bottom: 15px;
}

#resultsDiv {
    text-align: center;
}

#feedbackDiv {
    text-align: center;
    background: url(../images/results-background.png);
    height: 100%;
}

#feedbackTextDiv {
    color: white;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

#leaveFeedbackButton {
    margin-top: 50px;
}

.socialIcon {
    margin-left: 10px;
    margin-right: 10px;
}

#enterWordsDiv {
    text-align: center;
    padding-top: 10%;
}

#enterWordsCategory {
    color: #4966f8;
    text-transform: uppercase;
}

#enterWordsScrollDiv {
    height: 180px;
    overflow: auto;
    display: grid;
    /* This doesn't work because the scrolling breaks for some reason */
    /*background-image: linear-gradient(to top, #000000 0%, rgba(0,0,0,1), rgba(0,0,0,0.75), rgba(0,0,0,0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

.enterWordsSubmittedListDiv {
    margin-top: 20px;
    align-self: end;
}

.pdTopSection {
    /*margin-top: 50px;*/
}

#pdSecretWordText {
    color: #fff;
}

#pdSecretWordInput {
    margin-top: 10px;
    color: #4966f8;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 300px;
    text-align: center;
    font-family: Bemio;
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 31px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
}

#pdRoleIcon {
    margin-top: 25px;
}

#pdRoleDiv {
    font-family: Bemio;
    font-size: 26px;
    line-height: 31px;
    text-align: center;
    color: #fff;
    margin-top: 15px;
}

#pdRoleText {
    font-family: Bemio;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.4px;
    color: #fff;
    margin-top: 30px;
}

#observerDivtemp {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #344184;
    font-family: Bemio;
    text-align: center;
    margin-top: 15px;
}

.observerIconDiv {
}

.observerTitleDiv {
    font-size: 26px;
    line-height: 31px;
}

.observerMessageDiv {
    font-size: 18px;
    line-height: 24px;
}

#observerDiv {
    min-height:100%;
}

.observerBackgroundImage {
    /* Set rules to fill background */
    min-height: 100%;
    max-height:100%;
    max-width:100%;
    /* Set up proportionate scaling */
    height: auto;
    /* Set up positioning */
    position: fixed;
    /* Align horizontally */
    left: 0;
    right: 0;
    margin: 0 auto;
}
