/* ogólne */
body{
    font-family: sans-serif;background-color: bisque;
}
*{
    box-sizing: border-box;
    margin: auto;
    padding: 0
}
input{
    padding: 5px;
    font-size:1.2em;
    width:100%;
    margin: 1px
}
a{
    text-decoration: none;
    font-weight: 600;
    color:#666;
    transition: 0.3s;
}
a:hover{
    color: #000
}
/* logowanie */
#logowanie, #start{
    position: absolute;
    top:    0;
    bottom: 0;
    left: 0;
    right: 0;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(120,120,120,0.8);
}
#logowanie > div{
    width: 300px;
    border:3px solid #666;
    background-color:#aaa;
    border-radius: 5px;
    padding: 20px
}
#logowanie > div > div > div{
    margin-bottom: 10px;
    text-align: center;
    padding: 10px 0;
    font-weight: bold
}
/* test właściwy info*/
.opis-testu-wstep{
    font-weight: 1.5em;
    padding: 25px;
    line-height: 1.4em
}
.opis-testu-wstep::first-letter{
    padding-left: 25px
}
#start{
    background-color: rgba(0,0,120,0.8);
}#start > div{
    width: 500px;
    background-color: aliceblue;
    border-radius:5px;
    border: 3px solid rgba(200,0,200,0.5);
}
#go{
    display: none;
}
#pasek-postepu{
    height:3px;
    background-color: brown;
    width: 0
}
/* test właściwy */
#test{
    position: absolute;
    top:    0;
    bottom: 0;
    left: 0;
    right: 0;
    /* display:flex; */
    /* align-items: center; */
    /* justify-content: center;  */
    margin: 20px
}
#test > div{
    width: 100%;
    padding: 20px 0
}
#wizytowka{
    background-color:bisque;
    font-size: 1.1em;
    padding: 10px;
    display:flex;
    border: 3px solid rgb(214, 180, 137);
    border-bottom: 0;
    border-radius: 5px 5px 0 0
}
.naglowki{
    padding:5px 10px;
    margin-left:10px;
    border: 3px solid bisque;
    border-bottom: 0;
    width: 120px;
    margin-bottom: -2px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
}
#test-pytania{
    background-color:rgb(214, 180, 137);
    font-size: 1.1em;
    padding: 20px;
    border-radius: 0 0 5px 5px   
}
#test-pytania #div-img{
    text-align: center;
    border-radius:5px;
    margin:3px
}
#test-pytania img{
    border: 3px solid bisque;
    border-radius:5px;
}

#test-pytanie{
    padding: 10px;
    border: 3px solid bisque;
    border-radius: 5px;
    margin-bottom:20px
}
#test-odpowiedz{
    
}
#timer{
    text-align: center;
    padding:5px;
    font-size: 1.2em;
    border: 3px solid rgb(214, 180, 137);
}
#timer b{
    color:brown;
    font-size: 1.2em
}
#zakoncz{
    text-align: center;
    padding: 20px;
}
#test-odpowiedz #odp-label{
    padding: 10px;
    border: 3px solid bisque;
    border-radius: 5px;
    margin: 2px 0;
    display:flex;
    cursor: pointer;
    transition: 0.4s;
}
#test-odpowiedz #odp-label:hover{
    background-color: rgb(212, 158, 90);
}
#test-odpowiedz #odp-label > div:nth-child(1){
    width: 5%;
    text-align: center
}
#test-odpowiedz #odp-label > div:nth-child(2){
    width: 95%
}
#test-odpowiedz input[type="submit"]{
    margin-top: 10px
} 
table{
    text-align: left
}
table,td,caption{
    padding: 10px;
    border-bottom: 3px solid bisque;
    border-collapse: collapse;
}
caption{
    padding-bottom:1 5px
}
td:nth-child(2){
    font-weight: bold;
}
/* odpowiedzi ucznia */
.odpowiedzi-ucznia{
    border: 3px solid rgb(116, 68, 6);
    padding:10px;
    border-radius:5px;
    margin-top: 25px;
}
.odpowiedzi-ucznia > div{
    border: 3px solid bisque;
    padding:10px;
    border-radius:5px;
    margin-top: 5px; 
}
.odpowiedzi-ucznia > div:nth-child(1){
    border: 3px solid rgb(116, 68, 6);
    border-radius:5px;
    margin-bottom: 15px; 
    font-weight: 600;
}
.odpowiedzi-ucznia > div > span{
    font-size: 0.8em; 
    font-weight: bold;
    color: #fff;
    font-style: italic;
}