@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    background: #ffffff url('../images/tło.svg') repeat;
    font-family: 'Inter', sans-serif;
}

.quizbox {
    width: 100%;
    /*height: 400px;*/
    background-color: #ffffff;
    border: 1px solid rgba(75, 75, 75, 0.6);
    border-radius: 8px;
    margin-top: 50px;
    padding: 30px;
    box-shadow: 0 0 8px #d0d0d0;
}

#controls {
    margin-top: 40px;

}

.question {
    display: block;
    background-color: white;
    border: 1px solid #0c4081;
    border-radius: 10px;
    line-height: 1.7;
    padding: 20px;
    transition-duration: .2s;
    margin-top: 10px;
    margin-bottom: 20px;
}

.question:hover {
    transform: scale(1.02);
    transition-duration: 0;
}

.question.selected {
    background-color: #0c4081;
    color: white;
}

.question.valid {
    background-color: #40bb2d;
    border: 1px solid #40bb2d;
}

.question.selected.invalid {
    background-color: #960000;
    border: 1px solid #960000;
}

.lesson {

    border: 1px solid #4C82EB;
    border-radius: 20px;
    min-height: 62px;
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    cursor: pointer;
}

.lesson:hover {
    transform: scale(1.02);
    transition-duration: .2s;
}

.topic {
    font-size: 16px;
    font-weight: 600;
}

.desc {
    font-size: 12px;
}

.activity {
    display: block;
    border: 1px solid #4C82EB;
    color: #2F6CE3;
    border-radius: 20px;
    margin-top: 10px;
    padding: 40px 40px 40px 40px;
    text-align: center;
    transition-duration: .2s;
    max-height: 143px;
}

.activity:hover  {
    transform: scale(1.02);
    transition-duration: .2s;
    cursor: pointer;
}

.activity > p {
    font-size: 14px;
}

.lesson-tile-icon {
    color: #ffffff;
    max-height: 30px;
}

.activity:hover > .lesson-tile-icon {
    color: white;
}

.lesson-heading {
    font-size: 24px;
    color: rgba(76, 130, 235, 1);

}


.navbar {
    margin-bottom: 20px;
    background: rgb(180, 206, 255);
}

.navbar-dark {
    background-color: rgb(180, 206, 255);
}

#app-navbar {
    background: rgb(180, 206, 255) url('../images/tłohamburger.svg') repeat;;
}

a.nav-link {
    color: black !important;
}

audio, .media {
    margin-top: 10px;
    margin-bottom: 20px;
}

#locked-heading {
    color: darkred;
    font-size: 24px;
}

.locked-desc {
    font-size: 18px;
}

.btn-unlock {
    background-color: rgb(25, 83, 218);
    border-radius: 20px;
    color: white;
    display: block;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-unlock:hover {
    background-color: rgba(76, 130, 235, 1);
    border-radius: 20px;
    color: white;
    display: block;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
}

#start-logo {
    max-width: 300px;
}

.form-control-lg {
    min-height: 100px !important;
    font-size: 5rem !important;
}

.simpleAudioPlayer {
    width: unset !important;
}

a.button {
    text-decoration: none;
    background-color: rgba(76, 130, 235, 1);
}

.topics-container {
    margin-bottom: 20px;
}
