@import url(/fonts/GreycliffCF/style.css);

:root {
  color-scheme: light;
  --font-color: #333;
  --background: #fff;
  --color-primary: #0cb50c;
  --color-shader-10: #0ba30b;
  --color-shader-20: #0a910a;
  --color-shader-30: #076d07;
  --color-shader-40: #054805;
  --color-shader-80: #022402;
  --color-tones-10: #18b018;
  --color-tones-20: #23aa23;
  --color-tones-40: #3aa03a;
  --color-tones-60: #529552;
  --color-tones-80: #5d905d;
  --color-tints-10: #24bc24;
  --color-tints-20: #3dc43d;
  --color-tints-40: #6dd36d;
  --color-tints-60: #9ee19e;
  --color-tints-80: #cef0ce;
}

::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(128, 128, 128, 0.2);
}

::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-tones-20) !important;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

html {
  height: 100%;
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  padding-top: var(--titlebar-height, 0);
  display: flex;
  background: var(--background);
  height: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

body {
  font-family: 'GreycliffCF', sans-serif;
  letter-spacing: 0.3px;
  color: var(--font-color);
}

body.has-titlebar {
  padding-top: var(--titlebar-height, 30px);
}

body.has-titlebar:not([data-route="/whatsapp"]) #sidebar {
  border-radius: 0 10px 0 0;
}

body:not(.has-titlebar) .content-column {
  padding-top: 25px;
}

body.swal2-shown.swal2-height-auto {
  height: 100% !important
}

body.theme-transition * {
  transition: none !important;
  transition-duration: 0s !important;
}

body.trap-focus *:not(:focus) {
  pointer-events: none;
}

body.trap-focus :focus,
body.trap-focus label:has(:focus) * {
  pointer-events: auto;
}

svg:empty {
  width: 0;
  height: 0;
}

sentry {
  position: relative;
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}

img {
  position: relative;
  overflow: hidden;
}

img::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #ededed;
  background-image: url(/images/no-image.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 240px;
  padding: 15px 10px;
  background: var(--sidebar-background);
  transition: border-radius 0.2s ease;
  z-index: 100;

  --sidebar-background: #F5F5F5;
  --sidebar-color: #52535B;
}


#headerbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  gap: 15px;

  --sidebar-background: #F5F5F5;
  --sidebar-color: #52535B;
}

#headerbar>button {
  border: none;
  background: none;
  padding: 8px;
  width: 40px;
  height: 40px;
}

#headerbar>button>svg {
  fill: var(--sidebar-color);
  width: 100%;
  height: 100%;
}

#sidebar::before {
  content: "";
  display: block;
  background: var(--sidebar-background);
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
}

.company-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.company-status.dropdown-active {
  background-color: var(--background);
  box-shadow: 0px 1px 5px rgb(0 0 0 / 15%);
}

.company-status>.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  z-index: 10;
  background-color: var(--background);
  box-shadow: 0px 1px 10px #0000004d;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap: 4px;
  user-select: none;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transform: translateY(-10px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.company-status.dropdown-active>.dropdown {
  opacity: 1;
  transform: translateY(0px) scale(1);
  pointer-events: all;
}

.company-status>.dropdown>button,
.company-status>.dropdown>a {
  display: flex;
  border: none;
  padding: 6px 10px;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--font-color);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.company-status>.dropdown>button:hover,
.company-status>.dropdown>a:hover {
  background-color: #8a8a8a4f;
}

.company-status>.dropdown>button>svg,
.company-status>.dropdown>a>svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.company-status>.dropdown>button.invisible-mode:not(.active)>.off,
.company-status>.dropdown>button.invisible-mode.active>.on {
  display: none;
}

.company-status>.dropdown>button.invisible-mode.active {
  background-color: #322224 !important;
  border-color: var(--danger);
  color: var(--danger);
}

#sidebar>.integrated {
  display: none;
  align-items: center;
  border-radius: 10px;
  font-size: 13px;
  padding: 5px 10px;
  line-height: 16px;
  background-color: #0cb50c40;
  margin-top: 10px;
  user-select: none;
}

#sidebar>.integrated>b {
  max-width: 94px;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 16px;
  vertical-align: bottom;
}

#sidebar>.integrated::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

#sidebar>.staging {
  display: none;
  align-items: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 10px;
  line-height: 16px;
  background-color: #ffd70038;
  box-shadow: 0 0 1px 1px #ffd70082;
  margin-top: 10px;
  user-select: none;
}

#sidebar>.staging>i {
  margin-right: 5px;
  color: gold;
}

#sidebar>hr {
  margin: 15px 0;
  border-top: 1px solid #8f8f8f4d;
}

.company-status>.icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #52535B;
  border-radius: 50%;
}

.company-status>.icon>img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.company-status>.icon>.status {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 20px;
  height: 20px;
  right: -2px;
  bottom: -2px;
  background-color: var(--danger);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.company-status.opened>.icon>.status::before {
  content: "";
  width: 12px;
  height: 12px;
  background: white;
  -webkit-mask: url("/images/check.svg");
}

.company-status:not(.opened)>.icon>.status::before {
  content: "-";
  color: white;
  font-size: 29px;
  line-height: 16px;
  height: 20px;
}

.company-status.opened>.icon>.status {
  background-color: #00993A;
}

.company-status>.infos {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.company-status>.infos>.name {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 3px;
  color: #000000;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-status>.infos>.status {
  opacity: 0;
  width: fit-content;
  height: 0px;
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  transition: color 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.company-status>.infos>.status.opened {
  color: var(--color-primary);
}

.company-status>.infos>.status.closed {
  color: var(--danger);
  font-weight: 700;
}

.company-status>.infos>.status.offline {
  color: #9b9b9b;
}

.company-status.opened>.icon>.status {
  background-color: var(--color-primary);
}

.company-status.closed>.icon>.status {
  background-color: var(--danger);
}

.company-status.offline>.icon>.status {
  background-color: #9b9b9b;
}

.company-status.closed>.icon>.status {
  background-color: var(--danger);
}

.company-status.offline>.infos>.status.offline,
.company-status.closed>.infos>.status.closed,
.company-status.opened>.infos>.status.opened {
  opacity: 1;
  height: 13px;
}

.company-status.offline>.icon>.status::before {
  content: "";
  width: 12px;
  height: 12px;
  background: white;
  -webkit-mask: url(/images/cross.svg);
}

#sidebar>.menu {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-radius: 12px;
  gap: 5px;
  flex: 1;
  margin: 0 -5px;
  padding: 0 5px;
}

#sidebar>.menu::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#sidebar>.menu>div {
  display: flex;
  flex-direction: column;
}

#sidebar>.menu>div>div {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  margin-top: -10px;
  border-radius: 0px 0px 15px 15px;
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease, background-color 0.3s ease;
}

#sidebar>.menu>div.expanded>div {
  height: calc(var(--child-count) * 44px + 10px);
  background-color: var(--background);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}

#sidebar>.menu>a,
#sidebar>.menu>div>button,
#sidebar>.menu>div>div>a {
  display: flex;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  border: none;
  align-items: center;
  padding: 10px;
  gap: 10px;
  height: 44px;
  border-radius: 12px;
  background: none;
  color: var(--sidebar-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  text-decoration: none;
  z-index: 1;
}

@keyframes sidebar-notification {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(2);
    filter: blur(0.8px);
  }
}

#sidebar>.menu>a.notification::after,
#sidebar>.menu>div>div>a.notification::after {
  content: "";
  display: inline-block;
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: gold;
  animation: sidebar-notification 1s ease infinite alternate;
}

@keyframes sidebar-running {
  0% {
    box-shadow: 0 0 0px var(--color-primary);
  }

  50% {
    box-shadow: 0 0 3px 8px transparent;
  }

  100% {
    box-shadow: 0 0 3px 8px transparent;
  }
}

#sidebar>.menu>a.running::after,
#sidebar>.menu>div>div>a.running::after {
  content: "";
  display: inline-block;
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: sidebar-running 1s ease infinite;
}

#sidebar>.menu>a.hidden,
#sidebar>.menu>div>div>a.hidden {
  display: none;
}

#sidebar>.menu>a,
#sidebar>.menu>div>button {
  background-color: var(--sidebar-background);
}

#sidebar>.menu>a.active,
#sidebar>.menu>div.active>button {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  background-color: var(--background);
  color: var(--color-primary);
}

#sidebar>.menu>div.expanded>button {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  background-color: var(--background);
}

#sidebar>.menu>div>button>i {
  transition: transform 0.3s ease;
}

#sidebar>.menu>div.expanded>button>i {
  transform: rotate(-180deg);
}

