[data-click] {
    cursor: pointer !important;
}

[data-click].disabled {
    cursor: not-allowed !important;
}

body {
    overflow-y: scroll;
}

body.dragging {
    cursor: grabbing !important;
}

button:active, button:focus {
    outline: none;
    outline: 0;
    box-shadow: 0;
    box-shadow: none;
}

label {
    width: 100%;
    text-align: left;
}

.date-range-text {
    position: relative;
    top: 2px;
}

.spin {
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.card-header-img {
    width: 100%;
    height: 215px;
    background-size: 100%;
    background-position: center;
    position: relative;
}

.product-images-thumbs {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}

.product-images-thumbs ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.product-images-thumbs ul li .product-image-thumb {
    width: 30px;
    height: 30px;
    box-shadow: 0 0 15px -4px #adadad;
    border-radius: 7px;
    margin: 0 5px;
    background-size: cover;
    background-position: center;
    transition: .2s all ease-in-out;
}

.product-images-thumbs ul li:hover .product-image-thumb {
    transform: scale(1.1);
}

.user-card-s2 .user-info.mt-0 {
    margin-top: 0 !important;
}

.nk-off-sidebar {
    width: 33%;
    top: 65px;
    background-color: #fff;
    height: calc(100vh - 65px);
    padding: 1.5rem;
    box-shadow: -10px 0 10px -11px rgba(0,0,0,0.15)
}

.nk-off-sidebar .simplebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nk-off-sidebar .simplebar-content .nk-sidebar-header {
    height: 102px;
}

.nk-off-sidebar .simplebar-content .nk-sidebar-content {
    flex-grow: grow;
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.nk-off-sidebar .simplebar-content .nk-sidebar-footer {
    height: 80px;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    background: transparent;
}

.product-main-info {
    width: 100%;
    min-width: 100%;
}

.input-group-text-sm {
    line-height: 0.9rem;
}

.form-group {
    margin-bottom: 0.9rem;
}

.dropzone .dz-message-text {
    font-size: 16px;
}

.dropzone .dz-message-text em {
    font-size: 32px;
}

.dropzone {
    border: 2px dashed rgba(0, 0, 0, 0.3);
}

div.gallery-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

div.gallery-holder .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 20px -3px rgb(0 0 0 / 15%);
    margin-right: 10px;
    margin-bottom: 10px;
    border: 3px solid transparent;
    transition: .2s all ease-in-out;
    padding: 2px;
    min-width: 100px;
    display: flex;
    justify-content: center;
}

div.gallery-holder .gallery-img.video:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: '';
    background-image: url('/management/images/off/video.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
}

div.gallery-holder .gallery-img.checked {
    border: 3px solid #8b58ff;
    background: #ffffff;
}

div.gallery-holder .gallery-img img {
    height: 150px;
}

div.gallery-holder .gallery-img .remove {
    position: absolute;
    top: -40px;
    right: 10px;
    padding: 2px 7px;
    background: #e85347;
    color: #ffffff;
    font-size: 13px;
    transition: .2s all ease-in-out;
    border-radius: 4px;
}

div.gallery-holder .gallery-img .remove.disabled,
div.gallery-holder .gallery-img .remove[disabled] {
    background: #cecece;
}

div.gallery-holder .gallery-img .featured {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 7px;
    background: #dddddd;
    color: #333333;
    font-size: 13px;
    transition: .2s all ease-in-out;
    border-radius: 4px;
}

div.gallery-holder .gallery-img .featured em {
    transition: .2s all ease-in-out;
}

div.gallery-holder .gallery-img.featured .featured {
    background: #f7e891;
}

div.gallery-holder .gallery-img.featured .featured em {
    color: rgb(171, 154, 0);
}

div.gallery-holder .gallery-img .check {
    position: absolute;
    top: -40px;
    left: 10px;
    transition: .2s all ease-in-out;
}

div.gallery-holder .gallery-img:hover .remove {
    top: 10px;
}

div.gallery-holder .gallery-img.checked .check,
div.gallery-holder .gallery-img:hover .check {
    top: 10px;
}

div.gallery-holder .gallery-img.uploading img {
    opacity: 0.5;
}

div.gallery-holder .gallery-img .progress {
    position: absolute;
    top: 50%;
    left:50%;
    width: 90%;
    transform: translate(-50%,-50%);
    z-index: 9999;
}

div.select-images-thumbs {
    /* display: flex; */
    display: none;
}

div.select-images-thumbs div {
    width: 35px;
    height: 35px;
    background-size: cover;
    background-position: center;
    margin-left: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.6);
    font-size: 0.8em;
}

