@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.loader-container {
    background-color: #f7f7f9;
    display: table;
    width: 100vw;
    height: 100vh;
    z-index: 1060;
    position: fixed;
    color: #000;
}

.loader {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.loader span {
    margin-left: 10px;
    font-size: 22px;
}
.loader span.L {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 0.25s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 0.25s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 0.25s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 0.25s;
}
.loader span.O {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 0.5s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 0.5s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 0.5s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 0.5s;
}
.loader span.A {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 0.75s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 0.75s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 0.75s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 0.75s;
}
.loader span.D {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 1s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 1s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 1s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 1s;
}
.loader span.I {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 1.25s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 1.25s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 1.25s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 1.25s;
}
.loader span.N {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 1.5s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 1.5s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 1.5s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 1.5s;
}
.loader span.G {
    -o-animation: loadingAnimation 1.6s ease-in-out infinite;
    -o-animation-delay: 1.75s;
    -moz-animation: loadingAnimation 1.6s ease-in-out infinite;
    -moz-animation-delay: 1.75s;
    -webkit-animation: loadingAnimation 1.6s ease-in-out infinite;
    -webkit-animation-delay: 1.75s;
    animation: loadingAnimation 1.6s ease-in-out infinite;
    animation-delay: 1.75s;
}
.loader span:first-child {
    margin-left: 0;
}

@-webkit-keyframes loadingAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
    12.5% {
        opacity: .12;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    25% {
        opacity: .2;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    80% {
        opacity: .80;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
}
@-moz-keyframes loadingAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
    12.5% {
        opacity: .12;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    25% {
        opacity: .2;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    80% {
        opacity: .80;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
}
@-ms-keyframes loadingAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
    12.5% {
        opacity: .12;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    25% {
        opacity: .2;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    80% {
        opacity: .80;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
}
@keyframes loadingAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
    12.5% {
        opacity: .12;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    25% {
        opacity: .2;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    80% {
        opacity: .80;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

.hidden{
    display: none;
}

.show{
    display: block;
}

.error{
    color: #B22222;
}

.alertDiv{
    left: -3px;
    top: 40px;
    width: 100%;
    text-align: center;
    z-index: 9999;
    position: fixed;
}

.alert{
    max-width: 50% !important;
    margin: auto;

}

.fa-red{
    color: #9E1E1E;
}
.fa-green{
    color: #5cb85c;
}
.fa-blue{
    color: #3E5C9A;
}
.fa-grey{
    color: #5b5b5b;
}

textarea{
    resize: none;
}
.table-responsive {
    display: table;
    width: 100%;
}

.datepicker td, .datepicker th {
    padding: 5px;
    font-size: 14px;
}
.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
    background-color: #5cb85c !important;
    background-image: none !important;
    background-repeat: repeat-x !important;
    border-color: transparent !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
}


.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover,.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
    background-color: #0275d8 !important;
    background-image: none !important;
    background-repeat: repeat-x !important;
    border-color: transparent !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff !important;
    text-shadow: 0 !important;
}
.container-top-padding{
    padding-top: 70px;
}

.container-bottom-padding{
    padding-bottom: 30px;
}
.navbar-heading{
    margin-top: 4px;
}

.dropdown-right{
    right:0;
    left: inherit !important;
    float: right !important;
}

.container-top-padding-100{
    padding-top: 100px;
}

.pointer{
    cursor: pointer;
}
.navbar-position-right{
    position: absolute;
    top: 7px;
    right: 0
}
.navbar-position-left{
    position: absolute;
    top: 7px;
}
textarea{
    resize: none !important;
}

.padding-top-20{
    padding-top: 20px;
}

.js-editorcanvas{
    width: 100% !important;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.badge-danger {
    background-color: #d9534f;
}

.badge-warning {
    background-color: #f0ad4e;
}

.badge-info {
    background-color: #5bc0de;
}

.badge-success {
    background-color: #5cb85c;
}

.badge-primary {
    background-color: #0275d8;
}

.badge-default {
    background-color: #636c72;
}

.margin-left-10 {
    margin-left: 10px;
}

.form-group .form-control {
    height: 48px;
    border: 1px solid #e8edf1;
    border-radius: 8px;
    font-size: 14px;
}

.form-group label {
    margin-bottom: 8px;
}

.btn {
    min-height: 48px;
}

.btn-primary {
    background: #3654d0;
    border: 1px solid #3654d0;
    border-radius: 8px;
}

.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-primary:hover, .btn-primary:active {
    background: #2039a3;
    border: 1px solid #2039a3;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    background: #2039a3;
    border: 1px solid #2039a3;
    box-shadow: 0 0 0 0.25rem #2039a380;
}

a {
    text-decoration: none;
    color: #3654d0;
}


#loginForm, #forgotPasswordUsernameDiv {
    margin-top: 80px;
    margin-bottom: 100px;
}

.login-bg {
    background: url("../../dist/images/login/login-bg-3.jpg");
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}