:root {
  --top-header-height: 64px;
  --right-product-bar-width: 56px;
  --left-side-menu-bar-width: 250px;
}
.result {
  padding: 0.5em;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
}

.margin-top-10px {
  margin-top: 10px;
}

.mt-32 {
  margin-top: 32px;
}

#error {
  margin-top: 5px;
}

.inputGroup {
  display: flex;
  flex-direction: row;
}
.inputGroup .progressDiv {
  width: 70%;
  padding: 0px;
  border-radius: 0px;
}
.inputGroup .buttonDiv {
  width: 30%;
  padding: 0px;
}
.buttonDiv > button {
  border: 1px solid #000;
  width: 100%;
}
.progressDiv > input {
  border-radius: 0px;
}
.progressDiv > * {
  border-radius: 0px;
}
.buttonDiv > button {
  border-radius: 0px;
}

.uploadImage {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.03);
}
.uploadImage > img {
  max-width: 22vw;
  object-fit: contain;
}
.uploadImage > .overlay > strong {
  top: 50%;
  left: 50%;
  position: absolute;
  font-size: 1.5em;
  transition: 0.5s ease;
  opacity: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  color: var(--title-color);
}
.uploadImage > .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}
.uploadImage:hover svg,
.uploadImage:hover img {
  opacity: 0.2;
}
.uploadImage:hover .overlay > strong {
  opacity: 1;
}
.img-result > img {
  width: 100%;
  height: auto;
}
/* Upload div styles */

/* Common styles */
.custom-container {
  padding-top: 6vh;
  padding-bottom: 1vh;
  z-index: 1;
  position: absolute;
  left: 300px;
  width: calc(100% - 300px);
}

.theme-adjustable-button {
  color: var(--mo-primary-dark-text) !important;
  background-color: var(--mo-primary) !important;
}
.theme-adjustable-button:hover {
  background-color: var(--mo-primary) !important;
  opacity: 0.8;
}
.theme-adjustable-button > svg {
  fill: var(--mo-primary-dark-text) !important;
}
.theme-adjustable-button > * {
  display: inline-block;
  vertical-align: middle;
}

.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}

.width-20 {
  width: 20%;
}

.center-flex {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.center-flex > *:not(:first-child) {
  margin-left: 1vw;
}

.bordered-div {
  background-color: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  padding: 1.6rem 4.8rem;
}

.main-bordered-div {
  background-color: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  padding: 1rem 4.8rem;
  min-height: 92vh;
}

/* .separator {
  display: flex;
  flex-flow: row;
  border-bottom: 2px solid #e5e5e5;
  position: absolute;
  left: 0;
  right: 0%;
} */

img {
  width: 100%;
  height: 100%;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hide {
  display: none !important;
}
.footer {
  position: absolute;
  bottom: 0;
  padding: 1em;
  left: 0;
  right: 0;
}

.char-count-div {
  /* position: absolute;
  right: 0; */
  background-color: #ced4da;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.input-info {
  font-size: 12px;
}
.display-inline > * {
  vertical-align: middle;
  display: inline-block;
}
.display-inline > div:last-child {
  text-align: right;
}

.header {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 1em;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 3;
  height: 55px;
  padding: 0.7em;
  background-color: #000;
  color: #fff;
}
.header > div:first-child {
  flex-basis: 300px;
}
.header > label {
  flex-basis: 88%;
}
.header > div:last-child {
  flex-basis: 10%;
}
/* .input-group, */
.form-control {
  /* border: 1px solid rgb(229, 229, 229) !important; */
  border: 1px solid var(--card-border-color) !important;
  align-items: flex-start;
}
/* .input-group > * {
  border: none;
} */
.input-group > .input-group-text,
.input-group > button {
  background-color: #000;
  border: none;
  color: #fff;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-header {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
  background-color: #000;
  color: #fff;
}
.form-label {
  font-size: 14px;
  font-weight: 600;
}
body {
  background-color: var(--bg-color);
  font-family: "Public Sans", sans-serif;
  user-select: none;
}

.mt-2em {
  margin-top: 2em;
}
.fs-10 {
  font-size: 10px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-8rem {
  font-size: 0.8rem;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-800 {
  font-weight: 800;
}
.cursor-pointer {
  cursor: pointer;
}
.text-capitalize {
  text-transform: uppercase;
}

.multiselect__wrapper {
  width: 100%;
  overflow: hidden;
}
.error-span {
  font-size: 12px;
}
.sidemenu-open {
  transform: translateX(0px) !important;
}
.sidemenu-close {
  transform: translateX(-300px) !important;
}
.sorting_asc,
.sorting_desc {
  color: var(--title-color) !important;
}

.action-done {
  width: 50%;
}
.redactor-box {
  width: 100%;
}
.title-svg {
  font-size: 2rem;
  height: 1.5em;
  fill: var(--title-svg-fill-color) !important;
}
.form-check-input:checked {
  background-color: #5f3082;
}
.form-check-input:checked {
  background-color: #5f3082;
}

.dropdown-menu {
  padding: 1em;
  /* border: 1px solid var(--card-border-color); */
}
.dropdown-filter-link {
  display: flex;
  align-items: center;
}
.dropdown-toggle::after {
  margin-left: 10px;
}

.no-notification-container,
.no-review-container,
.no-promocodes-container {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 3em;
  gap: 1em;
  background-color: var(--active-content-bg-color);
  text-align: center;
  font-size: 16px;
}

.promocodes-controls {
  opacity: 0;
}
.dataTable tr:hover .promocodes-controls {
  opacity: 1;
}
.more-options-btn {
  padding: 0.2em 0.3em;
}
div.dataTables_scrollBody {
  border-left: 0px !important;
}
table.dataTable,
.dataTables_scrollHeadInner {
  width: 100% !important;
  /* white-space: nowrap; */
}

.side-menu-header .back-cont {
  padding: 0em 1em;
}
.open-filter {
  animation: openFilter 0.5s forwards !important;
}
.close-filter {
  animation: closeFilter 0.5s forwards !important;
}

a {
  text-decoration: none;
}

.visibility-hidden {
  visibility: hidden;
}

#moduleContainer.container-pinned {
  position: relative;
  left: var(--left-side-menu-bar-width);
  width: calc(100% - var(--left-side-menu-bar-width));
  /* overflow-x: hidden; */
}
#moduleContainer.container-pinned.pinned-right-bar {
  --total-width-sidemenuAndRightProductBar: calc(var(--left-side-menu-bar-width) + var(--right-product-bar-width));
  position: relative;
  /* position: absolute; */
  right: 56px;
  width: calc(100% - var(--total-width-sidemenuAndRightProductBar));
}
#moduleContainer.pinned-right-bar {
  position: relative;
  /* position: absolute; */
  right: var(--right-product-bar-width);
  width: calc(100% - 112px);
  /* width: calc(100% - 56px); */
}
#moduleContainer {
  position: relative;
  /* position: absolute; */
  top: var(--top-header-height);
  left: 50px;
  width: calc(100% - 50px);
  transition: all .5s ease;
  /* min-height: calc(100vh - 70px); */
  margin: 0;
  padding: 0;
  overflow: auto;
  height: calc(100vh - 49px);
  /* padding-bottom: 20px; */
  background: #fff;
}

