﻿body {
    font-family: 'Nunito', sans-serif !important;
}

.btn-light {
    color: #1e2022;
    background-color: #ffffff;
    border-color: #e7eaf3;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: 0 !important;
}

.btn-light:hover {
    color: #1e2022;
    background-color: #ffffff;
    border-color: #e7eaf3;
}

.btn-light.focus, .btn-light:focus {
    color: #1e2022;
    background-color: #ffffff;
    border-color: #e7eaf3;
    box-shadow: 0 0 0 .2rem rgba(216,217,219,.5);
    box-shadow: 0 0 10px rgba(55,125,255,.1);
    border-color: rgba(55,125,255,.4);
}

.btn-light.disabled, .btn-light:disabled {
    color: #1e2022;
    background-color: #f9fafc;
    border-color: #f9fafc;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    color: #1e2022;
    background-color: #ffffff;
    border-color: #e7eaf3;
}

    .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(216,217,219,.5);
    }

.dropdown-menu {
    box-shadow: 0 10px 40px 10px rgb(149 177 164);
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #026135;
    background-color: #016135;
}
label {
    margin-bottom: .0rem;
    /*font-weight:bold;*/
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
    font-family: 'Nunito', sans-serif !important;
}
.ngdialog .modal-header {
    background-color: #005f33 !important;
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
    background: #005f334d !important;
}
.ngdialog .modal-title {
    color: #fff;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: relative !important;
}

/* Start Loading  Styles */
div#load_screen, div#load_screen2 {
    /*background: #c9d6cb45;*/
    background: #00000059;
    opacity: 1;
    position: fixed;
    z-index: 999999;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

#http-loader {
    opacity: 1;
    z-index: 999999;
    top: 50%;
    /* left: 50%; */
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.spinner {
    width: 70px;
    height: 70px;
    background-color: #cd2329;
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
        background-color: #005f33;
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
        background-color: #cd2329;
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
        background-color: #005f33;
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        background-color: #cd2329;
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        background-color: #005f33;
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        background-color: #cd2329;
    }
}
/* End Loading  Styles */

/* Start Spin Kit Secon Loading Styles */
.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

    .sk-chase-dot:before {
        content: '';
        display: block;
        width: 25%;
        height: 25%;
        background-color: #005f33;
        border-radius: 100%;
        animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
    }

    .sk-chase-dot:nth-child(1) {
        animation-delay: -1.1s;
    }

    .sk-chase-dot:nth-child(2) {
        animation-delay: -1.0s;
    }

    .sk-chase-dot:nth-child(3) {
        animation-delay: -0.9s;
    }

    .sk-chase-dot:nth-child(4) {
        animation-delay: -0.8s;
    }

    .sk-chase-dot:nth-child(5) {
        animation-delay: -0.7s;
    }

    .sk-chase-dot:nth-child(6) {
        animation-delay: -0.6s;
    }

    .sk-chase-dot:nth-child(1):before {
        animation-delay: -1.1s;
    }

    .sk-chase-dot:nth-child(2):before {
        animation-delay: -1.0s;
    }

    .sk-chase-dot:nth-child(3):before {
        animation-delay: -0.9s;
    }

    .sk-chase-dot:nth-child(4):before {
        animation-delay: -0.8s;
    }

    .sk-chase-dot:nth-child(5):before {
        animation-delay: -0.7s;
    }

    .sk-chase-dot:nth-child(6):before {
        animation-delay: -0.6s;
    }

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1.0);
    }
}
/* End Spin Kit Secon Loading Styles */


