@font-face {
    font-family: "Unity";
    src: url("bm-fonts/TCCC-UnityText-Regular.ttf");
}

@font-face {
    font-family: "Unity";
    src: url("bm-fonts/TCCC-UnityText-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Unity";
    src: url("bm-fonts/TCCC-UnityText-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: "Unity";
    src: url("bm-fonts/TCCC-UnityText-BoldItalic.ttf");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Pepsi";
    src: url("bm-fonts/PepsiOwners-Regular.ttf");
}

@font-face {
    font-family: "Pepsi-Extended";
    src: url("bm-fonts/PepsiOwners-Extended.ttf");
}

@font-face {
    font-family: "Pepsi-Compressed";
    src: url("bm-fonts/PepsiOwners-Compressed.ttf");
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.Unity {
    font-family: 'Unity';
    font-size: 13px;
}

.Pepsi {
    font-family: 'Pepsi-Extended';
    font-size: 14px;
}

.Pepsi i {
    font-size: 13px;
    font-weight: bold !important;
}

img {
    max-width: 100%;
}

a {
    color: black;
    text-decoration: none;
}

.has-alert .header {
    top: 35px;
}

.header {
    display: block;
    height: 60px;
    width: calc(100% - 20px);
    position: fixed;
    top: 0;
    margin: 0;
    color: white;
    z-index: 101;
    padding: 0 10px;
}

.has-alert .sidebar, .has-alert .content {
    top: 95px;
}
.has-alert .help-div-wrap ~ .content {
    top: 135px;
}
.help-div-wrap ~ .content {
    top: 95px;
}
.sidebar {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0px;
    top: 60px;
    background-color: #262626;
    color: white;
    padding: 6px 0 0 0;
    text-align: left;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    box-sizing: border-box;
    z-index: 13;
}

.sidebar::-webkit-scrollbar {
    width: 12px;
    background-color:white;
}

.sidebar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: white;
}

.sidebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background-color: white;
}



.sidebar-item {
    margin: 2px 0;
    width: 165px;
    padding: 5px 15px;
    font-size: 12px;
    white-space: nowrap;
}

.content {
    display: inline-block;
    position: absolute;
    width: calc(100% - 232px);
    height: fit-content;
    left: 195px;
    top: 60px;
    padding: 10px 15px;
    /* overflow-x: hidden; */
    min-height: calc(100% - 80px);
}

.bm-grid {
    text-align: center;
    max-width:1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    height: calc(100vh - 80px);
    /* commented out height: calc((var(--vh, 1vh) * 100) - 80px);*/
    align-items: center;
}

.greybox {
    width: 100%;
    background-color: #F5F5F5;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;

    border-radius: 5px;
}
.clearbox {
    width: 100%;
    background-color: white;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;

    border-radius: 5px;
}

.greybox-center {
    max-width: 965px;
    margin: 0 auto;
}

.red-icon {
    color: red;
}

.logo {
    max-height: 200px;
    max-width: 200px;
    object-fit: cover;
}

.tab-cell {
    display: inline-block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 7px;
    border-top: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;

}
.tab-cell-selected {
    display: inline-block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-height: 100%;
    background-color:#f4f4f4;
    height: 100%;
    padding:5px 10px;
    border-top: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    border-bottom: 2px solid #ff2e39;
}

.tab-menu {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-left: 7px;
    border-bottom: 2px solid #d7d7d7;
    margin-bottom: 3px;
    font-family: 'Unity';
}


.top-alert {
    display: table;
    width: 100%;
    height: 35px;
    background-color: #e1e1e1;
    border-bottom: 1px solid #9c9c9c;
    box-sizing:border-box;
    position: fixed;
    padding: 0px 10px;
    font-weight: bold;
    z-index: 10;
}

.leftcell {
    display:table-cell;
    vertical-align:middle;
    padding-right: 10px;
}

.middlecell {
    display:table-cell;
    vertical-align:middle;
    padding-right: 10px;
    text-align:-webkit-center;
}

.rightcell {
    display:table-cell;
    vertical-align:middle;
    text-align:right;
    text-align:-moz-right;
    white-space: nowrap;
}


.category-cell {
    display:table-cell;
    width: 275px;
    vertical-align: middle;
}

.pending-note {
    font-size:10px;
    border-top:1px solid #777777;
    font-style:italic;
    margin-bottom:10px;
}

.google-visualization-table-table {
    height: unset !important;
    max-height: calc(100vh - 233px);
}

.google-visualization-table-table th {
    min-width: 75px;
}
.google-visualization-table-table th:first-of-type {
    min-width: 200px;
}


.google-visualization-table-td {
    text-align: center !important;
}

/* DETAIL CSS NO LONGER USED */
.detail {
  position: relative;
}
.detail table, .detail thead, .detail tbody {
    max-width: calc(100vw - 225px);
}
.detail table {
  position: relative;
  background-color: #f0f4f6;
  overflow: hidden;
  border-collapse: collapse;
  font-family: Unity;
  line-height: 1;
}
/*thead*/
.detail thead {
  position: relative;
  display: block;
  overflow: visible;
}
.detail thead th {
  background-color: white;
  min-width: 120px;
  height: 32px;
  border: 1px solid #222;
  font-size:10px;
  text-align:center;
}
.detail thead th:nth-child(1) {
  /*first cell in the header*/
  position: relative;
  display: block;
  /*seperates the first cell in the header from the header*/
  background-color: white;
  height: 51px;
  line-height: 51px;
  margin-top: -1px;
}
/*tbody*/
.detail tbody {
  position: relative;
  display: block;
  max-height: calc(100vh - 233px);
  overflow: auto;
}

.detail tbody tr:hover td  {
    background-color: #e7e9f9 !important;
}

.detail tbody td {
  background-color: white;
  min-width: 120px;
  border: 1px solid #222;
  font-size: 10px;
  text-align: center;
}
.detail tbody td .ellipsis, .detail thead th .ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: unset;
    height: 21px;
}

.detail tbody tr td:nth-child(1) {
  position: relative;
  display: block;
  height: 32px;
  background-color: white;
  text-align: center;
  z-index: 2;
  width: 120px;
  margin-top: -1px;
}

/*END DETAIL CSS*/


.vertically-centered {
    overflow: hidden;
    line-height: 1.2;
    height: 34px;
}

.vertically-centered:after {
   content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.vertically-centered div {
    display: inline-block;
    display: -webkit-inline-box;
    max-height: 100%;
    vertical-align: middle;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}



/*select2 formatting*/
.select2-container .select2-selection--single {
    height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px !important;
}

.bdy {
    padding: 0px 10px;
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pdf-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 30.33%;
    margin: 1.5%;
    font-size: 18px;
    text-align: center;
}
.help-yellow {
    display: none;
    position: absolute;
    z-index: 100;
    text-align:left;
    line-height: 15px;
    font-weight: normal;
    max-width: 275px;
    box-sizing:border-box;
    font-family: 'Unity', "Source Sans Pro", sans-serif !important;
    font-size: 13px; 
    box-shadow: rgb(0 0 0 / 25%) -8px 8px 15px 0px;
    padding: 15px;
    background-color: #FFE06C;
    border: none;
    white-space: normal;
}

/* forms */
.formrow {
    margin: 5px 0px;
    font-family: Unity;
}

.Pepsi .formlabel {
    font-size: 11px;
}

.Unity .formlabel {
    font-size: 14px;
}


.formlabel {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: 34%;
    margin-right: 1%;
    font-weight: bold;
    line-height: 1;
    position: relative;
}

.formbox {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    text-align: left;
    width: 60%;
    line-height: 1;
    position: relative;
}

.largelabel .formlabel {
    width: 60%;
}

.largelabel .formbox {
    width: 34%;
}

.formbox p {
    line-height: 14px;
}

.formbox .ck p {
    line-height: 1;
}

.formbox input[type='text'],
.formbox input[type='number'],
.formbox input[type='email'],
.formbox input[type='password'],
.formbox input[type='date'],
.input,
.niceinput {
    box-sizing: border-box;
    width: 100% !important;
    /*DO NOT ADD important to padding*/
    padding: 13px 10px;
    border-radius: 4px;
    border: 1px solid #ccc !important;
    font-size: 15px;
}

.formbox input[type='submit'] {
    box-sizing: border-box;
    background: #1a5522;
    border: 0;
    -webkit-appearance: none;
    color: #fff;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 20px;
}

.formbox textarea,
.full-textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 13px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 150px;
}

.formbox select,
.niceselect, .distributor-select {
    font-size: 15px;
    padding: 13px 55px 13px 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-image: url(/images/select.png) !important;
    background-position: 100% 0;
    background-repeat: no-repeat no-repeat;
    border-radius: 5px;
    border: 1px solid #E4E4E8;
}

.niceselect {
    width: 100%;
}
.distributor-select {
    width: 200px;
}

select {
    outline: none;
    /*border: none;*/
}

.v-top {
    vertical-align: top;
}

.table-list {
    display:table;
    width:100%;
}

.row-header {
    display:table-row;
}

.row-header .simplecell {
    border-bottom:1px solid #b2b2b2;
    padding-bottom:15px;
}

.row-list {
    display:table-row;
}

.row-list:nth-child(odd) {
    background: white;
}

.cell-list {
    display:table-cell;
    vertical-align:middle;
    padding: 5px;
    box-sizing: border-box;
}


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


.row {
    display: table-row;
}
.simplecell {display: table-cell; text-align: left;}



.inline-container .simpleinline:last-child {
    margin-right: 0px;
}

.simpleinline, .simpleinline2 {
    display: inline-block;
    box-sizing: border-box;
    text-align: left;
    position:relative;
}
.inline-1-12 {
    width: 7.325%;
    margin-right: 1.1%;
    vertical-align: top;
}