.swal2-actions {
    flex-direction: row-reverse;
}

.--confirm-removal .swal2-styled.swal2-confirm {
    color: #e85347;
    background-color: #fceceb;
    border-color: transparent;
    transition: 0.2s all ease-in-out;
}

.--confirm-removal .swal2-styled.swal2-confirm:hover {
    color: #fceceb;
    background-color: #e85347;
}

.--confirm-removal .swal2-styled.swal2-cancel {
    border-color: #dbdfea;
    color: #526484;
    background-color: transparent;
    transition: 0.2s all ease-in-out;
}

.--confirm-removal .swal2-styled.swal2-cancel:hover {
    border-color: #526484;
    background-color: #dbdfea;
    color: #526484;
}

.drop-to-send {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.1);
    z-index: 5000;
    color: #ffffff;
    font-size: 18px;
    display: none;
}

.dragging-over .drop-to-send {
    display: flex;
}

.drop-to-send .b {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 4px dashed rgba(255,255,255,0.7);
}

.drop-to-send .b em {
    font-size: 36px;
    margin-bottom: 10px;
}

.nk-off-sidebar-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    display: none;
}

.variation-thumbnail {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 5px;
}

.floating-form-action {
    position: fixed;
    bottom: 20px;
    right: 35px;
    padding: 15px 23px;
    background: #ffffff;
    box-shadow: 0 0 20px -3px rgb(0 0 0 / 15%);
    border-radius: 10px;
    display: flex;
    z-index: 10;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 16px;
}

label.error {
    display: none !important;
}

.sp-container {
    z-index: 99999999999;
    height:  280px;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
}

.sp-replacer {
    height: 36px;
    border: 1px solid #dbdfea;
}

.sp-replacer.sp-light.sp-active {
    border: 1px solid #854fff;
}

.variations-mass-actions,
.table-mass-actions {
    position: absolute;
    left: 55px;
    box-shadow: 0 0 15px -4px #adadad;
    background: #ffffff;
    top: 7px;
    z-index: 9;
    overflow: hidden;
    max-width: 0;
    transition: .2s all ease-in-out;
}

.variations-mass-actions.show,
.table-mass-actions.show {
    padding: 5px 10px;
    max-width: 400px;
}

.OFFTable .table-mass-actions.show {
    padding: 1px ​10px;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #854fff;
    background-color: #854fff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.nk-sidebar-content.nk-sidebar-off-form {
    padding-right: 20px;
    height: calc(100vh - 305px);
}

.s2-result-thumbnail {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-right: 5px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    vertical-align: middle;
}

.related-product {
    margin-top: 30px;
    width: 120px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.related_product_container_variation {
    flex-wrap: wrap;
}

.related-product .coverimg {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 11px;
}

.simplebar-wrapper .related-product .coverimg {
    width: 100%;
}

.related-product .name{
    padding: 0 5px;
    font-size: 12px;
    color: #333333;
    text-align: center;
    line-height: 1.1em;
    margin-top: 7px;
}


.card-inner.--variations-table {
    background: #f5f6fa;
}

.card-inner.--features-table {
    background: #f5f6fa;
}

.select2-container .select2-selection--multiple {
    min-height: 43px;
    border: 1px solid #dbdfea;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #854fff;
}

.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    line-height: 34px;
    height: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f2ecff;
    border: 1px solid #f2ecff;
    color: #854fff;
    display: inline-block;
    margin-top: 7px;
    padding-left: 3px;
    padding-right: 20px;
    vertical-align: middle;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #854fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: none;
    border-left: none; /* 1px solid #854fff;*/
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0 4px;
    left: auto;
    right: 0;
    top: 0;
    margin-right: 0;
    margin-left: 8px;
}

