.alert {
    display: none;
}

.font-22 {
    font-size: 22px !important;
}

.brand-link .brand-image {
    float: none;
    line-height: .8;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    max-height: 90px;
    width: 100%;
}

a {
    color: #7f7f7f;
    cursor: pointer;
}

a:hover {
    color: #7f7f7f;
    text-decoration: none;
    cursor: pointer;
}

.span-color {
    color: #da3439 !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #28a745;
    background-color: #28a745;
    box-shadow: none;
}

.custom-switch .custom-control-label::before {
    color: #fff;
    border-color: #dc3545;
    background-color: #dc3545;
    box-shadow: none;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #ffffff;
}

.custom-switch .custom-control-label::after {
    background-color: #ffffff;

}

.required label:after {
    content: " *";
    color: red;
}

.display-none {
    display: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eff3f6;
    z-index: 9999999;
    opacity: 0.8;
}

#prestatus {
    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;
}

.btn-danger {
    color: #fff !important;
}

.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: $ info rgba($ info, 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: $ info;
    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;
}

.dropdown .show {
    max-height: 250px;
}

.navbar {
    z-index: 100;
}

@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($ info, 0.2);
    }
    13% {
        background-color: rgba($ info, 0.2);
    }
    15% {
        background-color: rgba($ info, 0.9);
    }
    28% {
        background-color: rgba($ info, 0.9);
    }
    30% {
        background-color: rgba($ info, 0.2);
    }
    43% {
        background-color: rgba($ info, 0.2);
    }
    45% {
        background-color: rgba($ info, 0.9);
    }
    70% {
        background-color: rgba($ info, 0.9);
    }
    74% {
        background-color: rgba($ info, 0.2);
    }
    100% {
        background-color: rgba($ info, 0.9);
    }
}

@-o-keyframes pulse {
    0% {
        background-color: rgba($ info, 0.2);
    }
    13% {
        background-color: rgba($ info, 0.2);
    }
    15% {
        background-color: rgba($ info, 0.9);
    }
    28% {
        background-color: rgba($ info, 0.9);
    }
    30% {
        background-color: rgba($ info, 0.2);
    }
    43% {
        background-color: rgba($ info, 0.2);
    }
    45% {
        background-color: rgba($ info, 0.9);
    }
    70% {
        background-color: rgba($ info, 0.9);
    }
    74% {
        background-color: rgba($ info, 0.2);
    }
    100% {
        background-color: rgba($ info, 0.9);
    }
}

@-ms-keyframes pulse {
    0% {
        background-color: rgba($ info, 0.2);
    }
    13% {
        background-color: rgba($ info, 0.2);
    }
    15% {
        background-color: rgba($ info, 0.9);
    }
    28% {
        background-color: rgba($ info, 0.9);
    }
    30% {
        background-color: rgba($ info, 0.2);
    }
    43% {
        background-color: rgba($ info, 0.2);
    }
    45% {
        background-color: rgba($ info, 0.9);
    }
    70% {
        background-color: rgba($ info, 0.9);
    }
    74% {
        background-color: rgba($ info, 0.2);
    }
    100% {
        background-color: rgba($ info, 0.9);
    }
}

@-webkit-keyframes pulse {
    0% {
        background-color: rgba($ info, 0.2);
    }
    13% {
        background-color: rgba($ info, 0.2);
    }
    15% {
        background-color: rgba($ info, 0.9);
    }
    28% {
        background-color: rgba($ info, 0.9);
    }
    30% {
        background-color: rgba($ info, 0.2);
    }
    43% {
        background-color: rgba($ info, 0.2);
    }
    45% {
        background-color: rgba($ info, 0.9);
    }
    70% {
        background-color: rgba($ info, 0.9);
    }
    74% {
        background-color: rgba($ info, 0.2);
    }
    100% {
        background-color: rgba($ info, 0.9);
    }
}

