/* Logo */

.side-header .header-brand-img.light-logo1{
    display: block !important;
    height: 40px;
    max-width: 100%;
}

.dark-mode .side-header .header-brand-img.desktop-logo{
    display: block !important;
    height: 40px;
    max-width: 100%;
}

@media (max-width: 991px){
    .sidebar-mini .app-header .light-logo1{
        display: none !important;
    }

    .app-header.header .header-brand-img.desktop-logo{
        height: 40px;
        display: block;
    }
}

.login-logo{
    height: 40px;
    max-width: 90%;
    margin-bottom: 10px;
}

/* End of Logo */

/* Global */

.hidden{
    display: none !important;
}

.side-menu .slide i, .side-menu .slide .side-menu__label{
    font-size: 18px !important;
    font-weight: bold !important;
}

.center-form-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

/* End of Global */

/* Custom Colors Menu */


.side-menu .color-custom-client .side-menu__icon, .side-menu .color-custom-client .side-menu__label{
    color: var(--color-client);
}

.side-menu .color-custom-client .badge{
    background-color: var(--color-client);
}

.side-menu .color-custom-furnizor .side-menu__icon, .side-menu .color-custom-furnizor .side-menu__label{
    color: var(--color-furnizor);
}

.side-menu .color-custom-furnizor .badge{
    background-color: var(--color-furnizor);
}

.side-menu .color-custom-stoc .side-menu__icon, .side-menu .color-custom-stoc .side-menu__label{
    color: var(--color-stoc);
}

.side-menu .color-custom-stoc .badge{
    background-color: var(--color-stoc);
}

.side-menu .color-custom-garantie .side-menu__icon, .side-menu .color-custom-garantie .side-menu__label{
    color: var(--color-garantie);
}

.side-menu .color-custom-garantie .badge{
    background-color: var(--color-garantie);
}

.side-menu .color-custom-factura .side-menu__icon, .side-menu .color-custom-factura .side-menu__label{
    color: var(--color-factura);
}

.side-menu .color-custom-factura .badge{
    background-color: var(--color-factura);
}

.side-menu .color-custom-scadenta .side-menu__icon, .side-menu .color-custom-scadenta .side-menu__label{
    color: var(--color-scadenta);
}

.side-menu .color-custom-scadenta .badge{
    background-color: var(--color-scadenta);
}

/* End of Custom Colors Menu */

.dropdown .avatar.profile-user{
    padding: 4px;
    background-color: #1d349b;
}


/* Custom Alert */

.custom-popup-alert{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
    width: 300px;
    max-width: 90%;
}

.custom-popup-alert .card-header{
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
    z-index: 10001;
}

.custom-popup-alert .card-options a:not(.btn){
    margin-left: 0px;
}

.custom-popup-alert .card-options{
    margin-right: 0px;
}

/* End of Custom Alert */



/* Table Widget */

.extra-filters{
    display: flex;
}

.extra-filters .filter-item{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-right: 20px;
}

.extra-filters .filter-item span.label{
    padding: 0px !important;
    margin: 0px 0px 5px 0px !important;
    font-size: 14px;
    font-weight: 400;
}

.extra-filters .filter-item .form-control{
    padding: 3px 10px;
}

.page-item.active .page-link:hover{
    color: white !important;
}

.widget-wrapper{
    position: relative;
}

.widget-wrapper .widget-overlay{
    background-color: #f9f9f9;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, .5) 50%,
    rgba(255, 255, 255, 0) 80%
  ) #ededed;
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
    height: -webkit-fill-available;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

@keyframes loading {
    to {
      background-position-x: -20%;
    }
  }

.widget-overlay .loading-spinner img{
    height: 80px;
    width: auto;
    margin: 10px;
}



/* End of Table Widget */

h4.widget-title {
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 18px;
}


/* Custom Modal */


.customModal {
    z-index: 99900;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.70);
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customModal  .wrapper{
    background-color: white;
    max-width: 90%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 35px;
    position: relative;
}

.customModal .hardToClose .close{
    position: fixed !important;
}

.customModal .largeModal .wrapper{
    max-width: 90%;
    width: 90%;
}

