@font-face {
    font-family: 'MyriadProItalic';
    src: url('font/Myriad Pro Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'BradleyHandITC';
    src: url('font/BRADHITC.TTF') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'MyriadProItalic';
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
p,
b,
i {
    cursor: default;
}

.base-scene-screen,
.start-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.absolute-position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.words-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.base-scene-screen {
    display: none;
    opacity: 0;
}

.start-screen img {
    width: 100%;
}

.start-screen .sublogo {
    margin-top: 0.7%;
    width: 20%;
    position: absolute;
    top: 15%;
    left: 41%;
    height: 4%;
    background-image: url("../Images/britanica_logo_white.png");
    background-position: center;
    background-repeat: no-repeat;
}

.start-screen .start-button {
    border: 1px solid #10448F;
    width: 20%;
    height: 8%;
    font-weight: 400;
    font-size: 30px;
    border-radius: 20px;
    margin: auto auto;
    left: 0;
    right: 0;
    color: #10448F;
    cursor: pointer;
    margin-top: 13%;
}

.start-screen .start-button .image {
    width: 22%;
    height: 100%;
    background-image: url("../Images/start.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    float: left;
}

.start-screen .start-button .text {
    width: calc(100% - 22%);
    height: 100%;
    line-height: 189%;
    text-align: center;
    font-size: 2.2vw;
    float: left;
}

.start-screen h1 {
    text-align: center;
    color: #10448F;
    margin-top: 6.5%;
    font-size: 5vw;
}

.scenesubwindow {
    z-index: 11;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
}


/* TABLET BUTTON START */

.tablet-button {
    z-index: 6;
    background-image: url('images/Tablet_real.png');
}

.tablet-animation-pulse {
    animation: table-animation 1s linear infinite;
}

@keyframes table-animation {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

.tablet-button:hover {
    -webkit-animation: none;
    animation: none;
    cursor: pointer;
}


/* TABLET BUTTON END */


/* ---------------------- */

.left {
    left: -50%;
    position: absolute;
    width: 50%;
    background-color: black;
    height: 100%;
    z-index: 1000;
}

.right {
    left: 100%;
    position: absolute;
    width: 50%;
    background-color: black;
    height: 100%;
    z-index: 1000;
}


/* ----------------------- */


/* Progress bar START */

.progress {
    position: absolute;
    top: 6%;
    left: 4%;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
    width: 35%;
}

.progress-bar {
    background-color: #026881;
}


/* Progress bar End */


/* Next button start */

.button-next {
    cursor: pointer;
    z-index: 100;
    background-image: url('images/forward_real.png');
}


/* Next button end */


/* Correct answers button start */

.correct-answers {
    cursor: pointer;
    z-index: 10;
    background-image: url('images/button_question_real.png');
}


/* Correct answers button end */


/* Speech to text button animation start */

.speech-to-text-button-animation {
    animation: speech-button-animation 1s linear infinite;
}

@keyframes speech-button-animation {
    0% {
        /* transform: scale(1, 1); */
        filter: drop-shadow(0px 0px 10px rgb(255, 165, 0));
    }
    50% {
        /* transform: scale(1.2, 1.2); */
        filter: none;
    }
    100% {
        /* transform: scale(1, 1); */
        filter: drop-shadow(0px 0px 10px rgb(255, 165, 0));
    }
}


/* Speech to text button animation stop */


/* Map */


/* Responsive elements */

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}


/* Mobile Devices */

@media (max-width: 768px) {}


/* Tablets */

@media (min-width: 769px) and (max-width: 1024px) {}


/* PC Part */

@media (min-width: 1024px) {}