/********** Template CSS **********/
:root {
    --primary: #f0b132;
    --secondary: #2b2d31;
    --secondaryLight: #313338;
    --light: #dedede;
    --dark: #2b2d31;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--secondary);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 4px 20px;
    color: var(--light);
    font-weight: 500;
    border-right: 4px solid #2b2d3100;
    border-radius: 0 30px 30px 0;
    outline: none;
    font-size: 14px;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link img {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link img
{
    padding: 4px;
}

.sidebar .navbar .navbar-nav .nav-link.active img,
.sidebar .navbar .navbar-nav .nav-link:hover img {
    background: #f0b132;
    padding: 2px;
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

#notes {
    position: fixed;
    top: 4em;
    right: 5px;
    cursor: default;
    transition: height .45s ease-in-out;
    -webkit-transition: height .45s ease-in-out;
    pointer-events: none;
    z-index: 99999;
}

#notes .note-item {
    max-height: 12em;
    border-radius: 5px;
    opacity: 1;
    will-change: opacity, transform;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    width: 50vw;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    z-index: 1002;
    pointer-events: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    max-width: 20em;
    font: inherit;
    line-height: 1.25em;
    color: #fff;
    margin: 0 auto 3px auto;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    padding: .75em 1em;
    box-shadow: 6px 1px 11px 0px #191919;
}

@media all and (max-width: 30em) {
    #notes .note-item {
        width: 75vw;
        max-width: none;
    }
}

#notes .note-item[data-show="false"] {
    pointer-events: none;
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
}

#notes .note-item[data-type="info"] {
    background-color: #0dcaf0;
}

#notes .note-item[data-type="warn"] {
    background-color: #c8b313;
    text-shadow: 0 0 7px black;
    color: #ffffff;
    animation: shake 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-animation: shake 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

#notes .note-item[data-type="error"] {
    background-color: #c81313;
    text-shadow: 0 0 7px black;
    color: #ffffff;
    animation: shake 0.54s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-animation: shake 0.54s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

#notes .note-item[data-type="success"] {
    background-color: #308436;
    text-shadow: 0 0 7px black;
    color: #ffffff;
}

#notes .note-item[data-type="purple"] {
    background-color: #5d3084;
    text-shadow: 0 0 7px black;
    color: #ffffff;
}

#notes .note-item[data-type="haki"] {
    background-color: #308484;
    text-shadow: 0 0 7px black;
    color: #ffffff;
}

#notes .note-item .note-item-text {
    flex: auto;
    -webkit-flex: auto;
    -moz-flex: auto;
    -ms-flex: auto;
    padding-right: .5em;
    max-width: calc(100% - 1.25em);
    max-width: -webkit-calc(100% - 1.25em);
}

#notes .note-item .note-item-btn {
    width: 1.25em;
    height: 1.25em;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTguMyw1LjcxTDE4LjMsNS43MWMtMC4zOS0wLjM5LTEuMDItMC4zOS0xLjQxLDBMMTIsMTAuNTlMNy4xMSw1LjdjLTAuMzktMC4zOS0xLjAyLTAuMzktMS40MSwwbDAsMCBjLTAuMzksMC4zOS0wLjM5LDEuMDIsMCwxLjQxTDEwLjU5LDEyTDUuNywxNi44OWMtMC4zOSwwLjM5LTAuMzksMS4wMiwwLDEuNDFoMGMwLjM5LDAuMzksMS4wMiwwLjM5LDEuNDEsMEwxMiwxMy40MWw0Ljg5LDQuODkgYzAuMzksMC4zOSwxLjAyLDAuMzksMS40MSwwbDAsMGMwLjM5LTAuMzksMC4zOS0xLjAyLDAtMS40MUwxMy40MSwxMmw0Ljg5LTQuODlDMTguNjgsNi43MywxOC42OCw2LjA5LDE4LjMsNS43MXoiLz48L3N2Zz4=) no-repeat 0 0/contain;
    transition: opacity .2s;
    -webkit-transition: opacity .2s;
}

#notes .note-item .note-item-timebar {
    height: 5px;
    background: #33333370;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 5px;
}

#notes .note-item .note-item-btn:hover {
    opacity: .6;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
        -webkit-transform: translate3d(-1px, 0, 0);
        -ms-transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0 0);
        -webkit-transform: translate3d(2px, 0, 0);
        -ms-transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
        -webkit-transform: translate3d(-4px, 0, 0);
        -ms-transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
        -webkit-transform: translate3d(4px, 0, 0);
        -ms-transform: translate3d(4px, 0, 0);
    }
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0) t;
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
    }
}

.cart-badge {
    position: absolute !important;
    right:-4px;
    top: 3px !important;
    font-size: 58%;
    font-size: 10px;
    text-shadow: 0 0 2px black;
}

