﻿body {
    margin-bottom: 0;
}

.center {
    text-align: center;
}

.validation-error {
    font-size: 80%;
    color: #dc3545;
}

.nowrap {
    white-space: nowrap;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

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

.is-hide {
    display: none;
}

.grid-container {

}

.invalid-feedback {
    display: initial;
}

.navbar-center {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    overflow: visible;
    height: 0;
    margin-top: 7px;
    font-weight: bold;
}

.modal-header-color {
    background-color: #28a745;
    color: #ffffff;
}

.modal-header-icon {
    font-size: 36px;
    margin-right: 10px;
}


.contain {
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(calc(100vh - 405px)/2);
}

.alert {
    text-align: center;
}

#blah {
    max-height: 256px;
    height: auto;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
}

#img_contain {
    border-radius: 5px;
    /*  border:1px solid grey;*/
    margin-top: 20px;
    width: auto;
}

.imgInp {
    width: 150px;
    margin-top: 10px;
    padding: 10px;
    background-color: #d3d3d3;
}

.loading {
    animation: blinkingText ease 2.5s infinite;
}

@keyframes blinkingText {
    0% {
        color: #000;
    }

    50% {
        color: #transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: #000;
    }
}

.custom-file-label {
    cursor: pointer;
}

.image-background {
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;
    -ms-background-position: center;
    background-position: center;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.image-background::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.5);
}

.login-logo {
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: .9rem;
    text-align: center;
    background-color: rgba(255,255,255,0.7);
}

tr.Weekend {
    background-color: #f2f2f2;
}

/* tr.archive.Weekend { */
/*     background: repeating-linear-gradient( 45deg, #f2f2f2, #f2f2f2 2px, #c2c2c2 2px, #c2c2c2 4px ); */
/* } */


.info-box-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.info-box-half {
    flex: 1 1 0;
    min-width: 0;
    max-width: 50%;
    box-sizing: border-box;
    margin-left: 8px;
    margin-right: 8px;
}
.info-box-row .info-box-half:only-child {
    max-width: 100%;
}
@media (max-width: 600px) {
    .info-box-half {
        max-width: 100%;
    }
}
