body {
    overflow-x: hidden !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.error_alert {
    border-color: #E61212 !important;
    box-shadow: 0 2px 4px 0 rgba(199, 40, 40, 0.22) !important;
}

.error_msg {
    font-size: 10px;
    margin-top: 8px;
}

.list_label {
    display: -webkit-inline-box;
}

.limit_drop {
    /*margin-right: 1.5rem !important;*/
    margin-left: 1.5rem !important;
}

.limit_label {
    display: -webkit-inline-box;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.limit_select {
    width: 5rem;
    margin: 0 .5rem;
}

.lh-32 {
    line-height: 32px;
}

.lh-40 {
    line-height: 40px;
}

.search_box {
    margin-left: .75rem;
}

.mt-50 {
    margin-top: .5rem !important;
}

.mt-100 {
    margin-top: 1rem !important;
}

.me-4 {
    margin-left: 4.5rem !important;
}

.me-8 {
    margin: 8px;
}

.mt-8 {
    margin-top: 8px;
}

.dx-2 {
    margin-right: 0.8rem !important;
    margin-left: 0.5rem !important;
}

.tablelocload {
    height: 45px;
}

.tablelocload:empty {
    animation: loading 1.5s infinite linear;
    background: #f4f4f496;
    background-image: -webkit-linear-gradient(to right, #dedfe1 0%, #f2f3f5 20%, #dedfe1 40%, #dedfe1 100%);
    background-image: linear-gradient(to right, #dedfe1b5 0%, #f2f3f5 20%, #dedfe1 40%, #ecececc9 100%);
    background-repeat: no-repeat;
}

@keyframes loading {
    0% {
        background-position: -100px;
    }

    50% {
        background-position: 200px;
    }

    100% {
        background-position: 300px;
    }
}

.pagination_btn {
    margin-right: 10px !important;
    padding: 8px !important;
    margin-top: 14px !important;
    cursor: pointer !important;
}

.status_btn {
    cursor: pointer;
}

.pl-14 {
    padding-left: 14px !important;
}

/* ==============
  Loader
===================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f542;
    z-index: 9999999;
}

#status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}

.spinner {
    position: absolute;
    width: 78px;
    height: 78px;
    left: 50%;
    margin-left: -39px;
    margin-top: -39px;
}

.spinner:before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    margin-top: -23px;
    left: 50%;
    margin-left: -23px;
    border-width: 2px 1px;
    border-style: solid;
    border-color: #4bbbce rgba(75, 187, 206, 0.3);
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    animation: spin 3.45s infinite;
    -o-animation: spin 3.45s infinite;
    -ms-animation: spin 3.45s infinite;
    -webkit-animation: spin 3.45s infinite;
    -moz-animation: spin 3.45s infinite;
}

.spinner:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 50%;
    margin-left: -6px;
    background-color: #4bbbce;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -o-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -ms-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -webkit-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -moz-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(1080deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }

    50% {
        -o-transform: rotate(360deg);
    }

    100% {
        -o-transform: rotate(1080deg);
    }
}

@-ms-keyframes spin {
    0% {
        -ms-transform: rotate(0deg);
    }

    50% {
        -ms-transform: rotate(360deg);
    }

    100% {
        -ms-transform: rotate(1080deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(1080deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(360deg);
    }

    100% {
        -moz-transform: rotate(1080deg);
    }
}

@keyframes pulse {
    0% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    13% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    15% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    28% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    30% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    43% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    45% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    70% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    74% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    100% {
        background-color: rgba(75, 187, 206, 0.9);
    }
}

@-o-keyframes pulse {
    0% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    13% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    15% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    28% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    30% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    43% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    45% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    70% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    74% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    100% {
        background-color: rgba(75, 187, 206, 0.9);
    }
}

@-ms-keyframes pulse {
    0% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    13% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    15% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    28% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    30% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    43% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    45% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    70% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    74% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    100% {
        background-color: rgba(75, 187, 206, 0.9);
    }
}

@-webkit-keyframes pulse {
    0% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    13% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    15% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    28% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    30% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    43% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    45% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    70% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    74% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    100% {
        background-color: rgba(75, 187, 206, 0.9);
    }
}

@-moz-keyframes pulse {
    0% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    13% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    15% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    28% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    30% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    43% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    45% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    70% {
        background-color: rgba(75, 187, 206, 0.9);
    }

    74% {
        background-color: rgba(75, 187, 206, 0.2);
    }

    100% {
        background-color: rgba(75, 187, 206, 0.9);
    }
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(75, 187, 206, 0.8);
    }

    40% {
        box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(75, 187, 206, 0.8);
    }

    80% {
        box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(75, 187, 206, 0.8);
    }
}

@-o-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(75, 187, 206, 0.8);
    }

    40% {
        box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(75, 187, 206, 0.8);
    }

    80% {
        box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(75, 187, 206, 0.8);
    }
}

@-ms-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(75, 187, 206, 0.8);
    }

    40% {
        box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(75, 187, 206, 0.8);
    }

    80% {
        box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(75, 187, 206, 0.8);
    }
}

@-webkit-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(75, 187, 206, 0.8);
    }

    40% {
        box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(75, 187, 206, 0.8);
    }

    80% {
        box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(75, 187, 206, 0.8);
    }
}

@-moz-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(75, 187, 206, 0.8);
    }

    40% {
        box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(75, 187, 206, 0.8);
    }

    80% {
        box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(75, 187, 206, 0.8);
    }
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.mt-22
{
    margin-top: 22px !important;
}
.bg-light
{
    background-color: #f9f9f9;
}

.f-12
{
    font-size: 12px !important;
}
.main-menu
{
    background-color: #3b4253!important;
}
.main-menu.menu-light .navigation {
    background: #3b4253;
}
.main-menu.menu-light .navigation li a {
    color: #fff;
}