@-moz-keyframes pulse {
    0% {
        background-color: rgba($ info, 0.2);
    }
    13% {
        background-color: rgba($ info, 0.2);
    }
    15% {
        background-color: rgba($ info, 0.9);
    }
    28% {
        background-color: rgba($ info, 0.9);
    }
    30% {
        background-color: rgba($ info, 0.2);
    }
    43% {
        background-color: rgba($ info, 0.2);
    }
    45% {
        background-color: rgba($ info, 0.9);
    }
    70% {
        background-color: rgba($ info, 0.9);
    }
    74% {
        background-color: rgba($ info, 0.2);
    }
    100% {
        background-color: rgba($ info, 0.9);
    }
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255), 0 0 0 1px rgba($ info, 0.8);
    }
    40% {
        box-shadow: 0 0 0 1px rgb(255, 255, 255), 0 0 0 2px rgba($ info, 0.8);
    }
    80% {
        box-shadow: 0 0 0 3px $ white, 0 0 1px 3px rgba($ info, 0.8);
    }
}

@-o-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255), 0 0 0 1px rgba($ info, 0.8);
    }
    40% {
        box-shadow: 0 0 0 1px rgb(255, 255, 255), 0 0 0 2px rgba($ info, 0.8);
    }
    80% {
        box-shadow: 0 0 0 3px $ white, 0 0 1px 3px rgba($ info, 0.8);
    }
}

@-ms-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255), 0 0 0 1px rgba($ info, 0.8);
    }
    40% {
        box-shadow: 0 0 0 1px rgb(255, 255, 255), 0 0 0 2px rgba($ info, 0.8);
    }
    80% {
        box-shadow: 0 0 0 3px $ white, 0 0 1px 3px rgba($ info, 0.8);
    }
}

@-webkit-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255), 0 0 0 1px rgba($ info, 0.8);
    }
    40% {
        box-shadow: 0 0 0 1px rgb(255, 255, 255), 0 0 0 2px rgba($ info, 0.8);
    }
    80% {
        box-shadow: 0 0 0 3px $ white, 0 0 1px 3px rgba($ info, 0.8);
    }
}

@-moz-keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255), 0 0 0 1px rgba($ info, 0.8);
    }
    40% {
        box-shadow: 0 0 0 1px rgb(255, 255, 255), 0 0 0 2px rgba($ info, 0.8);
    }
    80% {
        box-shadow: 0 0 0 3px $ white, 0 0 1px 3px rgba($ info, 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);
    }
}

.progress {
    position: relative;
    width: 100%;
}

.bar {
    background-color: #2eb562;
    width: 0%;
    height: 20px;
}

.percent {
    position: absolute;
    display: inline-block;
    left: 50%;
    color: #040608;
}

.dropbtn {
    background-color: #3498DB;
    margin-top: 35px;
    color: white;
    padding: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content ul li {
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown ul li:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.backgray {
    background: #80808030;
}

.orderview {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px;
}

#duplicateRows, #importcount, #unimportcount, #updatecount {
    word-break: break-all;
}

.multi-select .dropdown-toggle {
    background: transparent !important;
    height: 100%;
    border: none;
}

.ui-datepicker {
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hasDatepicker {
    background-color: #fff !important;
}

.ui-datepicker td {
    padding: 3px 7px;
}
.ui-datepicker td:hover {
    background: #eee;
    cursor: pointer;
}

.ui-datepicker-prev{
    float: left;
}
.ui-datepicker-next  {
    float: right;
}
.ui-datepicker-title {
    display: flex;
    justify-content: center;
}
.ui-datepicker-unselectable {
    color: #eee;
}

.bs-actionsbox button {
    border: 1px solid lightgrey;
}

.bootstrap-tagsinput {
    width: 100%;
    padding: 0.375rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
}
.bootstrap-tagsinput .tag {
    margin-right: 0.2rem;
    color: white;
    background-color: #6f6f6f;
    padding: 0.2rem 0.5rem;
    border-radius: 0.2rem;
}
