td {

}











.bg-login-image {
    background: url("/assets/grfx/svg/undraw_complete_task_u2c3.png");
    background-position: center;
    background-size: cover;
}

.bg-password-image {
    background: url("/assets/grfx/svg/undraw_forgot_password_gi2d.png");
    background-position: center;
    background-size: cover;
}

.bg-activate {
    background: url("/assets/grfx/svg/undraw_welcome_3gvl.png");
    background-position: center;
    background-size: cover;
}

.bg-not-found-image {
    background: url("/assets/grfx/svg/undraw_Artificial_intelligence_oyxx.png");
    background-position: center;
    background-size: cover;
}

.bg-login-image img, .bg-password-image img, .bg-not-found-image img {
    max-width: 50%;
    max-height: 50%;

    display: block;

    margin: auto;
    margin-top: 20%;
}

.manual-img {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 20px;

    border: 1px solid #dee2e6;
    border-radius: .25rem;
}

.license {
    background: url("/assets/grfx/license.jpg");
    color: #000;
    width: 100px;
    height: 22px;
    padding-top: 2px;
    text-align: center;
    font-size: 10pt;
    font-weight: bold;
}

.center {
    text-align: center;
}

.error {
    color: #5a5c69;
    font-size: 3rem;
    position: relative;;
    line-height: 1;
    width: 5.5rem;

}


.block
{
    background-color: #fff;
    padding: 25px;
    border: 1px solid lightgrey;
}

.block h2 {
    font-size: 16pt;
    font-weight: bold;
    color: #888888;
    text-align: center;

    padding: 10px;
}

.ll-label
{
    font-size:8pt;
    font-weight:bold;
    margin-bottom:0;
}



div.has-error input, div.has-error select {
    border-color: red;
/*    background-color: rgba(255, 0, 0, 0.2); */
    color: red;
}

div.has-success input, div.has-success select {
    color: green;
    border-color: green;
}

/** Card Columns **/

/*@media (min-width: 576px) {*/
/*    .card-columns {*/
/*        column-count: 1;*/
/*    }*/
/*}*/

/*@media (min-width: 768px) {*/
/*    .card-columns {*/
/*        column-count: 2;*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .card-columns {*/
/*        column-count: 3;*/
/*    }*/
/*}*/

/*@media (min-width: 1200px) {*/
/*    .card-columns {*/
/*        column-count: 6;*/
/*    }*/
/*}*/


@media (max-width: 1280px) {
    .container {
        width: 100%;
        max-width: none;
    }
}

/** Colors **/
.bg-light-blue {
    background-color: #5d11f9 !important;
}

a.bg-light-blue:hover, a.bg-light-blue:focus,
button.bg-light-blue:hover,
button.bg-light-blue:focus {
    background-color: #2653d4 !important;
}

.bg-gradient-light-100 {
    background-color: #f2f4fa;
    /*background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #f2f4fa), to(#dddde2));*/
    /*background-image: linear-gradient(180deg, #f2f4fa 10%, #333 100%);*/
    /*background-size: cover;*/
}

.border-lr-danger {
    border-left: 0.25rem solid #e74a3b !important;
    border-right: 0.25rem solid #e74a3b !important;
}

.border-lr-success {
    border-left: 0.25rem solid #1cc88a !important;
    border-right: 0.25rem solid #1cc88a !important;
}

.border-lr-warning {
    border-left: 0.25rem solid #f6c23e !important;
    border-right: 0.25rem solid #f6c23e !important;
}


/*.container-fluid {*/
/*    width: 80%;*/
/*    padding-right: 0.75rem;*/
/*    padding-left: 0.75rem;*/
/*    margin-right: auto;*/
/*    margin-left: auto;*/
/*}*/

/*.accordion > .card:first-of-type {*/
/*    border: 1px solid #e3e6f0;*/
/*    border-radius: 0.35rem*/
/*}*/

/*.accordion > .card {*/
/*    border: 1px solid #e3e6f0;*/
/*    border-radius: 0.35rem*/
/*}*/

.fs-overlay
{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding-top: 20%;
    z-index:2000;
}

.hidden {
    display: none;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Bladeren";
}


/** Spinners **/

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 6px;
    box-sizing: border-box;
    border: 26px solid #00b300;
    border-color: #1cc88a transparent #1cc88a transparent;
    animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}