.customModal  h4{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.customModal  .actions{
    margin-top: 20px;
}

.customModal  .close{
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--primary-bg-color);
    color: white;
    font-size: 24px;
    z-index: 99901;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !Important;
}

.customModal  .close:hover{
    cursor: pointer !important;
}

.toFillWrapper{
    display: block;
    position: relative;
}

#toFill #overlay{
    background-color: rgba(255, 255, 255, 1);
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
}

/* End of Custom Modal */

/* Contact Form */

.contact-form{
    width: 600px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.input-row{
    width: 100%;
}

.input-row *{
    width: 100%;
}

.input-row.half{
    display: flex;
    justify-content: space-between;
}

.input-row.half .input-group{
    width: 50%;
}

.input-row.half .input-group:first-child{
    width: calc(50% - 25px);
}

@media (max-width: 992px){
    .input-row.half{
        flex-direction: column;
    }

    .input-row.half .input-group{
        width: 100%;
        margin-bottom: 1rem;
    }

    .input-row.half .input-group:last-child{
        margin-bottom: 0px;
    }

    .input-row.half .input-group:first-child{
        width: 100%;
    }
}

/* End of Contact Form */


/* Inputs */

::-webkit-input-placeholder { /* Edge */
    color: #2E2E2E;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #2E2E2E;
}

::placeholder {
    color: #2E2E2E;
}

/*
.input-group select{
    color: #2E2E2E;
    border-radius: 2px;
    padding: 10px 20px;
    border: 1px solid #cecece;
    font-size: 16px;
    font-weighT: 600;
    background-color: white;
    background-image: url(/assets/images/down-arrow.svg);
    background-size: 12px;
    padding-right: 40px;
    background-repeat: no-repeat;
    background-color: white;
    background-position: calc(100% - 15px) 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.input-group textarea{
    color: #2E2E2E;
    width: 100%;
    min-height: 120px;
    border-radius: 2px;
    padding: 10px 20px;
    border: 1px solid #cecece;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: none;
    -webkit-appearance: none;
}*/

/*
.input-group select:hover, .input-group input:hover, .input-group textarea:hover{
    border: 1px solid var(--primary);
    outline: none;
    transition: 0.2s;
}

.input-group select:focus, .input-group input:focus, .input-group textarea:focus{
    border: 1px solid var(--primary);
    outline: none;
    transition: 0.2s;
}

.input-group input{
    color: #2E2E2E;
    border-radius: 2px;
    padding: 10px 20px;
    border: 1px solid #cecece;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: none;
    -webkit-appearance: none;
}
*/

.input-group .notice{
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 12px;
    font-style: italic;
    line-height: 16px;
    opacity: 0.6;
}

label.error{
    font-size: 12px;
    margin-top: 5px;
    color: var(--red);
    font-style: italic;
}

.input-group span.label{
    margin-bottom: 5px;
    display: block;
    margin-left: 0px;
    padding-left: 0px;
}

/* End of Inputs */


/* Dropdown search ajax */

.dropdown-results-wrapper{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 2px;
    margin-bottom: 10px
}

.item-drop-pick-box .item{
    padding: 10px 15px;
    width: 100%;
    border: 1px solid #f3f3f3;
    border-radius: 7px;
    margin-bottom: 2px;
}

.item-drop-pick-box .item:hover{
    font-weight: bold;
    background-color: #f3f3f3;
    transition: 0.2s;
    cursor: pointer;
}

.item-drop-pick-box .item.create-new-client{
    background-color: rgb(233, 255, 233);
    border: 1px solid rgb(0, 128, 64);
    font-weight: 300;
}

.item-drop-pick-box .item.create-new-client strong{
    font-weight: bold;
}

/* End of Dropdown search ajax */

.open-order-row{
    background-color: rgb(226 255 243);
}

.open-order-row td{
    border: 1px solid #c0eddb !important;
}

.factura-conta-platita td{
    background-color: rgba(0, 128, 0, 0.1);
}

.se-poate-expedia{
    background-color: #ffcc001a;
}

.se-poate-expedia td{
    border: 1px solid #ffd50028;
}

.livrare-directa-order-row{
    background-color: #ff00001a !important;
}

.livrare-directa-order-row td{
    border: 1px solid #ff000028 !important;
}

.finished-order-row{
    background-color: rgba(39, 95, 236, 0.053) !important;
}

.se-asteapta-aprobarea-row{
    background-color: rgb(255 234 224) !important;
}

.finished-order-row td{
    border: 1px solid #d7e0f7 !important;
}

.table-legend{
    display: flex;
    flex-wrap: wrap;
}

.table-legend .item{
    padding-right: 15px;
    display: flex;
    align-items: center;
}

.table-legend .item .box{
    height: 30px;
    width: 30px;
    border: 1px solid green;
    background-color: rgba(0, 128, 0, 0.15);
    margin-righT: 5px; 
}

.table-legend .item.livrare-directa .box{
    background-color: #ff00001a;
    border: 1px solid #ff000028;
}

.table-legend .item.finalizata .box{
    background-color: #f3f6fe;
    border: 1px solid #d7e0f7;
}

.table-legend .item.se-poate-expedia2 .box{
    background-color: #ffcc001a;
    border: 1px solid #ffd50028;
}

.table-legend .item.se-asteapta-aprobarea .box{
    border: 1px solid #ff8600;
    background-color: rgb(255 112 16 / 15%);
}

.table-legend .item.deschisa .box{
    background-color: #e2fef3;
    border: 1px solid #d1f6e7;
}

.table-legend .item .text{

}

tr.red{
    background-color: #ffcece;
}

tr.red td{
    border-color: #ffa0a0;
}

/* Modal Open Order */

.client-order-preview-header{
    border: 1px solid #eeeeee;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-details-header{
    border: 1px solid #eeeeee;
    padding: 15px;
    border-radius: 4px;
}

.order-details-header .item p{
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: bold;
}

.order-details-header .item{
    margin-bottom: 10px;
}

.order-details-header .item:last-child{
    margin-bottom: 0px;
}

.order-details-header .item span.label{
    padding-left: 0px;
    margin-bottom: 2px;
}

.order-details-item{
    border: 1px solid #eeeeee;
    padding: 15px;
    border-radius: 4px;
    overflow-x: scroll;
    display: block;
}

.order-details-item .order-item{
    margin-bottom: 10px;
    display: flex;
    flex-grow: 1;
    width: max-content;
}

.order-details-item .order-item .group{
    margin-right: 10px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 5px 10px;
    position: relative;
}

.order-details-item .order-item.ready-for-shipping .group{
    border: 1px solid #ffdb39;
    background-color: #ffdb391f;
}

.order-details-item .order-item.toate-livrate .group{
    border: 1px solid #39ff6b;
    background-color: #39ff7e1f;
}

.order-details-item .order-item.wrong .group{
    border: 1px solid red;
}

.order-details-item .order-item .group span.label{
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 2px;
    display: block;
}

.order-details-item .order-item .group p{
    margin-bottom: 0px;
    font-weight: bold;
}

.order-details-item .order-item.no-label .label{
    display: none !important;
}

.cw-300{
    width: 300px;
}

.cw-200{
    width: 200px;
}

.cw-100{
    width: 100px;
}

.cw-50{
    width: 56px;
}

/* End of Modal Open Order */

p.section-title{
    font-weight: bold;
    font-size: 18px;
}


/* Auto Save Input */

.autoUpdateWrapper{
    overflow: hidden;
    border-radius: 4px !important;
}

.autoUpdateWrapper .saved{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: green;
    color: white;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.autoUpdateWrapper .not-saved{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    color: white;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.autoUpdateWrapper i{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* End of Auto Save Input */

.stock-info{
    border: 1px solid #1d359b;
    border-radius: 4px;
    padding: 5px 10px;
    margin-top: 15px;
}

.stock-info span{
    font-weight: 300;
    font-size: 14px;
    display: block;
}

.stock-info p{
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: bold;
    font-size: 18px;
}

/* Open Order Inputs */

.open-order-item{
    position: relative;
}

.open-order-item .wrong-message{
    position: absolute;
    bottom: 0px;
    margin: 0px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.open-order-item .wrong-message:empty{
    display: none;
}

.open-order-item .group{
    position: relative;
}

/* End of Open Order Inputs */

.order-item.pozitie-anulata{
    opacity: 0.3 !important;
}

.successBorder{
    border: 1px solid green !important;
    box-shadow: 0 0 20px #d6ffd6 !important;
}

.failedBorder{
    border: 1px solid red !important;
    box-shadow: 0 0 20px #ffd6d6 !important;
}

#scannerWrapper #errorScan{
    color: red;
    display: block;
    margin-top: 10px;
    margin-bottom: 0px;
}

.raftul-meu-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 25px;
}

@media (max-width: 1200px){
    .raftul-meu-wrapper{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px){
    .raftul-meu-wrapper{
        grid-template-columns: 1fr;
    }
}

.raftul-meu-wrapper .pregatit-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.raftul-meu-wrapper .pregatit-box .box-image{
    display: block;
    width: 100%;
    height: 180px;
}

.raftul-meu-wrapper .pregatit-box .content{
    position: relative;
}

.raftul-meu-wrapper .pregatit-box .texts{
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.raftul-meu-wrapper .pregatit-box .texts .product{
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.raftul-meu-wrapper .pregatit-box .qty{
    position: absolute;
    top: 0px;
    right: 30px;
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 #0000003d;
}

.raftul-meu-wrapper .pregatit-box .client{
    margin-bottom: 0px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    opacity: 0.4;
}

table .btn-sm{
    display: inline-flex;
    align-items: center;
}

table .btn-sm .text{
    margin-left: 5px;
}


/* Flags */

.elementWithFlag{
    display: inline-flex;
    align-items: center;
}

.elementWithFlag p{
    margin-bottom: 0px;
}

.elementWithFlag .flags-wrapper{
    display: flex;
    align-items: center;
}

.elementWithFlag .flags-wrapper .flag-element i{
    padding-left: 10px;
    transform: scale(1);
}

.elementWithFlag .flags-wrapper .flag-element:hover > i{
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.2s;
}

.elementWithFlag .flags-wrapper .flag-element.red{
    color: red;
}

.elementWithFlag .flags-wrapper .flag-element.yellow{
    color: #ffd663;
}

.openFlagWrapper .description{
    font-size: 20px;
}

.openFlagWrapper .author{
    margin-bottom: 5px;
    font-weight: bold;
}

.openFlagWrapper .date{
    margin-bottom: 0px;
    font-style: italic;
}

/* End of Flags */

h5.notification-label{
    white-space: break-spaces;
}

.notifications-menu .notifyimg{
    flex: none;
}

.raportare-mica{

}

.raportare-medie td{
    border: 1px solid #ffff39;
    background-color: #e5ff391f;
}

.raportare-mare td{
    border: 1px solid #ff9239;
    background-color: #ffa3391f;
}

.raportare-maxima td{
    border: 1px solid #ff3939;
    background-color: #ff39391f;
}

.reporting-done td{
    border: 1px solid #0dce84;
    background-color: #0dce8428;
}

.table-note-wrap{
    white-space: initial;
}

.side-menu li:hover{
    background-color: #f6f6f6;
    transition: 0.2s;
}

.order-item .group .scanned{
    position: relative;
    padding-left: 5px;
}

.order-item .group .scanned.all-scanned{
    color: #1e9c80;
}

.order-item .group .scanned.can-be-scanned{
    color: #ecad0f;
}

.order-item .group .scanned.nothing-to-scan{
    color: #9c1e1e;
}

#previewOrder .wrapper{
    background-color: #f0f0f5;
}

.textarea-cf-copy{
    padding: 10px 15px;
    width: 100%;
    height: 87px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.reporting-item-status i{
    color: rgb(40, 203, 119);
    font-size: 24px;
}


/* custom file upload form */

.file-upload {
    background-color: #fff;
    border-radius: 6px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #f5f6fa;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid var(--primary-color);
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 20px;
    border: 2px dashed var(--primary-color);
    position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #f0f0f0;
    border: 2px dashed #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
    background-color: #f5f6fa;
}

.remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

/* end of custom file upload form */

.reporting-img-prev{
    height: 80px;
    width: auto;
    border-radius: 2px;
    border: 2px solid #f8f8f8;
}

.wrong-products{
    color: red;
    margin-top: 20px;
    margin-bottom: 20px;
}

.stock-list-wrapper{
    display: flex;
    flex-wrap: wrap;
}

.stock-list-wrapper .left{
    margin-right: 30px;
}

.stock-list-wrapper .sec-title{
    margin-bottom: 5px !important;
    padding-bottom: 0px !important;
    font-weight: bold;
    margin-top: 0px;
}

.depozit-scanner-header{
    background-color: var(--color-client);
    display: flex;
    flex-wrap: wrap;
}

.depozit-scanner-header .group-item{
    display: inline-flex;
    margin-right: 40px;
    flex-direction: column;
}

.depozit-scanner-header .group-item .label{
    color: white;
    font-weight: 300;
    font-size: 16px;
    display: block;
    padding: 0px;
    margin: 0px;
}

.depozit-scanner-header .group-item .value-text{
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.scanate-card-bg{
    background-color: white;
    border: 2px solid #40e878 !important;
}

.side-menu li.active{
    background-color: var(--primary-bg-color);
}

.side-menu li.active i, .side-menu li.active span{
    color: white !important;
}

.side-menu{
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.btn.red-bg{
    background-color: red !important;
    border: 1px solid red !important;
}

.table-cta-simple{
    font-size: 12px;
    padding: 2px 7px;
    background-color: var(--primary-bg-color);
    color: white !important;
    border-radius: 4px;
    border: 1px solid var(--primary-bg-color);
}

.table-cta-simple:hover{
    color: var(--primary-bg-color) !important;
    background-color: white !important;
    transition: 0.2s;
    cursor: pointer;
}

.stoc-disp-item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: stretch;
    justify-content: stretch;
}

.stoc-disp-item .group{
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    height: auto;
    margin-right: 5px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.stoc-disp-item .group .label{
    padding-left: 0px;
    margin-left: 0px;
    display: block;
    margin-bottom: 2px;
}

.stoc-disp-item .group p{
    margin-bottom: 0px;
    font-weight: bold;
}

.stock-list-wrong-1{
    color: red;
}

.btn-table-action-small{
    border: 1px solid var(--primary-bg-color);
    background-color: var(--primary-bg-color);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 4px;
    color: white !important;
}

.btn-table-action-small.ml-3{
    margin-left: 12px;
}

.btn-table-action-small i{
    margin-right: 7px;
}

.btn-table-action-small:hover{
    background-color: white !important;
    color: var(--primary-bg-color) !important;
    transition: 0.2s;
    cursor: pointer;
}

.user-for-client-table{
    background-color: #f3f3f3;
    border-radius: 4px;
    color: black;
    font-weight: 400;
    font-size: 12px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
    margin-left: 0px;
}

.user-for-client-table .remove-user-from-client{
    margin-left: 10px;
    color: red;
    font-size: 18px;
}

.user-for-client-table .remove-user-from-client:hover{
    cursor: pointer;
}

.adauga-user-for-client{
    color:rgb(0, 128, 64);
    font-size: 18px;
}

.adauga-user-for-client:hover{
    cursor: pointer;
}

.reorder-notice{
    display: flex;
    align-items: center;
    padding: 10px 25px;
    background-color: #fa736429;
    border-radius: 4px;
    border: 2px solid var(--color-stoc);
    margin-bottom: 30px;
}

.reorder-notice .icon{
    margin-right: 10px;
    font-size: 30px;
    color: var(--color-stoc);
}

.reorder-notice p{
    margin-bottom: 0px;
}

/* Bulk payment */

.check-for-bulk {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d3d3d3;
}

.check-for-bulk .inner{
    opacity: 0;
}

.check-for-bulk.selected .inner{
    opacity: 1;
    background-color: var(--primary-bg-color);
    height: 18px;
    border-radius: 4px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

/* End of Bulk payment */

.scanner-double-column.grid-2-col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 25px;
}

@media(max-width: 992px){
    .scanner-double-column.grid-2-col{
        grid-template-columns: 1fr;
    }
}

.input-row .serial-error{
    display: none !important;
}

.input-row.error .serial-error{
    display: block !important;
    font-size: 14px;
    color: red;
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: bold;
}

.serial-number-product-listing{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.serial-number-product-listing i{
    font-size: 22px;
    margin-right: 5px;
    color: var(--primary-bg-color);
}

.serial-number-product-listing p{
    font-size: 12px;
    font-weight: bold;
    color: red;
    margin-bottom: 0px;
}

.table>thead>tr>td, .table>thead>tr>th, .table tbody tr td, .table tbody tr th{
    text-align: center;
}

table tbody tr td .d-flex{
    justify-content: center !important;
}



#exportStockButton .loader{
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wrong-items .wrong-item{
    font-size: 20px !important;
    margin-bottom: 10px;
}

.errors-login{
    text-align: center;
    margin-top: 15px;
    color: red;
    font-weight: bold;
}

.success-login{
    text-align: center;
    color: green;
    font-weight: bold;
    max-width: 100%;
    width: 300px;
    margin: auto;
    margin-top: 15px;
}

.forgot-notice-text{
    margin-bottom: 0px;
    color: var(--color-client);
    font-weight: bold;
}

.client-box-inactive{
    background-color: #ff000014;
    color: red;
    font-weight: bold;
    font-style: italic;
}

.week-number-sidebar{
    background-color: #dce2ff;
    color: var(--primary-bg-color);
}

.week-number-sidebar i{
    color: var(--primary-bg-color) !important;
}

.week-number-sidebar:hover{
    color: var(--primary-bg-color) !important;
}

.week-number-sidebar:hover span{
    color: var(--primary-bg-color) !important;
}

.manual-scan-btn{
    padding: 2px 10px;
    line-height: 20px;
}

.totals-neplatite{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: -10px;
}

.totals-neplatite .item{
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
    margin-bottom: 3px;
}

.show-more-deployed{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: var(--primary-bg-color);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
}

.show-more-deployed i{
    font-size: 22px;
    margin-right: 7px;
}

.show-more-deployed:hover{
    background-color: white;
    color: var(--primary-bg-color);
    transition: 0.2s;
    cursor: pointer;
}

/* Pleaca Azi */

.pleaca-azi-wrapper{
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: rgba(255, 0, 0, 0.176);
    color: rgb(156, 11, 11);
    opacity: 0.7;
}

.pleaca-azi-wrapper span{
    margin-right: 5px;
    margin-left: 5px;
    font-size: 12px;
    letter-spacing: -1px;
}

/* End of Pleaca Azi */

.com-f-total span{
    display: block;
    margin: 0px !important;
    padding: 0px !important;
    margin-bottom: 5px;
    margin-top: 20px;
}

.com-f-total p{
    font-size: 26px;
    font-weight: bold;
}

/* Select2 Overwrite */



/* End of Select2 Overwrite */

.col-2-extra-large{
    width: 100%;
}

@media (min-width: 1700px){
    .col-2-extra-large{
        width: 50%;
    }
}

.client-price-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.client-price-wrapper .regular-price{
    font-size: 18px;
    font-weight: bold;
    text-decoration: line-through;
    color: black;
    opacity: 0.7;
    margin: 0;
    color: red;
}

.client-price-wrapper .regular-price.no-strike{
    text-decoration: none;
    color: black !important;
}

.client-price-wrapper.small .regular-price{
    font-size: 14px;
}

.client-price-wrapper .discount-price{
    font-size: 22px;
    font-weight: bold;
    color: rgb(16, 169, 85);
    margin: 0;
}

.client-price-wrapper.small .discount-price{
    font-size: 16px;
}

.client-price-wrapper.tiny .discount-price{
    font-size: 13px;
}

.client-discount-status-bar{
    background: #d0ffe7;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 #0000001f;
}

.client-discount-status-bar .inner .top{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.client-discount-status-bar .inner h4{
    margin: 0px;
}

.client-discount-status-bar .inner p{
    margin: 0px;
    color: #048848;
    font-size: 24px;
    font-weight: 900;
}

.client-discount-status-bar .inner .disclaimer{
    font-size: 14px;
    text-align: center;
    color: black;
    font-style: italic;
    font-weight: 400;
}

.full-height-col-wrapper{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
}

.h-100{
    height: 100%;
}

.t-right{
    text-align: right !important;
}