.inline-2-12 {
    width: 15.75%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-3-12 {
    width: 24.175%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-4-12,.mobinline-4-12 {
    width: 32.6%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-5-12 {
    width: 41.025%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-6-12 {
    width: 49.45%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-7-12 {
    width: 57.875%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-8-12 {
    width: 66.3%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-9-12 {
    width: 74.725%;
    margin-right: 1.1%;
    vertical-align: top;
}
.inline-10-12 {
    width: 83.15%;
    margin-right: 1.1%;
}

.inline-11-12 {
    width: 91.575%;
    margin-right: 1.1%;
}
.inline-12-12 {
    width: 100%;
    margin: 0;
}
.inline-1-5, .mobinline-1-5 {
    width: 19%;
    margin-right: 1.25%;
    vertical-align:top;
}
.inline-2-5 {
    width: 39.25%;
    margin-right: 1.25%;
    vertical-align:top;
}
.inline-3-5 {
    width: 57%;
    margin-right: 1.25%;
    vertical-align:top;
}
.inline-4-5 {
    width: 76%;
    margin-right: 1.25%;
    vertical-align:top;
}
.inline-5-5 {
    width: 100%;
    margin-right: 0%;
    vertical-align:top;
}



.right-desktop {
    text-align: right;
}

.right-border {
    border-right: 1px solid #aaaaaa;
    padding-right: 5px;
}

.qb-input {
    height:32px;
    border-radius:2px;
    border:1px solid #babec5;
    padding: 0px 8px;
    vertical-align:middle;
    margin: 2px 0px;
}


.mobi-title {
    font-size: 22px;
    font-weight: bolder;
    text-align: left;
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
}

.mobi-image {
    width: 100%;
    position: relative;
}

.mobi-image img {
    width: 100%;
}

.mobi-image div {
    position: absolute;
    width: 30%;
    top: 40%;
    left: 15%;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.mobi-text {
    width: 80%;
    margin: 40px auto;
    font-size: 16px;
    text-align: left;
}

.mobi-buttons {
    width: 80%;
    text-align: left;
    margin: 20px auto;
}

.mobi-buttons-start {
    display: inline-block;
    text-align: left;
    width: 49%;
    vertical-align: middle;
}

.mobi-buttons-later {
    display: inline-block;
    text-align: right;
    width: 49%;
    vertical-align: middle;
}

.sidebar-item i {
    font-size: 20px;
    margin: 3px;
    position: absolute;
    top: calc(50% - 13px);
    left: calc(50% - 16px); 

}

.sidebar-item img {
    height: 26px;
    width: 31px;
    object-fit: cover;
    max-width: unset;
    position: absolute;
    top: calc(50% - 13px);   
    left: calc(50% - 16px); 
}

.sidebar a {
    text-decoration: none;
    color: white;
}
.sidebar.product a {
    width: 180px;
    display: inline-block;
}
.sidebar-item.selected {
    text-align: left;
    background-color: #656565;
    /* background-color: #4C4C4C; */


    border-radius: 5px;
}

.header-bm-logo {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    text-align: left;
    width: 50%;
    margin-top:9px;
}

.header-bm-logo a img {
    height: 50px;
    vertical-align: middle;
}

.header-notification {
    display: table-cell;
    width:65px;
    text-align:center;
    vertical-align:middle;
    position:relative;
}

.header-notification i {
    font-size: 40px;
}

.notification-layer {
    display: none;
    position: absolute;
    left: 0;
    z-index: 10003;
    text-align: left;
    width: 400px;
    box-sizing: border-box;
    top: 40px;
    webkit-box-shadow: 0 0 6px 1px rgb(0 0 0 / 11%);
    -moz-box-shadow: 0 0 6px 1px rgba(0,0,0,.11);
    box-shadow: 0 0 6px 1px rgb(0 0 0 / 11%);
    background-color: #fff;
    cursor: default;
    color: black;
    border-radius: 5px;
    border: 1px solid #dddddd;
    max-height: 550px;
    overflow-y: auto;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #dddddd;
    font-family: 'Unity';
}
.notification-item:last-of-type {
    border-bottom: 0px;
}
.notification-item i {
    font-size: 20px;
}

.bold {
    font-weight: bold;
}

.notification-date {
    color: #999999;
    font-size: 11px;
}


.header-rep-logo {
    display: table-cell;
    height: 100%;
    text-align: right;
    min-width: 100px;
    vertical-align: middle;
}
.mobile-menu-toggle {
    margin-top: 3px;
}

.header-search {
    display: inline-block;
    width: 32%;
    height: 100%;
    /*  vertical-align: middle;
  text-align: center;*/
}

.header-search input[type=text] {
    border: 1px solid #EFEEF0;
    padding: 10px 45px 10px 10px;
    border-radius: 10px;
    /* outline:none; */
    width: 100%;
}

.header-search select {
    border: 1px solid #EFEEF0;
    padding: 9px;
    border-radius: 10px;
}

.header-search-input {
    display: inline-block;
    position: relative;
}

.header-search i {
    position: absolute;
    z-index: 7;
    right: -35%;
    background-color: black;
    color: white;
    padding: 11px;
    border: 1px solid black;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.header-rep-logo>img, .header-rep-logo > a > img {
    /* position: absolute; */
    height: 40px;
    /* margin-top: 10px; */
    /* top: 20%;
    right: 5%; */
}

.header>div {
    position: relative;
    width: 100%;
    height: 100%;
    display: table;
    table-layout: fixed;
}

.campaign-table {
    display: table;
    width: 100%;
}

.campaign-left {
    display: table-cell;
    width: 200px;
}
.campaign-middle {
    display: table-cell;
    text-align: center;
}
.campaign-right {
    display: table-cell;
    text-align: right;
    width: 200px;
    position: relative;
}


.product-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-family: 'Unity';
}

.product-table-header {
    display: table-row;
    border-bottom: 1px solid #AEAEAE;
}

.product-table-header-cell {
    display: table-cell;
    padding: 5px 10px 10px 10px;
    position: relative;
}

.product-row {
    display: table-row;
    height: 45px;
}

.product-row:nth-of-type(2n) {
    background-color: white;
}


.product-row.noalternate:nth-child(2n) {
    background-color: #F4F2F5;
}

/* .product-row:first-child {
    color:red;
    margin-top:10px;
} */
.product-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 5px 10px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    position: relative;
}

#sortable-client .product-cell, #sortable-group .product-cell {
    padding: 0px !important;
}

.product-cell i.fa-sort {
    cursor: grab;
}

.product-library-selection {
    display: table-cell;
    /*width: 30%;*/
    width: 455px;
}

.product-library-selection input[type="radio"] {
    height: 20px;
    width: 20px;
    vertical-align: sub;
}

.product-library-category {
    display: table-cell;
    width: calc(100% - 760px);
    /*
    width: 26%;
    text-align: center;
    */
}

.product-library-category .ms-parent {
    text-align: left;
}

.product-library-csv {
    display: table-cell;
    /*width: 35%;*/
    text-align: right;
    width: 455px;
}

.product-library-csv button, .export-button {
    padding: 5px 25px;
    margin: 5px;
    border-radius: 5px;
    position: relative;
    border: none;
    cursor: pointer;
}
.export-button {
    border: 1px solid lightgrey;
    background-color: #eee;
}
.export-button:hover {
    background-color: #ddd;
}
.export-button:active {
    background-color: #fafafa;
}
.report-button:hover {
    background-color: #005b99;
}
.report-button:active {
    background-color: #0097ff;
}

.product-library-csv button i, .export-button i {
    position: absolute;
    left: 5%;
    top: 25%;
}

.product-library-csv>i {
    cursor: pointer;
}

.product-library-csv>i:hover,
.product-library-csv>div>i:hover,
.product-library-css .fa-share:hover {
    color:  #005CB4;
}
#share-product-icon:hover {
    color:  #005CB4;
}
.product-cell input[type=number] {
    padding: 10px;
    border: none;
    /* outline: none; */
    width: 80%;
}

.submenu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0px;
    width: 170px;
    background-color:white;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
    border-radius: 4px;
    z-index: 9;
    text-align:left;
}

.submenu-item {
    padding: 10px;
    cursor:pointer;
    color: #515154
}

.submenu-item:hover {
    background-color: #dddddd;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 17;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
}

.popup-window {
    text-align: center;
    z-index: 14;
    /*width: 100%;
    max-width: 500px;*/
    width: 550px;
    box-sizing: border-box;
    padding: 5px 5px 0 5px;
    position: absolute;
    margin: 0 auto;
    display: none;
    height: fit-content;
    box-shadow: 0 0 10px #000;
    background-color: #F4F2F5;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-window td {
    text-align: left;
}

.fa-times-circle {
    cursor: pointer;
}

.popup-window-large {
    text-align: center;
    z-index: 1000;
    width: 1000px;
    box-sizing: border-box;
    padding: 20px;
    position: absolute;
    margin: 0 auto;
    display: none;
    height: fit-content;
    box-shadow: 0 0 10px #000;
    background-color: #F4F2F5;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.edit-product-info {
    height: 100%;
    margin: 0 10px;
    margin-bottom: 64px;
    max-height: 700;
}

.edit-product-info textarea {
    width: calc(100% - 20px);
    padding: 10px;
    height: 10em;
    border: 1px solid #EFEEF0;

}

.edit-product-info input[type=text] {
    /* color: #5E5E5E; */
    border: 1px solid #EFEEF0;
    padding: 10px 10px;
    width: 90%;
}

.edit-product-info input:focus {
    border: 1px solid #047CD2;
    box-shadow: 0 0 5px #047CD2;
    /* outline: none; */

}

.edit-product-info textarea:focus {
    border: 1px solid #047CD2;
    box-shadow: 0 0 5px #047CD2;
    /* outline: none; */

}

.edit-product-info select:focus {
    border: 1px solid #047CD2;
    box-shadow: 0 0 5px #047CD2;
    /* outline: none; */

}

/* .edit-product-info i:active {
    box-shadow: 0 0 5px #047CD2;

} */

.edit-product-info select, .selectMS {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #cccccc;
    background-color: white;
    height: 45px;
    border-radius: 4px;

}

.small-select {
    border:0px;
    background-color: white;
    height: 25px;
    border-radius: 5px;
    padding: 0px 5px;

}

.edit-row {
    width: 100%;
    text-align: left;
    margin: 15px 0;
}

.edit-cell {
    display: inline-block;
    width: 49.5%;
    /* margin: .5%; */
}

.edit-cell i {
    font-size: 30px;
    vertical-align: middle;
}

.edit-cell-2 {
    display: inline-block;
    width: calc(50% - 3px);
    /* margin: 5px; */
}

.edit-buttons {
    bottom: -20px;
    padding: 15px 5px;
    border-top: 1px solid #EFEEF0;
    overflow: hidden;
    background-color: white;
    z-index: 6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.edit-discard {
    padding: 8px 25px;
    width: 35%;
    max-width:250px;
    margin-right: 10px;
    background-color: white;
    border: 1px solid #EFEEF0;
    cursor: pointer;
}

.edit-save {
    padding: 8px 25px;
    width: 35%;
    max-width:250px;
    margin-left: 10px;
    background-color: #047CD2;
    color: white;
    border: 1px solid #EFEEF0;
    cursor: pointer;
}

.edit-save:active {
    background-color: #2196F3;
}

.edit-product-picture {
    height: 40%;
    /* margin: 10px 0; */
}

.edit-product-picture img {
    max-height: 200px;
    object-fit: contain;
    width: 100%;
}

button.product-photo-upload {
    position: relative;
    background-color: white;
    width: 100%;
    padding: 10px;
    border: 1px solid #EFEEF0;

}

button.product-photo-upload:active {
    box-shadow: 0 0 5px #047CD2;

}

button.product-photo-upload i {
    position: absolute;
    top: 30%;
    left: 5%;
    font-size: 15px;
}

.loader-wheel {
    font-size: 64px;
    position: relative;
    height: 1em;
    width: 0.55em;
    padding-left: 0.45em;
    animation: loader-wheel-rotate 0.5s steps(12) infinite;
    overflow: hidden;
    margin: 0 auto;
}

.loader-wheel i {
    display: block;
    position: absolute;
    height: 0.3em;
    width: 0.1em;
    border-radius: 0.05em;
    background: #333;
    opacity: 0.8;
    transform: rotate(-30deg);
    transform-origin: center 0.5em;
}

.grabber {
    cursor: grab;
}
.select2-container {
    font-family: Unity;
}
@keyframes loader-wheel-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes alternating-color {
    0%{
        /* color: black; */
        --fa-primary-color: grey; 
        --fa-secondary-color: grey;
    }
    25%{
        --fa-primary-color: grey; 
        --fa-secondary-color: grey;
    }
    50%{
        --fa-primary-color: grey; 
        --fa-secondary-color: black;
    }
    100% {
        /* color: white; */
        --fa-primary-color: black; 
        --fa-secondary-color: grey;
    }
}
@keyframes alternating-color-2 {
    0%{
        /* color: black; */
        --fa-primary-color: grey; 
        --fa-secondary-color: black;
    }
    25%{
        --fa-primary-color: black; 
        --fa-secondary-color: grey;
    }
    50%{
        --fa-primary-color: grey; 
        --fa-secondary-color: grey;
    }
    100% {
        /* color: white; */
        --fa-primary-color: grey; 
        --fa-secondary-color: grey;
    }
}
.alternating-colors {
    /* animation: alternating-color  */
    animation: alternating-color 1s linear infinite;
    font-size: 26px !important;
    --fa-secondary-opacity: 1;
}
.alternating-colors-2 {
    /* animation: alternating-color  */
    animation: alternating-color-2 1s linear infinite;
    font-size: 26px !important;
    --fa-secondary-opacity: 1;
    margin-left: -12px;
}
.edit-product-info #sortable-product-images li img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.edit-product-info #sortable-product-images {
    list-style-type: none;
    padding-inline-start: 0px;
}

.edit-product-info #sortable-product-images li {
    width: 100px;
    height: 100px;
    display: inline-block;
    margin: 5px 10px;
}

.family-products {
    text-align: left;
    padding-inline-start: 0px;

}

.family-products li {
    display: block;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-top: none;
    padding: 5px;
}

.family-products li:first-child {
    border-top: 1px solid black;
}

.scroll-wrapper {
    position: relative;
    height: 200px;
}

.scroll-box {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    border-radius: 5px;
}

.table {
    display: table;
    width: 100%;
}

.table-row {
    display: table-row;
    padding: 5px 0;
    width: 100%;
}

.table-cell {
    display: table-cell;
    padding: 0 3px;
}

.table-row:nth-child(2n) {
    background-color: white;
}

.table-row:nth-child(2n + 1) {
    background-color: #F4F2F5;
}

.table-row.noalternate:nth-child(2n) {
    background-color: #F4F2F5;
}

.table-cell:first-child {
    padding: 0 3px 0 0;
}

.table-cell:last-child {
    padding: 0 0 0 3px;
}


.login-header {
    display: block;
    background-color: #F40107;
    height: 150px;
    width: 100%;
    position: fixed;
    top: 0;
    margin: 0;
    color: white;
    z-index: 10;
    text-align: center;
}

.login-header img {
    height: 150px;
}

.login-content {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: fit-content;
    left: 0;
    top: 200px;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.login-greybox {
    width: 21%;
    background-color: #F5F5F5;
    padding: 35px;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
    min-width: 340px;
    min-height: 520px;
}

.login-greybox input[type=submit] {
    text-align: left;
    padding: 10px 40px;
    background-color: #F40107;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid #F40107;
    cursor: pointer;
}

.login-greybox input[type=text],
.login-greybox input[type=password],
.login-greybox select {
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 12px;
    width: 100%;
    border-radius: 5px;
    /* outline: none; */
    border: 1px solid white;
    box-sizing: border-box;
}

.login-form {
    margin: 0 15%;
    text-align: left;
}

.settings {
    margin-top: auto;
    margin-bottom: 50px;
}

.account-settings {
    width: 55%;
    margin: 0 auto;
    text-align: center;
}

.account-settings input[type=password] {
    padding: 5px 15px 5px 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 200px;
}

.account-settings input[type=submit] {

    margin-right: 21%;
}

.alert-button {
    background-color: white;
    color: black;
    border-radius: 5px;
    border: 1px solid black;
    cursor: pointer;
    height: 25px;
    font-weight: bold;
}

.blue-button-2 {
    padding: 5px 15px 5px 15px;
    background-color: #005CB4;
    color: white;
    border-radius: 5px;
    border: 0px;
    cursor: pointer;
}

.underline {
    text-decoration: underline;
}

.settings-sidebar {
    margin-top: auto;
}

.header-search>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile,
.mobile-inline,
.mobile-cell {
    display: none;
}
.cell-list.mobile-inline {
    display: none;
}

.desktop {
    display: block;
}

.desktop-inline {
    display: inline-block;
}


.slimbox {
    width: 50%;
    margin: 0 auto;
    min-width: 900px;
}

.action-container {
    margin: 0 auto;
    width: 100%;
    max-width: 850px;
    text-align: center;
}
/* 
.action-box {
    border-radius: 10px;
    border: 1px solid #E1E1E1;
    width: 100%;
    max-width: 500px;
    box-shadow: 5px 5px 10px #dfdfdf;
    display: inline-block;
    margin: 10px;
    text-align: left;
}

.action-top {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid #E1E1E1;
    height: 35px;
    padding: 15px;
    background-color: #E1E1E1;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.action-mid img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    max-width: 500px;

}

.action-mid.overlap img {
    z-index: 5;
    height: 135%;
    max-height: 205px;
    position: absolute;
    top: -53px;
    left: 0;

}

.action-mid {
    height: 150px;
    width: 100%;

    position: relative;
}

.action-bottom {

    border: 1px solid #E1E1E1;
    background-color: #E1E1E1;

    height: 30%;
    padding: 15px;
    background-color: #E1E1E1;
}

.action-bottom-text {
    display: inline-block;
    width: 50%;
    height: 100%;
    font-size: 11px;
    color: #545454;
}

.action-bottom-button {
    display: inline-block;
    width: 45%;
    height: 100%;
}

.action-bottom-button button {
    float: right;
    padding: 8px 45px 8px 15px;
    position: relative;
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.action-bottom-button button i {
    position: absolute;
    right: 10%;
    top: 31%;
    color: #F40107;
} */
.action-box {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid #E1E1E1;
    width: 100%;
    max-width: 500px;
    display:inline-block;
    margin: 10px;
    text-align: left;
    cursor: pointer;
  }
  .action-top {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid #E1E1E1;
    height: 35px;
    line-height: 35px;
    background-color: #E1E1E1;
    font-weight: bold;
    font-size: 15px;
    padding: 0px 10px;
    text-align: center;
  
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .action-mid img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    max-width: 500px;
  }
  .action-mid.overlap img {
    z-index: 5;
    height: 135%;
    max-height:205px;
    position:absolute;
    top: -53px;
    left: 0;
  
  }
  .action-mid {
    height: 150px;
    width: 100%;
    position: relative;
  }
  
  .elevate {
    margin-top: -36px;
  }
  
  .action-bottom {
    /* border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px; */
    border: 1px solid #E1E1E1;
    background-color: #E1E1E1;
  
    height: 30%;
    padding: 15px;
    background-color: #E1E1E1;
    display: table;
    width: 100%;
    box-sizing: border-box;
  }
  .action-bottom.dark {
    background-color: black;
    color: #ECECEC;
  }
  .action-bottom-text {
    display: table-cell;
    width: 67%;
    height: 100%;
    font-size: 12px;
    color: #545454;
    vertical-align: middle;
  }
  .action-bottom-button {
    display:table-cell;
    width: 28%;
    height: 100%;
    vertical-align: middle;
    text-align: right;
  }
  .action-bottom-button button {
    padding: 8px 45px 8px 15px;
    position: relative;
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  .Unity .action-bottom-button button {
    font-family: 'Unity';
  }
  .Pepsi .action-bottom-button button {
    font-family: 'Pepsi-Extended';
    font-size: 11px;
  }
  .action-bottom-button button i {
    position: absolute;
    right: 10%;
    top: 31%;
    color:#F40107;
  }
  .action-box.large {
    max-width: 1025px;
  }
  .action-box.steps {
    max-width: 400px;
  }
  .action-box.featured {
    width: 825px;
    max-width: 825px;   
  }
  .action-box.featured .action-mid img {
    max-width: 825px;
  }
.center {
    text-align: center;
}

.ralign {
    text-align: right;
}

.lalign {
    text-align: left;
}

body .ms-choice {
    /* padding: 17px;
    outline: none; */
    border: 1px solid #ccc;
    /* border-radius: 0px;
    margin-top: 1px;
    width: 99%; */
}

body .ms-choice>span {
    top: 1px;
}

.inject-box {
    display: inline-block;
    width: 250px;
    height: 300px;
    min-width: 250px;
    min-height: 300px;
    margin: 30px;
    border: 1px solid #E0E0E0;
    border-radius: 7px;
    vertical-align: bottom;
    overflow: hidden;
    background-color: white;
}

.inject-logo {
    width: 100%;
    height: 80%;
    background-color: white;
    position: relative;

}

.inject-logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.inject-button {
    background-color: #EAEAEA;
    /* padding: 10px; */
    height: calc(20%);
    position: relative;
}

.inject-button button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: left;
    background-color: white;
    border: 1px solid #E0E0E0;
    padding: 5px 10px;
    border-radius: 7px;
    color: #6B6B6B;
    cursor: pointer;
    white-space: pre;
    text-overflow: ellipsis;
    overflow: hidden;
}

.inject-button button i {
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translate(-50%, -50%);
    color: #F40107;
}

.inject-window {
    width: 100%;
    height: 100%;
    font-size: 11px;
    margin-top: 28px;
    background-color: white;
}

.inject-window-logo {
    display: inline-block;
    width: 60%;
}

.inject-window-actions {
    display: inline-block;
    width: 38%;
    height: 90%;
    vertical-align: top;
    text-align: left;
    margin-top: 20%;
}

.inject-price {
    display: inline-block;
    position: relative;
    color: #3A3A3A;
}

.inject-price input[type=text] {
    padding: 5px 5px 5px 15px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    width: 100%;
}

.inject-window-actions #inject-now {
    padding: 10px 5px;
    width: 90%;
    border: 1px solid #CB373B;
    background-color: #F40107;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
}

.injection-name {
    background-color: #E1E1E1;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 45px;
}

.inject-window-logo img {
    width: 100%;
}

.edit-external {
    display: inline-block;
    width: 28%;
    margin: 5px;
}

.edit-external input[type=password] {
    width: 90%;
    padding: 10px 10px;
}

.edit-external-icon {
    display: inline-block;
    width: 6%;
}

.edit-external-icon i {
    color: #F40107;
}

.edit-product-info hr {
    color: lightgrey;
}

#error {
    color: #F40107;
}


.link-menus-button {
  text-align: right;
  margin-top: 10px;
}

.center-title {
    text-align: center;
    font-weight: bold;
}

.button-box {
    display: inline-block;
    padding: 10px 10px 10px 10px;
    width: 125px;
    background-color: white;
    color: black;
    margin: 5px 10px;
    vertical-align: text-bottom;
    border-radius: 10px;
    border: 1px solid lightgrey;
    position: relative;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
}

.button-box i {
    position: absolute;
    right: 5%;
    color: red;
    margin-top: 4px;
}

.button-box.selected {
    color: white;
    background-color: #262626;
}

.button-box.selected i {
    color: white;
}

.product-table.imageview {
    display: block;
    background-color: white;
    text-align: center;
}

.product-table.imageview .product-row {
    display: inline-block;
    margin: 10px;
    width: 300px;
    height: 300px;
    border: 1px solid #F5F5F5;
    margin: 0;
    position: relative;
    margin: 20px 30px;
    cursor: move;
    vertical-align: top;
}
.product-table.imageview .product-row.spacer {
    display: block;
    width: unset;
    height: unset;
    margin: unset;
    border: none;
    /* margin-bottom: 50px; */
}
.product-category,
.product-category-first {
    display: contents;
    margin-bottom: 50px;
    background-color: #F5F5F5;
}
.imageview .product-category {
    background-color: white;
}
.spacer-top {
    display: table-row;
    width: 100%;
}
.spacer-top div {
    width: 100%;
    display: block;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.spacer-bottom {
    display: table-row;
    width: 100%;

}
.spacer-bottom div {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.spacer-middle {
    display: table-row;
    background-color: white;
    width:100%;
}
.spacer-middle div {
    /* width: 100%; */
    display:table-cell;
}

.product-category:not(:first-child):before {
    content: '\00000a\00000a\00000a';
    white-space: pre;
}

.product-table.imageview .noimageview {
    display: none;
}

.product-table.imageview .product-table-header {
    display: none;
}

.imageview .noimageview {
    display: none;
}

.imageviewonly {
    display: none;
}

.imageview .imageviewonly {
    display: inherit;
}

.imageview .product-cell img {
    width: 300px;
    height: 270px;
    object-fit: cover;
    display: block;
}

.imageview .product-cell {
    padding: 0;
}

/* .imageview #image {
    background-color: #F5F5F5;
} */

.imageview #name {
    position: absolute;
    text-align: center;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 30px;
}

.imageview #date {
    position: absolute;
    top: 93.5%;
    right: 5%;
    font-family: 'Unity';
}

.imageview #upc {
    position: absolute;
    top: 93.5%;
    left: 2%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 115px;
    font-family: 'Unity';
}

.imageview .product-cell.button:nth-child(3n) {
    position: absolute;
    top: 93.5%;
    left: 60%;
}

.imageview .product-cell.button:nth-child(3n + 1) {
    position: absolute;
    top: 93.5%;
    left: 40%;
}

.imageview .product-cell.button:nth-child(3n + 2) {
    position: absolute;
    top: 93.5%;
    left: 50%;
}
.product-cell.button#eye {
    display: none;
}
.imageview .product-cell.button#eye {
    position: absolute;
    display: inline-block;
    top: 93%;
    left: 42%;
}
.orange-outline {
    border: 1px solid #d9a300 !important;
}

