/*
    General style
*/
?@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800');

html, body {
    font-family: "Open Sans", sans-serif;
    height: 100%;
}

::selection {
    background: var(--mud-palette-primary);
    color: #FFF
}

a, .btn-link {
    color: var(--mud-palette-primary);
}

h1.page-title {
    margin-top: 25px;
    font-weight: 100;
    font-size: 30px;
    color: #2CB8A5;
    margin-bottom: 25px;
}

h1.page-title-no-margin {
    font-weight: 100;
    font-size: 30px;
    color: #2CB8A5;
}

.nav-bar {
    border-bottom: 25px solid transparent;
    border-image: linear-gradient(to right, #00566B, #2CB8A5);
    border-image-slice: 1;
}

.splash-screen {
    margin-top: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #00566B;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.center-page {
    position: fixed;
    top: 50%;
    left: 50%;
}

/*
    Table style
*/
.custom-table thead th {
    color: var(--mud-palette-primary) !important;
}

.section {
    background-color: #F7FBFD;
    margin-right: 30px;
    margin-bottom: 30px;
    padding: 30px;
    min-height: 155px;
}

.section-label {
    color: #00566b;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.template-label {
    float: left;
    margin-right: 30px;
}

.selected-diploma {
    margin-bottom: 20px;
}

.diploma-title-secondary {
    font-size: 12px;
    color: gray;
}

.toggle-button {
    margin-left: -7px;
}

.diploma-delete-button {
    display: none;
}

.template-table .delete-template-button {
    display: none;
}

.template-table tr:hover .delete-template-button {
    display: inline-block;
}

.mud-table-head .header-centered th {
    text-align: center;
}

.border-right {
    border-right: rgb(215, 215, 215) solid 2px;
}

.border-left {
    border-left: rgb(215, 215, 215) solid 2px;
}

#htmlDivToPrint {
    display: none;
}

#htmlTableToPrint th, #htmlTableToPrint td {
    text-align: center;
}