:root{
    --bg-green: linear-gradient(180deg, #4db86b 0%, #95f3b8 48%, #95f3b8 55%, #4db86b 100%);
    --border-green: #11998E;
    --bg-red: linear-gradient(180deg, #df3b09 0%, #ff8d69 45%, #ff8d69 58%, #df3b09 100%);
    --border-red: #df3b09;
    --bg-yellow: linear-gradient(180deg, #f4ce1e 0%, #fcff50 45%, #fcff50 58%, #f4ce1e 100%);
    --border-yellow: #f4ce1e;
    --bg-black: linear-gradient(180deg, #767676 0%, #fbfbfb 45%, #fbfbfb 58%, #767676 100%);
    --border-black: #d3d1d1;
}
body {
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    font-family: 'IRANSans';
    font-size: 14px;
    overflow-x: hidden;
    background-color: var(--bodyBackground);
}

a:hover {
    text-decoration: none;
}

header {
    background-color: var(--mainColor);
    color: var(--lightColor);
}

.dashboard-icon {
    font-size: 18px;
    height: 40px;
    border-left: 1px dashed var(--darkColor);
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.dashboard-icon:hover>i {
    animation: moveIcon 1s infinite;
    cursor: pointer;
    color: var(--darkColor);
}

@keyframes moveIcon {
    0% {
        transform: rotate(-20deg);
    }

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

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

.sub-dashboard {
    right: 0;
    text-align: right;
    margin-top: -15px;
    font-size: 12px;
    padding: 15px 0;
    box-shadow: 0 5px 12px -5px #555;
}

.sub-dashboard li a {
    display: flex;
    align-items: center;
    padding: 6px;
    color: #232323;
    transition-duration: .4s;
    cursor: pointer;
}

.sub-dashboard li a i {
    color: var(--mainColor);
}

.sub-dashboard li a:hover {
    background-color: #eee;
    color: var(--mainColor);
    font-weight: bold;
}

.header-user {
    font-size: 12px;
    margin: 0 10px;
    cursor: pointer;
    transition-duration: .3s;
}

.header-user:hover {
    transform: scale(.9);
    text-shadow: 0 0 2px #222;
    color: var(--primaryColor);
}

.logout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    cursor: pointer;
    color: var(--lightColor);
    transition-duration: .3s;
}

.logout i {
    font-size: 20px;
}

.logout:hover {
    color: var(--primaryColor);
    transform: scale(.8);
}

.desktop-user {
    background-color: var(--primaryColor);
    color: var(--darkColor);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    margin-right: 20px;
    transition-duration: .4s;
}

.desktop-user:hover {
    background-color: var(--lightColor);
    color: var(--darkColor);
    border-color: var(--primaryColor);
}

.menu .nav-link {
    font-size: 13px;
}

.menu .nav-link i {
    margin-left: 5px;
    font-size: 15px;
}

.menu .hasChild .nav-link::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    margin-right: 3px;
}

.searchBox {
    border: 1px solid var(--lightColor);
    padding: 0 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.searchBox .inputSearch {
    background-color: transparent;
    border: none;
    color: var(--lightColor);
    font-size: 12px;
}

.searchBox .inputSearch::placeholder {
    color: var(--lightColor);
}

.searchBox .inputSearch:focus {
    outline: unset;
    border: none;
}

.searchBox .btnSearch {
    border: none;
    background-color: transparent;
    color: var(--lightColor);
    font-size: 12px;
    height: 28px;
    padding: 2px 0 0 0;
}

.divide {
    height: 30px;
    border-left: 1px dashed var(--darkColor);
}

.tools>span {
    font-size: 13px;
    display: block;
    cursor: pointer;
    transition-duration: .3s;
}

.tools>span:hover {
    color: var(--primaryColor);
    transform: scale(.9);
}

.tools .dropdown-menu {
    text-align: right;
    font-size: 12px;
    padding: 15px 0;
    box-shadow: 0 5px 12px -5px #555;
}

.tools a {
    display: flex;
    align-items: center;
    padding: 6px;
    color: #232323;
    transition-duration: .4s;
}

.tools a i {
    font-size: 18px;
    color: var(--mainColor);
}

.tools a:hover {
    background-color: #eee;
    color: var(--mainColor);
    font-weight: bold;
}

.breadcrumb {
    font-size: 13px;
    padding: 3px 30px;
    margin: 0;
    background-color: var(--darkColor);
    border-radius: 0;
}

.breadcrumb-item+.breadcrumb-item {
    padding: 0;
}

.breadcrumb-item a {
    color: var(--lightColor);
}

.breadcrumb-item a:hover {
    color: var(--primaryColor);
}

.breadcrumb-item.active {
    color: var(--primaryColor);
}

.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding: 0 5px;
}

main {
    padding: 10px;
}

.main {
    padding: 10px;
    height: calc(100vh - 146px);
    background-color: #fff;
    overflow: auto;
    border-radius: 15px;
    border: 1px solid var(--shadowColor);
    /* border-top: 0; */
    box-shadow: 0px 10px 40px -5px var(--mainColor);
}

.footer {
    position: fixed;
    height: 45px;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.action .btn {
    font-size: 12px;
    font-weight: bold;
    padding: 4px 15px;
    transition: all .3s;
}

.btn {
    font-size: 13px;
    padding: 5px 17px;
    transition: all .3s;
}

.table {
    margin: 0;
    background-color: #fff;
}


thead {
    position: sticky;
    top: 0;
}

thead,
tfoot {
    position: sticky;
    bottom: 0;
    background-color: #777;
    font-size: 13px;
}

.table thead th {
    border-bottom: none;
}

.table td {
    padding: 5px;
    font-size: 14px;
}

tfoot {
    font-size: 15px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--bodyBackground);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--shadowColor);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    width: 2px;
    background-color: #888;
    border-radius: 3px;
    /* border: 1px solid var(--shadowColor); */
    border-width: 2px 0 2px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.main::-webkit-scrollbar {
    width: 7px;
    background-color: var(--bodyBackground);
    border-radius: 15px 0 0 15px;
}

.main::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--shadowColor);
    border-radius: 15px 0 0 15px;
}

.main::-webkit-scrollbar-thumb {
    width: 2px;
    background-color: #888;
    border-radius: 15px 0 0 15px;
    border: 2px solid var(--shadowColor);
    border-width: 2px 0 2px 0;
}

.main::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.loginPage {
    height: 100vh;

}

.loginBox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    width: 500px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 3px 15px -5px #222;
    border-radius: 10px;
    border: 1px solid #19A7CE;
    border-top: none;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align: center;
}

.loginBox .head-title {
    display: block;
    padding: 20px;
    background-color: #19A7CE;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.loginBox .label {
    float: right;
    font-size: 13px;
    font-weight: bold;
}

::placeholder {
    font-size: 13px;
}

.showPassword {
    position: absolute;
    bottom: 11px;
    left: 10px;
}

.main-btn {
    background-color: #FEFF86;
    color: #146C94;
    border: 1px solid #146C94;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 25px;
    transition-duration: .4s;
}

.main-btn:hover {
    background-color: #19A7CE;
    color: #fff;
}

.modal-header .close {
    padding: 0;
    margin: 0;
}

.company-list thead {
    background-color: #146C94;
    color: #fff;
}

.company-list tr th {
    font-size: 15px;
}

.company-list tr td {
    font-size: 13px;
    padding: 10px;
    cursor: pointer;
    transition: .4s;
    background-color: #bee5eb;
    height: auto !important;
    justify-content: center !important;
    transition-duration: .3s;
}

.company-list tr td:hover {
    background-color: #c3f8fd;
    color: #146C94;
    font-weight: bold;
}

.page-title {
    font-size: 13px;
    position: fixed;
    top: 93px;
    left: 11px;
    right: 11px;
    background-color: #51578d;
    z-index: 10;
    padding: 8px 15px;
    color: #fff;
    border-radius: 15px 15px 0 0;
    display: none;
}

.custom-table {
    height: 100%;
}

.form-popUp {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transition-duration: .4s;
}

.form-popUp .parent {
    position: relative;
    background-color: #fff;
    height: calc(100vh - 40px);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px #111;
}

.form-popUp.open {
    pointer-events: auto;
    z-index: 20;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}


.content-form {
    background-color: #fff;
    height: calc(100vh - 140px);
    overflow: auto;
}

.halfWidth .content-form {
    height: calc(100vh - 150px);
}

.content-form::-webkit-scrollbar {
    display: none;
}

.title-section {
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    margin-bottom: 10px;
    padding: 8px 15px;
    background-color: #dedede;
    border: 1px solid #ccc;
    border-width: 1px 0;
}

.section .title-section {
    padding: 4px 10px;
}

/* .title-section::before,
.title-section::after {
    content: "\f100";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    margin: 0 5px;
}

.title-section::after {
    content: "\f101";
} */

.content-form .form {
    width: 70%;
    margin: auto;
    font-size: 13px;
    padding: 20px 10px;
    border: 1px solid #dedede;
}

.content-form .form.has-table {
    width: 99%;
    padding: 10px 0;
}

.content-form .form-group {
    white-space: nowrap;
    overflow: hidden;
}

.content-form .form-group:not(.suggest-lot, .exit-transfer, .entry-transfer, .exit-transfer-label, .entry-transfer-label) {
    display: inline-flex;
    align-items: start;
    margin-bottom: 5px;
}

.halfWidth {
    width: 99%;
    height: calc(100vh - 50px) !important;
    margin: auto;
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
}

input.form-control:read-only {
    background-color: #fff;
    cursor: pointer;
}

input.form-control:read-only:hover {
    background-color: #dedede;
}

input.form-control:disabled {
    background-color: #eee;
}

.custom-menu {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    text-align: right;
    min-width: 105px;
    z-index: 5;
    border: 1px solid #dedede;
    background-color: #fff;
    padding: 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.custom-menu .icon {
    padding: 5px 7px;
    font-size: 12px;
    display: block;
    color: #555 !important;
}

.custom-menu .icon i {
    margin-left: 5px;
    font-size: 14px;
}

.custom-menu .icon:hover {
    background-color: #eee;
}

.addGroup {
    position: absolute;
    top: 4px;
    left: 20px;
    font-size: 18px;
    color: #bbb;
}

.addGroup.hasVal {
    color: #20ac74;
    cursor: pointer;
}

table[data-name='groupAccTable'] tbody {
    position: relative;
}

table[data-name='groupAccTable'] tbody tr {
    position: relative;
}

.picture-file .form-group {
    align-items: center;
}

.content-form .form .label {
    font-size: 13px;
    font-weight: bold;
    min-width: 120px;
}

.content-form .form.has-table .label {
    min-width: unset;
    margin: 0 0 0 5px;
}

.picture-file .form-group .label {
    margin: 0;
}

.content-form .form ::placeholder {
    font-size: 13px;
    color: #888;
}

.content-form .form .form-control {
    font-size: 14px;
}

.content-form .form select.form-control {
    padding: 0 .75rem;
}

.content-form .form input.form-control,
.content-form .form select.form-control {
    height: 30px;
    font-size: 14px;
}

.content-form .form .form-control:focus {
    box-shadow: unset;
    outline: unset;
    border-color: #20ac74;
}

.require {
    position: absolute;
    top: 0;
    right: 2px;
    color: #d70303;
    display: none;
}

.input-group input {
    border-radius: 0 5px 5px 0 !important;
}

.input-group-text {
    padding: 0 5px;
    font-size: inherit;
    font-weight: bold;
    border-radius: 5px 0 0 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

.bootstrap-select .dropdown-menu {
    font-size: 13px;
    text-align: right;
}

.bootstrap-select .dropdown-menu>.inner {
    max-height: 170px !important;
}

.bootstrap-select .dropdown-menu li {
    margin: 0 10px;
}

.bootstrap-select>.dropdown-toggle {
    height: 32px;
    border: 1px solid #dedede;
}

.bootstrap-select>.dropdown-toggle:after {
    font-size: 15px;
    margin: 0;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: unset !important;
    background-color: #f5f5f5;
}

.bootstrap-select .dropdown-toggle .filter-option {
    text-align: right;
    font-size: 12px;
    color: #232323;
}

.dropdown-item.active,
.dropdown-item:active,
.es-list li.selected {
    background-color: #26ca88;
}

.people-form .content-form .form {
    width: auto;
    margin: 0 25px 15px;
}

.gender .icon {
    background-image: url(/image/male-femal-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    opacity: .4;
    cursor: pointer;
}

.gender .icon:hover {
    opacity: 1;
}

.gender .male .icon {
    background-position: -39px center;
}

.gender .female .icon {
    background-position: -5px center;
}

.gender input {
    display: none;
}

.gender input:checked~label {
    opacity: 1;
    filter: brightness(1.4) sepia(1);
    -webkit-filter: brightness(1.3) sepia(1) hue-rotate(90deg);
}

.gender label {
    margin: 0;
}

.input-attach,
.input-file {
    display: none;
}

.fileUpload {
    padding: 4px 15px;
    color: #20ac74;
    border: 2px solid #26ca88;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: .4s;
}

.fileUpload:hover {
    background-color: #20ac74;
    color: #fff;
}

.file-name {
    color: #20ac74;
}

.preview {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 0 10px 0 0;
}

.table-serialNumber {
    display: none;
}

.table-serialNumber .table-responsive {
    height: 250px;
    overflow: auto;
}

table[data-name='serialNumber-list'] tbody,
table[data-name='serialNumber-list'] tbody tr {
    position: relative;
}

.editInput {
    border-color: var(--mainColor) !important;
}

.suggest-lot {
    display: none;
    align-items: start;
    margin-bottom: 5px;
}

.production-order.hide {
    display: none;
}

.unit-measurement {
    position: absolute;
    left: 3px;
    bottom: 1px;
    background-color: #fff;
    line-height: 28px;
    color: #999;
    font-size: 11px;
}

.hasMeasurement input {
    padding-left: 48px !important;
}

.eye-icon {
    position: absolute;
    left: 0;
    bottom: 2px;
    font-size: 15px;
    background-color: #fff;
    color: #555;
    line-height: 25px;
    width: 18px;
    cursor: pointer;
}

.eye-icon:hover {
    color: #19A7CE;
}

.old-box {
    display: none;
}

.empty-txt {
    font-size: 14px;
    padding: 7px 10px;
}

.date-list .item {
    font-size: 11px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 3px 6px;
    margin: 2px;
    background-color: #777;
    color: #fff;
}

.add-company {
    border: none;
    font-size: 18px;
    color: #20ac74;
}

.add-company:hover {
    color: #999;
}

.paddingL input[type=number],
.paddingL input.number {
    padding-left: 25px !important;
}

.overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.65);
    width: 100%;
    top: 52px;
    bottom: 0;
    z-index: 99;
}

.lvl-access .custom-control-input {
    opacity: 1;
    left: unset;
    margin-right: -20px;
    accent-color: #ffcc6f;
    z-index: auto;
}

.lvl-access li {
    position: relative;
    font-size: 14px;
}

.lvl-access label {
    cursor: pointer;
}

.lvl-access label:hover {
    color: #ffcc6f;
}

.lvl-access li.hasChild span.show-list {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -38px;
    top: 2px;
    width: 17px;
    height: 17px;
    transition-duration: .4s;
}

.lvl-access li.hasChild span.show-list::before {
    content: "\f0d9";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
}

.lvl-access li.hasChild span.show-list.open {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.lvl-access .hasChild>ul {
    display: none;
}

.footer-btn-fixed {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    white-space: nowrap;
    overflow-x: auto;
    z-index: 100;
}

.print-form .content-form,
.print-form .parent {
    height: 100%;
    border-radius: 0;
}

.print-form {
    opacity: 0;
    pointer-events: none;
}

.print-form.open {
    opacity: 1;
    pointer-events: auto;
}

.print-form .form-group {
    font-size: 12px;
    margin-left: 20px;
}

.print-form .form-group label {
    color: #888;
}

.addGroup,
.addField,
.addparametr {
    position: absolute;
    bottom: 0;
    left: 20px;
    font-size: 18px;
    color: #bbb;
}

.addGroup.hasVal,
.addField.hasVal,
.addparametr.hasVal {
    color: #20ac74;
    cursor: pointer;
}

.custom-menu {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    text-align: right;
    min-width: 105px;
    z-index: 5;
    border: 1px solid #dedede;
    background-color: #fff;
    padding: 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.custom-menu .icon {
    padding: 5px 7px;
    font-size: 12px;
    display: block;
    color: #555 !important;
}

.custom-menu .icon i {
    margin-left: 5px;
    font-size: 14px;
}

.custom-menu .icon:hover {
    background-color: #eee;
}

.transfer-command,
.exit-transfer,
.entry-transfer,
.exit-transfer-label,
.entry-transfer-label {
    display: none;
    align-items: start;
    margin-bottom: 5px;
}

@media (min-width:992px) {
    .sub-menu {
        position: absolute;
        width: 100%;
        top: 100%;
        right: 0;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 7px 12px rgba(43, 43, 43, 0.15);
        border: 1px solid #ccc;
        border-radius: 3px;
        z-index: 100;
        transition: all .4s;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
    }

    .sub-menu.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu {
        position: static;
    }

    .menu .nav-item {
        padding: 7px 0;
    }

    .menu .nav-link {
        color: var(--lightColor);
        cursor: pointer;
        user-select: none;
    }

    .nav-link:hover {
        color: var(--primaryColor);
    }

    .nav-link.selected {
        position: relative;
        background-color: #f7f7f7;
        color: var(--mainColor);
        border-radius: 15px;
        font-weight: bold;
    }

    .nav-link.selected::before {
        content: "";
        position: absolute;
        bottom: -8px;
        right: 0;
        left: 0;
        margin: auto;
        width: 12px;
        border-top: 8px solid #fff;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
    }

    .sub-menu>ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub-menu>ul>li {
        min-width: 23.55%;
        margin: .7%;
    }

    .sub-menu.operation>ul>li {
        max-width: 45%;
    }

    .sub-menu .title {
        display: block;
        font-size: 13px;
        font-weight: bold;
        padding: 5px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        color: #222;
        transition-duration: .4s;
    }

    .sub-menu a.title {
        margin: 0;
    }

    .sub-menu a.title:hover {
        color: var(--primaryColor);
        border-color: var(--primaryColor);
        box-shadow: 0 7px 15px -5px rgba(0, 0, 0, 0.4);
    }

    .sub-menu a.title:hover img {
        transform: scale(.85);
        filter: grayscale(50%);
    }

    .sub-menu img {
        width: 40px;
        margin: 5px 10px;
        transition-duration: .3s;
    }

    .sub-menu ul ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        max-height: 220px;
        font-size: 13px;
        color: #232323;
        list-style-type: circle;
    }

    .sub-menu ul ul li a {
        display: block;
        padding: 3px 0;
        margin-left: 50px;
        color: #232323;
        transition-duration: .4s;
    }

    .sub-menu.operation ul ul {
        padding-right: 20px;
    }

    .sub-menu.operation ul ul li a {
        margin: 0 -5px 0 0;
    }

    .sub-menu ul ul li a:hover {
        transform: translateX(-5px);
        color: var(--mainColor);
        font-weight: bold;

    }

    .action .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 12px -5px #555;
    }
}

@media (min-width:1200px) {
    .sub-menu>ul>li {
        min-width: 19%;
        margin: .5%;
    }

    .sub-menu.operation>ul>li {
        max-width: 36%;
    }
}

@media (min-width:1400px) {
    .sub-menu>ul>li {
        min-width: 15.8%;
        margin: .4%;
    }

    .sub-menu.operation>ul>li {
        max-width: 32%;
    }

    .sub-menu.operation ul ul {
        padding-right: 35px;
    }
}

@media (max-width:1199.98px) {
    .dashboard-icon {
        font-size: 13px;
    }

    .logout i {
        font-size: 17px;
    }

    .desktop-user {
        margin-right: 15px;
        padding: 4px 13px;
        font-size: 12px;
    }

    .menu .nav-link {
        padding: 8px !important;
    }

    .searchBox .inputSearch {
        max-width: 130px;
    }

    .tools>span {
        font-size: 12px;
    }

    .sub-menu .title {
        margin-bottom: 10px;
    }

    .sub-menu ul ul {
        font-size: 12px;
    }

    .content-form .form:not(.has-table) {
        width: 80%;
    }
}

@media (max-width:991.98px) {
    nav.navbar {
        height: 50px;
    }

    .dashboard-icon {
        display: none;
    }

    .user-info {
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .header-user {
        color: var(--mainColor);
        font-weight: bold;
        height: 55px;
        margin: 0 0 10px;
    }

    .desktop-user {
        margin: 0;
        padding: 4px 20px;
        font-size: 13px !important;
        font-weight: bold;
    }

    .logout {
        color: var(--mainColor);
    }

    .menu-icon {
        position: absolute;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.65);
        width: 100%;
        top: 52px;
        bottom: 0;
        z-index: 99;
    }

    .menu {
        position: fixed;
        background-color: #fff;
        box-shadow: 0 5px 15px #555;
        width: 300px;
        height: calc(100vh - 52px);
        right: -320px;
        top: 52px;
        padding: 15px;
        padding-bottom: 65px;
        overflow: auto;
        z-index: 100;
        transition-duration: .4s;
    }

    .menu.open {
        right: 0;
    }

    .sub-menu {
        display: none;
        background-color: #f7f7f7;
        border-radius: 7px;
        padding: 10px;
    }

    .sub-menu a {
        display: block;
        font-size: 14px;
        color: var(--darkColor);
        padding: 6px 4px;
    }

    .sub-menu img {
        display: none;
    }

    .menu .nav-link {
        position: relative;
        color: var(--darkColor);
        font-size: 14px;
    }

    .menu .nav-link i {
        width: 20px;
    }

    .menu .hasChild .nav-link::after {
        position: absolute;
        left: 10px;
        content: "\f104";
        font-size: 15px;
        transition-duration: .4s;
    }

    .menu .hasChild.open .nav-link::after {
        transform: rotate(-90deg);
    }

    .sub-menu .title {
        color: #555;
        margin: 0;
        font-weight: bold;
    }

    .sub-menu ul ul {
        padding-right: 20px;
        margin-bottom: 15px;
        color: var(--mainColor);
        list-style-type: circle;
    }

    nav.navbar .left {
        position: static;
    }

    .tools>span {
        font-size: 0;
    }

    .tools>span i:first-child {
        font-size: 22px;
        animation: rotateCog 2.5s infinite linear;
    }

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

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

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

    .divide {
        display: none;
    }

    .search-icon {
        font-size: 20px;
        margin: 8px 10px 0 0;
    }

    .search-section {
        position: absolute;
        z-index: 10;
        top: 45px;
        width: 100%;
        background-color: var(--darkColor);
        padding: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px -5px #555;
        display: none;
    }

    .searchBox .inputSearch {
        width: 100%;
        max-width: unset;
    }

    main {
        padding: 5px;
    }

    .main {
        height: calc(100vh - 185px);
    }

    .footer {
        padding: 0 10px;
    }

    .btn {
        font-size: 12px;
    }

    .main-btn {
        font-size: 14px !important;
        padding: 5px 15px !important;
    }

    .page-title {
        top: 86px;
        left: 6px;
        right: 6px;
    }

    .content-form .form:not(.has-table) {
        width: 90%;
    }

    .form-popUp {
        padding: 10px;
    }

    .form-popUp .parent {
        height: calc(100vh - 85px);
    }

    .halfWidth {
        height: calc(100vh - 100px) !important;
    }

    .content-form {
        height: calc(100vh - 180px);
    }

    .halfWidth .content-form {
        height: calc(100vh - 195px);
    }

    ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
}

@media (max-width:767.98px) {
    .content-form .form {
        width: 95%;
        padding: 10px 3px;
    }

    .content-form .form .form-control {
        padding: 5px;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width:575.98px) {
    .breadcrumb {
        padding: 4px 10px;
        font-size: 12px;
    }

    .btn {
        font-size: 12px;
        padding: 3px 10px;
    }

    .main {
        height: calc(100vh - 180px);
    }

    .footer {
        height: 45px;
    }

    .loginBox {
        width: 85%;
    }

    .content-form .form {
        padding: 15px 0;
    }

    .content-form .form-group:not(.suggest-lot, .exit-transfer, .entry-transfer, .exit-transfer-label, .entry-transfer-label) {
        display: block;
        margin-bottom: 10px;
    }

    .content-form .form .label,
    .content-form .form.has-table .label {
        margin-bottom: 3px;
    }

    .empty-txt {
        width: 75% !important;
    }

    .halfWidth {
        width: 100%;
    }

    .title-section {
        font-size: 13px;
    }

    .unit-measurement {
        left: 6px;
    }

    .hasMeasurement input {
        padding-left: 35px !important;
    }
}