/* Start Loading new Styles */
.boxes {
    --size: 20px;
    --duration: 800ms;
    height: calc(var(--size) * 2);
    width: calc(var(--size) * 3);
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: calc(var(--size) * 1.5 * -1);
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

    .boxes .box {
        width: var(--size);
        height: var(--size);
        top: 0;
        left: 0;
        position: absolute;
        transform-style: preserve-3d;
    }

        .boxes .box:nth-child(1) {
            transform: translate(100%, 0);
            -webkit-animation: box1 var(--duration) linear infinite;
            animation: box1 var(--duration) linear infinite;
        }

        .boxes .box:nth-child(2) {
            transform: translate(0, 100%);
            -webkit-animation: box2 var(--duration) linear infinite;
            animation: box2 var(--duration) linear infinite;
        }

        .boxes .box:nth-child(3) {
            transform: translate(100%, 100%);
            -webkit-animation: box3 var(--duration) linear infinite;
            animation: box3 var(--duration) linear infinite;
        }

        .boxes .box:nth-child(4) {
            transform: translate(200%, 0);
            -webkit-animation: box4 var(--duration) linear infinite;
            animation: box4 var(--duration) linear infinite;
        }

        .boxes .box > div {
            --background: #cd2329;
            --top: auto;
            --right: auto;
            --bottom: auto;
            --left: auto;
            --translateZ: calc(var(--size) / 2);
            --rotateY: 0deg;
            --rotateX: 0deg;
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--background);
            top: var(--top);
            right: var(--right);
            bottom: var(--bottom);
            left: var(--left);
            transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
        }

            .boxes .box > div:nth-child(1) {
                --top: 0;
                --left: 0;
            }

            .boxes .box > div:nth-child(2) {
                --background: #005f33;
                --right: 0;
                --rotateY: 90deg;
            }

            .boxes .box > div:nth-child(3) {
                --background: #005f33;
                --rotateX: -90deg;
            }

            .boxes .box > div:nth-child(4) {
                /*--background: #DBE3F4;*/
                --background: #dbe3f400;
                --top: 0;
                --left: 0;
                --translateZ: calc(var(--size) * 3 * -1);
            }

@-webkit-keyframes box1 {
    0%, 50% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(200%, 0);
    }
}

@keyframes box1 {
    0%, 50% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(200%, 0);
    }
}

@-webkit-keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }

    50% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}

@keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }

    50% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}

@-webkit-keyframes box3 {
    0%, 50% {
        transform: translate(100%, 100%);
    }

    100% {
        transform: translate(0, 100%);
    }
}

@keyframes box3 {
    0%, 50% {
        transform: translate(100%, 100%);
    }

    100% {
        transform: translate(0, 100%);
    }
}

@-webkit-keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }

    50% {
        transform: translate(200%, 100%);
    }

    100% {
        transform: translate(100%, 100%);
    }
}

@keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }

    50% {
        transform: translate(200%, 100%);
    }

    100% {
        transform: translate(100%, 100%);
    }
}
/* End Loading new Styles */
.form-control-file {
    width: 100%;
    color: #000000;
}

    .form-control-file::-webkit-file-upload-button {
        letter-spacing: 1px;
        /*padding: 9px 20px;*/
        text-shadow: none;
        font-size: 12px;
        color: #fff;
        font-weight: normal;
        white-space: normal;
        word-wrap: break-word;
        transition: .2s ease-out;
        touch-action: manipulation;
        cursor: pointer;
        background-color: #4cb050;
        box-shadow: 0px 0px 15px 1px rgba(113, 106, 202, 0.2);
        will-change: opacity, transform;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        border-radius: 4px;
        border: transparent;
        outline: none;
        padding: .50rem 1.14rem;
    }

    .form-control-file::-ms-file-upload-button {
        letter-spacing: 1px;
        /*padding: 9px 20px;*/
        text-shadow: none;
        font-size: 14px;
        color: #fff;
        font-weight: normal;
        white-space: normal;
        word-wrap: break-word;
        transition: .2s ease-out;
        touch-action: manipulation;
        cursor: pointer;
        background-color: #4cb050;
        box-shadow: 0px 0px 15px 1px rgba(113, 106, 202, 0.2);
        will-change: opacity, transform;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        border-radius: 4px;
        border: transparent;
        outline: none;
    }

    .form-control-file.form-control-file-rounded::-webkit-file-upload-button {
        -webkit-border-radius: 1.875rem !important;
        -moz-border-radius: 1.875rem !important;
        -ms-border-radius: 1.875rem !important;
        -o-border-radius: 1.875rem !important;
        border-radius: 1.875rem !important;
    }


.noty_theme__metroui {
    border-radius: 6px !important;
}

.noty_close_button {
    background-color: #00000057 !important;
    border-radius: 5px !important;
}