body .note-editor .note-dropzone { 
    opacity: 0 !important;
    display: none !important;
    z-index: -200 !important;
 }

 .related-product .remove {
    position: absolute;
    top: -40px;
    right: 10px;
    padding: 2px 7px;
    background: #e85347;
    color: #ffffff;
    font-size: 13px;
    transition: .2s all ease-in-out;
    border-radius: 4px;
 }

 .related-product:hover .remove {
     top: 10px;
 }

 .related_product_container {
     flex-wrap: wrap;
 }

 .--variations-table, .--variations-table * {
     font-size: 15px !important;
 }

 .gu-mirror.gallery-img .remove {
     display: none;
 }

 .OFFTable .dataTables_wrapper.dt-bootstrap4 .row:first-child .text-right {
    position: static;
 }

 .OFFTable .dataTables_length {
     display: none;
     position: absolute;
     bottom: 1rem;
     right: 1rem;
 }

 .transition { transition: .2s all ease-in-out; }

 .opacity-0 { opacity: 0; }

 div.dataTables_wrapper div.dataTables_length select { line-height: 28px; height: 36px; }

 
@media ( max-width: 1600px ) {
    .nk-off-sidebar {
        width: 50%;
    }
}

 @media all and ( max-width: 768px ) {
    .card-aside-wrap .card-inner, .card-aside-wrap .card-content {
        max-width: 100%;
    }

    .--variations-table {
        max-width: 100%;
        overflow-x: scroll;
    }

    .floating-form-action {
        border-radius: 0;
        width: 100%;
        padding: 15px 20px;
        right: 0;
        bottom: 0;
        justify-content: space-between;
    }

    .product-form-step#variations .nk-block {
        position: relative;
    }

    .nk-off-sidebar {
        width: 73%;
        top: 0;
        height: 100vh;
    }

    div.gallery-holder .gallery-img img {
        height: 130px;
    }

    .toggle-slide {
        min-width: 340px;
    }

    [data-click="product_new_variation"] {
        position: absolute;
        top: -2px;
        right: 0;
        padding: 1px 8px;
    }

    .--variations-table .last-col {
        min-width: 160px;
    }

    .--variations-table .sku-col {
        min-width: 100px;
    }

    .nk-sidebar-content.nk-sidebar-off-form {
        padding-right: 20px;
        height: calc(100vh - 225px);
    }

    .nk-header-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-grow: 1;
    }

    .nk-header-tools .logo-link {
        display: none;
    }

    .related_product_container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.loading {
    opacity: 0.3;
    cursor: wait;
}

.color-option-selector {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    display: inline-block;
}

.color-option-selector input {
    display: none;
}

.color-option-selector em {
    color: #ffffff;
    opacity: 0;
    transition: .2s all;
}

.color-option-selector.checked em {
    opacity: 1;
}

[data-click="remove_filters"] {
    text-decoration: underline;
    color: #666666;
    font-size: 0.8em;
    margin-left: 10px;
}

.table-no-gutters .datatable-wrap { margin-top: 0 !important; margin-bottom: 0 !important; }

.table-no-gutters div.dataTables_wrapper div.dataTables_paginate { padding-left: 1rem; padding-bottom: 1rem; padding-top: 1rem;}
.table-no-gutters .dataTables_info { padding-right: 1rem !important; padding-bottom: 1rem !important; }
.table-no-gutters .nk-tb-head .nk-tb-col { padding-top: 0.8rem; padding-bottom: 0.8rem; padding-top: 1.35rem; padding-bottom: 1.35rem; }