.selection-buttons {
    display: inline-block;
    margin: 0 10px;
}

.selection-buttons i {
    font-size: 20px;
    margin: 5px;
    color: grey;
    cursor: pointer;
}

.selection-buttons .blue-button {
    margin: 5px;
}

.selection-buttons .blue-button i {
    color: white;
    margin: 0px;
}


.selection-status {
    display: inline-block;
    margin: 0 10px;
}


.greybox:has(.imageview) {
    background-color: white;
    text-align: center;
}

.selection-buttons .icon-selected {
    color: black;
}

#table-buttons i {
    margin: 0 5px;
}

.manage-box-wrap {
  display: inline-block;
  position: relative;
  margin: 5px;
}


.manage-box {
    display: inline-block;
    border-radius: 15px;
    width: 400px;
    height: 200px;
    border: 1px solid #DEDEDE;
    overflow: hidden;
    margin: 20px 15px;
    text-align: left;
}

.manage-top {
    display: table;
    height: 40px;
    width: 400px;
    background-color: #E1E1E1;
    box-sizing: border-box;
    padding: 0 15px;
}

.manage-title {
    display: table-cell;
    margin-top: 12px;
    width: 49%;
    font-weight: bold;
    margin-left: 15px;
    box-sizing: border-box;
    vertical-align: middle;

}

.manage-button {
    display: table-cell;
    width: 49%;
    text-align: right;
    margin-right: 15px;
    box-sizing: border-box;
    vertical-align: middle;
}

.manage-bottom img {
    width: 400px;
    height: 160px;
    object-fit: cover;
}
.manage-bottom.chart {
    height: 164.5px;
}

.manage-button-button {
    padding: 6px 45px 6px 15px;
    position: relative;
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 110px;
    height: 30px;
}

.Pepsi .manage-button-button {
    font-family: 'Pepsi-Extended';
    font-size: 11px;
}
.Unity .manage-button-button {
    font-family: 'Unity';
}

.manage-button-button i {
    position: absolute;
    right: 10%;
    top: 28%;
    color: #F40107;
}
.manage-button-button i.fa-loader{
    position: static;
    color: #F40107;
}
.manage-button-button:has(i.fa-loader) {
    padding: 6px 30px 6px 30px;
}
.manage-bottom-chart, .manage-bottom-text {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    margin: 0 2px;
}
.manage-bottom-text {
    font-weight: normal;
    font-size: 14px;
    position:relative;
}
.manage-table {
    display:table;
    border-collapse: collapse;
    position:absolute;
    top:42px;
    right:50px;
    width:100px;
}
.manage-row {
    display:table-row;
}
.manage-cell {
    display:table-cell;
}
.manage-cell:first-child {
    text-align: right;
}
.report-box {
    width: 31%;
    min-width: 500px;
    height: auto;
    min-height: 500px;
}

.report-top {
    width: 100%;
    padding: 5px;
}

.report-title {
    font-size: 1.2em;
    width: 100%;
    text-align: center;
    margin-left: 0px;

}

.report-bottom {
    padding: 10px 25px 55px 25px;
}

.run_report {
    border-radius: 7px;
    background-color: #005CB4;
    color: #fff;
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    cursor: pointer;
    width: fit-content;
    margin: 10px auto;
}

.run_report_arrow {
    /* float: right;
    font-size: 0.9em; */
}
.run_report_arrow i {
    position: absolute;
    top: 16px;
    right: 10px;
}
.report-chart {
    width: 100%;
    height: 320px;
}



.fancy-select {
    padding: 9px 10px;
    border: 1px solid #EFEEF0;
    background-color: white;
    min-width: 150px;
}

.inject-switch-top {
    height: 30px;
    min-height: 30px;
    background-color: #EAEAEA;
    padding: 10px;
}

.inject-switch-name {
    background-color: white;
    color: black;
    text-align: center;
    /* margin: 10px; */
    border-radius: 5px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.inject-switch-bottom {
    height: 250px;
    min-height: 250px;
    text-align: center;
    font-size: 13px;
    background-color: white;
}

.inject-switch-bottom button {
    background-color: #0082DA;
    color: white;
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.inject-switch-bottom-1 {
    height: 200px;
    min-height: 200px;
    position: relative;

}

.inject-switch-bottom-1 input,
.inject-switch-bottom-1 select {
    width: 88px;
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 5px;
    /* outline: none; */
    padding: 5px 10px;
}

.inject-logo i {
    position: absolute;
    color: green;
    right: 3%;
    top: 3%;
    font-size: 30px;
    --fa-primary-color: #008000; 
    --fa-secondary-color: #ffffff;
    --fa-secondary-opacity: 1;
}

.popup-info-large .action-box {
    max-width: 400px;
}

.chart {
    height: 240px;
}

.wrapper-width {
    width: calc(100vw - 140px);
    max-width: 1137px;
}


.tracker {
    border-collapse: collapse;
    width: 937px;
    display: table;
}

.tracker2 {
    border-collapse: collapse;
    width: 837px;
    display: table;
}

.tracker3 {
    border-collapse: collapse;
    width: 837px;
    display: table;
}

.row {
    display: table-row;
}

/* For fixed left most column, use position sticky and ensure z-index smaller than wraper1 */
.headcol {
    position: sticky;
    position: -webkit-sticky;
    /* for safari */
    left: 0;
    z-index: 8;
}

.table-cell {
    display: table-cell;
}

.tracker .row .table-cell:first-of-type,
.tracker2 .row .table-cell:first-of-type,
.tracker3 .row .table-cell:first-of-type {
    width: 415px;
    padding: 10px;
    color: black;
}

.tbody .row:nth-child(odd) .table-cell {
    background-color: #f4f4f4;
}

.tbody .row:nth-child(even) .table-cell {
    background-color: white;
}

.tbody .row .table-cell {
    padding: 10px 0px;
    color: #a3a3a3;
}

.blue-hover {
    color: #2c6ecb;
    text-decoration: none;
}

.blue-hover:hover {
    color: #2c6ecb;
    text-decoration: underline;
}

.tracker-bar {
    display: inline-block;
    width: 100px;
    height: 12px;
    box-sizing: border-box;
    font-size: 9px;
    padding: 2px;
    color: black;
    text-align: center;
    vertical-align: middle;
}

.bar1 {
    background-color: #cbe7be;
}

.bar2 {
    background-color: #f3c999;
}

.bar3 {
    background-color: #f2ba59;
}

.bar4 {
    background-color: #b6c8e0;
}

.bar5 {
    background-color: #94acce;
}

.bar6 {
    background-color: #89cbbd;
}

.bar7 {
    background-color: #a7d6f2;
}

.bar8 {
    background-color: #a2dfda;
}

.bar9 {
    background-color: #6ddbc0;
}

.bar10 {
    background-color: #83c259;
}

.bar11 {
    background-color: #7cba6d;
}

.bar12 {
    background-color: #29c18f;
}

.bar13 {
    background-color: #57ad68;
}

.bar14 {
    background-color: #009020;
}


.bar-red {
    background-color: red;
}

.bargrey {
    background-color: #eaeaea;
}

#search-icon {
    position: absolute;
    right: 7px;
    top: 7px;
    color: #babec5;
}
#second-icon {
    position: absolute;
    right: 7px;
    top: 12px
}
#first-icon {
    position: absolute;
    top: 12px;
    left: 7px;
}
.two-icons.search-box input[type=text] {
    padding: 10px 25px;
}
.search-box {
    position: relative;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
}

.search-box input[type=text] {
    padding: 5px 25px 5px 15px;
}

#product-search-div,
#category-toggle {
    display: none;

}
#product-category-div {
    display: table-cell;
    margin: 5px 0px;
}

.greybox:has(.product-library-selection), .greybox:has(.stacked-navagation),
.clearbox:has(.product-library-selection), .clearbox:has(.stacked-navagation) {
    display: table;
}

.edit-product-info input[type='text'],
.edit-product-info input[type='password'],
.formbox input[type='number'],
.formbox input[type='phone'],
.formbox input[type='email'],
.formbox input[type='password'],
.input,
.niceinput {
    box-sizing: border-box;
    width: 100%;
    padding: 13px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.edit-product-info input {
    writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
    margin: 0em;
    padding: 1px 2px;
    border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}

#invite-store-form select {
    width: 100%;
    font-size: 15px;
    padding: 13px 45px 13px 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-image: url(/images/select.png) !important;
    background-position: 100% 0;
    background-repeat: no-repeat no-repeat;
    border-radius: 5px;
}

.report-button {
    height:34px;
    padding:0px 14px;
    border-radius:2px;
    vertical-align:middle;
    font-size:12px;
    border: 0px;
    background: #007cd1;
    color: white;
    cursor: pointer;
    margin: 2px 0px;
}

.blue-button {
    border: 0px;
    background: #007cd1;
    color: #fff;
    padding: 10px 25px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 160px;
}
.blue-button:disabled {
    background-color: darkgrey;
}
.blue-button-small {
    border: 0px;
    background: #007cd1;
    color: #fff;
    padding: 2px 0px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    border-radius: 5px;
    width: 70px;
}

.white-button {
    border: 0px;
    background: #eee;
    color: #000;
    padding: 10px 25px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border: #ddd 1px solid;
    border-radius: 5px;
    width: 160px;
}

.long-button {
    width: 200px;
    margin-top: 20px;
}

.edit-product-info h3 {
    color: #444;
}

.edit-product-info {
    padding: 20px;
    border-radius: 15px;
    border: #ddd 1px solid;
    background-color: #f4f4f4;
    margin-bottom: 10px;
}

.response_note {
    font-size: 18px;
    color: #444;
}

.register_title {
    font-size: 22px;
    color: #444;
}

.popup-window {
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    z-index: 101;
}

.suggestions {
    overflow-y: auto;
    height: auto;
    background-color: white;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.suggestion {
    padding: 5px;
    border-bottom: 1px solid #808080;
    cursor: pointer;

}

.suggestion:hover {
    background: #007cd1;
    color: white;
}

input:read-only {
    /* background-color: lightgrey; */
    /* login verificatin looks bad
  color: grey;
  */
}

#sortable-upsell-images,
#sortable-featured-images {
    list-style-type: none;
    padding-inline-start: 0px;
    text-align: center;
}

#sortable-upsell-images li,
#sortable-featured-images li {
    width: 350px;
    height: 350px;
    display: inline-block;
    margin: 5px 10px;
}

#sortable-upsell-images li img,
#sortable-featured-images li img {
    width: 350px;
    height: 350px;
    object-fit: cover;
}

