/* ---------- KVÍZ - hlavička kvízu (vidíme při luštění) ---------- */

.quiz-header
{
    width: 100%;
    min-height: 6.25rem;
    color: rgba(205, 134, 63, 0.9);
}

.quiz-header i
{
    font-size: 0.85rem;
    color: rgba(205, 134, 63, 0.4);
    width: 1.125rem;
}

.quiz-header .quiz-header-name h2
{
    padding-top: 0.5rem;
}

.quiz-header .quiz-header-left
{
    float: left;
    width: 70%;
}

.quiz-header .quiz-header-right
{
    float: right;
    text-align: right;
}

/* ---------- KVÍZY - tělo kvízu s otázkami (vidíme při luštění) ---------- */

.quiz-content i
{
    font-size: 0.85rem;
    color: rgba(205, 134, 63, 0.4);
    width: 1.125rem;
}

.quiz-content img
{
    max-width: 9.375rem;
    max-height: 9.375rem;
}

.quiz-content .quiz-question
{
    padding-top: 1.25rem;
    max-width: 70%;
}

.quiz-content .quiz-question .quiz-question-header
{
    padding-bottom: .625rem;
}

.quiz-content .quiz-question .quiz-question-name
{
    color: rgba(205, 134, 63, 0.6);
}

.quiz-content .quiz-question .quiz-question-name i
{
    font-size: 0.85rem;
    color: rgba(205, 134, 63, 0.4);
    width: 1.125rem;
}

.quiz-content .quiz-question .quiz-question-answers
{
    padding-left: .625rem;
}

/* ---------- KVÍZ - tlačítko odpovědět (vidíme při luštění) ---------- */

.quiz-content .btn
{
    margin-bottom: 1.2rem;
}

.quiz-content .quiz-answer-btn
{
    text-align: center;
    padding-top: 2rem;
}

/* ---------- KVÍZY - úvod sekce (výběr systému luštění kvízu) ---------- */


#quiz-top-intro-text
{
    padding-bottom: 1.25rem;
}

.quiz-mode-selection
{
    padding-bottom: 1.25rem;
    border-bottom: 1px ridge rgba(205, 134, 63, 0.6);
}

/* ---------- RADIO BUTTON (výběr správné odpovědi v kvízu) ---------- */

.quiz-content [type="radio"]:checked, 
.quiz-content [type="radio"]:not(:checked)
{
    position: absolute;
    left: -625rem;
}

.quiz-content [type="radio"]:checked + label, 
.quiz-content [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 1.75rem;
    cursor: pointer;
    line-height: 1rem;
    display: inline-block;
}

.quiz-content [type="radio"]:checked + label:before, 
.quiz-content [type="radio"]:not(:checked) + label:before
{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgb(205, 134, 63);
    border-radius: 100%;
    background: black;
}

