﻿[v-cloak] > * {
    display: none;
}

[v-cloak]::before {
    display: none
}

.bg-gradient-green {
    padding-top: 35vh;
    background: rgb(34,193,195);
    background: -moz-linear-gradient(3deg, rgba(34,193,195,0.5) 0%, rgba(3,225,0,0.5) 100%);
    background: -webkit-linear-gradient(3deg, rgba(34,193,195,0.5) 0%, rgba(3,225,0,0.5) 100%);
    background: linear-gradient(3deg, rgba(34,193,195,0.5) 0%, rgba(3,225,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#22c1c3",endColorstr="#03e100",GradientType=1);
}

.bg-gradient-green-black {
    padding-top: 35vh;
    background: rgb(34,193,195);
    background: -moz-linear-gradient(3deg, rgba(34,193,195,0.5) 0%, rgba(3,225,0,0.5) 100%);
    background: -webkit-linear-gradient(3deg, rgba(34,193,195,0.5) 0%, rgba(3,225,0,0.5) 100%);
    background: linear-gradient(3deg, rgb(34 193 195 / 68%) 0%, rgb(2 96 1 / 73%) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#22c1c3",endColorstr="#03e100",GradientType=1);
}

.vh-100 {
    height: 100vh;
}

.height-100 {
    height: 100% !important;
}

.left-side {
    padding-top: 100px;
}

.right-side {
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: top;
}

.navbar {
    position: absolute;
    top: 0;
    background: transparent !important;
    z-index: 50;
}


.form-card {
    max-width: 500px;
    margin: auto;
}

    .form-card .title {
        color: darkgray;
        text-align: center;
        text-transform: uppercase;
    }



.form-card-big {
    max-width: 700px;
    margin: auto;
    margin-top: 25vh;
}

.form-card .title {
    color: darkgray;
    text-align: center;
    text-transform: uppercase;
}

.right-card {
    max-width: 520px;
    margin: auto;
    text-align: center;
}

    .right-card .title {
        color: white;
        margin-bottom: 20px;
        font-size: 50px;
    }

    .right-card .description {
        color: white;
        font-size: 18px;
    }

.p-0 {
    padding: 0;
}

.logo {
    text-align: center;
    margin-top: -20px;
}

.text-white {
    color: white;
}


.form-control {
    margin-bottom: 20px;
    height: 55px;
}

.input-group {
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
}

label {
    color: darkgray;
}

/*.btn {
    width: 100% !important;
    background: #03e100;
    border: 1px solid #03e100;
    margin-top: 30px;
}*/

.btn-green-gtn {
    width: 100% !important;
    background: #03e100;
    border: 1px solid #03e100;
}

.mt-40 {
    margin-top: 40px;
}

.bg-white {
    background: white;
}


.d-none {
    display: none;
}

.nav-img {
    width: 18px;
    position: relative;
    top: -2px;
}


.nav-item {
    /*margin-right: 20px;*/
    font-weight: 500;
}

    .nav-item:hover {
        font-weight: 600;
    }

.navbar-brand {
    margin-right: 100px;
}


@media (max-width: 768px) {
    .navbar-collapse {
        padding: 10px;
        background: white;
        border-radius: 5px;
        -webkit-box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }

    .left-side {
        padding-top: 200px;
    }
}

.active-nav {
    color: #02b502 !important;
}

.m-auto {
    margin: auto;
}

.d-block {
    display: block;
}

.rc-anchor-light.rc-anchor-normal {
    border: 1px solid white !important;
}

.rc-anchor-light {
    background: white !important;
    color: #000;
}

.d-inline-block {
    display: inline-block;
}

.text-lime {
    color: #03e100;
}

.user-details {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 500;
    color: black;
}



.loaderBg {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    background: rgb(36 132 136 / 0.1);
    cursor: progress;
    z-index: 5000;
}

.LoaderBalls {
    width: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LoaderBalls__item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff8452;
}

    .LoaderBalls__item:nth-child(1) {
        animation: bouncing 0.4s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95);
    }

    .LoaderBalls__item:nth-child(2) {
        animation: bouncing 0.4s 0.1s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
    }

    .LoaderBalls__item:nth-child(3) {
        animation: bouncing 0.4s 0.2s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
    }

@keyframes bouncing {
    0% {
        transform: translate3d(0, 10px, 0) scale(1.2, 0.85);
    }

    100% {
        transform: translate3d(0, -20px, 0) scale(0.9, 1.1);
    }
}

.c-pointer {
    cursor: pointer;
}

.mt--100 {
    margin-top: -100px;
}



.bg-green-gradient {
    background: rgb(34,193,195);
    background: -moz-linear-gradient(236deg, rgba(34,193,195,1) -80%, rgba(3,225,0,1) 100%);
    background: -webkit-linear-gradient( 236deg, rgba(34,193,195,1) -80%, rgba(3,225,0,1) 100%);
    background: linear-gradient( 236deg, rgba(34,193,195,1) -80%, rgba(3,225,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#22c1c3",endColorstr="#03e100",GradientType=1);
}

.unlockAccountModal .modal-body {
    height: 300px;
    padding: 0;
}

    .unlockAccountModal .modal-body .row {
        height: 300px;
    }

        .unlockAccountModal .modal-body .row .unlockAccountModalCol {
            padding-top: 80px !important;
            height: 100%;
            margin: 0px 15px 5px 15px;
            border-radius: 5px;
            transition-duration: 0.3s;
        }

    .unlockAccountModal .modal-body .unlockAccountModalCol:hover {
        transition-duration: 0.3s;
        cursor: pointer;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }


    .unlockAccountModal .modal-body .row .simpleCol {
        padding-top: 80px !important;
        height: 100%;
        margin: 0px 15px 5px 15px;
        border-radius: 5px;
        transition-duration: 0.3s;
    }

.reset-pass-btn {
    padding-top: 89px;
    transition-duration: 0.3s;
    width: 300px;
    height: 300px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}


    .reset-pass-btn:hover {
        transition-duration: 0.3s;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }


.text-green-gtn {
    color: #03e100;
}

.reporting-datepicker input {
    display: block;
    width: 100%;
    padding: 14px;
    height: 55px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.border-left-gtn-green {
    border-left: 1px solid #03e1008c;
}

.border-right-gtn-green {
    border-right: 1px solid #03e1008c;
}

.reporting-label {
    position: absolute;
    top: -27px;
}


.remove-date-reporting {
    width: 20px;
    position: absolute;
    right: 20px;
    top: 18px;
    transform: rotate( 45deg );
    cursor: pointer;
}

    .remove-date-reporting:hover {
        width: 25px;
        position: absolute;
        right: 18px;
        top: 15px;
        transform: rotate( 45deg );
        cursor: pointer;
    }


.right-modal {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
}

.right-modal-bg {
    background: rgb(7 221 24 / 10%);
    height: 100vh;
    width: 100vw;
    top: 0;
    right: 0;
}

.right-modal-content {
    background: white;
    height: 100%;
    position: fixed;
    width: 500px;
    top: 0;
    right: 0;
    z-index: 70;
    overflow-y: auto;
    /*overflow-x: scroll;*/
}


a.disabled {
    pointer-events: none;
    cursor: default;
}


.pagination .page-link.disabled {
    background: #9e9e9e17;
    cursor: not-allowed;
}

.pagination .page-item .page-link {
    color: #000000;
    font-size: 15px;
    cursor: pointer;
}


.pagination .page-item.active .page-link {
    background: #0bd9315c;
    border: solid 1px #0bd9315c;
}

.widget {
    height: 100px;
    box-shadow: 0 0.125rem 0.25rem rgb(6 222 18 / 10%) !important;
    border-radius: 10px;
    background: #f8f9fa2b;
    padding: 12px;
    color: #06de13;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition-duration: 0.5s;
}

    .widget:hover {
        background: rgb(6 221 22 / 10%);
        transition-duration: 0.5s;
    }

    .widget .title {
        display: block;
        font-size: 15px;
        font-weight: 700;
    }

    .widget .icon {
        position: absolute;
        right: 20px;
        width: 35px;
        top: 54px;
    }

    .widget .description {
        margin-top: 22px;
        display: block;
        font-size: 25px;
        color: #212529;
    }


.widget-active {
    background: rgb(6 221 22 / 10%);
}

.not-found-alert {
    min-width: 300px;
    max-width: 500px;
    margin: auto;
}

.gtn-navs {
    position: relative;
    top: 2px;
    border: 0;
}

    .gtn-navs a {
        color: #343a40;
    }

    .gtn-navs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        background-color: rgb(7 222 21 / 21%);
        border: 0;
    }

    .gtn-navs .nav-item:hover {
    }

    .gtn-navs .nav-link:focus, .nav-tabs .nav-link:hover {
        background-color: rgb(7 222 21 / 21%);
        border: none;
    }


.modal-body .overflow70vh {
    max-height: 70vh;
    /*height: 70vh;*/
    overflow-x: auto;
}

.nav-logo {
    position: absolute;
    right: 12px;
    top: 0;
    width: 150px;
}

.big-multiselect .multiselect__tags {
    min-height: 55px;
    display: block;
    padding: 8px 40px 0 8px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    background: #fff;
    font-size: 14px;
    padding-top: 16px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}

.big-multiselect .multiselect__select:before {
    position: relative;
    right: 0;
    top: 28px;
    color: #999;
    margin-top: 4px;
    border-style: solid;
    border-width: 5px 5px 0;
    border-color: #999 transparent transparent;
    content: "";
}

.big-multiselect .multiselect__content-wrapper {
    width: auto;
}

.navbar-collapse.show {
    background: white;
    padding: 1rem !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    border-radius: .25rem !important;
}

.remove-img-btn {
    width: 20px;
    transform: rotate( 45deg );
    cursor: pointer;
}

.hide-details-icon {
    margin-right: 2px;
    font-size: 10px
}






@media only screen and (max-width: 1200px) {
    .overflow-x-xl-scroll {
        overflow-x: scroll;
    }

    .gtn-table {
        min-width: 1200px;
    }
}




.wizard-item {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50px;
    color: #495057;
    border: 1px solid #adb5bd;
}

    .wizard-item i {
        font-size: 40px;
        position: relative;
        top: 20px;
    }

    .wizard-item.done {
        width: 100px;
        height: 100px;
        margin: auto;
        border-radius: 50px;
        color: #495057;
        background: #e9ecef;
        border: 1px solid #adb5bd;
    }

    .wizard-item.active {
        width: 100px;
        height: 100px;
        margin: auto;
        border-radius: 50px;
        color: #495057;
        background: #03e1002b;
        border: 1px solid #03e10094;
    }

.input-group-text {
    background: white !important;
}


::placeholder {
    color: darkgray !important;
    font-weight: 400;
}

.wizard-box .wizard-item {
    cursor: pointer;
    transition-duration: 0.5s;
}

.wizard-box:hover .wizard-item {
    background: #03e1002b !important;
    border: 1px solid #03e10094;
    transition-duration: 0.5s;
}

.mt-25vh {
    margin-top: 25vh;
}

.mb-100 {
    margin-bottom: 100px;
}

.black-card {
    padding-top: 30px;
    min-height: 300px;
    color: white !important;
}

.black-bg-gradient-rl {
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6279105392156863) 100%);
}

.black-bg-gradient-lr {
    background: rgb(0,0,0);
    background: linear-gradient(90deg,rgba(0,0,0,0.6279105392156863) 0%, rgba(0,0,0,1) 100%);
}




.white-card {
    padding-top: 30px;
    min-height: 300px;
    color: black !important;
}

.white-bg-gradient-rl {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 100%);
}

.white-bg-gradient-lr {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,1) 100%);
}