#right {
    /* display: inline-table; */
    /* border-collapse: collapse; */
    /* border-spacing: 15px; */
    padding: 20px;
    width: calc(40% - 45px);
    display: inline-block;
    /* border: 1px dotted grey; */
}

#inputs {
    border-spacing: 15px;
    display: inline-table;
    width: 100%;
}

.top-right {
    position: absolute;
    top: 10px;
    right: 10px;
}

#product_div {
    display: inline-block;
    width: calc(60% - 42px);
    vertical-align: top;
    border-right: 1px dotted black;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}

#product_div input[type=text],
#product_div select,
#product_div textarea,
#product_div button {
    width: 95%;
    max-width: 600px;
}

#product_div textarea {
    height: -moz-available;
    /* WebKit-based browsers will ignore this. */
    height: -webkit-fill-available;
    /* Mozilla-based browsers will ignore this. */
    height: fill-available;

    width: calc(50% - 10px);
    vertical-align: top;
    margin-left: 10px;
    border: 1px solid lightgrey;
    border-radius: 5px;
}

.table-row.region:nth-child(2n) {
    background-color: #F5F5F5;
}

.table-row.region:nth-child(2n + 1) {
    background-color: #F5F5F5;
}

.region i {
    color: red;
    cursor: pointer;
}

select[readonly] {
    pointer-events: none;
    background-color: lightgrey;
    color: grey;

}

.container {
    display: inline;
    position: relative;
    padding-left: 25px;
    line-height: 45px;
    cursor: pointer;
    font-size: 16px;
    color: black;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
}


.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 5px;
  border:1px solid #96989c;
}

.radiobox {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  border:1px solid black;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark, .container:hover input ~ .radiobox {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark, .container input:checked ~ .radiobox {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after, .radiobox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after, .container input:checked ~ .radiobox:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container .radiobox:after {
  left: 7px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color:white;
}



/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.product_region {
    border: 1px solid lightgrey;
    padding: 5px;
    margin: 20px 0;
    position: relative;
    border-radius: 5px;
    cursor: ns-resize;
}

.pic_div {
    position: relative;
    display: inline-block;
    width: calc(50% - 14px);
    vertical-align: top;
    border: 1px solid lightgrey;
    padding: 2px;
    height: 293px;
    border-radius: 5px;
}

.region_img {
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    height: -moz-available;
    height: -webkit-fill-available;
    height: fill-available;
    object-fit: contain;
}

.region_header {
    display: table;
    width: 100%;
}

.region_header_cell {
    display: table-cell;
}

.region_header_cell select {
    width: fit-content;
}

.verification-box {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    box-sizing: border-box;
}

#code1,
#code4 {
    width: 40px;
    height: 52px;
    background-color: white;
    border: 1px solid #e0e1e4;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 40px;
    text-align: center;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

#code2,
#code5 {
    width: 40px;
    height: 52px;
    background-color: white;
    border: 1px solid #e0e1e4;
    font-size: 40px;
    text-align: center;
    border-left: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

#code3,
#code6 {
    width: 40px;
    height: 52px;
    background-color: white;
    border: 1px solid #e0e1e4;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 40px;
    text-align: center;
    border-left: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

#code3 {
    margin-right: 10px;
}

#code4 {
    margin-left: 10px;
}

.mbm-header {
    font-size: 26px;
    line-height: 1;
    text-align: left;
}

.justmobile, .justmobileinline {
    display: none;
}

/* DO NOT REMOVE vertical align*/
.button-box-wrap {
    display: table-cell;
    text-align: center;
    vertical-align:middle;
}
/* DO NOT REMOVE vertical align*/
.search-area {
    display: table-cell;
    width: fit-content;
    vertical-align:middle;
}

.button-box-add {
    display: table-cell;
    vertical-align: middle;
    width: fit-content;
    position: relative;
}

.add-layer {
    display: none;
    position: absolute;
    right: 0;
    z-index: 10003;
    text-align: left;
    box-sizing: border-box;
    top: 40px;
    webkit-box-shadow: 0 0 6px 1px rgb(0 0 0 / 11%);
    -moz-box-shadow: 0 0 6px 1px rgba(0,0,0,.11);
    box-shadow: 0 0 6px 1px rgb(0 0 0 / 11%);
    background-color: #fff;
    cursor: default;
    color: black;
    border-radius: 5px;
    border: 1px solid #dddddd;
    width: 150px;
}

.campaign-right .add-layer {
    width: 300px;
}

.sidebar-text .add-layer {
    top: 30px;
}

.placement-layer {
    display: none;
    position: absolute;
    left: 0;
    z-index: 10003;
    text-align: left;
    box-sizing: border-box;
    top: 25px;
    webkit-box-shadow: 0 0 6px 1px rgb(0 0 0 / 11%);
    -moz-box-shadow: 0 0 6px 1px rgba(0,0,0,.11);
    box-shadow: 0 0 6px 1px rgb(0 0 0 / 11%);
    background-color: #fff;
    cursor: default;
    color: black;
    border-radius: 5px;
    border: 1px solid #dddddd;
    width: 150px;
}


.add-layer .notification-item, .placement-layer .notification-item {
    padding: 0px;
}

.layer-active, .layer-active:hover {
    background-color: black !important;
}


.layer-active a {
    color: white;
}

.add-layer .notification-item:hover, .placement-layer .notification-item:hover {
    background-color: #f4f6f8;
}

.add-layer .notification-item a, .placement-layer .notification-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: black;
}

.sidebar-text .notification-item {
    font-weight: bold;
}



#search-boxes {
    vertical-align: middle;
}

.mobile-menu {
    font-size: 40px;
    /* margin: 0 10px; */
    /* position: absolute; */
    right: 3%;
    top: 5%;
    /* vertical-align: super;
    padding-right: 10px; */
}

.mobile-select {
    display: none;
}

.invite {
    width: 75%;
    max-width: 750px;
    margin: 0 auto;
}

.imageviewpic {
    cursor: move;
}

.product-library-selection *,
.product-library-csv * {
    vertical-align: middle;
}

.right-icon {
    position: relative;
    text-align: left;
}
.right-icon i {
    position: absolute;
    right: 10px;
}
.right-icon img {
    position: absolute;
    right: 1px;
    height: 20px;
}

.left-icon {
    position: relative;
    text-align: right;
}
.left-icon i {
    position: absolute;
    left: 10px;
}
.left-icon img {
    position: absolute;
    left: 1px;
    height: 20px;
}

.button-row {
    display: inline-block;
}
.button-row:first-child {
    text-align: left;
    width:49%;
}
.button-row:last-child {
    text-align: right;
    width:49%;

}
.success-messsage {
    background-color:#9CEDE4;
    /* opacity: .5; */
    color: black;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
}

.stacked-navagation {
    width: calc(49% - 40px);
    display: inline-block;
    vertical-align: top;
    margin: 0 20px;
}
.stacked-navagation input[type="radio"] {
    height: 20px;
    width: 20px;
    vertical-align: sub;
}


.stacked-navagation .ms-parent {
    text-align: left;
}
.stacked-navagation button, .download-button {
    padding: 5px 25px 5px 35px;
    margin: 0 5px;
    background-color: white;
    border-radius: 5px;
    position: relative;
    border: 1px solid #babec5;
    cursor: pointer;

}
.stacked-navagation button:focus, .download-button:focus {

    border: 1px solid #005CB4;

}

.stacked-navagation button i, .download-button i {
    position: absolute;
    left: 5%;
    top: 25%;
}
#invite-button  {
    margin-left:-30px;
    z-index:1;
    position:relative;
    width:150px;
    border-left: unset;
}
/* .stacked-navagation-box >i {
    cursor: pointer;
}

.stacked-navagation-box>i:hover,
.stacked-navagation-box>div>i:hover {
    color: #F40107;
} */

.stacked-navagation-search {
    position: relative;
    text-align: right;
    width: fit-content;
    max-width: 242px !important;
    display: inline-block;
}

.stacked-navagation-search input[type=text] {
    padding: 5px 25px 5px 15px;
    border: 1px solid #babec5;
    border-radius: 5px;
}

 .stacked-navagation .formbox div, .stacked-navagation .formbox input, .stacked-navagation .formbox select {
    width: 100%;
    max-width: 350px;
}

.stacked-navagation:nth-of-type(2) .formbox{
    text-align: right;
}
.modifier-border {
    border: 1px solid lightgrey;
    border-radius: 5px;
}
/*
.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -30px;
  transform: translate(0, 10px);
  background-color: #183153;
  color: 20px;
  padding: 5px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  width: 100px;
  margin-top: 10px;
  text-align:center;
  font-size: 11px;
}

.popover__content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: calc(50% - 10px);
  top: -8px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #183153 transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.header-notification:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -8px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
*/

.help-icon-area {
    display:inline-block; 
    width: 50%;
    vertical-align: middle;
}
.notification-action-area {
    display:none;
    text-align: right;
    width: 45%;
}
.link-button button i.fa-square-plus {
    color: green;
  }
  .inject-mod-group {
    display:contents; 
    width: 100%;
    vertical-align:top;
  }	
  .button-row-inject {
    display: table;
    width: 95%;
    margin: 0 auto;
  }
  .button-row-inject .two-button {
    display: table-cell;
    width: 50%;
  }
  .button-row-inject .three-button {
    display: table-cell;
    width: 33%;
  }	
  .cancel-important {
    background: #eeeeee !important;
    color: #000000 !important;
    border: #dddddd 1px solid !important;
    font-size: 16px !important;
}

.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display:inline-block;
    cursor: pointer;
}
.file-upload-wrapper input[type=file]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 33px;
    cursor: pointer;
}
.upload-file-btn {
    border: 1px solid black;
    color: black;
    background-color: white;
    border-radius: 10px;
    padding: 8px 35px;
    cursor: pointer;
}
.upload-file-btn:hover {
    background-color: lightgrey;
}
.chat-wrap {
    position: relative;
    width: fit-content;
}
.chat-window {
    display: none;
}
.chat-area {
    position: fixed;
    /* bottom: 20%;
    right: 5%; */
    z-index: 999;
    inset: auto 15px 35px auto;
    /* cursor: pointer; */
    background-color: white;
    border-radius: 50%;
    font-family: 'Unity';
}
.chat-wrap.show .chat-window {
    display: block;
    position: absolute;
    right: 30px;
    bottom: 50px;
    width: 350px;
    height: 550px;
    background-color: white;
    /* border: 1px solid lightgrey; */
    border-radius: 10px;
    z-index: 99;
    -webkit-font-smoothing: antialiased;
    box-shadow: 3px 0px 10px 3px rgb(0, 0, 0, .2);

}
.chat-wrap.show .chat-conversation {
    width: 100%;
    height: 360px;
    padding: 10px 20px 10px 10px;
    /* overflow-y: auto; */
    box-sizing: border-box;
    /* border-top-right-radius: 10px;
    border-top-left-radius: 10px; */
    background-color: white;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.Unity .chat-wrap.show .chat-conversation {
    font-family: 'Unity';
}
/* .Pepsi .chat-wrap.show .chat-conversation {
    font-family: 'Pepsi';
} */
.chat-wrap.show .chat-conversation::-webkit-scrollbar { 
    width: 0 !important;
    height: 0;  /* Safari and Chrome */
}
.chat-wrap.show .chat-response {
    width: 350px;
    height: 100px;
    background-color: white;
    box-sizing: border-box;
    padding: 0px 20px 5px 15px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
}
.Unity .chat-wrap.show .chat-response {
    font-family: 'Unity';
}
.Pepsi .chat-wrap.show .chat-response {
    font-family: 'Pepsi';
}
.chat-scroll {
    width: 5px;
    height: 330px;
    position: absolute;
    right: 5px;
    padding: 0 1px 0 0;
}
.chat-scroll div {
    width: 5px;
    background: darkgrey;
    border-radius: 5px;
    cursor: pointer;
    height: 250px;
    float: right;
    position: absolute;
}
.chat-scroll div:hover {
    right: 0px;
    width: 8px;
    background: darkgrey;
    border-radius: 5px;
    cursor: pointer;
    
}
.chat-wrap > button:hover {
    background-color: white;
    color: transparent;
    
    background-image: linear-gradient(135deg, rgb(247, 39, 73), rgb(247, 131, 32));
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
.chat-wrap > button{
    width: 60px;
    height: 60px;
    border: none;
    font-size: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(247, 39, 73), rgb(247, 131, 32));
    color: white;
    box-shadow: 3px 0px 10px 3px rgb(0, 0, 0, .2);
    cursor: pointer;
    padding: 1px 6px;

}
.chat-wrap > button i{
    vertical-align: middle;
}
.chat-wrap.show .chat-info {
    width: 350px;
    height: 90px;
    /* background-color: white; */
    box-sizing: border-box;
    padding: 20px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    box-sizing: border-box;
    text-align: left;
    background-image: linear-gradient(135deg, rgb(152, 3, 58) 0%, rgb(247, 79, 40) 100%);
    
}
.chat-response textarea {
    width: 100%;
    height: 100%;
    border:none;
    outline: none;
    resize: none;
    overflow-y: hidden;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.chat-response textarea {
    font-family:'Unity';
}
/* .Pepsi .chat-response textarea {
    font-family:'Pepsi';
} */
.chat-image i.fa-message-bot {
    font-size: 22px !important;
}
.chat-wrap button i {
    font-size: 22px !important;

}

.chat-wrap.show .chat-response textarea::-webkit-scrollbar { 
    width: 0 !important;
    height: 0;  /* Safari and Chrome */
}

.answer {
    display: block;
    text-align: left;
    margin: 10px auto 10px 5px;
    border-radius: 10px; 
    padding: 10px;  
    background-color: #F0F2F7;
    width: fit-content;
}

.question{
    display: block;
    text-align: left;
    margin: 10px 5px 10px auto;
    background-image: linear-gradient(135deg, rgb(247, 39, 73), rgb(247, 131, 32));
    border-radius: 10px; 
    padding: 10px;   
    width: fit-content;
    color: white;
}
.answer-wrap {
    margin-right: 40px;
}
.question-wrap {
    margin-left: 40px;
}
.chat-image {
    width:240px;
    display: inline-block;
    vertical-align: middle;

}
.chat-wrap .chat-image button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    vertical-align: middle;
    display: inline-block;
    background: linear-gradient(135deg, rgb(247, 39, 73), rgb(247, 131, 32));
    border: none;
    color: white; 
    font-size: 25px;
    padding: 1px 6px;

}
.chat-wrap .chat-image button i {
    vertical-align: middle;
}

.chat-down {
    width: 65px;
    /* padding-left: 35px; */
    display: inline-block;
    box-sizing: border-box;
    text-align: right;
    vertical-align: middle;

}
.chat-down i {
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.chat-image-text {
    color: white;
    width: 130px;
    display: inline-block;
}
.loader-ellips {
    font-size: 8px; /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 5px auto;
  }
.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555; /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
  }
  
  .loader-ellips__dot:nth-child(1),
  .loader-ellips__dot:nth-child(2) {
    left: 0;
  }
  .loader-ellips__dot:nth-child(3) { left: 1.5em; }
  .loader-ellips__dot:nth-child(4) { left: 3em; }
  
  @keyframes reveal {
    from { transform: scale(0.001); }
    to { transform: scale(1); }
  }
  
  @keyframes slide {
    to { transform: translateX(1.5em) }
  }
  
  .loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
  }
  
  .loader-ellips__dot:nth-child(2),
  .loader-ellips__dot:nth-child(3) {
    animation-name: slide;
  }
  
  .loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
  }