.quiz-content [type="radio"]:checked + label:after, 
.quiz-content [type="radio"]:not(:checked) + label:after
{
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.quiz-content [type="radio"]:not(:checked) + label:after
{
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.quiz-content [type="radio"]:checked + label:after
{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ---------- CHECKBOX BUTTON (více správných odpovědí u kvízu) ---------- */

.quiz-content [type="checkbox"]:checked, 
.quiz-content [type="checkbox"]:not(:checked)
{
    position: absolute;
    left: -625rem;
}

.quiz-content [type="checkbox"]:checked + label, 
.quiz-content [type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 1.75rem;
    cursor: pointer;
    line-height: 1rem;
    display: inline-block;
}

.quiz-content [type="checkbox"]:checked + label:before, 
.quiz-content [type="checkbox"]:not(:checked) + label:before
{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgb(205, 134, 63);
    border-radius: .2rem;
    background: black;
}

.quiz-content [type="checkbox"]:checked + label:after, 
.quiz-content [type="checkbox"]:not(:checked) + label:after
{
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 3px;
    left: 3px;
 /*   border-radius: .2rem;  */
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.quiz-content [type="checkbox"]:not(:checked) + label:after
{
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.quiz-content [type="checkbox"]:checked + label:after
{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ---------- KVÍZ - zobrazení výsledků ---------- */

.quiz-header-name
{

}

.quiz-result-answer
{

}

.quiz-answer-correct-provided
{
    color: rgb(0, 153, 0);
}

.quiz-answer-correct-provided img
{
    border: solid 1px rgb(0, 153, 0);
}

.quiz-answer-correct-unprovided
{
    color: rgb(0, 153, 0);
}

.quiz-answer-correct-unprovided img
{
    border: solid 1px rgb(0, 153, 0);
}

.quiz-answer-false-provided
{
    color: rgb(255, 0, 0);
}

.quiz-answer-false-provided img
{
    border: solid 1px rgb(255, 0, 0);
}

.quiz-answer-neutral
{

}

.quiz-result-detail
{
    font-size: 1rem;
    padding: 1.5rem;                   
}

#quiz-result-hidder
{
    cursor: pointer;
    background: rgb(16, 9, 3);
    text-align: center;
    border-bottom: 1px solid rgba(205, 134, 63, 0.4);
    border-top: 1px solid rgba(205, 134, 63, 0.4);
    height: 2.8rem;
}

#quiz-result-hidder:hover
{
    background: rgb(34, 19, 7);
}

#quiz-result-hidder:hover #quiz-result-collapsed-text
{
    background: rgb(34, 19, 7);
}

#quiz-result-collapsed-text
{
    background: rgb(16, 9, 3);
    color: rgba(205, 134, 63, 1);
    position: relative;
    top: -1.2rem;
    padding: 0.48rem;
}

#quiz-result-collapsed-line
{
    display: block;
    padding-top: 0.8rem;
    border-bottom: 1px solid rgba(205, 134, 63, 0.4);
}

#quiz-result-questions-container
{

}

#quiz-result-questions
{

}

/* ---------- KVÍZ - přidáno nového kvízu ---------- */

#quiz-new-quiz-crossroads, #quiz-category-selection
{
    width: 100%;
    border-width: 0px 0px 1px 0px;
    border-bottom: 1px solid rgba(205, 134, 63, 0.6);
    margin-top: 2rem;
}

.quiz-select-button, .quiz-category-button
{
    border: 1px solid rgba(205, 134, 63, 0.75);
    border-bottom: 0px !important;
    border-bottom-left-radius: 0rem !important;
    border-bottom-right-radius: 0rem !important;        
    border-top-right-radius: .65rem;
}

.quiz-select-button, .quiz-category-button i
{
    font-size: 0.95rem;
}   

.quiz-new-question-delete
{
    color: rgba(255, 0, 0, 1);
}

.quiz-new-question-delete i
{
    color: rgba(255, 0, 0, 1);
}

/* ---------- KVÍZ - výběr z jednotlivých sekcí a filtry ---------- */

#filter-text
{
    display: block;
    width: 100%;
    height: calc(1.5em + 0.5rem + 2px);
    color: rgba(205, 134, 63, 1);
    background-color: rgb(0, 0, 0);
    background-clip: padding-box;
    border: 1px solid rgba(205, 134, 63, 0.75);
    border-radius: 0.2rem;
    line-height: 1.0;
    padding: 0.25rem 0.5rem;
}

#quiz-category-content
{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.quiz-big-label
{
    width: 325px;
    height: 7.2rem;
    margin: .5rem;
    border-bottom: 1px solid rgba(205, 134, 63, 0.3);
    border-bottom-style: dashed;
    cursor: pointer;
}

.quiz-label-picture
{
    float: left;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    border: 5px solid rgba(205, 134, 63, 0.5);
    margin: 5px 20px 5px 5px;
}

.quiz-label-picture img
{
    width: 84px;
    height: 84px;
    border-radius: 100%;
    margin-left: -2px;
    margin-top: -2px;
}

.quiz-label-header
{
    float: left;
    font-size: large;
    font-weight: 500;
    margin-top: .3rem;
    width: 210px;
}

.quiz-label-description
{
    float: right;
    font-size: 0.9rem;
    font-style: italic;
    width: 210px;
}

/* ---------- KVÍZ - Výběr kvízu z jedné kategorie ---------- */

.quiz-list-header {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(205, 134, 63, 0.3);
    border-bottom-style: dashed;
}

.quiz-label-header-detail
{
    font-size: large;
    font-weight: 500;
    margin-top: .3rem;
    width: 100%;
}

.quiz-label-description-detail
{
    font-size: 0.9rem;
    font-style: italic;
    width: 50%;
}

.quiz-list-specific-quiz
{
    width: 350px;    
}                       

/* REPORT */

#quiz-report-form, #quiz-new-quiz-header
{
    margin-top: 1rem;
}

.quiz-form-label
{
    float: left;
    width: 250px;
    height: 28px;
    font-size: 0.95rem;
    padding: 10px 0px 0px 15px;
}

.quiz-form-input
{
    float: left;
    width: 500px;
}

.quiz-form-input input
{
    color: rgba(205, 134, 63, 0.8);
    background-color: rgba(34, 19, 7, 0.5);
    border: 1px solid rgba(205, 134, 63, 0.5);
    width: 500px;
    height: 30px;
    margin: 10px 0px 5px 5px;
    padding: 5px 5px 5px 7px;
    border-radius: .2rem;
}

#quiz-report-form textarea
{
    width: 500px;
    height: 80px;
    margin: 10px 0px 5px 5px;
    padding: 5px 5px 5px 7px;
    border-radius: .2rem;
}

#quiz-report-form button
{
    margin-left: 255px;
}

.quiz-form-select
{
    color: rgba(205, 134, 63, 0.8);
    background-color: rgba(34, 19, 7, 0.5);
    border: 1px solid rgba(205, 134, 63, 0.5);
    width: 300;
    height: 30px;
    margin: 10px 0px 5px 5px;
    padding: 3px 18px 7px 5px;
    border-radius: .2rem;
}
 
.quiz-form-select option
{
    background-color: rgb(34, 19, 7);
}

.quiz-form-radios
{
    margin-top: 10px;
    margin-left: 20px;
    float: left;
}                      

.quiz-form-radios input[type="radio"]
{
    display: none;
}  

.quiz-form-radios label
{
    display: inline-table;
    border: 1px solid rgba(205, 134, 63, 0.5);
    border-radius: .2rem;
    transition: 0.3s ease-in-out;
    padding-top: 3px;
    text-align: center;
    width: 100px;
    height: 30px;
}

.quiz-form-radios label:hover {
    background-color: rgb(34, 19, 7);
}

.quiz-form-radios input[type="radio"]:checked + label
{
    background-color: rgb(34, 19, 7);
    font-weight: 500;
}

#quiz-variable-content #quiz-id-specific .button-delete-quiz
{
    float: right;     
}

.quiz-filter-reviewer {
    border: 1px solid rgba(205, 134, 63, 0.75);
    border-radius: 5px 0px 0px 5px;
    background-color: #111111;
    padding: 2px 5px 2px 5px;
    width: 100px;
    color: rgba(205, 134, 63, 1);
    font-size: x-small;    
}

.quiz-filter-remover {
    margin-right: 10px;
    border: 1px solid rgba(205, 134, 63, 0.75);
    border-radius: 0px 5px 5px 0px;
    background-color: #111111;
    padding: 2px 5px 2px 5px;
    color: rgba(205, 134, 63, 1);
    font-size: x-small;
}