#sidebar>.menu>div>div>a.active {
  color: var(--color-primary);
}

#sidebar>.menu>div>button>span {
  flex: 1;
  text-align: left;
}

#sidebar>.menu>a>svg,
#sidebar>.menu>div>button>svg,
#sidebar>.menu>div>div>a>svg {
  width: 18px;
  height: 24px;
  fill: var(--sidebar-color);
  transition: fill 0.3s ease;
}

#sidebar>.menu>a.active>svg,
#sidebar>.menu>div.active>button>svg,
#sidebar>.menu>div>div>a.active>svg {
  fill: var(--color-primary);
}

#sidebar>.menu>a>.badge-new {
  display: none;
  background-color: var(--color-primary);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 13px;
  margin-left: auto;
}

#sidebar>.menu>a.show-badge-new>.badge-new {
  display: block;
}

@keyframes sidebar-campaign-span {
  0% {
    opacity: 1;
    transform: translateX(0px);
  }

  28% {
    opacity: 1;
    transform: translateX(0px);
  }

  35% {
    opacity: 0;
    transform: translateY(10px);
  }

  70% {
    opacity: 0;
    transform: translateX(10px);
  }

  75% {
    opacity: 0;
    transform: translateY(0px);
  }

  95% {
    opacity: 0;
    transform: translateX(0px);
  }

  100% {
    opacity: 1;
  }
}

@keyframes sidebar-campaign-small {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  30% {
    opacity: 0;
    transform: translateY(-10px);
  }

  35% {
    opacity: 1;
    transform: translateY(0px);
  }

  70% {
    opacity: 1;
    transform: translateY(0px);
  }

  75% {
    opacity: 1;
    transform: translateY(0px);
  }

  95% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
  }
}

#sidebar>.menu>[href="/campanha"]>span {
  animation: sidebar-campaign-span 10s ease infinite;
}

#sidebar>.menu>[href="/campanha"]>small {
  position: absolute;
  left: 38px;
  font-size: 16px;
  font-weight: 600;
  animation: sidebar-campaign-small 10s ease infinite;
}

#sidebar>.footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

#sidebar>.footer>.utilities {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0px 10px;
}

#sidebar>.footer>.utilities>img {
  width: 60px;
  height: 35px;
}

#sidebar>.footer>.utilities>div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5px;
}

#sidebar>.footer>.utilities>div>a,
#sidebar>.footer>.utilities>div>button {
  font-size: 15px;
  line-height: 15px;
  font-weight: 300;
  padding: 0;
  border: none;
  background: none;
  color: var(--font-color);
}

#sidebar>.footer>.utilities>div>a>i {
  font-size: 11px;
  position: relative;
  top: -1px;
}

#sidebar>.footer>.utilities>div>a:hover,
#sidebar>.footer>.utilities>div>button:hover {
  text-decoration: underline;
  color: var(--color-primary);
}

#sidebar>.footer>.download,
#sidebar>.footer>.install_update,
#sidebar>.footer>.clear_cache,
#sidebar>.footer>.whats-new {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--color-primary);
  text-decoration: none;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 15%);
  background-color: var(--background);
  border: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

#sidebar>.footer>.whats-new {
  opacity: 0.8;
}

#sidebar>.footer>.download:hover,
#sidebar>.footer>.install_update:hover,
#sidebar>.footer>.clear_cache:hover,
#sidebar>.footer>.whats-new:hover {
  color: var(--background);
  background-color: var(--color-primary);
  opacity: 1;
}

#sidebar>.footer>.download.show,
#sidebar>.footer>.install_update.show,
#sidebar>.footer>.clear_cache.show,
#sidebar>.footer>.whats-new.show {
  display: flex;
}

#sidebar>.footer>.download>svg,
#sidebar>.footer>.install_update>svg,
#sidebar>.footer>.clear_cache>svg {
  width: 16px;
  flex: none;
}

#sidebar>.footer>.optimize {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  outline: 1px solid var(--color-primary);
  box-shadow: 0px 1px 5px #0cb50c78;
  border-radius: 10px;
  padding: 8px;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease,
    outline-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

#sidebar>.footer>.optimize:hover {
  outline: 2px solid var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0px 1px 9px #3b3b3b78;
}

#sidebar>.footer>.optimize>i {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-shader-10);
}

#sidebar>.footer>.optimize>.title {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

#body {
  display: flex;
  overflow: hidden;
  position: relative;
  flex: 1;
  max-width: 1720px;
  margin: 0 auto;
}

#body>.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s 0.1s ease;
}

#body.loading>.loading {
  opacity: 1;
  pointer-events: all;
}

#body>.loading>.spinner-border {
  width: 3rem;
  height: 3rem;
  color: #000;
}

#wppWebView {
  display: none;
  flex: 1;
  user-select: none;
}

#orderPrintWebView {
  display: none;
  width: 400px;
}

#body>main {
  overflow: auto;
  overflow-y: overlay;
  flex: 1;
}

@keyframes main-hide {
  from {
    transform: translateY(0px);
    opacity: 1;
    user-select: none;
    pointer-events: none;
  }

  to {
    transform: translateY(25px);
    opacity: 0;
    user-select: none;
    pointer-events: none;
  }
}

@keyframes main-show {
  from {
    transform: translateY(25px);
    opacity: 0;
    user-select: none;
    pointer-events: none;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
    user-select: none;
    pointer-events: none;
  }
}

#body>main.hide-anim,
#body>#wppWebView.hide-anim {
  animation: main-hide 0.1s ease-in;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

#body>main.show-anim,
#body>#wppWebView.show-anim {
  animation: main-show 0.3s cubic-bezier(0.16, 0.3, 0.45, 1.5);
}

#body.loading>main,
#body.loading>main *,
#body.loading>main *:before,
#body.loading>main *:after {
  transition: none !important;
  animation-duration: 0s !important;
  pointer-events: none;
  user-select: none;
}

.skeleton-noAnimation .skeleton::after {
  animation: none !important;
}

.skeleton {
  position: relative;
  overflow: hidden;
  border: none !important;
  border-radius: 5px;
  color: transparent !important;
  user-select: none !important;
  pointer-events: none !important;
}

.skeleton::before {
  content: "" !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
  opacity: 1 !important;
  background-color: #dddbdd !important;
  border-radius: 0;
  z-index: 1;
}

.skeleton.skeleton-hidden::before,
.skeleton.skeleton-hidden::after {
  transition: 0.1s;
  opacity: 0 !important;
}

.skeleton::after {
  content: "" !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
  opacity: 1 !important;
  background: transparent !important;
  background-color: transparent !important;
  transform: translate3d(-100%, 0, 0);
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0)) !important;
  animation: shimmer 2s infinite;
  z-index: 2;
}

.is_skeleton {
  user-select: none;
  pointer-events: none;
}

@keyframes shimmer {
  100% {
    transform: translate3d(100%, 0, 0);
  }
}

::selection {
  background-color: var(--color-tones-20);
  color: #fff;
}

img {
  -webkit-user-drag: none;
}

button>i {
  line-height: inherit;
}

.highcharts-axis-labels>text,
.highcharts-legend-item>text {
  color: #525252 !important;
  fill: #525252 !important;
}

.highcharts-legend-item>text {
  transition: 0.3s ease;
}

.highcharts-legend-item>text:hover {
  color: #50b432 !important;
  fill: #50b432 !important;
}

.header-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#frmLogin.disabled {
  pointer-events: none;
}

.custom-search {
  margin: 0 10px 0 0;
  position: relative;
}

.custom-search .search-query {
  padding: 7px 15px;
  color: #282828;
  transition: all 0.5s ease;
  line-height: 20px;
  width: 240px;
  border: 0;
  background: #f6f8fa;
  border-radius: 50px;
  box-shadow: 0 0 15px #e5e9ec;
  border-bottom: 1px solid #d7dbe2;
}

.custom-search .search-query:focus {
  outline: none;
  background: #fff;
  width: 280px;
}

.custom-search i {
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  color: #777b82;
  border-left: 1px solid #e7eaef;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .custom-search {
    display: none;
  }

  .campaign-analytics-modal>div>.top {
    flex-direction: column;
    height: auto !important;
  }

  .campaign-analytics-modal>div>.top>.left {
    padding: 15px 25px 0 !important;
  }

  .campaign-analytics-modal>div>.top>.right {
    flex-direction: row !important;
    padding: 25px !important;
    max-height: 400px;
  }

  .campaign-analytics-modal .groups-graph {
    max-height: 400px;
  }
}

.highcharts-credits {
  display: none !important;
}

