.corporateLogo h2 {
  color: var(--theme-color);
}

.btn {
  border: 1px solid lightgrey;
  min-width: 150px;
}

.btn.submit-btn {
  background-color: var(--theme-color);
  color: white;
}

.btn.submit-form-btn {
  background-color: var(--theme-color);
  color: white;
}

.btn.noBorder {
  border: unset;
}

.product-container {
  border: 1.5px solid #DADADA;
  border-radius: 2px;
  padding: 10px;
  margin: 15px 0;
}

.form-row {
  margin: 15px 0;
}

.form-row .content-custom-padding-left {
  padding-left: 7px;
}

.notClickable {
  pointer-events: none;
  cursor: not-allowed;
}

.previewImageWrap {
  height: 100px;
  position: relative;
}

.imgThumbnail {
  margin-top: 20px;
  width: 100px;
  height: unset;
  overflow: hidden;
  margin: 0 10px;
}

.deleteImage {
  position: absolute;
  right: -6px;
  width: 30px;
  top: -2px;
  cursor: pointer;
}

.deleteImage .fa {
  font-size: 26px;
  color: black;
}

.setting-title {
  text-align: center;
  font-weight: bold;
  color: #5F6770;
}

.setting-content {
  border-top: 2px solid #DADADA;
  margin: 25px 0;
  padding: 60px;
}

.setting-content .profile-picture {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  margin-right: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.setting-content .lang-btn {
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--theme-color);
  border-radius: 3px;
  color: var(--theme-color);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 100px;
}

.setting-content .lang-btn:not(:last-of-type) {
  border-right: 0;
}

.setting-content .lang-btn.active {
  background-color: var(--theme-color);
  color: white;
}

.setting-content .lang-btn:focus,
.setting-content .lang-btn:active {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.setting-content .form-row {
  margin: 30px 0;
}

.fa-check-circle.active {
  color: green;
}

.activeDot {
  border-radius: 1.25rem;
  background-color: #8cbe41;
  height: 15px;
  width: 15px;
}

.inactiveDot {
  border-radius: 1.25rem;
  background-color: grey;
  height: 15px;
  width: 15px;
}

.asterisk {
  color: red;
}

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
    max-width: 1200px;
  }
}

.submit-section {
  padding-top: 50px;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: black;
}

.select-box .btn-light {
  border: 1px solid #ced4da;
  background-color: white !important;
  color: #828282 !important;
}

.select-box .btn-light:hover,
.select-box .btn-light:focus,
.select-box .btn-light:active,
.select-box .btn-light:not(:disabled):not(.disabled):active {
  background-color: white !important;
  color: #828282 !important;
}

.calendar .fc-basic-view .fc-day-top .fc-day-number {
  padding-left: 13px;
}

.calendar .fc-day-header.fc-widget-header {
  font-size: 16px;
}

th,
td {
  text-align: left;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.055em;
  content: "";
  border-top: 0.5em solid;
  border-right: 0.5em solid transparent;
  border-bottom: 0;
  border-left: 0.5em solid transparent;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.055em;
  content: "";
  border-top: 0;
  border-right: 0.5em solid transparent;
  border-bottom: 0.5em solid;
  border-left: 0.5em solid transparent;
}

.fas.fa-caret-down.select-icon {
  position: absolute;
  top: 27%;
  z-index: 900;
  right: 4%;
}

.input-group-text {
  background-color: #ffffff;
  border-left: unset;
}

.burgerNumber-badge {
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #FFFFFF;
  font-size: 9px;
  padding: 7px 9px;
  position: relative;
  left: -20%;
  bottom: 17px;
  width: 18px;
  height: 18px;
  line-height: 0;
}

.number-badge-wrapper {
  position: absolute;
}

.number-badge-wrapper .jsNotification {
  color: #B2B2B2;
  font-size: 17px;
}

.location {
  padding-right: 5px;
}

.drag-container .form-control-file {
  position: relative;
  min-height: 35px;
  outline: none;
  visibility: hidden;
  cursor: pointer;
  background-color: var(--theme-color);
  -webkit-box-shadow: 0 0 5px solid var(--theme-color);
          box-shadow: 0 0 5px solid var(--theme-color);
  color: var(--theme-color);
  border: none;
  border-radius: 0;
}