.btn-home-gtn-green {
    padding: 10px 10px;
    border: 1px solid #02e600 !important;
    border-radius: 0px;
    background: black;
    color: white;
    font-weight: 600;
}

    .btn-home-gtn-green:hover {
        background: #02e600;
        color: black;
    }

.btn-home-gtn-gray {
    padding: 10px 10px;
    border: 1px solid gray !important;
    border-radius: 0px;
    background: transparent;
    color: black;
    font-weight: 600;
}

    .btn-home-gtn-gray:hover {
        background: #02e600;
        color: black;
    }

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.home-card-header {
    border-radius: 10px 10px 0px 0px;
    background-color: rgb(52 58 64 / 90%) !important;
}

.home-card-footer {
    border-radius: 0px 0px 10px 10px;
    background: rgb(255 255 255 / 90%);
}

.badge-outline-danger {
    background: rgb(255 0 0 / 20%);
    border: 1px solid red;
    color: red;
    padding: 10px;
}

.badge-outline-success {
    background: #06e1002e;
    border: 1px solid #06e100;
    color: black;
    padding: 10px;
}

.home-btn-position {
    position: absolute;
    bottom: 20px;
    left: 25%;
}


.show-pass-btn {
    position: absolute;
    right: 11px;
    top: 15px;
    width: 25px;
    cursor: pointer;
    z-index: 50;
    background: white;
}
