.logo_image {
    margin: 60px 20px;
    width: 300px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

.center_div {
    margin: auto;
    padding: 20px;
    max-width: 1400px;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

.search_form {
    margin: 0px 20px;
    align-items: end;
}

.loading_table {
    margin: auto;
}

.form-label {
    font-size: 14px;
    margin-bottom: 2px;
}

.appbar {
    height: 58px;
    display: flex;
    padding: 0px 36px;
    background-color: #e3e3e3;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.appbar_image {
    height: 32px;
}

.remove_border {
    border: none !important;
}

.form_group_matricula {
    visibility: hidden;
}

.results_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 6px 12px;
}

.loading_panel {
    margin: auto;
}

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

    100% {
        transform: rotate(360deg);
    }
}