:root {
    --btn-primary: #2ca01c;
    --avatar-accent: #7a1fa2;
    --body-background: #e9eaed;
    --btn-danger: #F57D7D;
    --btn-cancel: #d3d3d3;
}

@import url("font/style.css");

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('https://res.cloudinary.com/rr6/raw/upload/v1637134696/FontsFree-Net-proxima_nova_reg-webfont_ccc8ka.ttf');
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none !important;
}

.shade {
    color: #777;
}

.avtar.avtar-xs {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.avtar {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    width: 48px;
    height: 48px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

body {
    background-color: var(--body-background);
    font-family: 'proxima_nova_rgregular', Helvetica, Arial, sans-serif;
}

.cursor-pointer {
    cursor: pointer;
}

.header-container {
    box-shadow: 0px 0px 2px #ccc;
}

.dash-avatar {
    background-color: var(--avatar-accent);
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.avatar-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.dash-container {
    /*min-height: 100vh;*/
    background-color: var(--body-background);
}

.main-header {
    background: #fff;
    top: 0;
    z-index: 99;
}

.dash-body-container {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 2px #00000012;
}

.panel-container {
    margin-top: 51px;
    padding-left: 300px;
}

.side-panel {
    height: calc(100vh - 51px);
    max-width: 300px;
    width: 100%;
    background: #011722;
}

.max-container {
    max-width: 1380px;
}

.side-panel {
    overflow-y: auto;
    z-index: 98;
}

.c-scroll::-webkit-scrollbar-track {
    background-color: #011722;
}

.side-link-sub.c-scroll::-webkit-scrollbar-track {
    background-color: #091e29;
}

.c-scroll::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.c-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f9f9f947;
}

@media only screen and (max-width: 992px) {
    .panel-container {
        padding-left: 0;
    }
}

@media only screen and (max-width: 576px) {
    .side-panel {
        max-width: 100%;
    }
}

.profle-panel {
    background-color: #fff;
    box-shadow: 0px 0px 8px #00000020;
    width: 380px;
    min-height: 100vh;
    right: 0;
    z-index: 111;
    top: 0;
}

.close-profile {
    right: 10px;
    top: 10px;
    background: #0000000d;
    color: #b6b6b6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.avatar-big {
    height: 80px;
    width: 80px;
}

.btn {
    box-shadow: none !important;
    cursor: pointer;
    border: none !important;
    padding-right: 26px;
    padding-left: 26px;
}

.btn-danger {
    background-color: var(--btn-danger) !important;
    color: #fff !important;
}

.btn-round {
    border-radius: 50px;
}

.profile-container {
    background: linear-gradient(180deg, #e3fff6, #ffffff);
}

.side-link a i {
    margin-right: 10px;
    font-size: larger;
}

.side-link a {
    color: #a5a5a5;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.side-link.active,
.side-link:hover {
    background: #091e29;
}

.side-link.active a,
.side-link:hover a {
    color: #fff;
}

.side-link.active a i {
    color: var(--btn-primary);
}

.side-link-sub {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: height, 0.2s linear;
    -moz-transition: height, 0.2s linear;
    -ms-transition: height, 0.2s linear;
    -o-transition: height, 0.2s linear;
    transition: height, 0.2s linear;
}

.side-link.active .side-link-sub {
    max-height: 320px;
    overflow-y: auto;
    -webkit-transition: height, 0.2s linear;
    -moz-transition: height, 0.2s linear;
    -ms-transition: height, 0.2s linear;
    -o-transition: height, 0.2s linear;
    transition: height, 0.2s linear;
}

.side-link-sub a {
    color: #a5a5a5 !important;
    padding: 10px;
}

.side-link-sub a:hover {
    color: #ececec !important;
}

.side-link-sub.c-scroll {
    margin-right: 6px;
}

.side-link-sub a.active {
    color: #fff !important;
}

.swal2-popup.swal2-modal button {
    box-shadow: none !important;
}

button.swal2-cancel.swal2-styled {
    background: var(--btn-cancel) !important;
    color: #333;
}

button.swal2-confirm.swal2-styled {
    background: var(--btn-primary) !important;
}

.btn-success {
    /*background: var(--btn-primary) !important;*/
    /*color: #fff !important;*/
    color: #fff !important;
    background-color: #2ca01c;
    border: 1px solid #2ca01c !important;
    border-radius: 25px;
}

.btn-primary {
    color: #fff;
    background-color: #2ca01c;
    border: 1px solid #2ca01c !important;
    border-radius: 25px;
}

.btn-primary:hover {
    color: #2ca01c !important;
    background-color: #fff;
    border: 1px solid #2ca01c !important;
}

.btn-success:hover {
    color: #2ca01c !important;
    background-color: #fff;
    border: 1px solid #2ca01c !important;
}

a.edit-form {
    position: absolute;
    top: 0px;
    right: 0px;
}

.btn-cancel {
    background: var(--btn-cancel);
    border-radius: 25px;
    background-color: #FFF !important;
    border: 1px solid #AAA !important;
    color: #555;
    padding: 10px 15px !important;
    line-height: 100%;
    font-size: 100%;
    font-weight: 400;
    border-radius: 25px;
    cursor: pointer;
}

.btn-cancel:hover {
    background-color: #2ca01c !important;
    color: #FFF;
}

form.c-form input,
form.c-form textarea,
form.c-form select {
    box-shadow: none !important;
}

form.c-form .form-control {
    border-color: var(--btn-cancel);
}

form.c-form .form-control:hover {
    color: #363a3f;
    border-color: #9da1a5;
}

form.c-form .form-control:focus {
    color: #363a3f;
    border-color: var(--btn-primary) !important;
}

form.c-form label {
    margin: 0;
    font-size: small;
    font-weight: 600;
}

.form-row {
    max-width: 720px;
}

form.c-form textarea {
    min-height: 100px;
    max-height: 200px;
}

label.form-check-label {
    cursor: pointer;
}

.read-mode input,
.read-mode textarea,
.read-mode select {
    border: none;
    pointer-events: none;
    padding: 0;
    height: auto;
    min-height: auto !important;
    font-size: initial;
    color: #222;
    resize: none;
    background: none !important;
}

.read-mode input[type="file"] {
    display: none !important
}

.read-mode span.select2-selection {
    border: none;
    pointer-events: none;
    padding: 0;
    height: auto;
    min-height: auto !important;
    font-size: initial;
    color: #222;
}

.read-mode input[type="checkbox"],
.read-mode input[type="radio"] {
    display: none;
    pointer-events: none;
}

.read-mode label.form-check-label {
    display: none;
    pointer-events: none;
}

.read-mode input[type="radio"]:checked+label {
    display: block;
    pointer-events: none;
}

.read-mode input[type="checkbox"]:checked+label {
    display: block;
    pointer-events: none;
}

.read-mode .form-group {
    margin-bottom: 12px;
}

.read-mode option {
    display: none;
}

.read-mode option:checked {
    display: block;
    background: none !important;
}

.read-mode select.form-control {
    overflow: hidden;
    max-height: 22px !important;
}

.read-mode span.select2-selection {
    border: none !important;
    padding: 0px !important;
    pointer-events: none;
}

.read-mode span.select2-selection span {
    border: none !important;
    padding: 0px !important;
    pointer-events: none;
    color: #222;
}

span.select2-selection {
    border-color: var(--btn-cancel) !important;
}

span.select2-selection:hover {
    border-color: #9da1a5 !important;
}

.select2-container--open .select2-selection,
.select2-container--focus .select2-selection {
    border-color: var(--btn-primary) !important;
}

span.select2-dropdown {
    border-color: var(--btn-cancel);
}

span.select2-search.select2-search--dropdown {
    padding: 10px;
}

input.select2-search__field {
    border-color: var(--btn-cancel) !important;
    padding: 2px 6px !important;
    outline: none !important;
    border-radius: 4px;
    font-size: small;
}

.select2-results__option {
    font-size: small;
}

span.select2-selection {
    height: 40px !important;
}

.select2-selection__rendered {
    line-height: 40px !important;
}

.select2-selection__arrow {
    height: 40px !important;
}

.read-mode .select2-selection__arrow {
    display: none;
}

li.select2-selection__choice {
    font-size: small;
    padding: 0px !important;
    background: var(--btn-primary) !important;
    border: none !important;
    color: #fff !important;
}

li.select2-selection__choice {
    line-height: 24px !important;
    padding: 2px 6px !important;
}

span.select2-selection__choice__remove {
    color: #fff !important;
}

.read-mode ul.select2-selection__rendered {
    padding: 0px !important;
}

.read-mode span.select2-selection__choice__remove {
    display: none !important;
}

.read-mode li.select2-selection__choice {
    background: none !important;
    color: #222 !important;
    font-size: initial;
    padding: 0px !important;
}

.read-mode input.select2-search__field {
    padding: 0px !important;
}

.read-mode .select2-selection__rendered {
    line-height: normal !important;
}

input.select2-search__field {
    height: 20px;
}

span#select2--container {
    font-size: initial;
}

.read-mode textarea.form-control {
    overflow: hidden;
}

li.select2-results__option {
    background: #fff !important;
    color: #333 !important;
    font-size: .9em;
    padding: 8px;
}

li.select2-results__option:hover {
    background: rgb(228, 228, 228) !important;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: var(--btn-primary);
    transform: scale(1.3);
}

input[type="range"] {
    accent-color: var(--btn-primary);
}

.read-mode label.form-check-label {
    font-weight: normal !important;
    font-size: initial !important;
}

.side-link-sub a.active {
    position: relative;
}

.side-link-sub a.active::before {
    content: "⬤";
    color: var(--btn-primary) !important;
    font-size: x-small;
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translate(0%, -50%);
}

.table-container .table {
    border-spacing: 0 0.85rem !important;
}

.table-container .table td,
.table-container .table th {
    vertical-align: middle;
    margin-bottom: 10px;
    border: none;
}

.table-container .table thead tr,
.table-container .table thead th {
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
}

.table-container .table td {
    background: #f9f9f9;
}

.nav-tabs .nav-item .btn-success {
    color: #fff;
    background-color: #2ca01c !important;
    border: 1px solid #2ca01c !important;
}

.nav-tabs .nav-item .btn-success:hover {
    color: #2ca01c important;
    background-color: #fff !important;
    border: 1px solid #2ca01c !important;
}

@media (min-width: 576px) {
    .table-container .table td:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .table-container .table td:last-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .table-container table {
        min-width: 860px;
    }

    .list-child::after {
        content: "";
        position: absolute;
        left: 12px;
        top: 8px;
        height: 16px;
        width: 2px;
        background: #838383;
    }

    .list-child::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 24px;
        height: 2px;
        width: 16px;
        background: #838383;
    }

    .list-child {
        padding-left: 30px !important;
        position: relative;
    }

    td.list-subchild {
        padding-left: 50px !important;
        position: relative;
    }

    .list-subchild::after {
        content: "";
        position: absolute;
        left: 32px;
        top: 8px;
        height: 16px;
        width: 2px;
        background: #838383;
    }

    .list-subchild::before {
        content: "";
        position: absolute;
        left: 32px;
        top: 24px;
        height: 2px;
        width: 16px;
        background: #838383;
    }
}

.table-container .avatar {
    width: 2.75rem;
    height: 2.75rem;
    line-height: 3rem;
    border-radius: 50%;
    display: inline-block;
    background: transparent;
    position: relative;
    text-align: center;
    color: #868e96;
    font-weight: 700;
    vertical-align: bottom;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.table-container .avatar-sm {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.83333rem;
    line-height: 1.5;
}

.table-container .avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.table-container .avatar-blue {
    background-color: #ffffff;
    color: #333;
}

.table-container table.dataTable {
    margin-top: 12px !important;
}

.table-container table.dataTable {
    clear: both;
    max-width: none !important;
    border-collapse: separate !important;
    border-spacing: 0;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

table a {
    color: #333 !important;
}

.table-action a:hover {
    color: #222;
}

.table-action a {
    width: 26px;
    height: 26px;
    color: #444;
    background: var(--btn-cancel);
    margin-right: 6px;
    border-radius: 50%;
    font-size: small;
}

.table-container {
    overflow-x: scroll;
    margin-top: -16px;
    margin-bottom: -16px;
}

.flex-1 {
    flex: 1;
}

.header-text a {
    display: block;
    max-width: 240px;
}

@media (max-width: 575px) {
    .table-container table thead {
        display: none;
    }

    .table-container table tr {
        display: flex;
        flex-direction: column;
        border: 3px solid white;
        padding: 1px;
    }

    .table-container table td[data-label] {
        display: flex;
        font-weight: bold;
    }

    .table-container table td[data-label]::before {
        content: attr(data-label);
        color: #6e6e6e;
        font-weight: 100;
        width: 50%;
    }

    .table-container td {
        margin: 0px !important;
    }

    .table-container td {
        display: none !important;
    }

    .table-container td.first {
        display: unset !important;
    }

    tr.collapsed td {
        display: flex !important;
    }

    td.first {
        border-radius: 10px !important;
    }

    tr.collapsed td:first-child {
        border-radius: 10px 10px 0px 0px !important;
    }

    tr.collapsed td:last-child {
        border-radius: 0px 0px 10px 10px !important;
    }
}

a.view-rows {
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: x-large;
    color: var(--btn-primary) !important;
    z-index: 9;
    padding: 15px;
}

a.view-rows.collapsed {
    color: var(--btn-danger) !important;
}

.badge-success {
    color: #fff;
    background-color: var(--btn-primary);
}

.badge {
    line-height: inherit !important;
}

span.side-toggler {
    font-size: xx-large;
    cursor: pointer;
}

.dash-body-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}

.dash-body-loader>div {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.body-loading {
    background: var(--body-background);
    width: 200px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 10px;
    animation: bodyloading 1s infinite;
}

.body-loading:last-child {
    width: 100%;
}

.loader.side-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #011722;
}

@keyframes bodyloading {
    from {
        background-color: var(--body-background);
    }

    to {
        background-color: #f5f5f7;
    }
}

@keyframes sideloading {
    from {
        background-color: #ffffff13;
    }

    to {
        background-color: #ffffff0a
    }
}

.loader.side-loader {
    padding: 20px 20px 20px 60px;
}

.side-loading {
    width: 100%;
    background: #ffffff13;
    padding: 16px 20px 16px 20px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 16px;
    animation: sideloading 1s infinite;
}

.side-loading::before {
    background: #ffffff13;
    content: "";
    padding: 16px;
    position: absolute;
    top: 0;
    left: -40px;
    border-radius: 50%;
    animation: sideloading 1s infinite;
}

.login-main {
    min-height: 100vh;
}

.login-box {
    max-width: 360px;
    padding-bottom: 3em !important;
    padding-top: 3em !important;
}

a.forgot-password {
    font-size: small;
    color: var(--btn-primary);
    font-weight: 600;
}

.side-link a i {
    margin-right: 10px;
    font-size: larger;
    width: 20px;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--btn-primary) !important;
    background-color: var(--btn-primary) !important;
}

.custom-control-input,
.custom-control-input * {
    box-shadow: none !important;
}

.form-error {
    color: var(--btn-danger);
    font-size: smaller;
    font-weight: 600;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: var(--btn-primary) !important;
    font-weight: normal !important;
}

.body-title {
    font-weight: bold !important;
    font-size: x-large;
}

.option-group.col-12.position-relative div.row {
    border: 1px solid #d3d3d3 !important;
    border-radius: 4px;
}

a.nav-link {
    color: #6b6c72 !important;
    font-weight: 600;
}

.d-flex.table-action select {
    max-width: 200px;
}

.d-flex.table-action {
    align-items: center;
}

span.stepIcon {
    display: flex;
    width: 60px;
    height: 60px;
    margin: auto;
    background: #e9eaed;
    border-radius: 50%;
    font-size: x-large;
    color: #333;
    opacity: .4;
}

.active .stepIcon {
    opacity: 1;
    color: var(--btn-primary);
}

.dash-avatar.get-started {
    background: var(--btn-cancel);
    color: #555 !important;
    width: 26px;
    height: 26px;
    font-size: smaller;
}

span.select2.select2-container {
    min-width: 200px;
}

.customer .panel-container {
    padding: 0;
}

.top-navigation a {
    font-weight: 600;
    margin-right: 10px;
    color: #666;
}

#locations-list li {
    font-size: 15px;
    line-height: 30px;
}

#locations-list li {
    list-style: none;
    border: 1px solid #ddd;
    width: fit-content;
    padding: 8px 15px;
    margin-bottom: 15px;
}