@media screen and (max-width: 768px) {
  body {
    flex-direction: column;
  }

  #sidebar>.footer>.download,
  #sidebar>.footer>.install_update {
    display: none !important;
  }

  #sidebar {
    position: absolute;
    bottom: 0;
    top: var(--titlebar-height, 0px);
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  #headerbar {
    display: flex;
    transition: transform 0.3s ease;
  }

  #body {
    width: 100vw;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.sidebar-expanded>#sidebar {
    transform: translateX(0%);
  }

  body.sidebar-expanded>#body {
    opacity: 0.4;
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
    transform: translateX(240px);
  }

  body.sidebar-expanded>#headerbar {
    transform: translateX(240px);
  }

  .page-header {
    padding: 10px 15px !important;
  }

  .max-results {
    margin: 5px 15px !important;
  }

  #table-cadastros-discount_coupon th:nth-child(2),
  #table-cadastros-discount_coupon th:nth-child(3),
  #table-cadastros-discount_coupon th:nth-child(4),
  #table-cadastros-discount_coupon td:nth-child(2),
  #table-cadastros-discount_coupon td:nth-child(3),
  #table-cadastros-discount_coupon td:nth-child(4) {
    display: none;
  }

  #configuracoes_empresa .row,
  #configuracoes_empresa .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #configuracoes_empresa {
    margin: 0 -15px;
  }

  .content-column {
    padding: 15px !important;
  }

  .content-column .section>.content {
    flex-direction: column;
  }

  .campaign-analytics-modal>div>.top>.right {
    flex-direction: column !important;
    max-height: inherit;
  }

  .campaign-analytics-modal {
    padding: 0 !important;
  }

  .campaign-analytics-modal>div {
    border-radius: 0 !important;
  }

  .campaign-analytics-modal>.simple-modal-header {
    width: 100% !important;
  }

  .campaign-analytics-modal .groups-graph {
    max-height: inherit;
  }

  .campaign-analytics-modal .campaign-analytic-card.products>.main:not(.none-results) {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }

  .campaign-analytics-modal .campaign-analytic-card.products>.main>.product {
    width: auto !important;
  }

  .campaign-analytics-modal .campaign-analytic-card.clients>.main,
  .campaign-analytics-modal .campaign-analytic-card.contact-groups>.main {
    max-height: 720px;
  }
}

.page-header {
  padding: 15px 35px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.input-label {
  display: flex;
  align-items: center;
  padding-top: 15px;
  border-radius: 5px;
  margin-bottom: 0;
  position: relative;
}

.input-label.is_skeleton {
  user-select: none;
  pointer-events: none;
}

.input-label>input {
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 16px;
  background-color: #dfdfdf;
  transition: border 0.3s;
}

.input-label>input:hover {
  border-color: #858585;
}

.input-label>input:focus {
  border-color: var(--color-primary);
}

.input-label>input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

.input-label>input[type="date"]:not(.not-empty)::-webkit-datetime-edit-fields-wrapper {
  opacity: 0;
  transition: opacity 0.2s;
}

.input-label:focus-within>input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  opacity: 1;
  transition: opacity 0.15s 0.05s;
}

.input-label>span {
  position: absolute;
  color: var(--font-color);
  background-color: transparent;
  left: 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 15px;
  border-radius: 10px 10px 0 0;
  transition: 0.15s ease;
  white-space: nowrap;
  pointer-events: none;
  padding: 3px 15px;
  min-width: 50px;
}

.input-label>input:focus+span,
.input-label>.not-empty+span {
  background-color: #dfdfdf;
  transform: translateY(-23px);
  font-size: 14px;
}

.input-auto-complete {
  position: relative;
  display: flex;
  align-items: center;
}

.input-auto-complete>input {
  padding-right: 40px;
}

.input-auto-complete:before {
  content: "\f002";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: var(--font-color);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  z-index: 1;
  right: 15px;
}

.input-auto-complete.has-results.focus:before {
  content: "\f0d7";
  font-size: 20px;
}

.auto-complete-results {
  display: flex;
  position: absolute;
  flex-direction: column;
  max-height: 190px;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 10px;
  padding: 5px;
  gap: 5px;
  z-index: 10002;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  visibility: hidden;
  transform: scale(0.9) translateY(-10px);
  opacity: 0;
  transition: visibility 0.3s, opacity 0.1s ease, transform 0.3s ease;
}

.auto-complete-results.show {
  visibility: visible;
  transform: scale(1) translateY(5px);
  opacity: 1;
  transition: opacity 0.1s ease, transform 0.3s ease;
}

.auto-complete-results>div {
  display: flex;
  flex-direction: column;
  padding: 7px 15px;
  cursor: pointer;
  min-height: 35px;
  justify-content: center;
  border-radius: 8px;
  flex: none;
}

.auto-complete-results>.product,
.auto-complete-results>.category {
  flex-direction: row;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: none;
  padding: 6px 8px;
}