ul.stepper {
    padding: 0 1.5rem;
    padding: 1.5rem;
    margin: 1em -1.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    counter-reset: section;
}

.stepper-vertical {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

ul.stepper>li:not(:last-of-type) {
    margin-bottom: 0.625rem;
    -webkit-transition: margin-bottom .4s;

    transition: margin-bottom .4s;
}

ul.stepper li {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

.stepper-vertical li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

ul.stepper li.active a .circle,
ul.stepper li.completed a .circle {
    background-color: #c5890f !important;
}

ul.stepper li a .circle {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    line-height: 1.9rem;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    border-radius: 50%;
}

.stepper-vertical li a .circle {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

ul.stepper li a {
    padding: 1.5rem;
    text-align: center;
}

ul.stepper li.active a .label,
ul.stepper li.completed a .label {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
}

.stepper-vertical li.completed a .label {
    font-weight: 500;
}

ul.stepper li a .label {
    display: inline-block;
    color: rgba(0, 0, 0, 0.38);
}

.stepper-vertical li a .label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0.2rem;
}

.stepper-vertical li:not(:last-child):after {
    position: absolute;
    top: 3.5rem;
    left: 2.4rem;
    width: 2px;
    height: calc(100% - 40px);
    content: "";
    background-color: rgb(169 169 169 / 15%);
}

.stepper-vertical li .step-content {
    display: block;
    padding: 0.94rem;
    margin-top: 0;
    margin-left: 3.13rem;
    background: #a3a3a312;
    width: 90%;
}

.step-content .title {
    max-width: 350px;
}

.step-content .item_box {
    max-width: 120px;
}

.step-content .price {
    flex-grow: 1;
    max-width: 110px;
    text-align: right;
}

.step-content .control {
    max-width: 110px;
}

.checkout-products {
    max-height: 360px;
    overflow: hidden;
    overflow-y: auto;
}

.bg-navs-tab {
    background: #2b2d31 !important;
}

.step-content .count {
    color: white;
}

.delete-product:hover {
    color: #dc3545 !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border: 0.5px solid #ffffff1f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    position: relative;
    border-radius: 5px;
    background: #f0b132;
    transition: 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover
{
    background: #ffca2ced;
}

.chat-wrapper {

    width: auto;
    height: 700px;
    border-radius: 0.25rem;
    position: relative;
    box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, .10);
}

.chat-sidebar {

    width: 340px;

    height: 100%;

    position: absolute;


    left: 0;

    top: 0;

    bottom: 0;

    z-index: 2;

    overflow: hidden;

    border-right: 1px solid rgb(231 231 231);

    border-top-left-radius: 0.25rem;

    border-bottom-left-radius: 0.25rem;

}

.chat-sidebar-header {

    width: auto;

    height: auto;

    position: relative;

    border-bottom: 1px solid rgb(231 231 231);

    border-right: 0px solid rgba(0, 0, 0, .125);

    border-top-left-radius: 0.25rem;

    padding: 19px 15px;

}

.chat-sidebar-content {

    padding: 0px;

}

.chat-user-online,
.ticket-ava {

    position: relative;
    margin-right: 10px;

}

.chat-sidebar-header .chat-user-online:before {

    content: '';

    position: absolute;

    bottom: 7px;

    left: 40px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    box-shadow: 0 0 0 2px #fff;

    background: #16e15e;

}

.chat-list .chat-user-online:before {

    content: '';

    position: absolute;

    bottom: 7px;

    left: 36px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    box-shadow: 0 0 0 2px #fff;

    background: #16e15e;

}

.chat-content {

    margin-left: 340px;

    padding: 15px 15px 15px 15px;

}

.chat-header {

    position: absolute;

    height: 70px;

    left: 340px;

    right: 0;

    top: 0;

    padding: 15px;

    border-bottom: 1px solid rgb(231 231 231);

    border-top-right-radius: 0.25rem;

    z-index: 1;

}

.chat-footer {

    position: absolute;

    height: 150px;

    left: 340px;

    right: 0;

    bottom: 0;

    padding: 15px 0px;

    border-top: 1px solid rgb(231 231 231);

    border-bottom-right-radius: 0.25rem;

}

.chat-footer-menu a {

    display: inline-block;

    width: 40px;

    height: 40px;

    line-height: 40px;

    font-size: 18px;

    color: #ffffff;

    text-align: center;

    border-radius: 50%;

    margin: 3px;

    background-color: rgb(255 255 255 / 14%);

    border: 1px solid rgb(255 255 255 / 20%);

}

.chat-tab-menu li a.nav-link {

    padding: .3rem 0.2rem;

    line-height: 1.2;

    color: rgb(255 255 255 / 63%);

}

.chat-tab-menu .nav-pills .nav-link.active,

.chat-tab-menu .nav-pills .show>.nav-link {

    color: #ffffff;

    background-color: rgb(255 255 255 / 0%);

}

.chat-title {
    font-size: 17px;
    font-weight: 400;
}

.chat-msg {
    font-size: 14px;
}

.chat-time {

    font-size: 13px;

    color: #797979;

}

.chat-list {

    position: relative;

    height: 595px;
    overflow-y: auto;

}

.chat-list .list-group-item {

    border: 1px solid rgb(0 0 0 / 0%);

    background-color: transparent;

}

.chat-list .list-group-item:hover,
.chat-list .list-group-item-active {

    border: 1px solid rgb(0 0 0 / 0%);

    background-color: #9e9e9e;
    color: #fff !important;
    border-radius: 3px;

}

.chat-list .list-group-item.active {

    background-color: rgb(255 255 255 / 15%);

}

.chart-online {

    color: #16e15e;

}

.chat-top-header-menu a {

    display: inline-block;

    width: 40px;

    height: 40px;

    line-height: 40px;

    font-size: 18px;

    color: #ffffff;

    text-align: center;

    border-radius: 50%;

    margin: 3px;

    background-color: rgb(255 255 255 / 14%);

    border: 1px solid rgb(255 255 255 / 20%);

}

.chat-content {

    position: relative;

    width: auto;

    height: 470px;

    top: 70px;

    overflow-y: auto;

}

.chat-content-leftside .chat-left-msg {

    width: fit-content;

    background-color: rgb(0 0 0 / 5%);

    padding: 0.80rem;

    border-radius: 12px;

    max-width: 480px;

    text-align: left;

    border-top-left-radius: 0;

}

.chat-content-rightside .chat-right-msg {
    width: fit-content;
    background-color: rgb(139 195 74 / 25%);
    padding: 0.80rem;
    border-radius: 12px;
    float: right;
    max-width: 480px;
    text-align: left;
    border-top-right-radius: 0;

}

.chat-content-rightside .chat-right-msg p {
    margin-bottom: 0 !important;
}

.chat-toggle-btn {

    width: 40px;

    height: 40px;

    line-height: 40px;

    margin-right: 15px;

    text-align: center;

    font-size: 24px;

    color: #ffffff;

    border-radius: 50%;

    cursor: pointer;

    background-color: rgb(255 255 255 / 21%);

    border: 1px solid rgb(255 255 255 / 23%);

}

.tab-content {
    padding: 0.5rem;
    padding-top: 1rem;
}

div.sceditor-toolbar {
    padding-left: 10px;
    text-align: left;
    border-bottom: 1px solid rgb(231 231 231);
}

.chat-print {
    position: absolute;
    top: -30px;
    left: 15px;
}

.image-lost
{
    position: relative;
}

.image-lost::after
{
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(/assets/img/icons/zoom.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 55%;
    transition: all ease-in-out 0.1s;
    position: absolute;
    opacity: 0;
}

.image-lost:hover:after
{
    opacity: 1;
    cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: none; 
}

.cart-body
{
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

@media (min-width: 576px)
{
    .cart
    {
        max-width: 400px !important;
    }
}
@media (min-width: 1200px)
{
    .cart
    {
        max-width: 500px !important;
    }
}
/* @media (min-width: 1200px)
.p-xl-4 {
    padding: 1.5rem !important;
} */

.suggestions-suggestions
{
    background: #1e1f22 !important;
}

.suggestions-selected:hover{background:#2d2d2d}
.suggestions-suggestion:hover{background:#2d2d2d}

.image-block:hover .image-buttons
{
    opacity: 1;
    background: #0000009e;
    top: 30%;
}
.image-block
{
    width: 90px;
    height: 90px;
    position: relative;
}

.image-buttons
{
    top: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.image-modal-container
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    background: #000000c2;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-wrap
{
    min-width: 50%;
    min-height: 50%;
    max-width: 90%;
    max-height: 90%;
    width: 90%;
    height: 90%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.image-modal-close
{
    border-radius: 100%;
    min-width: 30px;
    width: 30px;
    height: 30px;
    background: #d2d2d2d9;
    text-align: center;
    line-height: 29px;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    left: -25px;
    top: -5px;
    color: #fff;
    text-shadow: 0 0 4px BLACK;
}

.image-modal-close:hover
{
    background: #ffca2c;
}

.image-modal-image
{
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;

    max-width: 100%;
    max-height: 100%;
    height: 100%;
    text-align: center;
}

.image-modal-image img
{
    border-radius: 5px;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    border: 10px solid #fff;
}

.search-folow
{
    position: sticky;
    top: 64px;
    z-index: 99;
}

.products-content-russia,
.products-content-china
{
    overflow: hidden;
    overflow-y: auto;
    max-height: 950px;
    box-shadow: inset 8px 0px 0px 0px #f0b132;
}

.date-cont
{
    max-height: 375px;
    overflow: hidden;
    overflow-y: auto;
}

@media (min-width: 1200px)
{
    .folow-xl {
        position: sticky;
        top: 64px;
        z-index: 99;
    }
}

input[type="file"]::file-selector-button 
{
    font-weight: bold;
    color: rgb(47, 47, 47);
    padding: 0.5em;
    border: thin solid grey;
    background: lightgray;
    border-radius: 3px;
}

.info-panel
{
    width: fit-content;
    height: fit-content;
    display: block;
    padding: 10px;
    border-radius: 5px 
}

.ip-warn
{
    border-left: 3px solid #d9ce1a;
    background: linear-gradient(90deg, #ffa62926, #bad03a00);
}

.ip-info {
    border-left: 3px solid #1a89d9;
    background: linear-gradient(90deg, #296cff26, #3a99d000);
}

.ip-error {
    border-left: 3px solid #d91a1a;
    background: linear-gradient(90deg, #ff294e26, #d03a7700);
}

.ip-succ {
    border-left: 3px solid #40d91a;
    background: linear-gradient(90deg, #49ff2926, #3ad03a00);
}

.text-shadow
{
    text-shadow: 0 0 2px black;
}

.animate-ding
{
    animation: 3s ease 0s infinite normal none running ding;
}

.animate-pulse
{
    animation: pulse 3s linear infinite;
}

@keyframes ding {
    0% {
        transform: rotate(0)
    }

    40% {
        transform: rotate(0)
    }

    45% {
        transform: rotate(-10deg)
    }

    50% {
        transform: rotate(10deg)
    }

    55% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(10deg)
    }

    65% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(0)
    }

    to {
        transform: rotate(0)
    }
}
@keyframes pulse 
{
    0% {
        transform: rotate(0.9, 0.9)
    }
    40% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    55% {
        transform: scale(1.2, 1.2);
    }
    60% {
        transform: scale(1.1, 1.1);
    }
    65% {
        transform: scale(1, 1);
    }
    100% {
        transform: rotate(0.9, 0.9)
    };

    to {
        transform: scale(1, 1);
    }
}
#users_wrap
{
    max-height: 700px;
    overflow: hidden;
    overflow-y: auto;
}

.btn-clean
{
    font-size: 10px;
    padding: 2px 5px;

}

.cart-body
{
    font-size: 14px;
}

.wait-button
{
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

 .wait-block:hover .wait-button
 {
    opacity: 1;
 }

 .orders-content
 {
    max-height: 620px;
    min-height: 200px;
    overflow: hidden;
    overflow-y: auto;
 }

 .bg-hover-secondary:hover
 {
    background: #1e1f22 !important;
    cursor: pointer;
 }

 .bg-hover-secondary-light:hover
 {
    background: #313338 !important;
    cursor: pointer;
 }

.nofity-disabled
{
    pointer-events: none;
    opacity: 0.3;
    user-select: none;
}

#order-scaner
{
    border: 1px solid #b99c11 !important;
    border-radius: 5px;
    height: 380px;
}

#html5-qrcode-button-camera-permission,
#html5-qrcode-button-file-selection,
#html5-qrcode-button-file-selection,
#html5-qrcode-button-camera-start,
#html5-qrcode-button-camera-stop
{
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 1rem;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

#html5-qrcode-button-camera-stop
{
    color: #000 !important;
    background-color: #f0b132 !important;
    border-color: #f0b132 !important;
}

#html5-qrcode-anchor-scan-type-change
{
    font-size: 14px;
    text-decoration: none !important;
    cursor: pointer;
}

#order-scaner__dashboard_section
{
    font-size: 13px;
}

#staticBackdrop .btn-close
{
    filter: invert(1);
}

.t-file
{
    width: 40px;
    font-size: 10px;
    text-align: center;
    position: relative;
}

.t-file i
{
    position: absolute;
    font-size: 19px;
    opacity: 0;
    left: 11px;
    top: -3px;
    transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.t-file:hover i
{
    top: 4px;
    opacity: 1;
}

.swal-wide{
    width:750px !important;
}

.swal-wide h2
{
    font-size: 1.4rem;
}

.hover-dark:hover
{
    background-color: #383838! important;
    background: #383838! important;
}

.hover-dark:active,
.hover-dark:focus
{
    background-color: #101010! important;
    background: #101010! important;
}

.bg-gradient
{
    background: #38393a !important;
}