@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    border-collapse: collapse;
    font-weight: 400;
    outline: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

/* body {
    background-color: #f1f1f1;
} */

input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    line-height: 1.42857143;
    font-weight: 500;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

input:focus {
    border-color: #333;
}

.btn,
button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
    vertical-align: middle;
    touch-action: manipulation;
    background-color: #ddd;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    line-height: 1.42857143;
    border-radius: 4px;
    user-select: none;
}

.login {
    width: 400px;
    max-width: 90%;
    margin: 50px auto;
}

.login input {
    margin-bottom: 15px;
}

.pages {
    padding: 25px;
}

.tabs {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.tabs .active {
    background-color: #333;
    color: #fff;
}

table {
    width: 100%;
}

.table {
    min-height: 10px;
    background: #fff;
    overflow-x: auto;
    box-shadow: 0 2px 4px #ccc;
    margin-top: 10px;
}

td,
th {
    text-align: left;
    padding: 4px;
    border: 1px solid #ccc;
}

th {
    background: #eee;
    font-weight: 500;
    text-align: center;
}

tr:hover td {
    background-color: #eee;
}

h1#h1 {
    font-size: 150%;
    margin-bottom: 15px;
}

td a.cv {
    color: #f00;
    display: block;
    text-align: center;
}

td a:not(.cv) {
    display: block;
    text-align: center;
    background: #ddd;
    padding: 4px;
    white-space: nowrap;
    border-radius: 5px;
}

td a:not(.cv):hover,
td a:not(.cv):focus {
    background: #000;
    color: #fff;
}

.alerts {
    background: #333;
    color: #fff;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

td hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2px 0;
}

.logo {
    width: 180px;
    margin-top: 25px;
}

.h-logo {
    margin: 0;
    margin-right: 15px;
    vertical-align: middle;
    width: 150px;
}

/* users css*/
.card {
    user-select: none !important;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-top: 15px;
    min-height: 100vh;
    padding-bottom: 60px;
    flex-direction: column;
}

.card-body {
    margin: 15px 0;
    background: #fff;
    box-shadow: 0 2px 4px #ccc;
    border-radius: 4px;
    padding: 15px 25px;
    width: 950px;
    max-width: 90%;
}

.image {
    text-align: center;
}

.image p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image img {
    max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.form {
    margin-bottom: 15px;
}

.form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form label::after {
    content: ' *';
    color: #f00;
}

.card-body button:not(.prev)::after {
    content: '→';
    line-height: normal;
    vertical-align: top;
    margin-left: 10px;
}

.card-body button.prev::before {
    content: '←';
    line-height: normal;
    vertical-align: top;
    margin-right: 10px;
}


.card-body button:disabled:after {
    display: none;
}

.card-body button {
    color: #fff;
    background-color: #1e3b69;
}

.card-body button:hover,
.card-body button:focus {
    background-color: #00abb5;
}

button[disabled] {
    color: #333;
    background: #f1f1f1 !important;
}

.intro p {
    margin-bottom: 15px;
}

.intro img {
    max-width: 100%;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 21px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 5px;
    display: inline-block;
    height: 5px;
    left: 7px;
    top: 7px;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.container:hover input~.checkmark {
    background-color: #ccc;
}

.container input:checked~.checkmark {
    background-color: #1e3b69;
    border: 0;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked~.checkmark:after {
    display: block;
}

.container .checkmark:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    transform: scale(0.3);
}

.options {
    margin: 25px 0;
}

.progress p {
    position: relative;
}

.progress {
    position: fixed;
    z-index: 9;
    top: 223px;
    left: 0px;
    width: 170px;
    text-align: center;
    background: #fff;
}

.progress div {
    background: #ccc;
    height: 100%;
    width: 0;
    position: absolute;
}

.logout {
    position: fixed;
    right: 5px;
    top: 5px;
}

#times {
    position: fixed;
    top: 0;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    text-align: center;
    background: #ccc;
    border-radius: 0 0 5px 5px;
    padding: 4px 0;
}

.td p,
td p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.td p i,
td p i {
    font-style: normal;
    font-size: 11px;
    line-height: normal;
    text-align: right;
}

.task {
    margin-bottom: 25px;
}

.task p:first-child {
    font-size: 150%;
}

.task p {
    white-space: pre-wrap;
}

.time_practical {
    position: fixed;
    top: 0;
    left: 0;
    background: #ff5454;
    padding: 12px;
}

.time_practical p {
    color: #fff;
    text-align: right;
}