/* Global */
table {
    padding: 5px;
    border: 0px;
}

tr>th,
tr>td {
    padding: 5px;
    border-left: 0px;
    border-right: 0px;
}

tr>th {
    border-top: 0px;
}

hr {
    margin-top: 0px;
}

.navbar-brand {
    margin-bottom: 0px;
}

.custom-file-label {
    overflow: hidden;
}

.card-title {
    margin-bottom: 0px;
}

.btn {
    border-radius: 50px;
}
#spinner-container {
    width: 100vw;
    height: 100vh;
    background-color: lightgray;
    opacity: 0.75;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

#spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    margin: -50px 0 0 -50px;
    border: 10px solid gray;
    border-radius: 50%;
    border-top: 10px solid var(--primary);
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* /Global */
/* Schüler.aspx */
.user-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.user-img-edit {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.tableusers>tr>td {
    height: 41px;
}

.tableusers-buttons {
    text-align: right;
}

.tableusers-buttons>a {
    width: 46px;
    height: 38px;
}

/* /Schüler.aspx */

/* Lektionen */
.card-subtitles {
    font-size: 0.75rem;
    color: lightgray;
}

.Fileupload {
    height: 100%;
}

.QuestionPicture {
    width: 100%;
}

label {
    padding-left: 5px;
}

.hidden {
    display: none;
}

.slide-in1,
.slide-in2 {
    z-index: 10;
    position: absolute;
    overflow: hidden;
    top: 10px;
}


.slide-in1.from-right,
.slide-in2.from-right {
    right: 0;
}

.slide-in-content {
    transition: transform .5s ease;
}

.slide-in1.from-right .slide-in-content,
.slide-in2.from-right .slide-in-content {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.slide-in1.show .slide-in-content,
.slide-in2.show .slide-in-content {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

/* /Lektionen */

/* Statistics */
.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8px;
}

.percentage {
    fill: #666;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}

.PercentCircle {
    width: 100%;
    padding: 5px;
}

.card-title-Statistics {
    color: #666;
}

.circle {
    fill: none;
    stroke-width: 2.8px;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.card-header {
    word-wrap: break-word;
    padding: 0.75rem 0.75rem;
}
/* /Statistics */

/* Edit */
.MailAsk {
    margin: auto;
    padding: 0;
}

.MailAsk-footer {
    display: inline-flex;
    padding: 0;
}

    .MailAsk-footer input[type="submit"] {
        width: 50%;
        border: none;
    }
/* /Edit */
