﻿body {
    background: url('../img/testovi/back.webp');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobile-show {
    visibility: visible;
}

@media screen and (min-width: 600px) {
    .mobile-show {
        visibility: hidden;
        clear: both;
        float: left;
        margin: 10px auto 5px 20px;
        width: 28%;
    }
}

.transparent-back {
    width: 100%;
    height: 100%;
    z-index: -1000;
    background-color: #000000bb;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.transparent-back-fadeout {
    animation: mainscreen 3s forwards;
    -webkit-animation: mainscreen 3s forwards;
}

.intro-logo {
    animation: fadein 6s forwards;
    -webkit-animation: fadein 6s forwards;
}

.intro-content {
    animation: fadein 10s forwards;
    -webkit-animation: fadein 10s forwards;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes mainscreen {
    0% {
        background-color: #00000000
    }

    100% {
        background-color: #000000bb
    }
}

@keyframes mainscreen {
    0% {
        background-color: #00000000
    }

    100% {
        background-color: #000000bb
    }
}

.img-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

html, body {
    height: 100%;
}

.text-light {
    color: #ffffffff;
}

.text-dark {
    color: #000000;
}

.card-light {
    background-color: #ffffff;
}

.card-dark {
    background-color: #222222;
}

h3 {
    font-size: 1.2rem;
}

.answer {
    margin-bottom: 5px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

@media (min-width: 544px) {
    h3 {
        font-size: 1.5rem;
    }
    .answer {
        font-size: 1.2rem;
    }
}

/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {
    h3 {
        font-size: 1.8rem;
    }
    .answer {
        font-size: 1.5rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    h3 {
        font-size: 1.8rem;
    }
    .answer {
        font-size: 1.5rem;
    }
}

.hide {
    display: none !important;
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    h3 {
        font-size: 2rem;
    }
    .answer {
        font-size: 1.6rem;
    }
}

.arrow {
    text-align: center;
    margin: 8% 0;
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.answer-list {
    width: 100%;
}

.answer-active {
    color: white;
    background-color: #005995 !important;
    border-color: #2293de !important;
}

.answer-correct {
   /* color: white;
    background-color: #0071bc !important;*/
    border-color: #00ff1a !important;
    border-width: 5px;
}

.answer-wrong {
    /*color: white;
    background-color: #0071bc !important;*/
    border-color: #ff1212 !important;
    border-width: 5px;
}

.answer-missing {
    border-color: #ff1212 !important;
    border-width: 5px;
}

.answer-inactive {
    color: black;
    cursor: default;
}

.result-icon {
    font-size: 60px;
    right: -10px;
    bottom: -10px;
}

.not-answered {
    background-color: #ff1212 !important;
    color: white;
}

.question-panel {
    margin-top: 5rem;
}

.question {
    margin-bottom: 2rem;
    width: 100%;
    border-style: solid;
    border-radius: 5px;
    border-width: 1px;
    box-shadow: #55555566 8px 8px;
}

.question-title {
    font-size: 3.5rem;
}

.quick-link {
    background-color: #4caf50;
    color: white;
}

.canvas-overlay {
    opacity: 0;
    z-index: -1;
}

.canvas-overlay.show {
    opacity: 0.95;
    z-index: 1100;
    background-color: white;
}

.canvas {
    top: 0;
    width: 0;
    z-index: 1110;
    overflow-x: hidden;
    overflow-y: auto;
}

.canvas-left {
    left: 0;
    z-index: 1111;
}

.canvas-right {
    right: 0;
}

.canvas-anim {
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
}

.intro-text {
    color: white;
    
}