﻿h4 {
    margin: 0px;
    font-size: 1.3rem;
}

.questionList {
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 12px;
    box-shadow: 2px 2px 5px hsl(0, 0%, 60%);
    padding: 1rem 1rem 2rem 1rem;
    height: var(--peekobot-height);
    position: relative;
    width: 400px;
}

.questionNotes {
    display: none;
    position: fixed;
    background-color: white; /*lightgray;*/
    height: 100%;
    margin-top: 50px;
    top: 0px;
}

.factsList {
    position: fixed;
    /*background-color: #dddddd;*/
    height: 100%;
    margin-top: 50px;
    top: 0px;
    padding: 0;
    margin-left: 400px;
}

    .factsList > ul {
        /*list-style: none;*/
        margin: 5px;
        padding-left: 20px;
    }

/*.factsCollapsed > .questionList {
    width: 50%;
}

.factsCollapsed > .questionNotes {
    overflow: auto;
    margin-left: 50%;
    width: 45%;
}

.factsCollapsed > .factsList {
    margin-left: 95%;
    width: 30%;
}

.factsExpanded > .questionList {
    width: 35%;
}

.factsExpanded > .questionNotes {
    margin-left: 35%;
    width: 35%;
}

.factsExpanded > .factsList {
    margin-left: 70%;
    width: 30%;
}*/


.note > p {
    max-width: 90%;
}

.note {
    margin: 20px;
}

.question {
    border-bottom-color: black;
    margin-right: 0;
    margin-bottom: 1.5rem;
}

.selectedQuestion {
    margin-right: 0;
}

.questionText {
    display: block;
    margin: 1rem;
    padding: 0.5rem;
    cursor: hand;
    background: lightgoldenrodyellow;
}

.questionNote {
    display: block;
    margin: 1rem;
    padding: 0.5rem;
}

.answerOption {
    color: hsl(0, 0%, 80%);
    border-color: hsl(0, 0%, 80%);
    display: inline-block;
    outline: none;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-left: 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

.answerButton {
    display: inline-block;
    outline: none;
    border: 1px solid hsl(0, 0%, 0%);
    padding: 0.3rem 0.8rem;
    background-color: hsl(0, 0%, 100%);
    border-radius: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-left: 1.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.answerSelected {
    display: inline-block;
    outline: none;
    border: 1px solid hsl(0deg 0% 0% / 0%);
    padding: 0.3rem 0.8rem;
    background-color: hsl(134deg 96% 56%);
    border-radius: 1rem;
    font-size: 1.3rem;
    line-height: 1.1;
    margin-left: 1.5rem;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.noteHidden {
    display: none;
}

.fa-undo {
    margin: 10px;
    display: inline;
}

.faInactive {
    display: none;
}

.fact {
    margin: 10px;
}

.factsCollapseExpand {
    display: none;
    width: 40px;
    height: 40px;
    margin: 10px;
    font-size: 2em !important;
}

.tooltip-text {
    visibility: hidden;
    top: -32000px;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-color: #ffff99;
    border-radius: 0px;
    margin: 5px;
    padding: 10px 20px;
    border-style: solid;
    border-width: 1px;
}

.hover-text:hover .tooltip-text {
    transition-delay: 0.1s;
    visibility: visible;
    top: unset;
}