.auto-complete-results>.product>img,
.auto-complete-results>.category>img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.auto-complete-results>.product>.title,
.auto-complete-results>.category>.title {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.auto-complete-results>div.discount_coupon {
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}

.auto-complete-results>div.discount_coupon>.coupon {
  text-overflow: ellipsis;
  overflow: hidden;
}

.auto-complete-results>div.discount_coupon>.discount {
  flex: none;
  background-color: var(--color-primary);
  color: white;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
}

.auto-complete-results>div.active {
  background-color: var(--color-tints-80);
}

.auto-complete-results>div>.title {
  font-size: 15px;
  line-height: 16px;
}

.auto-complete-results>div>.subtitle {
  font-size: 12px;
  line-height: 13px;
  margin-top: 3px;
  color: #b0b0b0;
}

.info-tiles {
  position: relative;
  padding: 20px;
  min-height: 100px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.info-tiles .info-icon {
  height: 60px;
  width: 60px;
  float: left;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 50px;
}

.info-tiles .info-icon i {
  font-size: 40px;
  color: var(--color-tones-20);
}

.info-tiles .info-icon i.black {
  color: black;
}

.info-tiles .info-icon.secondary i {
  color: #d64c36;
}

.info-tiles .stats-detail {
  margin: 0 0 0 15px;
}

.info-tiles .stats-detail>div {
  display: flex;
  align-items: center;
}

.info-tiles .stats-detail>div>span.negative {
  color: #da3636;
  margin-left: 15px;
}

.info-tiles .stats-detail>div>span.positive {
  color: #57da36;
  margin-left: 15px;
}

.info-tiles .stats-detail.total_earning>h2 {
  margin: 0;
}

.info-tiles h3 {
  margin: 0.3rem 0 0.3rem 0;
  line-height: 100%;
}

.info-tiles h2,
.info-tiles h4,
.info-tiles h5 {
  margin: 0;
  line-height: 100%;
}

.info-tiles p {
  margin: 0;
  line-height: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  color: #777b82;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 26px;
  line-height: 26px;
  align-items: center;
}

.breadcrumb .badge {
  margin-left: 15px;
}

.breadcrumb .breadcrumb-item {
  color: #282828;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #282828;
}

.breadcrumb .breadcrumb-item a {
  color: #282828;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--color-tints-20);
}

button:focus {
  outline: none;
}

.btn {
  position: relative;
  border-radius: 10px;
  border: 0;
  font-size: 16px;
  min-width: fit-content;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--color-shader-10);
  border-color: var(--color-shader-10);
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: none;
  background-color: var(--color-shader-10);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  filter: grayscale(0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #383737;
}

.btn-success {
  color: #fff;
  background-color: var(--color-tints-20);
}

.btn-success:hover {
  color: #fff;
  background-color: #39a51e;
}

.btn-danger {
  color: #fff;
  background-color: #f55656;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #ed3b3b;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #555555;
  box-shadow: 0 0 0 0.2rem #70707030;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 2px;
}

.custom-control-label::before {
  top: 0.1rem;
  border-color: #b5bbc5;
  background: #edeff3;
}

.custom-control-label::after {
  top: 0.1rem;
}

.custom-control-input:checked~.custom-control-label::before {
  background: var(--color-tints-20);
  border-color: var(--color-tints-20);
}

.custom-control.custom-switch .custom-control-label::after {
  top: 4px;
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none;
}

.custom-control-input:disabled~.custom-control-label::before {
  background-color: #f2f4f9;
  border-color: #cecece;
}

.dropdown-menu:before {
  position: absolute;
  top: -9px;
  left: 12px;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #fff;
}

.dropdown-menu.dropdown-menu-right:before {
  right: 15px;
  left: auto;
  top: -9px;
}

.dropdown-menu.sm {
  width: 10rem;
  min-width: auto;
}

.dropdown-menu.lrg {
  width: 18rem;
}

.dropdown-menu .dropdown-item {
  padding: 11px 15px;
  font-size: 14px;
  line-height: 100%;
  position: relative;
  color: #282828;
}

.dropdown-menu .dropdown-item:hover {
  background: var(--color-tints-60);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #f8f9fa1f;
}

.dropdown-menu .dropdown-item:first-child {
  border-radius: 0;
}

.dropdown-menu .dropdown-item:last-child {
  border-radius: 0;
}

.dropdown-menu .dropdown-item.active-page {
  color: var(--color-tints-20);
  background: #f4f5fb;
  pointer-events: none;
  cursor: not-allowed;
}

.dropdown-menu .dropdown-menu-header {
  padding: 0.7rem 1rem;
  margin-bottom: 0.5rem;
  background: #eff1f5;
  font-size: 0.85rem;
  font-weight: 700;
}

.dropdown-toggle::after {
  vertical-align: middle;
}

.dropdown-toggle.sub-nav-link::after {
  float: right;
  margin: 0.15rem 0 0 0;
  border-right: 0;
  border-left: 5px solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.dropdown-divider {
  margin: 0.3rem 0;
}

.dropdown-toggle-split {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.form-group {
  margin: 0 0 1rem 0;
}

.form-control {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  height: inherit;
  padding: 10px 15px;
  background-color: #dfdfdf;
  font-size: 16px;
  line-height: 16px;
  outline: none;
}

.form-control:disabled {
  opacity: 0.6;
}

.form-control.is-invalid {
  border-color: var(--red) !important;
}

form input.is-invalid {
  pointer-events: all;
}

.form-control>i {
  font-size: 17px;
  margin-right: 10px;
}

.form-control>input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.form-control.textarea {
  resize: none;
}

.form-control:hover {
  border-color: #b5bbc5;
}

.form-control:focus,
.form-control.focus {
  border-color: var(--color-tints-20);
}

label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #57772b;
}

.modal {
  text-align: left;
  scroll-behavior: smooth;
}

body.has-titlebar .modal {
  margin-top: var(--titlebar-height, 30px);
  max-height: calc(100vh - var(--titlebar-height, 30px));
}

.modal .modal-content {
  border-radius: 10px;
  border: none !important;
  box-shadow: rgba(63, 63, 63, 0.6) 0 10px 40px;
  overflow: hidden;
}

.modal .modal-dialog {
  margin-top: 5rem;
}

.modal .modal-dialog.modal-dialog-centered {
  min-height: inherit;
  margin: 30px auto;
  box-sizing: border-box;
  height: -webkit-fill-available;
}

.modal .modal-footer {
  border: none;
  padding: 5px 15px 15px;
  justify-content: space-between;
}

.modal .modal-header {
  color: #000;
  border: 0;
  border-radius: 3px 3px 0 0;
}

.modal .modal-footer.custom {
  padding: 0;
}

.modal .modal-footer.custom .left-side,
.modal .modal-footer.custom .right-side {
  display: inline-block;
  text-align: center;
  width: 49%;
}

.modal .modal-footer.custom .divider {
  background-color: #e7eaef;
  display: inline-block;
  float: inherit;
  width: 1px;
  height: 60px;
  margin: 0 -3px;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.modal-header .close {
  font-size: 50px;
  line-height: 12px;
  color: black !important;
  text-shadow: 0 1px 0 #000;
}

.popover {
  border-radius: 0;
}

.progress {
  margin-bottom: 1rem;
  border: 0;
  background: #c7c7c7;
  border-radius: 30px;
}

.progress .progress-bar {
  background-color: #53bf44;
  width: 0%;
}

@keyframes booFloating {
  0% {
    transform: translate3d(0, 0, 0);
  }

  45% {
    transform: translate3d(0, -10%, 0);
  }

  55% {
    transform: translate3d(0, -10%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes booShadow {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.85);
  }

  55% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes booEye {
  40% {
    height: 10px;
  }

  45% {
    height: 2px;
  }

  52% {
    height: 10px;
  }
}

@keyframes booFace {
  20% {
    transform: translateX(-50%);
  }

  23% {
    transform: translate(10px, -10px);
  }

  30% {
    transform: translate(10px, 8px);
  }

  34% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(-50%);
    height: 5px;
  }

  54% {
    transform: translate(-20px, -8px);
    height: 3px;
  }

  58% {
    transform: translate(-10px, -20px);
  }

  60% {
    transform: translate(-10px, -15px);
    height: 3px;
  }

  64% {
    transform: translateX(-50%);
    height: 5px;
  }
}

.boo-container {
  font-family: "Varela Round", sans-serif;
  color: #525252;
  text-align: center;
  font-size: 16px;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.boo-container h1 {
  font-size: 25px;
  margin-top: 30px;
}

.boo-container p {
  margin-top: 10px;
  font-size: 18px;
}

.boo-container .boo {
  width: 160px;
  height: 180px;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  border: 3.3939393939px solid #adadad;
  border-bottom: 0;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
  box-shadow: -16px 0 0 2px rgba(234, 234, 234, 0.1) inset;
  position: relative;
  padding-bottom: 32px;
  animation: booFloating 3s ease-in-out infinite;
}

.boo-container .boo::after {
  content: "";
  display: block;
  position: absolute;
  left: -18px;
  bottom: -9px;
  width: calc(100% + 32px);
  height: 32px;
  transform: scale(1.0001);
  background-repeat: repeat-x;
  background-size: 32px 32px;
  background-position: left bottom;
  background-image: linear-gradient(-45deg, var(--boo-background, --background) 16px, transparent 0),
    linear-gradient(45deg, var(--boo-background, --background) 16px, transparent 0),
    linear-gradient(-45deg, #adadad 18.8235294118px, transparent 0),
    linear-gradient(45deg, #adadad 18.8235294118px, transparent 0);
}

.boo-container .boo .face {
  width: 27px;
  height: 5px;
  border-radius: 5px;
  background-color: #adadad;
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  animation: booFace 30s ease-in-out infinite;
}

.boo-container .boo .face::before,
.boo-container .boo .face::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #adadad;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  transition: height 0.3s ease;
}

.boo-container .boo .face::before {
  left: -20px;
  animation: booEye 6s ease-in-out infinite;
}

.boo-container .boo .face::after {
  right: -20px;
  animation: booEye 6s 50ms ease-in-out infinite;
}

.boo-container .shadow {
  width: 150px;
  height: 16px;
  background-color: rgb(170 170 170 / 30%);
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  animation: booShadow 3s ease-in-out infinite;
}

.modal-footer>.footer-infos {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.modal-footer>.footer-infos>.subtotal {
  font-size: 15px;
  margin-right: 5px;
  text-decoration: line-through;
}

.modal-footer>.footer-infos>.total {
  font-size: 20px;
  font-weight: 700;
}

.swal2-container {
  z-index: 10000 !important;
}

.swal2-validation-message {
  margin-top: 20px;
}

.custom-switch {
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
}

.custom-switch input {
  display: none;
}

.custom-switch label {
  cursor: pointer;
  text-indent: -9999px;
  outline: none;
  width: 50px;
  height: 25px;
  background: #aaa;
  display: block;
  margin: 0px;
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}

.custom-switch label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.custom-switch input:checked+label {
  background: var(--color-tints-20);
  box-shadow: 0 0 8px var(--color-tints-20);
}

.custom-switch input:checked+label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.custom-switch label:active:after {
  width: 25px;
}

button.loading {
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

button.loading>.spinner-border {
  display: block;
}

button>.spinner-border {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  color: white;
  border-width: 3px;
}

.bootstrap-select .dropdown-menu {
  border-radius: 10px;
  border: 0;
  box-shadow: 0px 3px 12px rgb(0 0 0 / 20%);
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
  white-space: normal;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  top: 10px;
}

.dropdown-menu .dropdown-item {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-header-filter-container {
  display: flex;
  white-space: nowrap;
  align-items: center;
}

.tabs>nav {
  display: flex;
  padding: 0 5px;
  position: relative;
  overflow: auto;
}

.tabs>nav::-webkit-scrollbar {
  display: none;
}

.tabs>nav>span {
  color: #aeb0b5;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.tabs>nav>span>i {
  margin-right: 8px;
  font-size: 80%;
  pointer-events: none;
}

.tabs>nav>span:hover {
  color: #242426;
}

.tabs>nav>span.active {
  color: var(--color-tints-20);
}

.tabs>nav:not(.initialized)>span.active {
  padding: 10px 20px 8px;
  border-bottom: 2px solid var(--color-primary);
}

.tabs>nav>span[hidden] {
  display: none;
}

.tabs>nav>span.warning::after {
  content: "!";
  margin-left: 5px;
  display: inline-block;
  color: white;
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  background-color: #ea1d2c;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  flex: none;
}

.tabs>nav>.indicator {
  position: absolute;
  bottom: 0px;
  height: 2px;
  left: 0px;
  width: 0px;
  background-color: var(--color-tints-20);
  transition: 0.3s;
}

.tabs>main {
  display: flex;
  position: relative;
  overflow: hidden;
  height: calc(100% - 61px - 38px);
}

.tabs>main>* {
  display: none;
  flex-direction: column;
  padding: 5px;
}

.tabs>main>*.show {
  display: flex;
  flex: 1;
}

.options-btn {
  display: flex;
  flex-direction: column;
  position: relative;
  height: fit-content;
}

.options-btn>img {
  cursor: pointer;
  z-index: 11;
}

.options-btn.show>div {
  display: flex;
}

.options-btn>div {
  display: none;
  position: absolute;
  right: 25px;
  z-index: 100;
  transform: translateY(-50%);
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.options-btn>div>div {
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 2px 0 10px lightgrey;
  border-radius: 5px;
  padding: 5px 3px;
}

.options-btn>div>div>span {
  display: flex;
  align-items: center;
  margin: 3px 0;
  padding: 5px 10px;
  user-select: none;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 10px;
}

.options-btn>div>div>span:hover {
  background-color: rgba(183, 183, 183, 0.4);
}

.options-btn>div>div>span.delete:hover {
  color: white;
  background-color: #f85252;
}

.options-btn>div>div>span>i {
  margin-right: 5px;
  font-size: 18px;
}

.quantity_selector {
  position: relative;
  height: 44px;
  background-color: #e5e5e5;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity_selector>input {
  position: absolute;
  opacity: 0;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.quantity_selector>div.value {
  color: #393939;
  font-size: 16px;
  cursor: default;
  border-radius: 0px;
}

.quantity_selector>div.value>input {
  background-color: #e5e5e5 !important;
  border: none;
  border-radius: 0px;
  text-align: center;
}

.quantity_selector>div.value>input::-webkit-outer-spin-button,
.quantity_selector>div.value>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity_selector>div.value>input:focus-visible {
  outline: none;
}

.quantity_selector>div {
  padding: 0 16px;
  font-size: 18px;
  color: var(--color-primary);
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: 0.3s;
}

.quantity_selector>.value {
  padding: 0 4px;
  min-width: 35px;
}

.quantity_selector>.remove.trash-color {
  color: #ef5f6d;
}

.quantity_selector>.remove.hide {
  opacity: 0.3;
}

.quantity_selector>div.hide,
.quantity_selector[disabled] {
  filter: grayscale(1);
  pointer-events: none;
}

.quantity_selector>div>i {
  font-weight: bold;
}

.radio-check {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 15px;
  line-height: 18px;
  user-select: none;
}

.radio-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #d4d4d4;
  border-radius: 50%;
}

.radio-check:hover input~.checkmark {
  background-color: #ccc;
}

.radio-check input:checked~.checkmark {
  background-color: var(--color-tints-20);
}

.radio-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-check input:checked~.checkmark:after {
  display: block;
}

.radio-check .checkmark:after {
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: white;
}

.labelled_input {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 10px;
  font-size: 16px;
  line-height: 16px;
  outline: none;
  resize: none;
  user-select: none;
  background-color: #dfdfdf;
  color: #3e3e3e;
  margin: 0;
  transition: border 0.3s;
}

.labelled_input:hover {
  border-color: #858585;
}

.labelled_input:focus-within {
  border-color: var(--color-tints-20);
}

.labelled_input.is-invalid {
  border-color: var(--red) !important;
  pointer-events: all;
}

.labelled_input>input {
  border: none !important;
  background-color: transparent;
  width: 100%;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--font-color);
  outline: none;
}

.labelled_input>input::-webkit-outer-spin-button,
.labelled_input>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.labelled_input>span {
  margin-right: 5px;
}

.sortable-chosen.sortable-ghost {
  opacity: 0;
}

.switch_enable {
  position: relative;
  display: flex;
  margin-right: 15px;
  color: #808080;
  background-color: #f2f2f2;
  border: 1px solid rgba(149, 149, 149, 0.3);
  border-radius: 30px;
  user-select: none;
}

.switch_enable.disabled {
  user-select: none;
  pointer-events: none;
}

.switch_enable.skeleton>span {
  color: transparent !important;
}

.switch_enable>span {
  padding: 5px 12px;
  cursor: pointer;
  transition: 0.5s ease;
  z-index: 1;
}

.switch_enable>div.indicator {
  position: absolute;
  border-radius: 30px;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  transition: 0.3s ease;
}

.switch_enable>input:not(:checked)+div {
  background-color: #c93f29;
  box-shadow: 0 0 7px #c93f29;
}

.switch_enable>input:checked+div {
  background-color: var(--color-tints-20);
  box-shadow: 0 0 7px var(--color-tints-20);
  left: 100%;
  transform: translateX(-100%);
}

.switch_enable>input:not(:checked)+div+span.off {
  color: white;
}

.switch_enable>input:checked+div+span+span.on {
  color: white;
}

td>.switch_enable {
  margin: 0 auto;
  width: fit-content;
}

.platforms-button {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #e5e5e5;
  min-width: 180px;
  height: 60px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.platforms-button>input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  left: 50%;
  top: 90%;
}

.platforms-button.selected:hover {
  background-color: rgba(189, 239, 99, 0.3) !important;
  box-shadow: 0 1px 10px rgba(190, 243, 96, 0.4) !important;
}

.platforms-button:hover {
  background-color: rgba(228, 87, 87, 0.369) !important;
  box-shadow: 0 1px 10px rgba(238, 91, 91, 0.4) !important;
}

.platforms-button>span {
  font-size: 20px;
  margin: 0;
}

.platforms-button>div {
  height: 40px;
  width: 40px;
  margin-left: 10px;
  -webkit-mask: url(/images/cross.svg);
  background-color: #e9526a;
  background-size: cover;
  transition: 0.3s;
}

.platforms-button.selected>div {
  -webkit-mask: url(/images/check.svg);
  background-color: var(--color-primary);
}

.hidden {
  display: none !important;
}

.image-selector {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  border-radius: 5px;
}

.image-selector .list-images .image-selected {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  margin: 0 10px 20px 0;
  border-radius: 10px;
  border: 2px dashed lightgray;
  user-select: none;
  transition: 0.2s;
}

.image-selector .list-images .image-selected img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
  cursor: pointer;
}

.image-selector .list-images .image-selected img:hover {
  opacity: 0.7;
}

.image-selector .list-images .image-selected>button {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  border: none;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 5px #b7b7b7;
  transition: background-color 0.3s ease, opacity 0.2s;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.image-selector .list-images .image-selected:hover button {
  opacity: 1;
  pointer-events: auto;
}

.image-selector .containerAdd {
  display: flex;
  flex-direction: column;
}

.image-selector .containerAdd .add {
  flex: none;
  width: 80px;
  height: 80px;
  border: 2px dashed #b9b9b9;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  margin: 0px 10px 20px 0px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.image-selector .containerAdd .add:hover {
  background-color: rgba(150, 198, 61, 0.15);
}

.image-selector .containerAdd .add i {
  padding: 7px;
  margin-bottom: 4px;
  background-color: var(--color-tints-20);
  border-radius: 50%;
  box-shadow: 0 1px 6px var(--color-tints-20);
  font-size: 18px;
  color: white;
  font-weight: bold;
  width: 30px;
  height: 30px;
}

.image-selector .containerAdd .add span {
  font-size: 13px;
  line-height: 15px;
  font-weight: bold;
  color: var(--color-tints-20);
  margin: 0;
}


.form-image-selector {
  padding: 5px 10px;
  background: #efefef;
  border-radius: 10px;
  color: black;
  font-size: 18px;
  user-select: none;
  cursor: pointer;
}

.form-image-selector>img {
  max-width: 100px;
  height: 50px;
  border-radius: 10px;
  margin-right: 15px;
}

.form-image-selector>img.selected {
  border: 1px dashed gray;
}

.switch-box {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: black;
  border: 1px solid #d5d5d5;
  font-size: 18px;
  user-select: none;
  gap: 30px;
  cursor: pointer;
}

.switch-box>.infos {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.switch-box>.infos>.title {
  font-size: 16px;
  line-height: 17px;
}

.switch-box>.infos>.description {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: gray;
}

.bootstrap-select>.dropdown-toggle {
  border: 1px solid transparent;
  background-color: #dfdfdf;
  padding: 11px 15px;
  font-size: 16px;
  line-height: 17px;
}

.bootstrap-select>.dropdown-toggle:hover {
  border-color: #858585;
}

.bootstrap-select.show>.dropdown-toggle {
  border-color: var(--color-primary);
}

.content-column .input-color {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  width: 100%;
  height: 37px;
  padding: 0;
  border-radius: 10px;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 0 0 1px #cecece;
  cursor: pointer;
  overflow: hidden;
  margin: 1px;
}

.content-column .input-color::-webkit-color-swatch-wrapper {
  padding: 0;
}

.content-column .input-color::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

.content-column .input-color::after {
  display: block;
  position: absolute;
  content: attr(placeholder);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.max-results {
  margin: 10px 25px;
  color: gray;
  display: block;
  width: fit-content;
}

.date-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 15px;
}

.filter-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  height: auto;
  cursor: pointer;
  padding: 7px 10px;
}

.filter-date>.title {
  color: #686868;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 14px;
}

.filter-date>input {
  background: transparent;
  border: none;
  color: black;
  outline: none;
  cursor: pointer;
  font-size: 15px;
}

.competition-graph {
  position: relative;
  padding: 10px;
  min-height: 100px;
  background: #f2f2f2;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.competition-graph>p {
  margin: 5px 5px 10px;
  line-height: 100%;
  font-size: 15px;
  color: #777b82;
}

.competition-graph>main {
  display: flex;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.competition-graph>main>div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  min-width: fit-content;
  transition: width 1s ease-in-out;
}

.competition-graph>main>div.accepted,
.competition-graph>footer>div.accepted>div {
  background-color: #53bf44;
}

.competition-graph>main>div.refused,
.competition-graph>footer>div.refused>div {
  background-color: #f76464;
}

.competition-graph>main>div.delivery,
.competition-graph>footer>div.delivery>div {
  background-color: #4486bf;
}

.competition-graph>main>div.withdrawn,
.competition-graph>footer>div.withdrawn>div {
  background-color: #9f64f7;
}

.competition-graph>footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}

.competition-graph>footer>div {
  display: flex;
}

.competition-graph>footer>div>div {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
}

.competition-graph>footer>div>span {
  font-size: 13px;
  line-height: 15px;
  margin-left: 5px;
}

.card.is_skeleton {
  overflow: hidden !important;
}

.labelled_input.discount_input>input {
  width: 100%;
}

.labelled_input.discount_input>span {
  flex: none;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s ease;
}

.labelled_input.discount_input:not(.currency)>.money,
.labelled_input.discount_input.currency>.percentage {
  color: gray;
  opacity: 0.5;
  width: 0px !important;
  margin: 0 !important;
}

.labelled_input.discount_input>span:hover {
  color: var(--color-primary);
}

.payment-buttons-container {
  position: relative;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .payment-buttons-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.payment-buttons-container>label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 15px;
  border: solid 1px #d9d9d9;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
  flex: 1;
}

.payment-buttons-container>label[disabled] {
  pointer-events: none;
  opacity: 0.4;
}

.payment-buttons-container>label>input[type="checkbox"] {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
}

.payment-buttons-container>label:hover {
  background-color: var(--color-tints-40);
}

.payment-buttons-container>label.active {
  border: solid 1px var(--color-tints-40);
  background-color: #8deb8d1a;
}

.payment-buttons-container>label>img {
  width: 24px;
  margin-right: 14px;
}

.payment-buttons-container>label>span,
.payment-buttons-container>label>.infos>.title {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
}

.payment-buttons-container>label>.infos {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.payment-buttons-container>label>.infos>.subtitle {
  flex: 1;
  font-size: 11.5px;
  font-weight: 300;
  color: #6e6e6e;
}

.payment-buttons-container>label>.check {
  opacity: 0;
  width: 17px;
  height: 17px;
  margin-left: 15px;
  background-color: var(--color-tints-20);
  transition: 0.3s;
  -webkit-mask: url(/images/check.svg) no-repeat 50% 50%;
}

.payment-buttons-container>label.active>.check {
  opacity: 1;
}

.simple-modal {
  display: flex;
  position: fixed;
  top: var(--titlebar-height, 0px);
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  padding: 40px;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.simple-modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

@keyframes simple-modal-show {
  from {
    transform: scale(0.8) translateY(-40px);
  }

  to {
    transform: scale(1) translateY(0px);
  }
}

@keyframes simple-modal-hide {
  from {
    transform: scale(1) translateY(0px);
  }

  to {
    transform: scale(0.8) translateY(-40px);
  }
}

.simple-modal.disabled>div * {
  pointer-events: none;
}

.simple-modal>div {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px #3f3f3f99;
  animation: simple-modal-hide 0.3s ease;
}

.simple-modal.show>div {
  animation: simple-modal-show 0.3s ease;
}

.simple-modal.loading * {
  pointer-events: none !important;
  user-select: none !important;
}

#whats-new-modal,
#gift-box-modal {
  z-index: 4000;
  background-color: rgba(0, 0, 0, 0.8) !important;
}

#gift-box-modal {
  z-index: 11000;
}

#whats-new-modal>div,
#gift-box-modal>div {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(197, 197, 197, 0.4);
  max-width: 90%;
  max-height: 90%;
  width: 450px;
  height: 750px;
  transition: transform 0.3s;
}

#gift-box-modal>div.gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 40px;
  width: 450px;
  height: 230px;
  overflow: inherit;
  display: flex;
  transform: translateY(150px);
  border-radius: 20px;
  text-align: center;
}

#gift-box-modal>.gift>.box {
  width: 200px;
  height: 250px;
  position: absolute;
  bottom: 170px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transform-origin: center bottom;
  cursor: help;
  z-index: 1;
}

@keyframes box-bounce {
  from {
    transform: translateX(-50%) translateY(0px);
  }

  to {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes box-shimming {
  from {
    transform: translateY(-52px) rotate(-1deg);
  }

  to {
    transform: translateY(-52px) rotate(1deg);
  }
}

@keyframes paper-bounce {
  from {
    transform: translate(70px, 105px) skewX(-10deg) rotate(-10deg);
  }

  to {
    transform: translate(70px, 100px) skewX(-10deg) rotate(-10deg);
  }
}

@keyframes box-open {
  from {
    transform: translateY(150px);
    opacity: 1;
  }

  to {
    transform: translateY(200px);
    opacity: 0;
  }
}

@keyframes box-top-open {
  from {
    transform: translateY(-52px);
  }

  to {
    transform: translateY(-100px) scale(1.5);
  }
}

@keyframes box-bottom-open {
  from {
    transform: translateY(52px);
  }

  to {
    transform: translateY(200px) scale(1.5);
  }
}

#gift-box-modal>.gift>.box:active {
  zoom: 1.01;
}

#gift-box-modal>.gift>.box:hover,
#gift-box-modal>.gift.opening>.box {
  animation: box-bounce 0.5s ease alternate infinite;
}

#gift-box-modal>.gift>.box:hover>.paper,
#gift-box-modal>.gift.opening>.box>.paper {
  animation: paper-bounce 0.5s ease alternate infinite;
}

#gift-box-modal>.gift>.box:hover>.top,
#gift-box-modal>.gift.opening>.box>.top {
  animation: box-shimming 0.3s linear alternate infinite;
}

#gift-box-modal>.gift.open {
  animation: box-open 0.5s linear forwards;
}

#gift-box-modal>.gift.open>.box>.top {
  animation: box-top-open 0.6s linear;
}

#gift-box-modal>.gift.open>.box>.bottom {
  animation: box-bottom-open 0.6s linear;
}

#gift-box-modal>.gift>.box>.top {
  height: 158px;
  position: absolute;
  transform: translateY(-52px);
  transform-origin: center bottom;
  z-index: 1;
}

