/*#region view-tests */
article.view-tests {
}

article.view-tests > header {
    border-bottom: solid 1px #888;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

article.view-tests > content {
    padding: 10px;
}

article.view-tests > content > ul {
    list-style-type: none;
    padding: 0;
    display: inline-grid;
    grid-template-columns: 33% 33% 33%;
    grid-column-gap: 0;
}

article.view-tests > content > ul > li {
    padding: 10px;
}

article.view-tests > content > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: #ccc 1px 1px 5px;
    transition: all .5s .1s;
}

article.view-tests > content > ul > li > a:hover {
    box-shadow: #5e87eb 1px 1px 5px;
}

article.view-tests > content > ul > li > a > img {
    display: block;
    width: 100%;
    height: 250px;
    text-align: center;
    object-fit: contain;
}

article.view-tests > content > ul > li > a > h2 {
    font-size: 14px;
    text-align: center;
}

article.view-tests > content > ul > li > a > p {
    color: #888;
    font-size: 11px;
}

/*#endregion */

/*#region article.view-test-detail */
article.view-test-detail {
}

article.view-test-detail > header {
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

article.view-test-detail > section {
    padding: 10px;
    color: #888;
}

article.view-test-detail > content {
    padding: 20px;
    color: #888;
    font-size: 11px
}

article.view-test-detail > section > ul {
    list-style-type: none;
    display: grid;
    width: 50%;
    margin: 0 auto;
    grid-template-columns: 25% 25% 25% 25%;
    grid-gap: 10px;
    padding: 0;
}

article.view-test-detail > section > ul > li {
    box-shadow: rgba(0,0,250,.4) 1px 1px 5px;
    display: block;
    border-radius: 10px;
}

article.view-test-detail > section > ul > li > i {
    font-size: 60px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px;
}

article.view-test-detail > section > ul > li > label {
    width: 100%;
    text-align: center;
}

article.view-test-detail > section > ul > li > span {
    text-align: center;
    display: block;
    font-size: 30px;
    padding: 10px;
    color: #000;
}

article.view-test-detail > section > ul > li > span > small {
    color: #888;
    font-size: 18px;
}

/*#endregion */

/*#region article.run-test */
article.run-test {
}

article.run-test > header {
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

article.view-test-detail > content {
    padding: 20px;
}

article.run-test ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

article.run-test ul > li {
    border-bottom: dashed 1px #888;
    padding: 10px 0;
}

article.run-test ul > li[data-active='true'] {
    background: rgba(0,255,0,.15);
}

article.run-test ul > li > h2 {
    font-size: 16px;
    margin: 0 25%;
}

article.run-test ul > li > h2 > b::after {
    content: " - ";
}

article.run-test ol {
    list-style-type: none;
    margin: 10px 25%;
}

article.run-test ol > li {
    padding: 5px;
}

article.run-test ol > li > input {
    display: none;
}

article.run-test ol > li > input + label {
    color: #888;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s .1s;
}

article.run-test ol > li > input + label:hover {
    color: blue;
}

article.run-test ol > li > input:checked + label {
    color: green;
}

article.run-test ol > li > input + label::before {
    content: "\f021";
    font-family: "xfont";
    margin: 0 5px;
    font-size: 20px;
}

article.run-test ol > li > input:checked + label::before {
    content: "\f028";
}

/*#endregion */

/*#region article.view-user-test */
article.view-user-test {
}

article.view-user-test > header {
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

article.view-user-test > content {
    padding: 20px;
}

article.view-user-test ul {
    list-style-type: none;
    padding: 0;
}

article.view-user-test ul > li {
    display: block;
}

article.view-user-test ul > li > label {
    width: 150px;
    text-align: left;
}

article.view-user-test ul > li > label::after {
    content: " : "
}

article.view-user-test ul > li > span {
    color: #000;
    color: blue;
}

/*#endregion */


/*#region responsive */

/* Monitor */
@media (min-width: 768px) and (max-width: 992px) {
}

/* Tablet */
@media (min-width: 576px) and (max-width: 768px) {
    body > .container{
        max-width: 95%;        
    }

    article.view-tests > content > ul {
        grid-template-columns: 50% 50% ;
    }
    
    article.view-test-detail > section > ul {
        width: 95%;
        grid-template-columns: auto auto auto auto;
    }
    
    article.view-test-detail > section > ul > li > span {
        font-size: 18px;
    }
    
    article.view-test-detail > section > ul > li small {
        font-size: 16px !important;
    }
    
     article.run-test ol {
      margin: 0;
    }
    
     article.run-test ul > li > h2 {
        margin: 0 1%;
        font-size: 15px;
    }
    
      article.run-test ul > li ol label {
        font-size: 12px;
          text-align: justify;
    }

}

/* Phone */
@media (max-width: 576px) {    
    article.view-tests > content > ul {
        grid-template-columns: 100% ;
    }
    
    article.view-test-detail > section > ul {
        width: 100%;
        grid-template-columns: auto auto;
    }
    
    article.view-test-detail > section > ul > li > span {
        font-size: 16px;
    }

    article.view-test-detail > section > ul > li small {
        font-size: 14px !important;
    }
    
    article.run-test ol {
      margin: 0;
    }
    
    article.run-test ul > li > h2 {
        font-size: 16px;
        margin: 0 1%;
        font-size: 14px ;;
    }
    
      article.run-test ul > li ol label {
        font-size: 12px;
          text-align: justify;
    }

}

/*#endregion */


 