#moduleContainer.trans-req {
  transition: 0.5s all;
}

#contentContainer {
  width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background-color: var(--bg-color);
}
.d-flex-with-gap {
  display: flex;
  flex-flow: row;
  gap: 1em;
  align-items: center;
}
.d-flex-column {
  display: flex;
  flex-flow: column;
}
.d-flex-column-with-gap {
  display: flex;
  flex-flow: column;
  gap: 1em;
}
.no-data-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
}
.w-70 {
  width: 70%;
}
.back-button {
  display: flex;
  align-items: center;
}
.mr-5 {
  margin-right: 5px;
}
.main-container {
  /* padding: 2rem 2rem 0; */
  padding: 30px;
  min-height: calc(100vh - var(--top-header-height));
  background-color: var(--bg-color);
}
.header-title-container {
  display: flex;
  flex-flow: row;
  gap: 1.5em;
  align-items: center;
  padding: 0.8em 0em 0em;
  justify-content: space-between;
}
.header-title {
  display: flex;
  flex-flow: column;
}
.header-name-container {
  display: flex;
  flex-flow: row;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
}
.header-name-details {
  display: flex;
  flex-flow: row;
  gap: 1em;
  align-items: center;
}
.d-flex-gap-center {
  display: flex;
  flex-flow: row;
  gap: 1em;
  align-items: center;
}
.err {
  border: 1px solid #d9360b !important;
}
.fixed-modal-actions {
  padding: 0 10px 10px 0px;
}

@keyframes openFilter {
  0% {
    opacity: 0;
    /* position: relative; */
    /* transform: translateY(-50%); */
    top: -180px;
  }
  100% {
    opacity: 1;
    /* position: relative; */
    /* transform: translateY(0%); */
    top: 0px;
  }
}
@keyframes closeFilter {
  0% {
    opacity: 1;
    /* position: relative; */
    /* transform: translateY(0%); */
    top: 0px;
  }
  100% {
    opacity: 0;
    /* position: relative; */
    /* transform: translateY(-50%); */
    top: -180px;
  }
}
/* Common styles */

/* Chip */
.chip {
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  margin-right: 10px;
  background-color: #f1f1f1;
}
/* Chip */

/* Hide validation icons */
.form-control:not(select):valid,
.was-validated .form-control:not(select):valid {
  background-image: none !important;
  border-color: #ced4da;
  background-color: transparent;
}