#gift-box-modal>.gift>.box>.bottom {
  height: 175px;
  position: absolute;
  transform: translateY(52px);
}

#gift-box-modal>.gift>.background {
  width: 450px;
  height: 450px;
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

#gift-box-modal>.gift>.box>.paper {
  z-index: 1;
  background-color: whitesmoke;
  color: black;
  border-radius: 5px;
  padding: 5px 7px;
  font-size: 10px;
  line-height: 11px;
  max-width: 95px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: absolute;
  transform: translate(70px, 100px) skewX(-10deg) rotate(-10deg);
  user-select: none;
  z-index: 1;
}

#gift-box-modal>.gift>.title {
  font-weight: 700;
  font-size: 28px;
}

@keyframes instructions-bounce {
  from {
    font-weight: 500;
    transform: scale(1);
    opacity: 0.8;
  }

  to {
    font-weight: 500;
    transform: scale(1.1);
    opacity: 1;
  }
}

#gift-box-modal>.gift>.instructions {
  margin-top: auto;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 200;
  letter-spacing: 1px;
  animation: instructions-bounce 0.5s 4s ease infinite alternate;
}

@keyframes gift-details-show {
  from {
    transform: scale(0.8) translateY(15px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

#gift-box-modal>div.details {
  display: flex;
  flex-direction: column;
  width: 800px;
  max-height: 95%;
  height: auto;
  animation: gift-details-show 1s ease;
  overflow-y: auto;
}

#whats-new-modal>div>.content::-webkit-scrollbar {
  width: 4px;
}

#whats-new-modal>div>.content::-webkit-scrollbar-thumb {
  background: #808080aa;
}