ul#locations-list {
    padding-left: 0;
}

#locations-list li a {
    padding-right: 10px;
    min-width: 150px;
    display: inline-block;
    color: #171F46;
}

ul#locations-list .dropdownmenu li {
    border: none;
    width: auto !important;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 30px;
    display: block;
    position: relative;
    margin-bottom: 0;
}

#locations-list li .fa {
    float: right;
    margin-top: 8px;
}

.dropdownmenu::before {
    display: block;
    width: 1px;
    height: 13px;
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: -1px;
    z-index: 1;
}

.childmenu-item::before {
    display: block;
    width: 20px;
    height: 1px;
    content: " ";
    background-color: #7E858E;
    position: absolute;
    left: 0;
    top: 16px;
}

img#uploaded-image1 {
    max-width: 100%;
}

ul#locations-list {
    padding-left: 0;
}

#locations-list li {
    list-style: none;
    border: 1px solid #ddd;
    width: 450px;
    padding: 8px 15px;
    margin-bottom: 15px;
}

#locations-list li .fa {
    float: right;
    margin-top: 8px;
}

ul#locations-list .dropdownmenu li {
    border: none;
    width: auto !important;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 30px;
    display: block;
    position: relative;
    margin-bottom: 0;
}

#locations-list li a {
    padding-right: 10px;
    min-width: 150px;
    display: inline-block;
    color: #171F46;
}

