body,
html {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}
.animate {
    animation-name: animatebody;
    animation-duration: 1s;
}

@keyframes animatebody {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Short {
    width: 100%;
    background-color: #dc3545;
    margin-top: 5px;
    height: 3px;
    color: #dc3545;
    font-weight: 500;
    font-size: 12px;
}
.Weak {
    width: 100%;
    background-color: #ffc107;
    margin-top: 5px;
    height: 3px;
    color: #ffc107;
    font-weight: 500;
    font-size: 12px;
}
.Good {
    width: 100%;
    background-color: #28a745;
    margin-top: 5px;
    height: 3px;
    color: #28a745;
    font-weight: 500;
    font-size: 12px;
}
.Strong {
    width: 100%;
    background-color: #d39e00;
    margin-top: 5px;
    height: 3px;
    color: #d39e00;
    font-weight: 500;
    font-size: 12px;
}
.nav {
    animation-name: animate-nav;
    animation-duration: 0.65s;
}

@keyframes animate-nav {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.circle {
    margin: 100px auto;
    height: 40px;
    width: 40px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #292524;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.modal {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.ms-choice > span.placeholder {
    color: #999;
    padding: 7px;
}

.ms-choice > span {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding-left: 10px;
    padding-top: 5px;
}
