/* Google Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Root */
* {
    font-family: "Inter", sans-serif;
}
body {
    background: #f0f0f0;
}
td {
    vertical-align: middle!important;
}
td a.item-link {
    color: #17202A!important;
    display: block;
}
td a.item-link:hover {
    text-decoration: none;
}

/* General */
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fff;
    opacity: 0.5;
    position: fixed;
    width: 100%;
    z-index: 1100;
    visibility: hidden;
}
.loader img {
    width: 80px;
    animation: loader-spin 1s linear infinite;
}
@keyframes loader-spin {
    50% {transform: rotate(180deg);}
    100% {transform: rotate(720deg);}
}


/* Login Page */
.login-page {
    background: #17202A;
}
.login-page .card-header {
    font-size: 30px;
}
.login-page .card-footer a {
    color: #212529;
}

/* Jumbotron */
.jumbotron {
    padding: 30px;
    background: #444444;
    color: #ffffff;
    border-radius: none !important;
}

/* Tail Plugin*/
.tail-select {
    width: 100%;
    display: block;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    color: #333333;
}
footer a {
    color: #333333!important;
}

.mylink {
    display: block;
    color: #333333;
    text-decoration: none!important;
}
.mylink:hover {
    color: #1e7e34;
}

.form-control[readonly] {
    background: #ffffff;
}