#whats-new-modal>div>.content>.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: -255px;
  margin: 0 -10px;
  background-color: white;
  z-index: 10;
  padding-bottom: 10px;
  border-bottom: 1px solid #80808014;
}

@keyframes delay-show-close-btn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

#whats-new-modal>div>button.close,
#gift-box-modal>div>button.close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 35px;
  height: 35px;
  border-radius: 30px;
  border: none;
  font-size: 22px;
  line-height: 19px;
  color: #3c3c3c;
  background-color: #d3d3d3e3;
  visibility: hidden;
  animation: delay-show-close-btn 1s 3s forwards;
  z-index: 11;
}

#gift-box-modal>div>.banner {
  position: relative;
  height: 300px;
}

#gift-box-modal>div>.banner:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background-image: url(/images/whats-new/banner.jpg?c=2);
  background-size: 800px;
  background-position: center;
  filter: blur(15px);
}

#gift-box-modal>div>.banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/images/whats-new/banner.jpg);
  background-size: 800px;
  background-position: center;
}

#gift-box-modal>div>video {
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 10px var(--background);
}

#gift-box-modal>div>.infos {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
  padding: 50px 20px 20px;
  text-align: center;
}

#gift-box-modal>div>.infos>.background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  filter: blur(20px);
  opacity: 0.15;
  background-image: url(/images/whats-new/banner.jpg);
  background-position: bottom;
  height: calc(100% + 30px);
}