.form-control:invalid,
.was-validated .form-control:invalid {
  /* background-image: none; */
  border-color: #ced4da;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
button.custom-btn:focus,
.btn-check:focus + .btn,
.btn.custom-btn:focus,
.redactor-focus:focus.redactor-styles-on,
.uneditable-input:focus {
  /* border-color: #ced4da !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #ced4da !important; */
  outline: 0 none;
}

input[type="checkbox"]:focus,
input[type="checkbox"]:checked,
input[type="radio"]:focus,
input[type="radio"]:checked {
  /* border-color: #5f3082 !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #ced4da !important; */
  outline: 0 none;
}

.toggle input[type="radio"]:checked + .label-text:before {
  color: var(--txt-color) !important;
}

button:disabled,
button[disabled] {
  border: none !important;
  cursor: not-allowed !important;
  background-color: #919eab !important;
}
button[disabled]:hover {
  background-color: #919eab !important;
}

.form-check-input.is-valid:checked,
form-check-input:valid:checked {
  background-color: #1035d5;
}
.form-check-input.is-valid,
.form-check-input:valid {
  border-color: #1035d5;
}
.form-check-input.is-valid ~ .form-check-label,
.form-check-input:valid ~ .form-check-label {
  color: #000;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0px;
}
/* Hide validation icons */

/* Tabs */
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 1px solid transparent;
}
/* Tabs */

.label.label-info {
  background-color: #000;
}
.tag.label.label-info {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: var(--txt-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  background-color: var(--card-bg-color) !important;
  border: 1px solid var(--card-border-color) !important;
}
.frm,
.ck-editor {
  font-size: 15px;
}

/* loader */
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #000;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* loader */

/* Custom modal */
.custom-modal {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px;
}
.custom-modal > svg {
  margin-bottom: 16px;
}

.custom-modal-buttons {
  display: flex;
  flex-flow: row;
  gap: 0.5em;
  width: 100%;
  margin-top: 32px;
  justify-content: flex-end;
}

.custom-modal-button {
  width: 150px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
/* Custom modal */

/* Snackbar/Toast */
#snackbar {
  visibility: hidden;
  min-width: 500px;
  max-width: 650px;
  height:67px;
  /* margin-left: -125px; */
  background-color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  z-index: 1;
  left: 50%;
  transform:translatex(-50%);
  bottom: 30px;
  font-size: 14px;
  z-index: 99999;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s; /*, fadeout 0.5s 2.5s;*/
}
#snackbarMessage{
   font-weight: 500;
   font-size: 18px;;
}
.snackbar-data-div {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-around;
  height: 42px;
}
.snackbar-data-div > div:first-child {
  margin-right: 10px;
}
.snackbar-data-div > span {
  margin-right: 20px;
}
#snackbar.error {
  background-color: var(--badge-danger-bg-color);
  color: var(--badge-danger-txt-color);
}
#snackbar.success {
  background-color: var(--snackbar-success-bg-color);  
  color: var(--badge-success-txt-color);
}
#snackbar.info {
  background-color: var(--badge-info-bg-color);
  color: var(--badge-info-txt-color);
}
#snackbar.warning {
  background-color: var(--badge-warning-bg-color);
  color: var(--badge-warning-txt-color);
}
.snackbar-svg {
  width: 24px;
  height: 24px;
}
.snackbar-svg.success {
  fill: var(--badge-success-txt-color);
}
.snackbar-svg.danger {
  fill: var(--badge-danger-txt-color);
}
.snackbar-svg.info {
  fill: var(--badge-info-txt-color);
}
.snackbar-svg.warning {
  fill: var(--badge-warning-txt-color);
}

.ek-cont-overlay::after{
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  /* bottom: 0; */
  right: 0;
  z-index: 10;
  background-color: #ffffff99;
}
.ek-cont-overlay{
  position: relative;
  pointer-events: none;
}
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/* Snackbar/Toast */

/* For Mobile */
@media only screen and (max-width: 600px) {
  .content-cnt {
    flex-flow: column;
  }

  .bordered-div {
    padding: 10px 20px;
  }

  .content-cnt > div {
    max-width: unset;
    max-height: unset;
    margin-left: unset;
  }

  .width-20 {
    width: 50%;
  }

  .content-cnt > svg {
    width: 70vw;
    max-height: unset;
    margin-bottom: 1rem;
  }
  .content-frm-cnt {
    width: 100%;
  }
  .inputGroup .progressDiv {
    width: 50%;
    padding: 0px;
  }
  .inputGroup .buttonDiv {
    width: 50%;
    padding: 0px;
  }
  .uploadImage > img {
    max-width: 30vw;
  }
  .custom-container {
    padding-top: 14vh;
  }
  .header > div:first-child {
    flex-basis: 30%;
  }
  .header > label {
    flex-basis: 50%;
  }
  .header > div:last-child {
    flex-basis: 20%;
  }
  #snackbar{
    min-width: 90%;
    max-width: 90%;
    padding-top:10px;    
  }
}
/* For Mobile */

/* For Tablets */
@media (min-width: 600px) and (max-width: 900px) {
  /* .row > div {
    margin-bottom: 10px;
  } */
  .inputGroup .progressDiv {
    width: 50%;
    padding: 0px;
  }
  .inputGroup .buttonDiv {
    width: 50%;
    padding: 0px;
  }
  .custom-container {
    padding-top: 12vh;
  }
  .header > div:first-child {
    flex-basis: 30%;
  }
  .header > label {
    flex-basis: 50%;
  }
  .header > div:last-child {
    flex-basis: 20%;
  }
}
/* For Tablets */
