* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #F3f3f3;
    height: 100%;
}

.content {
    width: 450px;
    margin: 0 auto;
    background-color: white;
    height: 100vh;
    padding: 50px 30px 0 30px;
}

#txtAreaHdr {
    height: 70px;
}

footer {
    background-color: white;
    margin: -50px auto 0 auto;
    width: 400px;
    height: 50px;
    border-top: 1px solid #e9ecef;
    padding: 15px;
    font-size: 12px;
}

#login-modal-body {
    text-align: center;
}

label {
    margin-left: 4px;
}

h1 {
    margin-top: 10px;
}

h1 img {
    margin: -7px 3px 0 2px;
}

.link-post {
    margin-bottom: .5rem;
    float: right;
    display: none;
}

.group-label {
    user-select: none;
}

.group-label:hover {
    font-weight: 600 !important;
    cursor: pointer;
}

.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loader-mini-test {
    border: 4px solid #3498db;
    /* Light grey */
    border-top: 4px solid #f3f3f3;
    /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    float: right;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}