/* 
.s2-result-thumbnail {
    height: 40px;
    margin-right: 8px;
    float: left;
    vertical-align: top;
} */

/* 
.select2-container .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--multiple {
    display: flex;
}

.select2-container--default .select2-selection--multiple .select2-search.select2-search--inline {
    position: absolute;
} */

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    white-space: normal;
}

.order-items-table th,
.order-items-table td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.order-items-table td {
    vertical-align: middle;
}

.order-items-table tr.exchanged {
    opacity: 0.8;
}

.order-items-table tr.returned-item td {
    background: #fbdfdf !important;
}

.order-items-table tr.exchanged td {
    background: #f6fbdf ;
}

.order-items-table tr.exchanged-item td {
    background: #dff7fb ;
}

.order-items-table .exchanged-for {
    position: relative;
}

.order-items-table .exchanged-for:before {
    position: absolute;
    top: 12px;
    left: -33px;
    width: 25px;
    height: 25px;
    background: #09c2de;
    color: #ffffff;
    /* border: 1px solid #dbdfea; */
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    background: url(/management/images/orders/exchanged.svg) no-repeat center;
    background-size: contain;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    opacity: 0.6;
}

@media (min-width: 576px) {
    .nk-reply-form-header { padding: 0 0; }
    .nk-reply-form-field { padding: .5rem 0; }
    .nk-reply-form-tools { padding: 1rem 0; }
}

.timeline-des p {
    word-break: break-word;
}

@media ( max-width: 768px ) {
    .dataTables_wrapper {
        overflow-x: scroll;
    }
}

.user-avatar img, [class^="user-avatar"]:not([class*="-group"]) img {
    border-radius: 100%;
    max-width: 40px;
    min-width: 100%;
    margin: 0 5px;
}

.nk-block-des {
    width: 100%;
}

.nk-tb-list.is-separate .nk-tb-item > .nk-tb-col {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .toggle-slide {
        min-width: 100%;
    }

    .nk-header-fixed + .nk-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
    }

    div.gallery-holder .gallery-img img {
        height: auto;
        width: 80px;
    }

    div.gallery-holder .gallery-img {
        border-width: 1px;
    }
}

.s2-result-with-image {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.s2-result-with-image .s2-result-img {
    display: flex;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
}

.s2-result-with-image .s2-result-info {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.user-avatar-group .user-avatar.sm:not(:first-child) {
    margin-left: -0.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 23px;
}

.select2-container .select2-selection--single {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
    position: absolute;
    top: 1px;
    right: 6px;
    width: 20px;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    opacity: .4;
}




.--variations-table .select2-container .select2-selection--single {
    height: 30px;
}

.--variations-table .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 18px;
}

.--variations-table .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 28px;
    position: absolute;
    top: 2px;
    right: 4px;
    width: 20px;
}

.vakata-context, .vakata-context ul {
    z-index: 99999;
}

.ajax-overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.4);
    z-index: 99999999;
}

body.ajax-loading { overflow: hidden; }
body.ajax-loading .ajax-overlay { display: block; }

.off-zone {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.2s all ease-in-out;
    position: relative;
}

.off-zone.center-remove .remove-img-button {
    display: none;
}

.off-zone.center-remove.has-file:hover .remove-img-button {
    display: block;
}

.off-zone.has-file em.ni.ni-img {
    display: none;
}

.off-zone.uploading {
    opacity: 0.3;
}

.off-zone .remove-img-button {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: 0.2s all ease-in-out;
}

.off-zone.center-remove .remove-img-button {
    position: absolute;
    top: 50%;
    right: 50%;
    opacity: 0;
    transition: 0.2s all ease-in-out;
    transform: translate(50%, -50%);
}

.off-zone.has-file {
    display: block;
}

.off-zone.has-file:hover .remove-img-button {
    opacity: 1;
}