.chat-text-wrap {
    border-top: 1px solid lightgrey;
    padding: 10px 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.chat-wrap.show .fa-message-bot {
    display:none;
}
.chat-wrap.show .chat-info .fa-message-bot {
    display:var(--fa-display,inline-block);
}
.chat-wrap .fa-message-bot {
    display:var(--fa-display,inline-block);
}
.chat-wrap.show .fa-right-from-bracket{
    display:var(--fa-display, inline-block);
}
.chat-wrap .fa-right-from-bracket{
    display:none;
}
.chat-wrap > button i.fa-right-from-bracket {
    vertical-align: unset;
}
.chat-wrap.show .chat-loader {
    display: none;
}
.chat-wrap.show .chat-error {
    display: none;
}

.chat-wrap.show.load .chat-loader {
    display: block;

}
.chat-wrap.show.error .chat-error {
    display: block;
}
.chat-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-align: center;
    color: lightgrey;
}
.chat-loader i,
.chat-error i {
    font-size: 40px;
}
.chat-wrap.load .chat-response {
    visibility: hidden;
}
.chat-wrap.error .chat-response {
    visibility: hidden;
}
.chat-wrap.load .chat-conversation {
    visibility: hidden;
}
.chat-wrap.error .chat-conversation {
    visibility: hidden;
}
.chat-wrap.show.error .chat-loader {
    display: none;
}
.chat-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-align: center;
    color: lightgrey;
}
.chat-down .fa-chevron-down {
    margin-left: 15px;
}
.chat-text-wrap .fa-paper-plane-top{
    display: none;
}
.chat-text-wrap {
    width: calc(100% - 15px);
}
.chat-wrap.show .chat-text-wrap .fa-paper-plane-top {
    display: inline;
    position: absolute;
    right: 5px;
    bottom: 40px;
    font-size: 22px;
    color: lightgrey;
}
.chat-wrap.show .chat-text-wrap .fa-paper-plane-top:hover {
    color: grey;
}
.product-table.imageview .greybox {
    background-color: white;
    border: 1px solid lightgrey;
}
.category-name {
    display: block;
    font-size: 18px;
    font-weight:bold;
    padding-bottom: 10px;
    padding-right: 10px;
    text-decoration: underline;
    position: absolute;
    line-height: 1.2;
}
.imageview .category-name {
    position: unset;
    margin-bottom: -30px;
}
.table-spacer {
    margin-top: 30px;
    position: absolute; 
    background-color: white; 
    left: 0; 
    width: 100%;
}
.imageview .table-spacer {
    display: none;
}
.load-more-product {
    margin: 10px 0;
    padding-bottom: 10px;
}
.load-more-product a {
    position: absolute;
    left:50%;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}
.imageview .load-more-product a {
    position: unset;
}

.clearshadow {
    box-sizing: border-box;
    height: 1px;
    width: calc(100% - 30px);
    background-color: #babec5;
    margin: 0 auto; 

}
.niceselect.greyborder {
    border: 1px solid #babec5;
}
.greyborder{
    border: 1px solid #babec5 !important;
    border-radius: 5px;
}
.sidebar-icon {
    display: inline-block;
    vertical-align: top;
    height: 100%;
    width: 50px;
    position: relative;
    background-color: #CC722E;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.sidebar-item:nth-child(1) .sidebar-icon, .sidebar-item:nth-child(9) .sidebar-icon {
    background-color: #CC722E;
}

.sidebar-item:nth-child(2) .sidebar-icon, .sidebar-item:nth-child(10) .sidebar-icon  {
    background-color: #00a27f;
}

.sidebar-item:nth-child(3) .sidebar-icon, .sidebar-item:nth-child(11) .sidebar-icon {
    background-color: #0074cc;
}

.sidebar-item:nth-child(4) .sidebar-icon, .sidebar-item:nth-child(12) .sidebar-icon {
    background-color: #287431;
}

.sidebar-item:nth-child(5) .sidebar-icon, .sidebar-item:nth-child(13) .sidebar-icon {
    background-color: #d20021;
}

.sidebar-item:nth-child(6) .sidebar-icon {
    background-color: #2353ac;
}

.sidebar-item:nth-child(7) .sidebar-icon {
    background-color: #626060;
}
.sidebar-item:nth-child(8) .sidebar-icon {
    background-color: #4FDECD;
}
.sidebar-text {
    display: block;
    vertical-align: middle;
    color: white;
    margin: 10px;
    overflow-wrap: break-word;
    white-space: normal;
    font-family: 'Unity';
    font-size: 10px;
    letter-spacing: 0px;
}


.sidebar-icon a, .sidebar-text a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.sidebar-icon:hover + .sidebar-list .sidebar-text:first-of-type {
    font-weight: bold;
}

.sidebar-text:hover {
    font-weight: bold;
}

.sidebar.collapse .sidebar-text {
    display: none;
}
.sidebar.collapse .sidebar-item {
    width: 30px;
    /* text-align: center; */
}

.sidebar.collapse:hover .sidebar-item {
    width: 165px; 
    /* text-align: left; */
}
.sidebar.collapse:hover .sidebar-text {
    display: inline-block;
}
.sidebar-collapse-wrap.collapse ~ .content {
    left: 62px;
    width: calc(100% - 92px);
}
.sidebar-collapse {
    display: inline-block;
    text-align: right;
}
.sidebar-expand {
    display: none;
}
.sidebar-collapse-wrap.collapse .sidebar-collapse {
    display: none;
}
.sidebar-collapse-wrap.collapse .sidebar-expand {
    display: inline-block;
}
.sidebar-item.collapse {
    text-align: right;
}
.sidebar.collapse .sidebar-item.collapse {
    text-align: left;
}
.sidebar-collapse-wrap {
    display: flex;
    /* position: absolute; */
    bottom: 0;
    height: 45px;
    border-top: 1px solid lightgrey;



    position: fixed;
    background-color: #4A4A4A;
    color: white;
    padding: 0 0 0 0;
    text-align: left;
    flex-direction: column;
    align-items: center;
    overflow: none;
    box-sizing: border-box;
    z-index: 7;
}
.sidebar + .sidebar-collapse-wrap .sidebar-item {
    width: 145px;
    margin: 0 10px;
    padding-top: 10px;

}
.sidebar.collapse + .sidebar-collapse-wrap {
    padding: 0 5px;
}
.sidebar.collapse + .sidebar-collapse-wrap .sidebar-item {
    width: 20px;
    height: 45px;
    margin: 0;
}
.sidebar-collapse-wrap .sidebar-item a {
    color: white ;

}
.sidebar.collapse:hover + .sidebar-collapse-wrap .sidebar-item{
    width: 155px;
    text-align: left;
}
body .ms-choice>span {
    top: 10px !important;
}
.ms-choice {
    height: 45px !important;
}
.ms-parent.qb-input .ms-choice {
    height: 32px !important;
    border: none !important;
}
body .ms-parent.qb-input .ms-choice>span {
    top: 4px !important;
}

.ms-drop input[type="radio"] {
    margin-top: .1rem !important;
}
.imageview .featured-help{
    left: 0;
}
.featured-help {
    right: 0;
}
.product-nobr {
    text-align: left;
    white-space: nowrap;
    display: inline-block;
}
.bm-button {
    border: 0px;
    background: #005CB4;
    color: white;
    padding: 10px 0px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
}
.mobi-buttons-start {
    display: inline-block;
    text-align: center;
    width: 100%;
    vertical-align: middle;
}
.sidebar-item.spacer  {
    padding: 10px 0;
}
.sidebar-item.spacer hr {
    border: 1px solid #414141;
}
.ms-parent {
    max-width: 100%;
    font-family: 'Unity';
}
#link-now-button {
    width: 424px; 
    max-width: unset; 
    margin: unset;
} 

.excel-header {
    font-weight:bold;
    text-align: center;
    color: #444444;
    margin: 10px 0;
    position: relative;
}
.excel-instructions {
    margin: 10px;
}
.excel-buttons button {
    width: 200px;
    margin: 0 10px;
    padding: 7px 25px;
}
.excel-email-container {
    background-color: #fff;
    width: 80%;
    margin: 10px auto;
    padding: 5px;
    border-radius: 10px;
    text-align: left;
}
.excel-email-container span {
    text-decoration: underline;
}
.excel-list {
    text-align: left;
}
ol.excel-list li::marker {
    font-weight: bold;
}
.excel-template-wrap {
    background-color: white;
    padding: 15px 0;
    width: 80%;
    margin: 10px auto;
    border-radius: 10px;

}
.excel-template {

    display: table;
}
.template-text {
    display: table-cell;
    width: 70%;
    text-align: left;
    padding-left: 20px;
}
.template-text > span {
    font-weight: bold;
}
.template-buttons {
    display: table-cell;
    width: 30%;
    min-width: 160px;
    white-space: nowrap;
}
.template-buttons i {
    margin: 0 15px;
    cursor: pointer;
}

.template-buttons i.fa-trash-can {
    color: #f40107;
}
.excel-email-header {
    font-size: 16px;
    position:relative;
    width: 460px;
    margin: 0 auto;
    
}
.excel-email-header i:first-child, .excel-header i:first-child {
    position: absolute;
    left: 0px;
    top: 5px;
}
.excel-email-header i:last-child, .excel-header i:last-child {
    position: absolute;
    right: 0px;
    top: 5px;
}
.excel-template-wrap .template-action {
    display: none;
    margin: 10px auto;
    width: 80%;
}
.template-action-buttons {
    margin-top: 10px;
}
.template-action-buttons div {
    display: inline-block;
    width: 49%;
}
.template-action-buttons div:first-child {
    text-align: left;
}
.template-action-buttons div:last-child {
    text-align: right;
}
.template-action-buttons div button {
    padding: 10px 20px;
    width: 130px;
    font-size: 14px;
}
#archived-area {
    margin-top: 25px;
}
#archived-area .excel-header {
    width: 225px;
    margin: 0 auto;
}
.customer-buttons {
    display:table-cell;
    padding-left: 5px;
    text-align:right;
    vertical-align:middle;
}
.clearbox.cleartable {
    display: table;
}
#customer-search.search-area{
    vertical-align:unset;
    min-width: 290px;
}

.popup-section {
    padding: 20px 0;
    border-radius: 15px;
    border: #ddd 1px solid;
    background-color: #fff;
    margin-bottom: 10px;
}


.table-list {
    display: table;
    width: 100%;
    border-collapse: collapse;
  }
  .row-list {
    display: table-row;
  }
  .cell-list {
    display: table-cell;
    vertical-align: middle;
    padding: 5px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .row-list-header {
    display: table-row;
    border-bottom: 1px solid #AEAEAE;
  }
  .header-cell {
    display: table-cell;
  }
  .category-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .toggle-items {
    display: table-cell;
    text-align: right;
  }
  .toggle-item {
    display: inline-block;
    margin: 0 25px;
  }
  .toggle-text {
    display: inline-block;
    width: 65%;
    vertical-align: middle;
  }
  .toggle-toggler {
    display: inline-block;
    width: 30%;
  }
  .add-button-text, .add-button-icon {
    display: inline-block;
    margin: 0;
    height: 35px;
    vertical-align: middle;
  }
  .add-button-icon {
    background-color:#2196F3;
    color: white;
    border-top: 1px solid #2196F3;
    border-bottom: 1px solid #2196F3;
    border-left: 1px solid #2196F3;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding: 0 10px;
  
  }
  .add-button-text {
    background-color: #F5F5F5;
    border-top: 1px solid lightgrey;
    border-bottom: 1px solid lightgrey;
    border-right: 1px solid lightgrey;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 14px;
    padding: 0 15px;
  }
  .add-button {
    cursor: pointer;

  }
  .ms-drop {
    text-align: left;   
  }
  .pickup-price {
    display: none;
  }
  .show-pickup .pickup-price {
    display: table-cell;
  }
  .clear i{
    visibility: hidden;
  }
  .show-clear .clear i{
    visibility: visible;
  }
  .show-clear.row-list {
    background-color: #d9ead9;
  }
  .narrow-box {
    max-width: 1250px;
    margin: 0 auto;
  }
  .button-row-multiple {
    display: table;
    width: 95%;
    margin: 0 auto;
  }
  .button-row-multiple .two-button {
    display: table-cell;
    width: 50%;
  }
  .button-row-multiple .three-button {
    display: table-cell;
    width: 33%;
  }
  .connection-icon {
    height: 40px;
    margin-left:10px;
  }
  .link-wrapper {
    /* width: 80%; */
    max-width: 850px;
    margin: 0 auto;
  }
  .show-box {
    display: inline-block;
    width: 200px;
    box-shadow: 0px 5px 10px #dfdfdf;
    margin: 2% 5%;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    vertical-align: top;
}

.show-logo {
    display: block;
    background-color: white;
    text-align: center;
    padding: 20px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    position: relative;
}

.show-logo img {
    width: 75px;
    height: 75px;
}

.show-button {
    display: block;
    background-color: #EAEAEA;
    padding: 10px 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center;
}
.Unity .show-button {
    font-family: 'Unity';
}
.Pepsi .show-button {
    font-family: 'Pepsi';
}

.show-button button {
    max-width: 200px;
    padding: 5px 20px 5px 20px;
    position: relative;
    border-radius: 5px;
    border: 1px solid white;
    background-color: white;
    color: #6E6E6E;
}
.Unity .show-button button {
    font-family: 'Unity';
}
.Pepsi .show-button button {
    font-family: 'Pepsi';
}
#sidebar-overlay-product {
    display: none;
    opacity: .7;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.search-box input[type=text]:focus,
#search_customer:focus {
    outline: 1px solid #005CB4;
    border: unset !important;
}
.search-box input[type=text]:focus ~ i,
#search_customer:focus + i {
    color:  #005CB4;
}
.product-library-selection button.ms-choice:focus {
    outline: 1px solid  #005CB4;
}
.product-library-selection button.ms-choice:focus + .ms-drop {
    border: 1px solid  #005CB4;
    border-top: 1px solid lightgrey;
}

/* .qb-input:focus + .ms-drop{
    border: 1px solid red;
    outline: 1px solid red;
} */
.product-library-selection select#product_active:focus,
.product-library-selection select#view-select:focus,
.product-library-csv select#active-select:focus,
.clearbox select.niceselect:focus,
.campaign-right select.niceselect:focus,
.category-cell select.niceselect:focus {
    outline: 1px solid #005CB4;
}
#magnifying-icon i:hover,
#button-icon i:hover {
    color: #005CB4;
}
.ms-parent.qb-input .ms-drop.bottom {
    margin-left: -9px;
}
.ms-parent.qb-input .ms-drop.bottom .ms-search input[type=text] {
    width: calc(100% - 12px);
}
.manage-box.registration {
    width: calc(50% - 100px);
    box-sizing: border-box;
    margin: 30px;
    height: 100%;
    max-width: 600px;
}
.manage-box.registration .manage-top{
    width: 100%;
}
.manage-box.registration .manage-bottom img {
    width: 100%;
    height: 100%;
}
.manage-box.registration .manage-bottom{
    margin-bottom: -5px;
}
.manage-box.registration .manage-button-button {
    min-height: 30px;
    min-width: 120px;
    text-align: left;
    white-space: nowrap;
}
.white-button.hide-button {
    width: 60px;
    padding: 2px 5px;
    font-size: 12px;
}
.registration-box {
    width: 600px;
    position: relative;
    margin: 0px auto;
    display: block;
}