#locations-list li a:hover {
    color: #0B69FF;
}

#locations-list li {
    font-size: 15px;
    line-height: 30px;
}

.dropdownmenu {
    border-left: 1px solid #7E858E;
    margin-left: 30px;
    padding-left: 0;
    position: relative;
}

.dropdownmenu::before {
    display: block;
    width: 1px;
    height: 13px;
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: -1px;
    z-index: 1;
}

.childmenu-item::before {
    display: block;
    width: 20px;
    height: 1px;
    content: " ";
    background-color: #7E858E;
    position: absolute;
    left: 0;
    top: 16px;
}

.col.current p {
    border-bottom: 6px solid var(--btn-primary);
}

.col.completed .stepIcon {
    opacity: .6;
    position: relative;
}


/* INDigital Styles*/
.main-footer {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.copyright-text p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.products h6.product-name {
    color: #404964;
    text-transform: capitalize;
    font-size: 18px;
}

.dash-body {
    margin-top: 25px;
}

.dash-body-container .main-title {
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 600;
}

.main-content .products.card {
    border-radius: 0;
}

.right-section .card {
    border-right: 1px solid #ECECEC;
    border-bottom: 1px solid #DFDFDF;
    border-left: 1px solid #ECECEC;
    border-radius: 8px;
    background: linear-gradient(to bottom, white 1%, #f9f9f9 98%) repeat scroll 0 0 transparent;
}

.sub-title::after {
    content: " ";
    display: block;
    background-color: #cec67c;
    width: 75px;
    height: 3px;
    margin-top: 8px;
}

.sub-title {
    margin-bottom: 25px;
}

.info-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-box P {
    margin-bottom: 7px;
}

.products .form-group img {
    margin-bottom: 15px;
    width: 100%;
    border: 1px solid #ccc;
}

.products .form-group {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .dataTables_scrollHead {
        margin-top: 10px;
        margin-bottom: -30px;
    }
    .main-content.p-md-5 {
        padding-top: 45px !important;
    }
}

.page_nav {
    border-bottom: 2px solid #DDD;
}

.page_nav ul {
    /*overflow: hidden;*/
}

.page_nav ul li {
    list-style: none;
    display: inline-block;
    /*overflow: hidden;*/
}

.page_nav ul li.active a {
    border-bottom: 3px solid #2ca01c;
    color: #393a3d;
    font-weight: 600;
}

.page_nav ul li a {
    color: #6b6c72;
    font-weight: 400;
    margin-right: 15px;
    padding-bottom: 1px;
    text-decoration: none;
}

.page_nav ul li a:hover {
    text-decoration: none;
}

.page_nav ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.page_nav ul li a:hover {
    text-decoration: none;
}

.orderbtn {
    color: #fff !important;
    background-color: #2ca01c;
    border: 1px solid #2ca01c !important;
}

.fh_actions li {
    list-style: none;
}

.fh_actions .fh_link {
    color: #2ca01c !important;
}

.fh_actions i.fa {
    color: #2ca01c;
    border-left: 1px solid #D4D7DC;
    padding-left: 6px;
    margin-left: 4px;
}

.fh_actions .fh_dropdown {
    border: 1px solid #D4D7DC;
    padding-left: 0;
    background-color: #fff;
    min-width: 150px;
    margin-top: 3px;
    border-radius: 2px;
    right: 0px;
}

.fh_actions .fh_dropdown li {
    font-size: 13px;
    padding: 7px 10px;
}

.fh_actions .fh_dropdown li a {
    cursor: pointer;
}

.fh_actions .fh_dropdown li:hover,
.fh_actions .fh_dropdown li:focus {
    background-color: #2ca01c;
    color: #fff;
}

.fh_actions .fh_dropdown li:hover i,
.fh_actions .fh_dropdown li:focus i {
    color: #fff;
}

.fh_actions .fh_dropdown li:hover a {
    color: #fff;
}

.product-item {
    overflow: hidden;
    margin-bottom: 20px;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-item h5 {
    margin: 15px 0;
}

.product-price {
    font-weight: bold;
}

.table-container {
    overflow: visible !important;
}

.dataTables_scrollBody {
    overflow: visible !important;
}

.productType {
    position: absolute;
    top: -52px;
    left: 15px;
}
.side-cat {
    font-size: large;
}
.side-cat.active {
    color: #cec67c !important;
    font-weight: 600;
}
.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.text-logo{
    color: #cec67c !important;
}

.product-item img {
    max-height: 140px;
    object-fit: contain;
}

.qtyProduct.bg-success.rounded-circle.text-white {
    width: 28px;
    height: 28px;
    text-align: center;
    display: flex;
    font-size: small;
    margin: auto;
}

.cartImage.mr-2.position-relative img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ebebeb;
    background: #fff;
    object-fit: contain;
}

.cursor-pointer{
    cursor: pointer;
}
.orderProduct{
    transition: 0.25s ease;
}
.orderProduct:hover {
    transform: scale(1.1);
}
.orderProduct:hover .dleitems{
    display: flex !important;
}

.dleitems {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    display: none !important;
}