﻿@font-face {
    font-family: 'Lilita One';
    src: url('/Fonts/LilitaOne-Regular.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}

#gameOverSchoolScoreUpdatePanel {
    padding-bottom: 10rem;
}

.mainWhiteBackground {
    padding-bottom: 0rem !important;
}


.calculator {
    display: flex;
    flex-direction: column;
    width: 50%;
}


.calc-statusbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.correctPnlPerfectTen {
    border-radius: 100%;
    float: right;
    border: solid 4px black;
    background-color: black;
    background-image: url('/images/0ticksB.jpg');
    background-size: 100% 100%;
    padding-top: 25px;
    height: 100px;
    width: 100px;
    text-align: center;
    color: black;
}

.squareMarker {
    width: 3%;
    float: left;
    background-image: url('/images/counterWhite.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    margin-right: 1%;
}

    .squareMarker:before {
        content: "";
        display: block;
        padding-top: 100%;
    }




.timerPnlPerfectTen {
    border-radius: 100%;
    background-color: black;
    color: white;
    width: 7.5rem !important;
    height: 7.5rem !important;
    text-align: center;
    vertical-align: middle;
    padding: 2rem;
}

.timerPnl {
    border-radius: 100%;
    background-color: black;
    color: white;
    width: 7.5rem !important;
    height: 7.5rem !important;
    text-align: center;
    vertical-align: middle;
    padding: 2rem;
}


#timerLbl {
    font-family: 'Lilita One';
    font-size: 2.5rem;
}


.calc-count {
    display: flex;
    flex-direction: row;
}

.wrongPnlPerfectTen {
    display: none;
}

.correctPnlPerfectTen {
    border-radius: 100%;
    background-color: black;
    color: white;
    width: 7.5rem;
    height: 7.5rem;
    text-align: center;
    vertical-align: middle;
    padding: 4rem;
}

.wrongPnl {
    border-radius: 100%;
    background-color: #F14B4B;
    color: white;
    width: 6rem;
    height: 6rem;
    text-align: center;
    vertical-align: middle;
    padding: 2rem;
    margin: 0.5rem;
    font-family: 'Lilita One';
}

.correctPnl {
    border-radius: 100%;
    background-color: #20BF30;
    color: white;
    width: 6rem;
    height: 6rem;
    text-align: center;
    vertical-align: middle;
    padding: 2rem;
    margin: 0.5rem;
}

#scoreLbl {
    font-family: 'Lilita One';
}

#scoreWrongLbl {
    font-family: 'Lilita One';
}

.calcQuestionPanel {
    font-family: 'Lilita One';
    font-weight: 200;
    font-size: 4rem !important;
    color: black;
    padding: 0.5rem;
}

#questionWrongAnswerFeedbackLbl {
    font-family: 'Lilita One';
    font-weight: 200;
    color: black;
    padding: 0.5rem;
}

#questionSmallScreen {
    font-weight: 200;
    font-family: 'Lilita One';
    color: black;
    padding: 0.5rem;
}

.calc-question {
    font-weight: 200;
    font-family: 'Lilita One' !important;
    color: black;
}

.answerScreen {
    width: 100%;
    min-height: 5rem;
    text-align: center;
    background-color: #ffffff;
    border: solid 0.4rem #000000;
    border-radius: 10px;
    color: #000000;
    font-family: 'Lilita One';
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
}

.row1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.row2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.row3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.row4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.keyboardNewBtn {
    background: #1C70D8;
    color: white;
    font-family: 'Lilita One' !important;
    font-size: 4.5rem;
    border-radius: 1rem;
    width: 17rem;
    height: 8.5rem;
    border: none;
    box-shadow: inset -1rem -1rem 0rem 0rem rgba(0,0,0,0.25);
    margin: 1rem;
    padding-right: 2rem;
}


#keyboardDeleteBtn {
    background: #F14B4B;
}

#keyboardEnterBtn {
    background: #20BF30;
}

#countDownTimeLbl {
    font-size: 3.5rem;
    font-family: 'Lilita One';
}

#countDownStartLbl {
    font-family: 'Lilita One' !important;
}

/* TABLET */
@media only screen and (max-width: 1100px) {

    .calculator {
        width: 90%;
    }

    #keyboardDeleteBtn {
        font-size: 2.5rem;
    }

    #keyboardEnterBtn {
        font-size: 2.5rem;
    }
}



/* MOBILE */
@media only screen and (max-width: 550px) {
    .calculator {
        width: 100%;
    }
}


/* IPHONE SE SIZE */
@media only screen and (max-width: 390px) {
    .room {
        width: 100%;
        margin: auto;
    }

    .calculator {
        width: 100%;
        margin: auto;
    }

    .calcQuestionPanel {
        position: inherit !important;
        margin-left: 0 !important;
        font-size: 2.5rem !important;
    }

    .keyboardNewBtn {
        font-size: 2.5rem;
        height: 10vh;
        width: 17rem;
        margin: 0.1rem !important;
        padding-right: 2rem;
    }

    .mainWhiteBackground {
        padding-bottom: 0rem !important;
    }

    #questionWrongAnswerFeedbackLbl {
        display: none;
    }


    .correctPnlPerfectTen {
        padding: 0;
        width: 5rem !important;
        height: 5rem !important;
    }


    .timerPnl {
        width: 5.5rem !important;
        height: 5.5rem !important;
        padding: 1.5rem !important;
    }

    .timerPnlPerfectTen {
        width: 5.5rem !important;
        height: 5.5rem !important;
        padding: 1.5rem !important;
    }

    #timerLbl {
        font-size: 1.5rem;
    }
}



/* TABLET HEIGHT SIZE RESPONSIVE */
@media only screen and (max-height: 660px) {
    .keyboardNewBtn {
        height: 10vh;
        font-size: 4rem;
    }

    .room {
        width: 100%;
        margin: auto;
    }

    .calculator {
        margin: auto;
    }

    .calcQuestionPanel {
        text-align: center;
        position: absolute;
        top: 3rem;
        margin-left: 20%;
        font-size: 3rem !important;
    }

    .keyboardNewBtn {
        font-size: 3.5rem;
        height: 10vh;
        width: 17rem;
        margin: 0.5rem;
        padding-right: 2rem;
    }

    .mainWhiteBackground {
        padding-bottom: 0rem !important;
    }

    #questionWrongAnswerFeedbackLbl {
        display: none;
    }

    .answerScreen {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0;
    }
}