#gift-box-modal>div>.infos>h3,
#gift-box-modal>div>.infos>span,
#gift-box-modal>div>.infos>button {
  z-index: 1;
}

#gift-box-modal>div>.infos>h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#gift-box-modal>div>.infos>h3>span {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
}

#gift-box-modal>div>.infos>span {
  font-size: 18px;
}

#gift-box-modal>div>.infos>button {
  padding: 8px 20px;
  border-radius: 10px;
  line-height: 20px;
  border: 2px solid var(--color-primary);
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--color-primary);
  margin-top: 20px;
  user-select: none;
  opacity: 0.8;
}

#gift-box-modal>div>.powered-by {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  width: 150px;
  line-height: 23px;
  color: white;
  text-shadow: 0 0 20px black;
}

#gift-box-modal>div>.powered-by>img {
  width: 50px;
  height: 50px;
  flex: none;
}

#gift-box-modal>div>.another-products {
  display: flex;
  flex: 1 100px;
  border-top: 1px solid #80808045;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

#gift-box-modal>div>.another-products>div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #80808045;
}

#gift-box-modal>div>.another-products>div>img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

#gift-box-modal>div>.another-products>div>div {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  flex: 1;
}

#gift-box-modal>div>.another-products>div>div>.title {
  font-weight: 600;
  font-size: 19px;
  line-height: 20px;
}

#gift-box-modal>div>.another-products>div>div>.description {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  opacity: 0.8;
}

#gift-box-modal>div>.another-products>div>div>a {
  background: var(--color-primary);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
  transition: transform 0.3s ease;
}

#gift-box-modal>div>.another-products>div>div>a:hover {
  transform: translateY(-5px);
}

#whats-new-modal>div>.content>.header>.picture {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #7878781a;
  margin: -15px -5px 0;
  width: calc(100% + 10px);
}

#whats-new-modal>div>.content>.header>.picture>img {
  width: 100%;
  height: 350px;
  pointer-events: none;
}

#whats-new-modal>div>.content>.header>.title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

#whats-new-modal>div>.content>.header>.date {
  font-size: 12px;
  color: gray;
}

#whats-new-modal>div>.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 15px 30px 15px;
  overflow: hidden;
  overflow-y: auto;
  overflow-y: overlay;
}

#whats-new-modal>div>.content>.start-section {
  display: flex;
  align-items: center;
  flex: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
}

#whats-new-modal>div>.content>.start-section::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: var(--color-primary);
  margin-left: 15px;
}

#whats-new-modal>div>.content>.banner {
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px #0000004a;
  flex: none;
}

#whats-new-modal>div>.content>.section {
  display: flex;
  gap: 10px;
}

#whats-new-modal>div>.content>.section>.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  width: 28px;
  height: 28px;
  flex: 0;
  font-size: 24px;
}

#whats-new-modal>div>.content>.section>.icon>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#whats-new-modal>div>.content>.section>.infos {
  display: flex;
  flex-direction: column;
}

#whats-new-modal>div>.content>.section>.infos>.title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

#whats-new-modal>div>.content>.section>.infos>.title>.badge {
  position: relative;
  top: -1px;
  background-color: var(--color-primary);
  padding: 4px 5px;
  color: var(--background);
  font-size: 13px;
}

#whats-new-modal>div>.content>.section>.infos>.description {
  opacity: 0.7;
  font-size: 13.5px;
}

#whats-new-modal>div>.content>.section>.infos>li.description {
  margin-bottom: 8px;
}

#whats-new-modal>div>.footer {
  display: flex;
  padding: 10px 15px;
  border-top: 1px solid #7c7c7c6b;
}

#whats-new-modal>div>.footer>button {
  flex: 1;
  font-size: 16px;
  border-radius: 8px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 600;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#whats-new-modal>canvas,
#gift-box-modal>canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  pointer-events: none;
}

.mapboxgl-ctrl-logo {
  display: none !important;
}

.mapboxgl-canvas {
  outline: none;
}

@media (max-width: 767px) {

  #whats-new-modal,
  #gift-box-modal {
    padding: 0;
  }

  #whats-new-modal>div,
  #gift-box-modal>div,
  #gift-box-modal>div.details {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  #gift-box-modal>div>.qrcode {
    height: 400px;
  }
}

.simple-modal .simple-modal-header>.title {
  margin-right: auto;
}

.simple-modal .simple-modal-header {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.simple-modal .simple-modal-header>.title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.content-column {
  display: flex;
  padding: 15px 25px;
  flex-direction: column;
  max-width: 1080px;
  margin: 0 auto;
  gap: 20px;
}

.content-column>.header>h2 {
  font-size: 30px;
  line-height: 30px;
  color: #525558;
}

.content-column>.header>p {
  font-size: 17px;
  line-height: 17px;
  margin: 0;
  color: #7f8f9f;
}

.content-column>.tabs {
  width: 100%;
}

.content-column>.tabs>nav>.indicator {
  background-color: var(--color-tints-20);
}

.content-column>.tabs>nav {
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
}

.content-column>main,
.content-column>.tabs>main {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  padding-bottom: 20px;
}

.content-column>.tabs>main {
  margin-top: 20px;
}

.content-column>.tabs>main>* {
  padding: 0;
  overflow: hidden;
}

.content-column>main .section,
.content-column>.tabs>main .section {
  display: flex;
  flex-direction: column;
}

.content-column>main .section>.header,
.content-column>.tabs>main .section>.header {
  display: flex;
  border-bottom: 1px solid #d5d5d5;
  padding: 20px;
  font-size: 13px;
  color: #747a82;
  text-transform: uppercase;
  font-weight: bold;
}

.content-column>main .section:not(:first-child)>.header,
.content-column>.tabs>main .section:not(:first-child)>.header {
  border-top: 1px solid #d5d5d5;
}

.content-column>.tabs>main .section>.header>span {
  display: block;
  width: fit-content;
}

.content-column .section>.content {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.content-column .section>.content>.two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(250px, 100%/2), 1fr));
}

.content-column .section>.content .toggle-option,
.content-column .section>.content .input-option {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  min-width: 250px;
  transition: opacity 0.3s ease;
}

.content-column .section>.content .toggle-option.disabled,
.content-column .section>.content .input-option.disabled,
.content-column .section>.content .qrcode-export-container.disabled,
.content-column .section.disabled>.content {
  opacity: 0.2;
  user-select: none;
  pointer-events: none;
}