.drag-container .form-control-file:before {
  font-size: 13px;
  content: attr(data-title);
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 35px;
  line-height: 35px;
  opacity: 1;
  visibility: visible;
  text-align: center;
  border: 1px dashed var(--theme-color);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.drag-container .form-control-file:hover:before {
  border-style: solid;
  -webkit-box-shadow: inset 0px 0px 0px 0.25em var(--theme-color);
          box-shadow: inset 0px 0px 0px 0.25em var(--theme-color);
}

.drag-container .form-control-file.agency {
  background-color: #6ABCD5;
  -webkit-box-shadow: 0 0 5px solid #6ABCD5;
          box-shadow: 0 0 5px solid #6ABCD5;
  color: #6ABCD5;
}

.drag-container .form-control-file.agency:before {
  border: 1px dashed #6ABCD5;
}

.drag-container .form-control-file.agency:hover:before {
  border-style: solid;
  -webkit-box-shadow: inset 0px 0px 0px 0.25em #6ABCD5;
          box-shadow: inset 0px 0px 0px 0.25em #6ABCD5;
}

.choose-file-label {
  margin-bottom: 0;
}

.pdf-btn {
  cursor: pointer;
  border-radius: 3px;
  color: #FFFFFF;
  padding: 5px 12px;
  text-align: center;
  background-color: #FF0000;
}

.sort {
  cursor: ns-resize;
  border: 1.5px solid #DADADA;
  margin: 5px 0 5px 10px;
  padding: 5px;
}

.sort-header {
  -webkit-padding-start: 55px;
          padding-inline-start: 55px;
  border: 1.5px solid transparent;
}

.sort-header .sort-placeholder {
  opacity: 0;
}

.status-msg.pending,
.status-msg.withdraw {
  color: #F3A35C;
}

.status-msg.approved {
  color: #7AB226;
}

.status-msg.rejected {
  color: #E4021C;
}

.approval-title {
  color: var(--theme-color);
}

.reject-reason-container {
  margin: 0 80px;
}

.modal-content .close-section {
  position: absolute;
  right: 15px;
  top: 15px;
}

.approval-btn-group {
  margin: 0;
}

.approval-btn-group button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.approval-btn-group .approve-btn {
  background: #7AB226;
  color: white;
  margin: 0 3px;
}

.approval-btn-group .reject-btn {
  background: #E4021C;
  color: white;
  margin: 0 3px;
}

.approval-btn-group .withdraw-btn {
  background: #B2B2B2;
  color: white;
  margin: 0 3px;
}

.approve-btn {
  background: #7AB226;
  color: white;
}

.reject-btn {
  background: #E4021C;
  color: white;
}

.withdraw-btn {
  background: #B2B2B2;
  color: white;
}

.reducePoints {
  color: red;
}

.content-image-container {
  overflow: hidden;
}

.content-image-container .content-image {
  height: auto;
  width: auto;
}

.content-image-container .image-375x203 {
  height: 203px;
  width: 375px;
}

.content-image-container .image-375x812 {
  height: 433px;
  width: 200px;
}

.preview-image-wrapper {
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.featured {
  color: #C2C2C2;
  font-size: 24px;
}

.featured.red {
  color: #E1061F;
}

.featured-content {
  margin-left: 10%;
  text-align: center;
}

.featured-checkbox {
  visibility: hidden;
  margin: 3px;
}

.featured-checkbox:after,
.featured-checkbox:checked:after {
  visibility: visible;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  height: 0;
  width: 0;
  position: relative;
  top: -12px;
  left: -8px;
  background-color: #FFF;
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-weight: 900;
}

.featured-checkbox:after {
  content: '\F004';
  color: #B2B2B2;
}

.featured-checkbox:checked:after {
  content: '\F004';
  color: #E4021C;
}

.ql-container,
.ql-editor {
  height: auto;
  min-height: 100px;
}

.cross-icon {
  font-size: 20px;
  position: absolute;
  top: 3px;
  right: 3px;
  margin: 0;
}

.tab-content .datatables .customer.hideRow {
  display: none;
}

.tab-content .datatables .customer .grade {
  display: none;
}

.tab-content .datatables .gradeRow {
  display: none;
}

.tab-content .datatables tbody .group.header {
  background-color: var(--theme-color);
}

.tab-content .datatables tbody .group.header:hover {
  background-color: var(--theme-color);
}

.tab-content .datatables tbody .group.header td {
  color: #FFFFFF;
}

.tab-content .datatables tbody .group .grade .arrow {
  width: 20px;
}

.custom-label-block {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.375rem 0.75rem;
  font-size: 14;
  line-height: 1.6;
  background-color: transparent;
  background-clip: padding-box;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.reviewTable td,
.reviewTable th {
  text-align: center;
}

.reviewSectionBar {
  background: var(--theme-color);
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
}

table.datatables.dataTable td {
  padding-left: 18px;
}

.review-title {
  margin-top: auto;
  margin-bottom: auto;
}

#d-nonereviewsListTable_paginate {
  display: none;
}

/* Absolute Center Spinner */

.loading.active {
  position: fixed;
  z-index: 2000;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */

.loading.active:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}

/* :not(:required) hides these rules from IE9 and below */

.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.form-control.verifiedMsg {
  text-align: right;
  font-weight: bold;
}

.form-control.verifiedMsg.verified {
  color: green;
}

.form-control.verifiedMsg.unVerified {
  color: red;
}

.unVerifiedDot {
  border-radius: 1.25rem;
  background-color: red;
  height: 15px;
  width: 15px;
}

#WishListTable_wrapper .dropdown {
  display: none;
}