.site-placeholder {
    width: 100%;
}

.site-placeholder div {
    display: flex; justify-content: center; align-items: center;
    color: rgba(0,0,0,0.3);
    font-weight: bold;
    font-size: 0.8em;
    transition: .2s all ease-in-out;
}

.site-placeholder .header { height: 30px; margin-bottom: 10px; background: #dedede; }
.site-placeholder .mainbanner { height: 90px; margin-bottom: 10px; background: #dedede; }
.site-placeholder .twocolsmain { display: flex; height: 104px; margin-bottom: 10px; justify-content: space-between; }
.site-placeholder .twocolsmain .main-left { width: calc(50% - 4px); height: 100%; background: #dedede; }
.site-placeholder .twocolsmain .main-right { display: flex; height: 100%; width: calc(50% - 4px); flex-direction: column; justify-content: space-between;}
.site-placeholder .twocolsmain .main-right div { background: #dedede; height: 48px; width: 100%; }
.site-placeholder .icon-row { height: 20px; background: #dedede; margin-bottom: 10px; }
.site-placeholder .double-banners { height: 70px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: flex-start; }
.site-placeholder .double-banners .banner { width: 48%; height: 100%; background: #dedede; display: flex; }
.site-placeholder .product-list { height: 30px; background: #dedede; margin-bottom: 10px; }
.site-placeholder .triple-banners { height: 60px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: flex-start; }
.site-placeholder .triple-banners .banner { width: 31.5%; background: #dedede; height: 100%; display: flex; }
.site-placeholder .newsletter { height: 30px; background: #dedede; margin-bottom: 10px; }
.site-placeholder .footer { height: 40px; background: #dedede; }
.site-placeholder .selectable { background: #f2ecff !important; }
.site-placeholder .selectable.selected { background: #854fff !important; color: #ffffff !important; }


.dataTables_length {
    display: none !important;
}

.sidebar-editing td {
    background: #f2ecff !important;
}

.nk-tb-item.editing .nk-tb-col,
.sidebar-editing .nk-tb-col {
    background: #f2ecff !important;
}

.badge-dim.badge-ccolor-1 {
    color: #27b451;
    background-color: #e6ffdf;
    border-color: #e6ffdf;
}

.badge-dim.badge-ccolor-2 {
    color: #1b9c96;
    background-color: #b8ffff;
    border-color: #b8ffff;
}

.badge-dim.badge-ccolor-3 {
    color: #ffffff;
    background-color: #99f376;
    border-color: #99f376;
}

.btn-dim.btn-ccolor-1 {
    color: #27b451;
    background-color: #e6ffdf;
    border-color: #e6ffdf;
}

.btn-dim.btn-ccolor-2 {
    color: #1b9c96;
    background-color: #b8ffff;
    border-color: #b8ffff;
}

.btn-dim.btn-ccolor-3 {
    color: #ffffff;
    background-color: #99f376;
    border-color: #99f376;
}

.nk-ecwg .amount {
    font-size: 1.8rem;
}
/* 
.analytic-data .amount {
    font-size: 1.2em;
} */

.analytic-wp-graph {
    width: 120px;
}

@media (min-width: 1540px) and (max-width: 1800px) {
    .analytic-wp-graph {
        width: 170px;
    }
}

@supports (-webkit-touch-callout: none) {
    @media ( max-width: 768px ) {
        .listing-search-filters {
            padding-bottom: 100px;
        }
    }
}

.block-configuration-content {
    transition: .2s all;
}

.block-configuration-content.closed {
    max-height: 0;
    overflow: hidden;
}

.store-selector .select2-container .select2-selection--multiple {
    min-height: 33px;
    padding-bottom: 0;
}

.store-selector .select2-container .select2-search.select2-search--inline {
    /* background-color: #f2ecff; */
    /* border: 1px solid #f2ecff; */
    /* color: #854fff; */
    color: #333333;
    display: inline-block;
    margin-top: 0;
    padding-left: 3px;
    padding-right: 20px;
    vertical-align: middle;
    margin-left: 4px;
}

.store-selector .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 0;
    line-height: 25px;
}

.simplebar-content .card-inner.--features-table {
    padding: 0.5rem;
    margin-bottom: 20px;
}

.simplebar-content .nk-tb-list.is-separate {
    margin-bottom: 0 !important;
}

tr td {
    transition: .2s all;
}

tr.newrow td {
    background: rgb(246, 246, 255);
}

@media ( min-width: 1000px ) {
    .modal-lg, .modal-xl {
        max-width: 900px;
    }
}

@media ( min-width: 1400px ) {
    .modal-lg, .modal-xl {
        max-width: 1100px;
    }
}

.-file-submit-trigger {
    position: relative;
    cursor: pointer !important;
}

.-file-submit-trigger input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer !important;
}

.s2-result-with-image.small .s2-result-img {
    display: flex;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 60px;
    max-height: 60px;
    margin-right: 5px;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
}

.file-drop-zone {
    width: 100%;
    height: 100px;
    border: 2px dashed #cecece;
    color: #cecece;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.generic-img {
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    position: relative;
    margin: 5px;
    background-size: cover;
    background-position: center;
}

.generic-img button {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: .2s all;
}

.generic-img:hover button {
    opacity: 1;
}

.configuration-image-uploader {
    position: relative;
    width: 100%;
}

.configuration-image-uploader .img-preview {
    display: inline-block;
    width: 100%;
    height: 100px;
    border: 0;
    border-radius: 10px;
    border: 1px solid #cecece;
    background-color: #fefefe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/management/images/icons/product-ig.svg');
    background-size: 30%;
    cursor: pointer;
}

.configuration-image-uploader input[type="text"] {
    display: none;
}

.configuration-image-uploader input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer !important;
    opacity: 0;
}

.configuration-image-uploader.small .img-preview {
    height: 36px;
}

.user-avatar, [class^="user-avatar"]:not([class*="-group"]) {
    background: transparent !important;
}

.custom-control.custom-checkbox-sm {
    padding-left: 35px;
}

.custom-control.custom-checkbox-sm label:before,
.custom-control.custom-checkbox-sm label:after {
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 1.5px;
    }

div.gallery-holder .gallery-img .change_img_alt {
    position: absolute;
    right: -40px;
    top: 40px;
    padding: 2px 7px;
    background: #854fff;
    color: #ffffff;
    font-size: 13px;
    transition: .2s all ease-in-out;
    border-radius: 4px;
}


div.gallery-holder .gallery-img:hover .change_img_alt {
    right: 10px;
}

div.gallery-holder .gallery-img .current_image_alt {
    position: absolute;
    bottom: 2px;
    left: 5px;
    width: calc(100% - 10px);
    color: #ffffff;
    transition: .2s all ease-in-out;
    max-width: calc(100% - 10px);
    overflow: hidden;
}

div.gallery-holder .gallery-img .current_image_alt span {
    padding: 2px 7px;
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    font-size: 10px;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.gu-mirror.gallery-img .current_image_alt,
.gu-mirror.gallery-img .change_img_alt {
    display: none;
}
/* 
div.gallery-holder .gallery-img:hover .current_image_alt {
    bottom: 2px;
} */

@media ( min-width: 768px ) and (max-width: 1400px ) {
    .column-on-mobile {
        display: flex;
        flex-direction: column;
    }
}

.subscriptionIcon {
    position: absolute;
    bottom: -16px;
    left: 50%;
    background: #333333;
    background: linear-gradient(90deg, rgba(252,58,152,1) 0%, rgba(253,226,53,1) 31%, rgba(98,98,98,1) 65%, rgba(72,172,238,1) 100%);
    border-radius: 5px;
    padding: 3px;
    z-index: 100;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    transform: translate(-62%);
}

.subscriptionIcon em {
    font-size: 16px;
    display: none;
}