.registration-box:nth-child(2) {
    grid-area: 1 / 1 / 2 / 2;
}

.registration-box:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
}

.registration-box:nth-child(4) {
    grid-area: 3 / 1 / 4 / 2;
}

.registration-title {
    display: block;
    text-align: center;
    padding: 7px;
    font-weight: bold;
    background-color: #EDEDED;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.registration-button {
    position: absolute;
    bottom: 20px;
    right: -20px;
}
.registration-button.left {
    position: absolute;
    bottom: 20px;
    left: -20px;
    right: unset;
    text-align: right;
}
.registration-bottom img {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 600px;
    object-fit: cover;
    height: calc(33vh - 100px);
    /* commented out height: calc((var(--vh, 1vh) * 33) - 100px); */
    min-height: 220px;
}
.registration-button-button {
    padding: 6px 45px 6px 15px;
    background-color: white;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    cursor: pointer;
    min-height: 40px;
    min-width: 150px;
    -webkit-box-shadow: 2px 3px 5px 1px rgba(166,166,166,.5);
    -moz-box-shadow: 2px 3px 5px 1px rgba(166,166,166,.5);
    box-shadow: 2px 3px 5px 1px rgba(166,166,166,.5);
    text-align: left;
    font-size: 14px;
}
.Unity .registration-button-button {
    font-family: 'Unity';
    font-weight: bold;
}
.Pepsi .registration-button-button {
    font-family: 'Pepsi';
    font-weight: normal;
}
.left .registration-button-button {
    padding: 6px 15px 6px 45px;
    text-align: right;
}
.registration-button-button i {
    position: absolute;
    right: 13px;
    top: 11px;
    color: #F40107;
    font-size: 20px;
}

.left .registration-button-button i {
    left: 13px;
    right: unset;
}

.registration-button-button i.fa-loader {
    position: absolute;
    right: 65px;
    top: 10px;
    left: unset;
}

/* .registration-button-button.left-button i.fa-loader {
    position: absolute;
    right: 48px;
    top: 5px;
    left: unset;
} */
.registration-box.justmobileinline {
    display: none;
}
#product-category {
    text-align: left;
    width:220px;
}.file-icon {
    position: relative;
}
.file-icon i {
    font-size: 50px;
    vertical-align: middle;
}
.file-icon span {
    position: absolute;
    color: white;
    top: 88%;
    left: 47%;
    transform: translate(-50%, -50%);
}.formrow.radiorow {
    margin: 10px 0;
    position: relative;
}
.formrow.radiorow .formlabel,
.formrow.radiorow .formbox{
    display: block;
    width: 100%;
    text-align: center;
}
.blue-button-2.load-more {
    border-radius: 25px;
    padding: 10px 60px;
    cursor: pointer;
    min-width: 200px;
    min-height: 36px;
}
.Unity .blue-button-2.load-more {
    font-family: 'Unity';
}
.Pepsi .blue-button-2.load-more {
    font-family: 'Pepsi';
}
.registration-bottom .registration-loader {
    display: none !important;
}
.greybox-title-button {
    display: table;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
}
.greybox-title {
    display: table-cell;
    width: 50%;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}
.greybox-button {
    display: table-cell;
    width: 50%;
    text-align: right;
}
.two-panel {
    display: block;
    padding: 10px 20px;
    text-align: center;
}
.panel {
    background-color: #F5F5F5;
    display: inline-block;
    width: calc(50% - 50px);
    margin: 0 20px;
    box-sizing: border-box;
    padding: 20px;
    height: 500px;
    border-radius: 10px;
    text-align: left;
    vertical-align: top;
}
.panel-title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
.panel-image {
    margin: 10px 0;
    text-align: center;
}
.panel-image img {
    object-fit: cover;
    height: 150px;
    width: 150px;
}
.sidebar-list {
    display: inline-block;
    width: calc(100% - 50px);
    background-color: #4B4B4B;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.sidebar.product {
    display: none;
    position: absolute;
    left: unset;
    right: 0;
    top:0;
    bottom: 0;
    z-index: 999;
    width: 240px;
    overflow: visible;
}
.sidebar.product .sidebar-text {
    display: inline-block;
    width: calc(100% - 31px);
}
.sidebar.product .sidebar-icon {
    width: 31px;
    vertical-align: middle;
}
.sidebar.product .sidebar-list {
    background-color: unset;
}
.sidebar.product .sidebar-item i {
    position: static;
}
.sidebar.product .sidebar-item .sidebar-icon {
    background-color: unset;
}
.sidebar.product .sidebar-item.sub i {
    position: absolute;
    top: 15px;
    left: unset;
    right: 0;
    /* display: none; */
}
.sidebar.product .sidebar-item.sub {
    border-bottom: 1px solid rgb(277, 277, 277, .1);
}
.sidebar.product .sidebar-item.sub:last-child {
    border-bottom: unset;
}
.sidebar.product .sidebar-item.sub .sidebar-icon i {
    position: static;
    display: inline-block;
}
.sidebar.product .sidebar-item.sub  {
    position: relative;
    padding: 5px 0;
    cursor: pointer;
}
.sidebar.product .sidebar-item {
    position: relative;
    padding: 5px 0;
    width: 200px;
}
body.has-alert .content {
    min-height: calc(100% - 115px)
}
.sub-store-list {
    display: none;
}
.sub-store-list .product-row {
    background-color: #d8d8d8;
}
.product-cell.open .close{
    display: none;
}
.product-cell.open {
    white-space: nowrap;
}
.user-login-list {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.user-login-details {
    display: table-row;
}
.user-login-icon {
    display: table-cell;
    width: 33%;
    text-align: right;
}
.user-login-input {
    display: table-cell;
    text-align: left;
  
}
.user-login-icon i {
    font-size: 20px;
    vertical-align: middle;
}
.user-login-details:nth-of-type(2n) {
    background-color: #f6f6f6;
}
.user-login-details.error i {
    color: red;
}
.tracker-cell {
    height: 40px;
    width: 100%;
    color: white;
    line-height: 1.4;
}
.tracker-cell > div {
    padding: 2px 8px;
    box-sizing: border-box;
}
.tracker-cell.systems-track > div, .tracker-cell.optimized-track > div, .tracker-cell.data-track > div {
    margin-left: 20px;

}
.tracker-cell::after {
    content: "";
    height: 28px;
    width: 28px;
    position: absolute;
    transform: rotate(45deg);
    background-color: #E3E3E3;
    top: 11px;
    right: -13px;
    z-index: 5;
    border-top: 2px solid white;
    border-right: 2px solid white;
}
.user-table .tracker-cell.systems-track::after {
    display:none;
}
.tracker-cell::before {
    content: "";
    height: 26px;
    width: 26px;
    position: absolute;
    transform: rotate(45deg);
    background-color: white;
    top: 12px;
    left: -14px;
    z-index: 4;
}
.tracker-cell.products-track::before {
    display: none !important;
}
.tracker-cell.data-track::after {
    display: none !important;
}
.tracker-cell.systems-track, .tracker-cell.systems-track::after{
    background-color: #1A94D3;
}
.tracker-cell.products-track, .tracker-cell.products-track::after{
    background-color: #FFA000;
}
.tracker-cell.optimized-track, .tracker-cell.optimized-track::after{
    background-color: #005DBA;
}
.tracker-cell.data-track, .tracker-cell.data-track::after{
    background-color: #004E99;
}
.tracker-cell.products-track {

}
.product-cell:has(>.tracker-cell){
    padding: 5px 0;
}
.tracker-cell > div {
    position: relative;
    z-index: 9;
}
.product-row:has(> .product-cell > .tracker-cell){
    white-space: nowrap;
    position: relative;
}
.tracker-cell span.date {
    font-size: 11px;
}
.tracker-cell span.text {
    padding-top: 8px;
    display: inline-block;
}
.tracker-cell.pending, .tracker-cell.pending::after {
    background-color: #999999;
    cursor: unset !important;
}
.tracker-cell.not-applicable, .tracker-cell.not-applicable::after {
    background-color: #4B4B4B;
}
.tracker-cell.unlinked, .tracker-cell.unlinked::after {
    background-color: #777777;
}
.tracker-cell.optimized-track span.date,
.tracker-cell.data-track span.date{
    font-size: 13px;
}

.tracker-cell.optimized-track span.text-date,
.tracker-cell.data-track span.text-date  {
    font-size: 11px;
}
.limited-pos-indicator.tracker-indicator {
    color: white;
    position: absolute;
    right: 0;
    z-index: 10;
    top: 12px;
}
img.limited-pos-indicator.tracker-indicator {
    width: 20px;
    z-index: 20;
    /* position: relative; */
}
img.limited-pos-indicator {
    width: 20px;
    vertical-align: middle;
}
.product-cell.icon-column:has(img.limited-pos-indicator){
    padding: 5px 0;
}
.fixed-height-box {
    width: fit-content;
    max-width: calc(100% - 20px);
    margin: 0 auto;
    min-height: calc(100vh - 142px);

}
body.has-alert .fixed-height-box {
    min-height: calc(100vh - 176px);
}
.fixed-height-box-2 {
    position: fixed;
    bottom: 0;
    background-color: white;
    padding: 5px 0;
    border-top: 1px solid lightgrey;
    height: 47px;
    width: calc(100% - 194px);
    margin-left: -15px;
    box-sizing:  border-box;
}
.inject-category-limit-height {
    height: auto;
    position: static;
    max-height: calc(100vh - 305px); 
    overflow-y: auto; 
    overflow-x:hidden;
}
/* body.has-alert .fixed-height-box-2 {
    min-height: calc(100vh - 176px);
} */
.tracker-popup {
    display: none;
    position: absolute;
    min-height: 120px;
    /* bottom: -120px; */
    top: 45px;
    right: 0;
    width: 100%;
    background-color: white;
    z-index: 17;
    min-width: 420px;
    -webkit-box-shadow: 0 2px 4px rgba(200,200,200,1);
    -moz-box-shadow: 0 2px 4px rgba(200,200,200,1);
    box-shadow: 0 2px 4px rgba(200,200,200,1);
    padding: 10px;
    white-space: initial;
}
.tracker-popup.products {
    border-top: 5px solid #FFA000;
}

.tracker-popup.systems {
    border-top: 5px solid #1A94D3;

}

.tracker-popup.optimized {
    border-top: 5px solid #005DBA;
}
.tracker-popup.pending {
    border-top: 5px solid #999999;
}
.tracker-cell.products-track, .product-cell.expansion i, .product-cell.status-send i {
    cursor: pointer;
}
.external-location-table ~ .widget-header > .inject-category{
    height: calc(100vh - 360px);
  
}
.external-location-table.preview ~ .widget-header > .inject-category {
    height: calc(100vh - 200px);
}
.external-location-info ~ .widget-header > .inject-category {
    height: calc(100vh - 330px);
}
.content .bottom-button-div.greybox{
    /* padding-left: 195px; */
    width: calc(100% - 195px);
    left: 195px;
}
.content ~ .bottom-button-div.greybox {
    padding-left: 0px;
}
.content:has(.bottom-button-div) {
    padding-bottom: 70px;
}
.content:has(.no-content-padding) {
    /* padding-bottom: 70px; */
    padding-bottom: unset;
}
.content .bottom-button-div.greybox div:only-child {
    padding-left: 0;
}
#add-more-products {
    padding-left: 15px;
}
body.has-alert .inject-category {
    height: calc(100vh - 290px);
}
.product-cell.expansion, .product-cell.status-send {
    width: 30px;
    text-align: center;
}
.tracker-popup .inject-app {
    width: calc(33% - 25px);
}
.tracker-popup .inject-app:nth-child(3), .tracker-popup .inject-app:nth-child(4){
    border-top: none;
    padding-top: unset;
}
.stats-table {
    display: table;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    height: 400px;
}
.stats-row {
    display: table-row;
    max-width: 100%;
}
.stats-cell {
    display: table-cell;
    box-sizing: border-box;
    width: calc(33% - 25px);
    max-width: 33%;
    padding-bottom: 5px;

}
.stats-cell-content {
    border-radius: 10px;
    width: 150px;
    margin: 0 auto;
    padding: 10px 10px 5px 10px;
    font-size: 15px;
    font-weight: bold;
    display: table;
    border-collapse: separate;
    border-radius: 5px;
    background-color: white;
    -webkit-box-shadow: 0 0 5px rgba(200,200,200,1);
    -moz-box-shadow: 0 0 5px rgba(200,200,200,1);
    box-shadow: 0 0 5px rgba(200,200,200,1);
    max-width: 100%;
}
.stats-row.overview .stats-cell-content {
    background-color: #f4f4f4;
    border: unset;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    padding: 5px 10px;

}
.stats-title {
    font-size: 12px;
    font-weight: normal;
    display: table-cell;
    text-align: left;
    width: 37px;
    max-width: 37px;
    min-width: 37px;
    vertical-align: bottom;
}

.stats-row.overview .stats-title {
    display: block;
    text-align: center;
    width: unset;
    max-width: unset;
    min-width: unset;
}

.stats-name {
    font-size: 12px;
    font-weight: normal;
    /* margin-top: -10px; */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow-x: hidden;
    
}
.stats-title img {
    width: 32px;
    min-width: 32px;
}
.stats-right {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    max-width: 80px;
    padding: 2px 0;
    font-family: 'Unity';
}
.popup-help #help-frame {
    width: calc(100% - 80px);
    height: calc(100% - 85px);
    border: unset;
    /* padding-bottom: 40px; */
    box-sizing: border-box;
    min-width: 350px;
}
.popup-help .help-close {
    height: 40px;
    box-sizing: border-box;
    padding: 10px;
}
.help-div-wrap {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 60px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 195px;
}
.help-div {
    height: 45px;
    width: 300px;
    background-color: #4FDECD;
    margin: 0 auto;
    color: #1E3050;
    padding: 0 10px;
    text-align: center;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: table;
    box-sizing: border-box;
    cursor: pointer;
}
.help-cell {
    vertical-align: middle;
    white-space: nowrap;
}

.help-cell:nth-of-type(2) {
    display: table-cell;
    width: 30px;
    font-size: 30px;
}
.help-cell:nth-of-type(3) {
    font-weight: bold;
    text-align: left;
    display: table-cell;
    width: 115px;
}
.help-cell:nth-of-type(1) {
    text-align: right;
    display: table-cell;
    width: 95px;
}
.has-alert .help-div-wrap {
    top: 95px;
}
.help-div-float {
    display: none;
    position: fixed;
    top: 50%;
    left: 205px;
    transform: translate(0, -50%);
    font-size: 42px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #4FDECD;


}

