﻿.spinner {
    background-color: white;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 900000;
    margin-top: 0px;
    top: 0px;
    display: none;
}

.spinner img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.invisible {
    display: none;
}

.img-logo {
    max-width: 250px;
}

.img-nav-logo {
    max-width: 120px;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.display-6 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-7 {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
}

.informative-small-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.2;
    font-style: italic;
}

.font-thin {
    font-weight: 300;
}

.font-w-normal {
    font-weight: 400;
}

.modal-pad {
    margin-left: 12px;
    margin-right: 12px;
}

.separator-left {
    border-right: 1px solid #E9ECEF;
}

@media screen and (max-width:641px) {
    .img-logo {
        max-width: 180px;
    }

    .display-5 {
        font-size: 2rem;
    }

    .display-6 {
        font-size: 1.4rem;
    }

    .display-7 {
        font-size: 1.1rem;
    }

    .modal-pad {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.glow {
    animation: glow 400ms linear 200ms 2 alternate;
    -moz-animation: glow 400ms linear 200ms 2 alternate;
    -webkit-animation: glow 400ms linear 200ms 2 alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 1px 1px rgba(255,255,255,0.9);
    }

    20%, 100% {
        box-shadow: 0 0 1px 1px rgba(255,255,255,0.9), 0 0 3px 8px #178c05, 0 0 2px 12px #FFF;
    }
}

/* Firefox */
@-moz-keyframes glow {
    0% {
        box-shadow: 0 0 1px 1px rgba(255,255,255,0.9);
    }

    20%, 100% {
        box-shadow: 0 0 1px 1px rgba(255,255,255,0.9), 0 0 3px 8px #ffff66, 0 0 2px 12px #FFF;
    }
}

/* Safari and Chrome */
@-webkit-keyframes glow {
    0% {
        box-shadow: 0 0 1px 1px #FFF;
    }

    20%, 100% {
        box-shadow: 0 0 1px 1px #FFF, 0 0 3px 8px #ffff66, 0 0 2px 12px #FFF;
    }
}

/*validation*/
.field-validation-error {
    font-size: small;
    color: red;
    font-style: italic;
    font-weight: 500;
}

.form-group.is-invalid {
    color: red;
}

.form-group.is-valid {
    color: green;
}

/*html, body {
    height: 99%;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}*/

.right-sep {
    border-right: 1px solid #CCCCCC;
}

.left-sep {
    border-left: 1px solid #CCCCCC;
}

.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 1%;
}

.table a {
    margin-left: 8px;
    margin-right: 8px;
}

.text-white {
    color: white;
}

.tooltip {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 140px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        left: 50%;
        margin-left: -75px;
        opacity: 0;
        transition: opacity 0.3s;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }