header {
    margin-bottom: 60px;
}
.brand-nav {
    background: #e20074;
    color: #fff;
    height: 80px;
}
.brand-logo img {
    width: 32px;
    height: auto;
}
.log-in-out-container {
    display: flex;
    align-items: center;
}
.log-in-out-container label{
    margin: 0;
    cursor: pointer;
}
.log-in-out-container button {
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    color: #fff;
    font-weight: bold;
    display: flex;
}
.log-in-out-container img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-left: 15px;
}
.data-container, .login-container {
    display: none;
}
.login-container {
    text-align: center;
}
.table-title {
    margin: 35px 0;
    font-weight: bold;
    font-size: 1.3em;
}
.data-container .table {
    margin-bottom: 35px;
}
td button {
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    color: #000bbf;
}
td button:hover {
    text-decoration: underline;
}
.modal-image {
    max-width: 465px;
    height: auto;
}
/* Loader */
.loader-body {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    text-align: center;
    background-color: rgba(255,255,255,0.75);
}
.loader-container {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -60px;
    border-radius: 10px;
}
.loader {
    border: 5px solid #e20074;
    border-top-width: 5px;
    border-top-style: solid;
    border-top-color: transparent;
    border-radius: 50%;
    border-top: 5px solid transparent;
    width: 110px;
    height: 110px;
    margin: 10px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}