.help-div-float .icon {
    margin: 4px 0px 0px 4px;
    cursor: pointer;
}
.popup-help {
    text-align: center;
    z-index: 15;
    width: 100%;
    width: 100vw;
    width: 100dvw;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    position: fixed;
    margin: 0 auto;
    display: none;
    box-shadow: 0 0 10px #000;
    background-color: #F4F2F5;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0;
    max-width: 1000px;
    inset: 0;
}
.left-uncover {
    /* left: unset; */
    animation-name: left-reveal;
    animation-duration: 0.1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.top-uncover {
    /* left: unset; */
    animation-name: top-reveal;
    animation-duration: 0.1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.help-div-float:hover .help-float-icon {
    --fa-primary-color: #1e3050; 
    --fa-secondary-color: #F5F5F5; 
    --fa-secondary-opacity: 1;
}
.help-float-icon {
    --fa-primary-color: #ffffff; 
    --fa-secondary-color: #1e3050; 
    --fa-secondary-opacity: 1;
}
.help-div-float:hover  i {
    animation-name: rotate;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.help-div-float .icon i {
    vertical-align: top;
}
/*
Below is to account for default CSS behavior on iOS
*/
input:is([type="button"], [type="submit"], [type="reset"]), input[type="file"]::file-selector-button, button, select {
    color: black;
}
.sidebar ~ .content ~ .fixed-height-box-2 {
    left: 195px;
    margin-left: 0;
}
.invisible {
    visibility: hidden;
}
.needs-price {
    color: tomato;
    font-size: 15px;
    background-color: white;
}
@keyframes left-reveal {
    0% {left: 0%;}
    10%{left: 5%}
    20%{left: 10%}
    30%{left: 15%}
    40%{left: 20%}
    50%{left: 25%}
    60%{left: 30%}
    70%{left: 35%}
    80%{left: 40%}
    90%{left: 45%}
    100%{left: 50%}
}
@keyframes top-reveal {
    0% {top: calc(0% + var(--top));}
    10%{top: calc(5% + var(--top))}
    20%{top: calc(10% + var(--top))}
    30%{top: calc(15% + var(--top))}
    40%{top: calc(20% + var(--top))}
    50%{top: calc(25% + var(--top))}
    60%{top: calc(30% + var(--top))}
    70%{top: calc(35% + var(--top))}
    80%{top: calc(40% + var(--top))}
    90%{top: calc(45% + var(--top))}
    100%{top: calc(50% + var(--top))}
}
@keyframes beat{
	to { transform: scale(1.4); }
}
@keyframes inwardbeat {
  to { transform: scale(0.8); }
}
@keyframes shake {
  0% {transform: rotate(0deg);}
  33% {transform: rotate(-1deg);}
  66% {transform: rotate(0deg);}
  100% {transform: rotate(1deg);}
}
@keyframes rotate {
    0% {transform: rotate(0deg);}
    12% {transform: rotate(45deg);}
    25% {transform: rotate(90deg);}
    37% {transform: rotate(135deg);}
    50% {transform: rotate(180deg);}
    62% {transform: rotate(225deg);}
    75% {transform: rotate(270deg);}
    87% {transform: rotate(315deg);}
    100% {transform: rotate(360deg);}
}
.country-selector {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 12;
    left: unset;
    bottom: unset !important;
}
body.has-alert .country-selector {
    top: 45px; 
}
.weglot-container {
    z-index: 10 !important; 
}
.product-cell.img-column {
    width: 57.5px;
}
#delivery-markup-update {
    color: green;
}

.desktop-right {
    text-align: right;
}

.transfer-section {
    display: inline-block;
    /* width: calc(50% - 50px); */
    box-sizing: border-box;
    padding: 10px 20px;
    border: 1px solid lightgrey;
    border-radius: 15px;
    grid-row: 2 / span 1;
    background-color: white;
    /* max-width: 400px; */
    justify-self: center;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    position: relative;
    min-height: 150px;
    font-family: Unity;
}
.transfer-section.from {
    grid-column: 1 / span 1;
}
.transfer-section.to {
    grid-column: 3 / span 1;
    background-color: #e8e8e8;
}
.transfer-section.to input[type=checkbox] {
    display: none;
}
.transfer-section.from input[type=checkbox] {
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.transfer-middle {
    display: inline-block;
    /* width: 50px; */
    align-self: center;
    justify-self: center;
    text-align: center;
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    margin: 0 auto;
    font-size: 26px;
}
.transfer-box {
    display: grid;
    width: 100%;
    grid-template-columns: 3fr 85px 2fr;
    grid-template-rows: 55px 5fr;
    align-self: center;
    justify-self: center;
}
.from .transfer-item:hover {
    background-color: rgb(164, 164, 164);
    border: 1px solid grey;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.transfer-item {
    padding: 5px;
    margin: 5px 0;
    border: 1px solid transparent;
    /* overflow: hidden; */
    max-width: 100%;
    /* text-overflow: ellipsis;
    white-space: nowrap; */
    font-size: 12px;
    height: 50px;
    box-sizing: border-box;
}
.transfer-item-text-row {
    max-width: 100%;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.transfer-item#store-all {
    height: auto;
}
.transfer-item-icon {
    display:inline-block; 
    width:30px;
    height: 40px;
    box-sizing: border-box;
    vertical-align: middle;
}
.transfer-item-text {
    display: inline-block;
    height: 40px;
    box-sizing: border-box;
    width: calc(100% - 40px);
}
#store-all .transfer-item-icon, #store-all .transfer-item-text {
    height: unset;
}
.transfer-dropdown.from {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    /* max-width: 400px; */
    width: 100%;
    /* justify-self: center; */
    text-align: left;
}
.transfer-dropdown.to {
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
    /* max-width: 400px; */
    width: 100%;
    /* justify-self: center; */
    text-align: right;
}
.transfer-dropdown.to .select2 {
    text-align: left;
}
.transfer-dropdown select{
    padding: 5px 5px;
    max-width: 100%;
    width: 150px;
    border-radius: 5px;
    border: 1px solid lightgrey;
    max-width: 200px;
    /* pointer-events: none; */
}
.transfer-dropdown {
    text-align: center;
    white-space: nowrap;
}
.transfer-item i.fa-check {
    visibility: hidden;
    margin: 0 5px;
}
.transfer-item.selected i.fa-check {
    visibility: visible;
}
.transfer-item.selected {
    font-weight: bold;
}
.transfer-section-loader {
    display: none;
}
.transfer-section.load .transfer-section-loader{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.transfer-section.load .transfer-section-loader i {
    /* inset: 0; */
    font-size: 40px;
}
.transfer-section.load .transfer-item, .load .transfer-item.selected i.fa-check  {
    visibility: hidden;
}
.transfer-section.load {
    overflow-y: hidden;
}
#transfer-count {
    font-size: 14px;
}

.contact-info-icon {
    cursor: pointer;
}
.contact-info .formrow {
    margin: 15px 0;
}
.contact-info .formrow .formbox {
    word-break: break-word;
}
.bottom-button-div.greybox {
    z-index: 12;
}
.inject-app-status {
    text-align: center;
    font-weight: bold;
}
.external-injected-products {
    display: none;
}
.tab-cell {
    cursor: pointer;
}
.external-injected-products .inject-app:nth-of-type(4) {
    border-top: 1px solid lightgrey;
    padding-top: 15px;
}
.external-logo-tab {
    width: 30px;
    vertical-align: middle;
}

svg > g > g.google-visualization-tooltip { pointer-events: none }


.tracker-menu {
    font-family: Unity;
    display: grid;
    background-color: #f4f4f4;
    grid-auto-flow: column;
    grid-template-columns: max-content max-content auto;
    grid-gap: 20px;
    padding: 0 10px;
    border-radius: 5px;
    width: calc(100% - 10px);
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
}
.tracker-menu-right {
    display: inline-grid;
    grid-auto-flow: column;
    margin: 5px 0;
    justify-items: flex-end;
    justify-content: end;
    grid-gap: 40px;
    align-items: center;
}
.tracker-menu-cell {
    margin: 5px 0;
    padding: 5px 15px;
}
.tracker-menu .tracker-menu-right-cell i.light {
    font-weight: normal !important;
}
.tracker-menu-cell.selected, .tracker-menu-right-cell.selected {
    background-color: white;
    border-radius: 5px;
}
.tracker-filters {
    display: none;
    padding: 10px;
    background-color: #f4f4f4;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    width: calc(100% - 10px);
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 1px solid lightgrey;
    font-family: Unity;
}
.tracker-filters .qb-input {
    background-color: white;
}
.tracker-menu-right-cell {
    margin: 5px 0;
    padding: 5px 15px;
}
.task-request {
    display: inline-block;
    width: 295px;
    margin: 5px 7px;
    border-radius: 10px;
    border: 1px solid #DBDBDB;

}
.request-text {
    box-sizing: border-box;
    padding: 5px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 16px;
}
.request-image {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.whitebox {
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #DBDBDB;
    text-align: center;
    cursor: pointer;
}
.task-store-name {
    font-weight: bold;
    font-size: 18px;
}
.task-store-address {
    font-size: 16px;
}
.task-header {
    font-weight: bold;
    font-size: 22px;
}
.ms-drop.bottom {
    line-height: 1.5;
}
.injection-remove-tab {
    border-top: 1px solid lightgrey;
    padding-top: 5px;
    color: #878787;
    margin-top: 5px;
    pointer-events: none;
    font-size: 11px;
} 
.tab-cell-selected .injection-remove-tab {
    pointer-events: auto;
}
.tab-cell-selected.deleted .injection-remove-tab {
    /* font-weight: bold; */
    color: black;
}
.combo-ai-start {
    font-family: 'Unity';
}
.combo-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 5px;
}
.combo-subtitle {
    color: #727272;
}
.combo-input {
    margin: 10px 0;
    text-align: left;
}
.combo-input:has(select){
    font-size: 12px;
}
.combo-submit {
    margin: 20px 0;
}
@media(max-width: 1140px) {
    .filter-text {
        display: none;
    }
    .task-line {
        grid-template-columns: 100px 30px repeat(6, auto) 50px;
    }
}

@media(min-width: 1024px) {
    .invite input {
        width: 94%;
        max-width: 750px;
        padding: 10px;
    }

    .invite input#address {
        width: 89%;
    }

    .invite .edit-cell {
        margin: 10px;
        width: calc(47% - 20px);
    }

    .greybox .response_note {
        text-align: center;
    }
}

@media(max-width: 1023px) {

    .inline-1-12, .inline-2-12, .inline-3-12, .inline-4-12, .inline-5-12, .inline-6-12, .inline-7-12, .inline-8-12, .inline-9-12, .inline-10-12, .inline-11-12, .inline-1-5, .inline-2-5, .inline-3-5, .inline-4-5 {
        width: 100%;
        padding: 0;
        margin: 0px 0px 10px 0px;
    }

    .simpleinline2 {
        display: block;
    }

    .formlabel,
    .formbox {
        width: 100%;
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .table-list {
        display: block;
    }
    .row-header {
        display: none;
    }
    .row-list {
        display:block;
    }
    .cell-list {
        display:inline-block;
        width: 50%;
        vertical-align:top;
    }
    .cell-center {
        text-align: left;
    }

    .content .bottom-button-div.greybox {
        width: 100%;
        left: 0;
    }

    .v-top {
        vertical-align:middle;
    }

    .product-library-selection,
    .product-library-category,
    .product-library-csv,
    .leftcell,
    .rightcell {
        display: block;
        width: 100%;
        text-align: center;
    }

    .product-library-selection,
    .product-library-category {
        margin-bottom: 15px;
    }

    .manage-box-wrap {
        width: 100%;
        margin: 0;
    }

    .category-cell {
        width: 170px;
    }

    .pdf-wrapper {
        width: 47%;
    }
    .distributor-select {
        border:1px solid black;
        background-color: white;
        height: 25px;
        border-radius: 5px;
        padding: 0px 5px;
        background-image: none !important;
        -webkit-appearance: auto;
        appearance: auto;
        max-width: calc(100% - 150px);
        min-width: 100px;
    }

    .edit-save,
    .edit-discard {
        margin-left: 0px;
        margin-right: 0px;
    }

    .reyes-revenue-chart1,
    .reyes-revenue-chart2 {
        display: none;
    }

    .wrapper-width {
        width: calc(100vw - 20px);
    }

    .tracker {
        width: 687px;
    }

    .tracker2 {
        width: 587px;
    }

    .tracker3 {
        width: 487px;
    }

    .tracker .row .table-cell:first-of-type,
    .tracker2 .row .table-cell:first-of-type,
    .tracker3 .row .table-cell:first-of-type {
        width: 165px;
    }

    .right-desktop,
    .center-mobile {
        text-align: center !important;
    }

    .right-border {
        border-right: 0px;
        padding-right: 0px;
    }

    .popup-window {
        max-width: 90%;
    }

    .edit-buttons {
        max-width: 100%;
    }

    .content {
        top: 60px;
    }

    .sidebar {
        display: none;
        /* width: 65px; */
        padding: 20px 0;
        z-index: 25;
        height: 100%;
        top: 0 !important;
        left: unset;
        left: 0;
        align-items: unset;
        width: 210px;
    }

    .sidebar-item.collapse {
        display: none;
    }
    .sidebar-item {
        width: 150px;
    }
    .sidebar.product .sidebar-item {
        margin: 5px;
        padding: 5px;
        width: 180px;
    }
    .sidebar.product .sidebar-item.show .sidebar-list .sidebar-item.sub{
        width: 170px;
    }
    .content {
        left: unset;
        width: calc(100% - 30px);

    }

    .sidebar-item {
        margin: 10px 45px;
    }

    .sidebar-item i {
        font-size: 30px;
    }

    .sidebar-item img {
        height: 45px;
        width: 45px;
    }

    .mobile {
        display: block;
    }

    .mobile-inline {
        display: inline-block;
    }

    .desktop,
    .desktop-inline,
    .nomobile {
        display: none !important;
    }

    .product-table,
    .justmobile {
        display: block;
    }
    .justmobileinline {
        display: inline-block;
    }

    .product-row {
        display: block;
        height: fit-content;
        padding: 10px 5px;
    }

    .product-cell {
        display: inline-block;
        width: 30%;
        padding: 5px;
        margin: 5px;
        vertical-align: top;
    }

    .product-table-header {
        display: none;
    }

    .sidebar-overlay {
        display: none;
        opacity: .7;
        background-color: black;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 20;
    }


    .header-search {
        width: 18%;
    }

    .header-search>div {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50%;
        text-align: center;
    }

    .slimbox {
        width: 75%;
        min-width: unset;
    }

    .product-table.imageview .product-row {
        display: inline-block;
        margin: 10px;
        width: 400px;
        height: 400px;
        border: 1px solid #F5F5F5;
        margin: 0;
        position: relative;
        border-radius: 10px;
        margin: 20px 30px;
        cursor: default;
        padding: 0;
        vertical-align: top;
    }

    .product-table.imageview .noimageview {
        display: none;
    }

    .product-table.imageview .product-table-header {
        display: none;
    }

    .imageview .noimageview {
        display: none;
    }

    .imageviewonly {
        display: none;
    }

    .imageview .imageviewonly {
        display: inherit;
    }

    .imageview .product-cell img {
        width: 400px;
        height: 360px;
        object-fit: cover;
    }

    .imageview .product-cell {
        padding: 0;
    }

    .imageview #image {
        background-color: #F5F5F5;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
    }

    .imageview #name {
        position: absolute;
        top: 330px;
        text-align: center;
        width: 100%;
        left: 0;
        margin: 0;
    }

    .imageview #date {
        position: absolute;
        top: 93.5%;
        right: 1%;
        text-align: right;
    }

    .imageview #upc {
        position: absolute;
        top: 93.5%;
        left: 1%;
        text-align: left;
    }

    .imageview .product-cell.button:nth-child(3n) {
        position: absolute;
        top: 93.5%;
        left: 60%;
        width: unset;
    }

    .imageview .product-cell.button:nth-child(3n + 1) {
        position: absolute;
        top: 93.5%;
        left: 40%;
        width: unset;

    }

    .imageview .product-cell.button:nth-child(3n + 2) {
        position: absolute;
        top: 93.5%;
        left: 50%;
        width: unset;

    }

    .imageview .mobile-inline {
        display: none;
    }

    .product-cell.button {
        display: none;
    }

    #sortable-upsell-images li,
    #sortable-featured-images li {
        width: 275px;
        height: 275px;
    }

    #sortable-upsell-images li img,
    #sortable-featured-images li img {
        width: 275px;
        height: 275px;
    }

    .product-cell.bottom {
        width: calc(50% - 20px);
    }

    .product-cell.bottom:last-child {
        text-align: right;
    }

    #product_div {
        width: calc(100% - 12px);
        padding: 5px;
        border-right: none;
        border-bottom: 1px solid black;
    }

    #right {
        width: calc(100% - 13px);
        padding: 5px;
        margin-top: 15px;
        border-bottom: 1px solid black;
    }

    .region_header {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .region_header_cell {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    .region_header_cell select {
        width: 60%;
    }

    .verification-box {
        padding: 10px;
    }

    .mobile-menu {
        top: 15%;
    }

    .product-library-selection *,
    .product-library-csv * {
        margin-bottom: unset;
    }
    .header-bm-logo {
        width: 100%;
    }
    .header-rep-logo {
        text-align: right;
        display:table-cell;
    }
    .header>div {
        display: table;
    }
    .mobile-cell {
        display: table-cell;
    }
    .half-desktop {
        width: 100%;
        display: block;
    }
    .desktop-right-mobile-center {
        text-align: center;
    }
    .chat-text-wrap {
        width: calc(100% - 15px);
    }
    .chat-text-wrap .fa-paper-plane-top {
        display: inline;
        position: absolute;
        right: 5px;
        bottom: 40px;
        font-size: 22px;
        color: lightgrey;
    }
    .sidebar-item {
        margin: 20px;
        padding: 5px 10px;
        text-align: left;
    }
    .sidebar-item.logout {
        margin-top: auto;
    }
    .sidebar-item.selected {
        text-align: left;
    }
    .sidebar.collapse .sidebar-item {
        width: 150px;
    }
    .sidebar.collapse:hover .sidebar-text {
        display: none;
    }
    .sidebar-collapse-wrap.collapse + .content {
        left: 0;
        width: calc(100% - 30px);
    }
    .sidebar {
        bottom: 0;
    }
    .sidebar-collapse-wrap {
        display: none;
    }
    .sidebar-item.selected .sidebar-item.sub {
        margin: 10px 0;
    }
    .sidebar-item.sub .sidebar-icon {
        padding: unset;
    }
    .sidebar-item.sub {
        margin-left: 0;
    }
    .product-library-selection .ms-parent, .product-library-category .ms-parent, .product-library-csv .ms-parent, .desktop-right {
        text-align: left;
    }
    .spacer.sidebar-item {
        display: none;
    }
    #link-now-button {
        width: 405px;
    }
    .sidebar-list {
        left: 100px;
        border-left: 1px solid #4C4C4C;
    }
 
    .close-sidebar.mobile{
        text-align: right;
        margin-right: 15px;
    }
    .sidebar-item.main-item > i {
        display: none;
    }
    .popup-window-large {
        width: 100%;
    }
    .excel-email-header {
        width: unset;
        padding: 0 15px;
    }
    .sidebar.collapse .sidebar-text, .sidebar.collapse:hover .sidebar-text {
        display: inline-block;
    }
    .sidebar.collapse:hover .sidebar-item {
        width: 150px;
    }
    .sidebar.collapse:hover .sidebar-item.main-item > i{
        display: none;
    }
    .table-list {
        display: block;
      }
    .row-list {
      display: block;
      width:100%;
    }
    .cell-list {
      display: inline-block;
      width: 49%;
    }
    .row-list-header {
      display: none;
    }
    .cell-list.mobile-inline {
        display: inline-block;
    }
    .link-wrapper {
        width: 100%;
    }
    .action-box {
        max-width: 300px;
    }
    .action-mid, .action-mid img {
        height: 110px;
  
    }
    .action-bottom-text {
        vertical-align: top;
        height: 80%;
  
    }
    .action-box.large {
        max-width: 625px;
    }
    .action-bottom-button {
        padding-left: 5px;
        vertical-align: middle;
    }
    .action-box.steps {
        max-width: 300px;
    }
    .sidebar.mobileshow {
        display: flex !important;
    }
    .manage-box.registration {
        display: block;
        margin: 30px auto;
        width: 75%;
        min-width: 300px;
    }
    .registration-box.justmobileinline {
        display: block;
    }
    #product-category {
        width: 100%;
    }
    .product-nobr {
        position: relative;
        display: block;
        white-space: unset;
    }
    .search-box {
        margin-top: 10px;
    }
    .registration-button-button {
        display: none;
    }

    .registration-bottom img {
        min-height: unset;
    }

    .registration-bottom .registration-loader {
        display: none !important;
    }
    .registration-bottom.show-loader .registration-loader {
            display: block !important;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
    }
    .registration-bottom.show-loader .registration-loader i {
        font-size: 60px;
        color: white;
    }
    .registration-bottom.show-loader {
        border-bottom-left-radius:10px;
        border-bottom-right-radius:10px;
        background-color: black;
        position: relative;
    }
    .registration-bottom.show-loader img{
        opacity: .5;
    }
    .has-alert .header {
        top: 0;
    }
    .has-alert .sidebar, .has-alert .content {
        top: 90px;
    }
    .has-alert .help-div-wrap ~ .content {
        top: 105px;
    }
    .fixed-height-box-2 {
        width: 100%;
    }
    .inject-category-limit-height {
        max-height: calc(100vh - 300px); 
    }
    .external-location-table ~ .widget-header > .inject-category{
        height: calc(100vh - 370px);
      
    }
    .bottom-button-div.greybox{
        padding-left: 0;
    }
    .country-selector {
        right: unset !important;
        left: 50% !important;
        transform: translate(-50%, 0);
    }
    .wg-default .country-selector {
        right: unset !important;
    }
    body.has-alert .country-selector {
        top: 10px;
    }
    .has-alert .help-div-wrap {
        top: 60px;
        padding-left: unset;
    }
    .help-div-float {
        left: 5px;
    }
    .sidebar ~ .content ~ .fixed-height-box-2 {
        left: 0;
        /* margin-left: 0; */
    }
}