.content-column .section>.content .qrcode_confirm>.alert-message {
  font-size: 15px;
  color: black;
  background-color: var(--warning);
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.content-column .section>.content .qrcode_confirm>.alert-message.danger {
  color: white;
  background-color: var(--danger);
}

.content-column .section>.content .qrcode_confirm>.alert-message>i {
  font-size: 24px;
}

.content-column .section>.content .toggle-option.disabled .custom-switch input:checked+label {
  background: #aaa !important;
  box-shadow: none !important;
}

.content-column .section>.content .toggle-option.disabled .custom-switch input:checked+label:after {
  left: 5px !important;
  transform: none !important;
}

.content-column .section>.content .toggle-option>.title,
.content-column .section>.content .input-option>.title {
  font-size: 18px;
  margin-bottom: 4px;
}

.content-column .section>.content .toggle-option>.description,
.content-column .section>.content .input-option>.description {
  font-size: 13px;
  color: #b3b4b5;
  padding-bottom: 15px;
  margin-bottom: auto;
}

.content-column .section>.content .input-option>.description>span {
  color: white;
}

.content-column .section>.content .toggle-option>.switch {
  display: flex;
  align-items: center;
  gap: 15px;
}

.content-column .section>.content .toggle-option>.switch>span {
  font-size: 15px;
  font-weight: bold;
  color: #636363;
  line-height: 13px;
}

.radio-checkmark {
  display: flex;
  align-items: center;
  user-select: none;
  gap: 10px;
}

.radio-checkmark>.checkmark {
  cursor: pointer;
}

.radio-checkmark>.checkmark>input {
  position: absolute;
  opacity: 0;
}

.radio-checkmark>.checkmark>span {
  position: relative;
  height: 25px;
  width: 25px;
  background-color: rgba(118, 118, 118, 0.2);
  border-radius: 50%;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-checkmark>.checkmark>span:after {
  content: "";
  position: absolute;
  display: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
  animation: radio-checkmark-show 0.3s;
}

@keyframes radio-checkmark-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.radio-checkmark>.checkmark>input:checked+span {
  background-color: var(--color-tints-20);
  box-shadow: 0 0 5px var(--color-tints-20);
}

.radio-checkmark>.checkmark>input:checked+span:after {
  display: block;
}

.time-input {
  display: flex;
  align-items: center;
  border: 1px solid #80808062;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 2px;
  height: 31px;
  background-color: white;
  cursor: text;
  font-size: 15px;
  margin: 0;
  font-weight: normal;
}

.time-input.error {
  border-color: #bb0000;
  box-shadow: 0 0 5px #bb00004a;
}

.time-input>input {
  border: none;
  padding: 0;
  outline: none;
  padding: 5px 5px 1px;
  text-align: center;
  width: 30px;
  border-bottom: 1px solid #80808015;
  margin: 2px 5px 4px 5px;
  background-color: transparent;
  -moz-appearance: textfield;
}

.time-input>input::-webkit-outer-spin-button,
.time-input>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.time-input>span {
  font-weight: bold;
}

#qrcode-print {
  width: 0px;
  height: 0px;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  position: absolute;
}

#eula-modal {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  z-index: 1050;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, z-index 0.3s;
}

#eula-modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

#eula-modal>div {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  max-width: 600px;
  max-height: 80%;
  width: 600px;
  margin: 15px;
  background-color: white;
  box-shadow: 0 4px 15px rgb(210 210 210 / 40%);
  transform: scale(0.8) translateY(-40px);
  transition: transform 0.3s;
}

#eula-modal.show>div {
  transform: scale(1) translateY(0px);
}

#eula-modal>div>.header {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#eula-modal>div>.header>button {
  font-size: 22px;
  line-height: 24px;
  border: none;
  background: no-repeat;
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: -6px;
  color: inherit;
}

#eula-modal>div>.header>h3 {
  margin: 0;
  font-size: 20px;
}

#eula-modal>div>.content {
  padding: 10px 15px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
  overflow-y: overlay;
  letter-spacing: 0.2px;
  font-weight: 400;
  box-shadow: inset 0px 10px 10px #ffffff, inset 0px -10px 10px #ffffff;
}

#eula-modal>div>.content p {
  margin: 0;
}

#eula-modal>div>.footer {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

#eula-modal>div>.footer>.already-agree>i {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: white;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  cursor: not-allowed;
}

#eula-modal>div>.footer>.control-checkbox {
  max-width: 300px;
  padding-left: 32px;
}

#eula-modal>div>.footer>.control-checkbox input {
  left: 4px;
  top: 7px;
}

#eula-modal>div>.footer>button {
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  background: linear-gradient(45deg, var(--color-primary), var(--color-tints-20));
  cursor: pointer;
  width: 130px;
}

#eula-modal>div>.footer>button>span {
  display: flex;
  align-items: center;
  font-size: 17px;
  gap: 8px;
}

#eula-modal>div>.footer>button>.loading_indicator {
  display: none;
  margin: auto;
  font-size: 2px;
}

#eula-modal.loading>div {
  pointer-events: none;
}

#eula-modal.loading>div>.footer>button>.loading_indicator {
  display: block;
}

#eula-modal.loading>div>.footer>button>span {
  display: none;
}

@media (max-width: 500px) {
  #eula-modal>div {
    margin: 0;
    padding-top: 30px;
    border-radius: 0;
    max-height: 100%;
    height: 100%;
  }
}

.swal2-popup {
  width: inherit !important;
  min-width: 300px !important;
  border-radius: 10px !important;
  max-width: 32em !important;
}

.swal2-icon {
  margin: 25px auto 15px !important;
}

.swal2-title {
  font-size: 25px !important;
}

.swal2-actions:not(.swal2-loading) button.swal2-styled {
  font-size: 18px;
  line-height: 22px;
  border-radius: 10px;
  padding: 12px 30px;
}

.swal2-input {
  border-radius: 10px;
  color: var(--font-color);
  font-size: 18px;
}

.swal2-reset-password {
  border: 3px solid var(--danger);
}

.swal2-reset-password .swal2-confirm {
  font-size: 18px !important;
}

.swal2-reset-password .swal2-icon,
.swal2-reset-password .swal2-title {
  border-color: var(--danger);
  color: var(--danger) !important;
}

.swal2-support-warn {
  border: 3px solid var(--color-shader-20);
}

.swal2-support-warn .swal2-confirm {
  font-size: 18px !important;
}

.swal2-support-warn .swal2-icon,
.swal2-support-warn .swal2-title {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
}

.swal2-support-warn a {
  color: var(--color-primary);
}

.swal2-styled:focus {
  box-shadow: none !important;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step,
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line {
  background: var(--color-tints-60) !important;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step,
.swal2-progress-steps .swal2-progress-step,
.swal2-progress-steps .swal2-progress-step-line,
.swal2-styled.swal2-confirm {
  background: var(--color-primary) !important;
}

.swal2-loader {
  border-color: var(--color-primary) rgba(0, 0, 0, 0) !important;
}

#body>main .wpp-disconnected {
  display: none;
  background-color: red;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 22px;
  color: white;
}

body.wpp-disconnected .wpp-disconnected {
  display: block !important;
}

body.wpp-disconnected .disabled-wpp-disconnected {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}

#company-selector-modal {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  z-index: 1050;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, z-index 0.3s;
}

#company-selector-modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

#company-selector-modal>div {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  overflow-y: overlay;
  max-width: 770px;
  max-height: 700px;
  margin: 15px;
  background-color: white;
  transform: scale(0.8) translateY(-20px);
  transition: transform 0.3s;
}

#company-selector-modal.show>div {
  transform: scale(1) translateY(0px);
}

#company-selector-modal>div>header {
  display: flex;
  justify-content: space-between;
  position: sticky;
  gap: 15px;
  top: 0;
  z-index: 10;
  background-color: white;
  padding: 20px 40px;
}

#company-selector-modal>div>header>.left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

#company-selector-modal>div>header>.left>.welcome {
  font-size: 16px;
  font-weight: 300;
}

#company-selector-modal>div>header>.left>.title {
  font-size: 19px;
  font-weight: 600;
}

#company-selector-modal>div>header>.close {
  border: none;
  background: none;
  font-size: 23px;
  cursor: pointer;
  padding: 5px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

#company-selector-modal>div>header>.close:hover {
  color: var(--color-primary);
}

#company-selector-modal>div>main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px 40px 40px;
}

#company-selector-modal>div>main>div {
  position: relative;
  border: 2px solid #c5c5c5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: 210px;
  height: 210px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.3s ease;
}

#company-selector-modal>div>main>div:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

#company-selector-modal>div>main>div>img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

#company-selector-modal>div>main>div>div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 10px 8px;
  background: linear-gradient(to bottom, transparent, #ffffffe8 45%);
}

#company-selector-modal>div>main>div>div>.name {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.bootstrap-select .dropdown-toggle .filter-option {
  max-width: 247px;
}