.question-card {
    padding: 1rem;
}

.cgos-logo {
    width: 7rem;
}

#menu_SVP_form {
    line-height: 1.7rem;
}

.menu:after
{
    position: absolute;
    left: calc(50% - 20px);
    width: 40px;
    border-width: 0 0 3px 0;
    border-color: #E32259;
    border-style: solid;
    content: ' ';
    margin-top: 2rem;
}

.button-like {
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.button-like:hover {
    color: grey !important;
    transition: 0.2s;
}

/* Modal */

.modal-body, .modal-body p {
    font-size: 0.9rem;
}

.modal-body label {
    margin-bottom: 0;
}

.modal-body input, .modal-body textarea {
	padding: 0.2rem 0.5rem;
	margin-bottom: 1rem;
}

.modal-body input:disabled {
    background-color: gainsboro;
}

.modal-body input[invalid=true], .modal-body textarea[invalid=true] {
    border: 1px solid red;
}

.mandatory {
    font-size: 1.3rem;
}

.star-mandatory {
    font-weight: bold;
    color: red;
    font-size: 1.3rem;
}


/* Loading cover */
#loading-cover {
    position: absolute;
    width: 100%;
    left:0; right:0; top:0; bottom:0;
    opacity: 0.5;
    background-color: #2D2D2D;
    z-index: 10000;
    display: none;
}
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.loading-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: loading-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.loading-spinner div:nth-child(1) {
    animation-delay: -0.45s;
}
.loading-spinner div:nth-child(2) {
    animation-delay: -0.3s;
}
.loading-spinner div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes loading-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}