@media(max-width: 800px) {
    .header-notification {
        position: unset;
    }
    .header-notification:hover .popover__content {
        opacity: 0;
        visibility: hidden;
    }
    .notification-layer {
        width: 100%;
        max-width: 400px;
    }
}

@media(max-width: 666px) {
    .sidebar {
        padding: 10px;
    }
    .sidebar.product {
        padding: 20px 5px;
    }

    .content {
        /* width: 94%; */
        overflow-x: hidden;
    }

    .product-cell {
        width: calc(46% - 10px);
    }

    .header-search>div {
        width: 75%;
        left: 45%;
    }

    /* #table-buttons {
        margin-top: 15px;
    } */

    .edit-product-info input[type="text"] {
        width: 94%;
    }

    .edit-cell {
        width: 100%;

    }

    .nomobile {
        display: none !important;
    }

    .slimbox {
        width: 95%;
    }

    .edit-row {
        margin: 0;
    }

    .edit-cell {
        margin: 10px 0;
    }

    .action-box {

        max-width: 300px;
    }

    .action-mid {
        height: 100px;
    }

    .action-mid img {
        height: 100px;
    }

    .action-mid.overlap img {
        top: -35px;
    }

    .edit-external {
        width: 45%;
    }


    .manage-box {
        display: inline-block;
        border-radius: 15px;
        width: 300px;
        height: 150px;
        border: 1px solid #DEDEDE;
        overflow: hidden;
        margin: 20px 0px;
    }

    .report-box {
        width: 100%;
        min-width: auto;
        min-height: auto;
        height: auto;
        margin: 0px;
    }

    .manage-top {
        display: table;
        height: 30px;
        width: 300px;
        background-color: #E1E1E1;
        box-sizing: border-box;
        padding: 5px 10px;
    }

    .report-top {
        width: 100%;
    }

    .manage-title {
        display: table-cell;
        width: 65%;
        font-weight: bold;
        word-break: none;
        vertical-align: middle;
        box-sizing: border-box;
    }

    .report-title {
        width: 100%;
    }

    .manage-button {
        display: table-cell;
        width: 34%;
        text-align: right;
        vertical-align: middle;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .manage-bottom img {
        width: 300px;
        height: 120px;
    }

    .manage-button-button {
        padding: 4px 30px 4px 10px;
        position: relative;
        background-color: white;
        border: 1px solid #DEDEDE;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }

    #sortable-upsell-images li,
    #sortable-featured-images li {
        width: 175px;
        height: 175px;
    }

    #sortable-upsell-images li img,
    #sortable-featured-images li img {
        width: 175px;
        height: 175px;
    }
    .manage-bottom.chart {
        height: 124.5px;
    }
    .manage-bottom-chart, .manage-bottom-text {
        width: 46%;
    }
    .manage-table {
        top:23px;
        right:15px;
    }
    #invite-button {
        width: 92%;
        max-width: 350px;
        min-width: 150px;
    }
    .help-icon-area {
        display:block; 
        width: 98%;
        text-align: center;
        margin-bottom: 10px;
    }
    .notification-action-area {
        display:none;
        text-align: center;
        width:98%;
    }
    #link-now-button 
    {
        width: 200px;
        max-width: initial;
        margin: 5px 0;
    }
    .sidebar-list {
        left: 120px;
        border-left: 1px solid #4C4C4C;
    }
    .sidebar {
        width: 230px;
    }
    .excel-buttons button {
        display: block;
        margin: 15px auto;
    }
    .template-buttons i {
        display: inline-block;
        width: 22%;
        margin: 0;
        /* margin: 10px; */
    }
    .template-buttons {
        white-space: initial;
        margin-top: 15px;
    }
    .excel-template {
        display: block;
    }
    .template-text {
        padding: 0;
    }
    .template-text, .template-buttons {
        display: block;
        width: 100%;
        text-align: center;
    }
    .excel-template-wrap .template-action{
        width: 90%;
    }
    .template-action-buttons div{
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .template-action-buttons div:first-child {
        text-align: center;
    }
    .template-action-buttons div:last-child {
        text-align: center;
    }
    .connection-icon {
        margin: 5px;
    }
    .action-box.featured {
        width: 425px;
        max-width: 425px;   
      }
      .action-box.featured .action-mid img {
        max-width: 425px;
      }
      .action-box.featured {
        width: 425px;
        max-width: 425px;   
      }
      .action-box.featured .action-mid img {
        max-width: 425px;
      }
      .registration-box {
        width: 425px;
        margin: 10px auto;
      }
      .registration-button {
        top: 150px;
      }
      .country-selector {
        left: 70% !important;
      }
}

@media(max-width: 475px) {
    .header>div {
        position: unset;
    }


    .header-search>div {
        width: 100%;
    }

    .header-search i {
        right: -15%;
    }

    .header-search input[type="text"] {
        width: 80%;
    }

    .header-bm-logo img {
        left: 10%;
    }

    .product-library-csv button {
        margin: 5px;
    }

    .nomobile {
        display: none !important;
    }

    .account-settings {
        width: 100%;
    }

    .popup-window {
        max-width: 100%;
    }

    .product-table.imageview .product-row {
        width: 300px;
        height: 300px;
        margin: 15px 5px;
    }

    .imageview .product-cell img {
        width: 300px;
        height: 270px;
        object-fit: cover;
    }

    .imageview #date {
        right: 1%;
        top: 92%;
    }

    .imageview #upc {
        left: 0%;
        top: 92%;
    }

    .imageview .product-cell.button:nth-child(3n) {
        top: 92%;
        left: 57%;
    }

    .imageview .product-cell.button:nth-child(3n + 1) {
        top: 92%;
        left: 36%;

    }

    .imageview .product-cell.button:nth-child(3n + 2) {
        top: 92%;
        left: 47%;

    }

    .imageview #name {

        top: 80%;

    }


    .sidebar-item {
        margin: 15px 20px;
        /* padding: 5px 0; */
        /* text-align: center; */
    }
    .sidebar-item.logout {
        margin-top: auto;
    }
    .header-bm-logo img {
        height: 30px;
        /* margin-top: 15px; */
    }

    .header-rep-logo>img {
        height: 30px;
        /* margin-top: 15px;
        vertical-align: super; */
    }

    .header-search {
        width: 14%;
    }

    .mobile-menu {
        right: 5%;
    }
    .header-bm-logo {
        min-width: 170px;
    }
    .header-rep-logo {
        min-width: 90px;
    }
    .button-row {
        display: block;
        /* margin: 0 auto; */
    }
    .button-row:first-child {
        text-align: center;
        width: 100%;
    }
    .button-row:last-child {
        text-align: center;
        width: 100%;

    }
    .category-dropdown .ms-drop {
        right: 0px;
    }
    .stacked-navagation {
        display: block;
        width: calc(100% - 20px);
        margin: 10px;
    }
    #invite-button {
        max-width: 335px;
    }
    .stacked-navagation-search {
        max-width: unset !important;
    }
    .stacked-navagation:nth-of-type(2) .formbox{
        text-align: left;
    }
    .stacked-navagation .formbox div, .stacked-navagation .formbox input, .stacked-navagation .formbox select{
        max-width: unset;
    }
    #invite-button {
        width: 96%;
    }
    .header-bm-logo {
        margin-top: 15px;
    }

    .chat-wrap.show .chat-window {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    .chat-wrap.show .chat-conversation {
        height: calc(100% - 200px);
    }
    .chat-wrap.show .chat-info,
    .chat-wrap.show .chat-response {
        width: 100%;
        border-top-left-radius: unset;
        border-top-right-radius: unset;
        border-bottom-left-radius: unset;
        border-bottom-right-radius: unset;
    }
    .chat-image {
        width: calc(100% - 75px);
    }
    .product-nobr {
        display: block;
        white-space: unset;
    }
    .customer-buttons {
        display: block;
        text-align: center;
        padding-left: unset;
        padding-top: 10px;
    }
    .clearbox.cleartable {
        display: block;
    }
    #customer-search.search-area {
        display: block;
        width: unset;
    }
    .action-box.featured {
        width: 300px;
        max-width: 300px;   
      }
      .action-box.featured .action-mid img {
        max-width: 300px;
      }
      .action-box.featured {
        width: 300px;
        max-width: 300px;   
      }
      .action-box.featured .action-mid img {
        max-width: 300px;
      }
      .imageview .product-cell.button#eye {
        top: 91%;
      }
      .registration-box {
        width: 350px;
        margin: 10px auto;
      }
      .registration-button {
        top: 125px;
      }
      .external-location-info ~ .widget-header > .inject-category {
        height: calc(100vh - 280px);
      }
    .content .bottom-button-div.greybox div:nth-of-type(2) {
        margin-top: 5px;
    }
    #add-more-products {
        padding-left: unset;
    }
    body.has-alert .inject-category {
        height: calc(100vh - 220px);
    }

      .header-bm-logo a img {
        height: 30px;
      }
}

@media(max-width: 400px) {

    .action-bottom-button button {
        max-width: 100px;
        margin-bottom: 10px;
        vertical-align: bottom;
        float: none;
      }
      .registration-box {
        width: calc(100% - 10px);
      }
      .registration-button {
        top: 110px;
      }
}
