﻿/*** VALIDATION ***/
.form-control.input-validation-error {
    border-color: #e89da8;
}
.field-validation-error {
    color: #b94a48;
    font-size: 0.85em;
    margin: 2px 4px 0;
    display: block;
}
/*** FILTER ***/
.button-margin-top {
    margin-top:27px;
}

/*** LOADING ***/
.loading-backdrop {
    display:none;
    background-color: rgba(0,0,0,.3);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.scrollBar-vertical {
        overflow-y: scroll;
        border: solid 1px #e8eef4;
    }