@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

::-moz-selection {
  color: #fff;
  background: var(--button-bg);
}

::selection {
  color: #fff;
  background: var(--button-bg);
}

body.darkmode ::-moz-selection {
  color: var(--button-bg);
  background: #fff;
}

body.darkmode ::selection {
  color: var(--button-bg);
  background: #fff;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-table;
}

.hidden {
  display: none;
}

/* Hides from IE-mac */

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-transition: all 0.06s linear;
  -moz-transition: all 0.06s linear;
  -o-transition: all 0.06s linear;
  transition: all 0.06s linear;
  caret-color: transparent;
}

body {
  min-height: 100vh;
  float: none;
  position: relative;
  padding: 0;
  margin: 0;
  color: #434343;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  overscroll-behavior: auto;
  overflow-x: hidden;
  background-color: var(--body-bg-light);
  -webkit-overflow-scrolling: touch;
}

body.app * {
  font-family: "Montserrat", sans-serif;
}

body.lp * {
  font-family: "Montserrat Alternates", sans-serif;
}

body.darkmode {
  background-color: var(--body-bg);
}

/* ------------------------------------------------------------------------------------------ */
/* Carousel --------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

.carousel {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: var(--default-border-radius);
  overflow: hidden;
}

.carousel-items {
  display: flex;
  flex-wrap: nowrap;
}

.carouselItem {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border: 1px solid #8097bd;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

body.darkmode .carouselItem {
  border: 1px solid #8097bd;
}

.carouselItem.active {
  pointer-events: all;
  opacity: 1;
}

.carouselItem .bg {
  position: absolute;
  content: '';
  height: inherit;
  width: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.carouselContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: rgba(58, 79, 112, 0.85);
  padding: 24px 44px;
}

.bp .carouselContent {
  background: linear-gradient(90deg, rgba(116, 158, 73, 1) 0%, rgba(116, 158, 73, 0.91) 50%, rgba(116, 158, 73, 0.72) 100%);
}

.carouselContent h3 {
  font-size: 32px;
}

.carouselContent p {
  text-align: left !important;
}

.carousel-indicators {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 512px;
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 0 5px 0 5px;
  margin-top: 12px;
  margin-left: 12px;
  z-index: 4;
  gap: 8px;
}

.indicator {
  position: relative;
  display: flex;
  align-items: center;
  height: 16px;
  width: 100%;
  cursor: pointer;
}

.indicator::after {
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #BAC6DB;
  border-radius: var(--default-border-radius);
}

.indicator.active::after {
  background-color: var(--button-bg);
}

.carouselItem img {
  max-width: 100%;
  height: auto;
}

.carouselItem h3 {
  color: #fff;
}

.carouselItem .post {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  width: 100%;
  max-width: 620px;
  color: #fff;
}

.carouselItem .link {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

@media only all and (max-width: 1024px) {
  .carouselContent {
    background: rgba(58, 79, 112, 0.85);
  }
}

@media only all and (max-width: 620px) {
  .carousel-indicators {
    max-width: calc(100% - 12px - 12px);
  }
}

/* ------------------------------------------------------------------------------------------ */
/* Texts ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

h1 {
  width: 179px;
  height: 46px;
  background-image: url('../assets/logos/optipet_alt_color_2.svg');
  background-size: cover;
  background-repeat: no-repeat;
  color: transparent;
}

h1.natal {
  background-image: url('../assets/logos/optipet_alt_color_2_natal.png');
}

a {
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
}

p {
  font-size: 16px;
  color: #4d4d4d;
  font-family: "Montserrat", sans-serif !important;
}

.barcode {
  font-family: "Libre Barcode 128", system-ui !important;
  font-size: 32px !important;
  line-height: 12px;
  padding-top: 14px;
}

body.darkmode p {
  color: #fff;
}

h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 32px;
  line-height: 44px;
  color: var(--button-bg);
  font-weight: 600;
  text-align: center;
}

body.darkmode h2 {
  color: #fff;
}

h2 img {
  margin: 0 16px 0 0;
}

h3 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: var(--button-bg);
  font-weight: 700;
}

h4 {
  font-weight: 600;
  font-size: 16px;
  color: var(--button-bg);
}

body.darkmode h3,
body.darkmode h4 {
  color: #fff;
}

h4 {
  font-size: 16px;
  font-weight: 400;
}

header {
  font-size: 54px;
  text-align: center;
  margin-bottom: 64px;
  color: #314a63;
}

body.darkmode header {
  color: #fff;
}

body.darkmode div {
  color: #fff;
}

.form_warning_big {
  display: flex;
  width: 100%;
  max-width: 764px;
  font-size: 16px;
  border-radius: var(--default-border-radius);
  padding: 16px;
  border: 1px solid #C52929;
  grid-column: 1 / span 2;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
  border: 1px solid #314a63;
  gap: 8px;
}

.form_warning_big p {
  color: #314a63;
}

body.darkmode .form_warning_big p {
  color: #314a63;
}

.form_warning_big a {
  text-decoration: underline;
}

.valueList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 10px;
}

.valueList .value,
.valueList li {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  list-style-type: none;
  background-color: var(--button-gray-bg);
  transition: all 0.08s;
  border-radius: var(--default-secondary-border-radius);
  margin-top: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #1c1c1c;
  cursor: pointer;
}

body.darkmode .valueList .value,
body.darkmode .valueList>li {
  background-color: var(--dm-button-gray-bg);
  color: #fff;
}

.valueList .value::after,
.valueList>li::after {
  position: absolute;
  content: '';
  height: 24px;
  width: 24px;
  top: -12px;
  right: -12px;
  opacity: 0;
  transition: all 0.08s;
  background-image: url('../assets/icons/cancel_FILL.svg');
  background-position: left center;
  background-origin: border-box;
  background-repeat: no-repeat;
}

.valueList .value:hover,
.valueList>li:hover {
  background-color: #e0e6ed;
}

body.darkmode .valueList .value:hover,
body.darkmode .valueList>li:hover {
  background-color: #40526e;
}

.valueList .value:hover::after,
.valueList>li:hover::after {
  opacity: 0.72;
}

body.darkmode .valueList .value:hover::after,
body.darkmode .valueList>li:hover::after {
  opacity: 0.72;
}

body.darkmode .valueList .value::after,
body.darkmode .valueList>li::after {
  filter: invert(1);
}

.loadingList {
  position: absolute;
  right: 8px;
  top: -8px;
  height: 24px;
  width: 24px;
  background-image: url('../assets/icons/progress_activity.svg');
  background-size: cover;
  margin-top: 16px;
  opacity: 0.64;
  z-index: 2;
}

body.darkmode .loadingList {
  filter: invert(1);
}

button.addValueBtn {
  position: absolute !important;
  height: 40px !important;
  width: 40px !important;
  flex: 0 !important;
  border: none;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  right: -7px;
  top: 0;
}

button.addValueBtn .btnContent img {
  height: 26px;
  width: 26px;
}

button.addValueBtn:active .btnContent {
  background-image: url('../assets/icons/check_circle.svg');
  background-position: center;
  background-size: 26px;
  opacity: 0.9;
}

body.darkmode button.addValueBtn:active .btnContent {
  filter: invert(1);
}

button.addValueBtn:active .btnContent img {
  display: none;
}

@media only all and (max-width: 620px) {
  .valueList {
    justify-content: center;
  }

  .valueList li {
    padding: 16px;
  }

  .valueList li::after {
    opacity: 0.32;
  }

  button.small {
    height: 44px;
    font-size: 12px;
    padding: 0px 16px;
  }

  .form-item,
  .form-item select,
  button {
    height: 52px;
  }

  button.addValueBtn {
    height: 52px !important;
    width: 52px !important;
  }

  button.addValueBtn .btnContent img {
    height: 32px;
    width: 32px;
  }

  .form-dropdown.multiValue::after {
    top: 11px !important;
    right: calc(32px + 16px) !important;
  }
}

/* ------------------------------------------------------------------------------------------ */
/* Nav arrows ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

[data-navigation-arrows].navSetasHost {
  position: relative;
}

[data-navigation-arrows] .navSeta {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  opacity: 0;
  height: 44px;
  width: 24px;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  border-radius: 4px;
  background-color: #e0e6ed;
  backdrop-filter: blur(4px);
}

body.darkmode [data-navigation-arrows] .navSeta {
  background: #40526e;
}

[data-navigation-arrows] .navSeta--esq {
  left: -32px;
}

[data-navigation-arrows] .navSeta--dir {
  right: -32px;
}

[data-navigation-arrows] .navSeta--esq::after,
[data-navigation-arrows] .navSeta--dir::after {
  content: '';
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 22;
}

[data-navigation-arrows] .navSeta--esq::after {
  background-image: url('../assets/icons/keyboard_arrow_left.svg');
}

[data-navigation-arrows] .navSeta--dir::after {
  background-image: url('../assets/icons/keyboard_arrow_right.svg');
}

body.darkmode [data-navigation-arrows] .navSeta--esq::after,
body.darkmode [data-navigation-arrows] .navSeta--dir::after {
  filter: invert(1);
}

[data-navigation-arrows]:hover .navSeta,
[data-navigation-arrows]:focus-within .navSeta {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1.02);
}

/* ------------------------------------------------------------------------------------------ */
/* Tooltips --------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

.custom-tooltip-body {
  position: relative;
  background: var(--body-bg-opacity);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--default-secondary-border-radius);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.24);
  font-size: 14px;
  text-align: center;
  line-height: 1.35;
  backdrop-filter: blur(6px);
  margin: 0;
}

body.darkmode .custom-tooltip-body {
  background: var(--body-bg-light-opacity);
  color: #1c1c1c;
}

.custom-tooltip-arrow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  will-change: top, left;
  width: 0;
  height: 0;
}

.custom-tooltip-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 99999;
}

.custom-tooltip-arrow.down::after {
  bottom: 0;
  border-bottom: 8px solid var(--body-bg-opacity);
}

body.darkmode .custom-tooltip-arrow.down::after {
  border-bottom-color: var(--body-bg-light-opacity);
}

.custom-tooltip-arrow.up::after {
  top: 0;
  border-top: 8px solid var(--body-bg-opacity);
}

body.darkmode .custom-tooltip-arrow.up::after {
  border-top-color: var(--body-bg-light-opacity);
}

/* ------------------------------------------------------------------------------------------ */
/* Files ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

.filesSystem {
  display: flex;
  width: 100%;
  margin-top: 16px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.filesSystem .item {
  position: relative;
  display: flex;
  height: 70px;
  width: 100%;
  max-width: 374px;
  flex-direction: row;
  flex-wrap: nowrap;
  border: 1px solid #dedede;
  border-radius: var(--default-border-radius);
  gap: 16px;
  overflow: hidden;
}

.filesSystem .item:hover {
  border: 1px solid #707070;
}

.filesSystem .thumbnail {
  display: flex;
  height: 100%;
  width: 68px;
  border-right: 1px solid #efeff0;
  background: url("../assets/backgrounds/tempThumb.jpg") no-repeat;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.filesSystem .thumb_empty {
  border-right: none !important;
}

.filesSystem .thumbnail img {
  height: 32px;
  width: 32px;
}

.filesSystem .item .text {
  display: flex;
  height: inherit;
  max-width: 288px;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px 0 0;
  overflow: hidden;
}

.filesSystem .item .text h5 {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filesSystem .item .text p {
  max-height: 14px;
  margin-top: 3px;
  font-size: 11px;
  overflow: hidden;
}

.filesSystem .img_spin {
  display: none;
}

.spin {
  height: 24px;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

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

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

.filesSystem .download {
  position: absolute;
  display: flex;
  height: inherit;
  right: 0;
  padding: 0 16px 0 0;
  background-color: #fff;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  opacity: 0;
}

.filesSystem .item:hover .download {
  display: flex;
  opacity: 1;
}

.filesSystem .download:before {
  position: absolute;
  height: 100%;
  width: 64px;
  left: -64px;
  content: " ";
  background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 1));
}

.filesSystem>p {
  color: #314a63;
}

.filesSystem .download button {
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 0;
  border: 0;
  color: #314a63;
  text-indent: 4px;
  z-index: 3;
  opacity: 0.8;
}

.filesSystem .download button img {
  margin: 0 !important;
  filter: invert(25%) sepia(12%) saturate(1570%) hue-rotate(169deg) brightness(101%) contrast(94%);
}

.thumb_red {
  color: #000;
  filter: invert(18%) sepia(84%) saturate(2981%) hue-rotate(349deg) brightness(94%) contrast(88%) !important;
}

.thumb_lime {
  color: #000;
  filter: invert(61%) sepia(61%) saturate(345%) hue-rotate(107deg) brightness(92%) contrast(93%) !important;
}

.thumb_green {
  color: #000;
  filter: invert(60%) sepia(9%) saturate(6963%) hue-rotate(78deg) brightness(93%) contrast(55%) !important;
}

.thumb_orange {
  color: #000;
  filter: invert(51%) sepia(82%) saturate(2314%) hue-rotate(11deg) brightness(96%) contrast(82%) !important;
}

.filesSystem .download button:hover {
  opacity: 1;
}

@media only all and (max-width: 852px) {
  .filesSystem .item {
    display: grid;
    height: auto;
    max-width: 340px;
    grid-template-columns: 105px auto;
    grid-template-rows: auto auto;
    gap: unset;
    column-gap: 16px;
  }

  .filesSystem .item:hover {
    border: 1px solid #dedede;
  }

  .filesSystem .item .thumbnail {
    width: 105px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .filesSystem .item .text {
    max-width: unset;
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    padding: 16px 16px 0 0;
    overflow: visible;
  }

  .filesSystem .item .text h5 {
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
    text-align: left;
  }

  .filesSystem .item .text p {
    text-align: left;
  }

  .filesSystem .item .download::before {
    display: none;
  }

  .filesSystem .item .download {
    position: unset;
    margin: 14px 16px 16px 0;
    grid-column: 2;
    grid-row: 2;
    opacity: 1;
  }
}

@media only all and (max-width: 620px) {
  .filesSystem .item {
    width: 100%;
    max-width: 100%;
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.codeDisplay {
  display: flex;
  justify-content: center;
  height: 37px;
  gap: 8px;
  letter-spacing: 0;
}

.codeError {
  margin-top: -20px;
  text-align: center;
  justify-content: center;
}

.codeDisplay span {
  font-family: "Space Mono", monospace !important;
  font-size: 44px;
  font-weight: 800;
  transition: color 0.15s ease, transform 0.1s ease;
  color: #444;
}

.codeDisplay span {
  color: #fff;
}

.codeDisplay span.ok {
  color: #22c55e;
}

.codeDisplay span.wrong {
  color: #ef4444;
}

.codeDisplay span.idle {
  color: #888;
}

.codeDisplay.shake {
  animation: shake-x .18s linear 1;
}

@keyframes shake-x {

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

  25% {
    transform: translateX(-3px);
  }

  75% {
    transform: translateX(3px);
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.tutorialImage {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: var(--default-border-radius);
  background-size: cover;
  margin: 24px 0px;
}

.tutorialImage.agenda_legenda {
  background-image: url('../assets/images/tutorial/agenda_legenda.jpg');
}

body.darkmode .tutorialImage.agenda_legenda {
  background-image: url('../assets/images/tutorial/agenda_legenda_darkmode.jpg');
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

#underConstruction {
  width: 100%;
  max-width: 512px;
}

.underConstruction {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.underConstruction .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.underConstruction h3 {
  font-size: 24px !important;
}

.underConstruction p {
  font-size: 14px !important;
}

.underConstruction img {
  height: 124px;
}

@media only all and (max-width: 620px) {
  #underConstruction {
    width: 100%;
  }

  .underConstruction {
    flex-direction: column;
  }

  .underConstruction p,
  .underConstruction h3 {
    text-align: center;
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.tiledCarousel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 24px;
  overflow: hidden;
  gap: 8px;
}

.tiledCarousel-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 16px;
  touch-action: pan-y;
}

.tiledCarousel-track::-webkit-scrollbar {
  display: none;
}

.tiledCarousel-track.is-carousel {
  cursor: grab;
}

.tiledCarousel-track.is-carousel.is-pressing,
.tiledCarousel-track.is-carousel.is-dragging {
  cursor: grabbing;
}

.tiledCarousel-nav {
  display: flex;
  transition: opacity 100ms;
  gap: 16px;
}

#prev_hidden_button,
#next_hidden_button {
  pointer-events: none;
  opacity: 0;
}

#prev_button,
#next_button {
  display: none;
}

.tiledCarousel-container.is-carousel #prev_button,
.tiledCarousel-container.is-carousel #next_button,
.tiledCarousel-nav.is-carousel #prev_button,
.tiledCarousel-nav.is-carousel #next_button {
  display: flex;
}

.tiledCarousel-tile {
  padding: 0 12px 0 12px;
}

.tiledCarousel-tile boxTitle {
  column-gap: 8px;
}

.tiledCarousel-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tiledCarousel-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}

.tiledCarousel-tile .tiledCarousel-title a,
.tiledCarousel-tile .tiledCarousel-title {
  font-size: 20px;
  font-weight: 400;
}

.tiledCarousel-tile .tiledCarousel-title>div {
  display: flex;
  flex-direction: row;
}

.tiledCarousel-tile .tiledCarousel-title.token {
  position: relative;
}

.tiledCarousel-title .token {
  height: 24px;
  width: 24px;
  color: #000 !important;
  background-image: url('../assets/icons/token_FILL.svg');
  filter: invert(30%) sepia(76%) saturate(379%) hue-rotate(240deg) brightness(88%) contrast(85%);
}

body.darkmode .tiledCarousel-title .token {
  filter: invert(73%) sepia(42%) saturate(2452%) hue-rotate(286deg) brightness(79%) contrast(83%);
}

.tiledCarousel-title .photo {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  flex-shrink: 0;
  background-image: url('../../../assets/images/user_noImage.jpg');
  background-size: cover;
  background-position: center;
}

.tiledCarousel-title .photo {
  background-image: url('../../../assets/images/user_noImage.darkmode.jpg');
}

.tiledCarousel-tile .tiledCarousel-title.token button {
  color: #000 !important;
}

body.darkmode .tiledCarousel-tile .tiledCarousel-title.token button img {
  filter: none;
  opacity: 1;
}

.tiledCarousel-tile .tiledCarousel-subtitle {
  font-size: 14px;
  margin-bottom: 16px !important;
}

.tiledCarousel-tile .tiledCarousel-subtitle a:hover {
  text-decoration: underline !important;
}

body.darkmode .tiledCarousel-tile .tiledCarousel-title {
  color: #fff;
}

.tiledCarousel-tile.selected .tiledCarousel-title a,
.tiledCarousel-tile.selected .tiledCarousel-title {
  font-weight: 700;
}

.tiledCarousel-tile.selected box {
  border: 1px solid var(--box-border-light-selected);
}

body.darkmode .tiledCarousel-tile.selected box {
  border: 1px solid var(--box-border-selected);
}

.tiledCarousel-nav {
  display: flex;
  flex-direction: row;
  top: 0;
  color: white;
  z-index: 3;
}

#prev_hidden_button,
#next_hidden_button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  height: 96%;
  width: 40px;
  border-radius: var(--default-border-radius);
  transition: 0.2s;
  background-color: #e0e6ed;
  z-index: 2;
  opacity: 0;
}

body.darkmode #prev_hidden_button,
body.darkmode #next_hidden_button {
  background-color: #40526e;
}

#next_hidden_button {
  right: 0;
  left: unset;
}

#prev_hidden_button::after,
#next_hidden_button::after {
  content: '';
  width: 32px;
  height: 32px;
  background: url('../../../assets/icons/chevron_left.svg') no-repeat center;
  background-size: cover;
  filter: invert(1);
  z-index: 2;
}

#prev_hidden_button::after,
#next_hidden_button::after {
  filter: invert(0);
  opacity: 0.72;
}

#next_hidden_button::after {
  background: url('../../../assets/icons/chevron_right.svg') no-repeat center;
}

@media only all and (max-width: 620px) {
  .tiledCarousel-track {
    padding-bottom: 0px;
  }

  .tiledCarousel-nav {
    justify-content: center;
  }

  .tiledCarousel-nav button,
  .tiledCarousel-nav button img {
    height: 32px;
    width: 32px;
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.loyalty {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.loyalty form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
}

.loyalty .stars {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}

.star.active {
  animation: spawn 0.12s cubic-bezier(0.55, 0.1, 0.55, 0.9);
  transition: all 0.12s;
}

.loyalty .loadingStars {
  height: 32px;
  width: 32px;
  opacity: 0.64;
  margin-right: 16px;
}

body.darkmode .loyalty .loadingStars {
  filter: invert(1);
}

@keyframes spawn {
  0% {
    scale: 3;
    opacity: 0;
  }

  100% {
    scale: 1.44;
    opacity: 1;
  }
}

.loyalty .star.active {
  scale: 1.44;
  background-image: url('../assets/icons/star_FILL.svg') !important;
}

.loyalty button.star {
  background-image: url('../assets/icons/star.svg');
  background-size: cover;
  background-repeat: no-repeat;
}

.loyalty button {
  height: 32px;
  width: 32px;
  padding: 0;
  flex-shrink: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

body.darkmode .loyalty button {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

body.darkmode .loyalty button img {
  opacity: 0.64;
}

.loyalty button img {
  height: 32px;
  width: 32px;
  filter: none;
  opacity: 0.32;
}

body.darkmode .loyalty button img {
  opacity: 0.64;
}

.loyalty button:hover img {
  opacity: 1 !important;
}

.loyalty #minusBtn:hover img {
  opacity: 1 !important;
  content: url('../assets/icons/minus_circle_FILL.svg');
}

.loyalty #plusBtn:hover img {
  opacity: 1 !important;
  content: url('../assets/icons/add_circle_FILL.svg');
}

.loyalty span {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 6px;
}

@media only all and (max-width: 620px) {
  .loyalty {
    justify-content: center;
    width: 100%;
  }

  .loyalty .stars {
    width: 100%;
  }

  .loyalty button {
    height: 26px;
    width: 26px;
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar);
  border-radius: var(--default-secondary-border-radius);
}

body.darkmode::-webkit-scrollbar-thumb {
  background: var(--dm-scrollbar);
}

[data-scroll-horizontal]>*,
[data-scroll-horizontal-hidden]>*,
[data-scroll-horizontal-hidden-scroll]>* {
  min-width: 0;
}

[data-scroll]>*,
[data-scroll-hidden]>*,
[data-scroll-chat]>* {
  min-height: 0;
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

#scrollingBg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  mix-blend-mode: multiply;
  background-repeat: repeat;
  transition: background-image 0.64s !important;
  background-size: 1720px;
  opacity: 0.092;
  z-index: -1;
}

#scrollingBg.agenda {
  background-image: url('../assets/backgrounds/agenda_bg.jpg');
}

#scrollingBg.login_bg {
  background-image: url('../assets/backgrounds/login_bg.jpg');
}

#scrollingBg.register_bg {
  background-image: url('../assets/backgrounds/register_bg.jpg');
}

#scrollingBg.unsub_bg {
  background-image: url('../assets/backgrounds/unsub_bg.jpg');
}

#scrollingBg.forgot_pass_bg {
  background-image: url('../assets/backgrounds/forgot_pass_bg.jpg');
}

#scrollingBg.activation_bg {
  background-image: url('../assets/backgrounds/activation_bg.jpg');
}

#scrollingBg.reset_pass_bg {
  background-image: url('../assets/backgrounds/reset_pass_bg.jpg');
}

#scrollingBg.error_bg {
  background-image: url('../assets/backgrounds/error_bg.jpg');
}

body.darkmode #scrollingBg {
  opacity: 0.28;
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.scrollbarEnabled,
.scrollbarEnabledHidden {
  transition: none !important;
  -webkit-overflow-scrolling: touch !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  height: 100%;
  flex: 1 1 auto;
  max-height: 99999px;
}

.scrollbarEnabledX,
.scrollbarEnabledHiddenX {
  transition: none !important;
  -webkit-overflow-scrolling: touch !important;
  overflow-y: hidden !important;
  overflow-x: scroll !important;
  height: 100%;
  flex: 1 1 auto;
  max-width: 99999px;
}

.scrollbarEnabled::-webkit-scrollbar,
.scrollbarEnabledX::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

.scrollbarEnabled::-webkit-scrollbar-thumb,
.scrollbarEnabledX::-webkit-scrollbar-thumb {
  background: var(--scrollbar);
  border-radius: var(--default-secondary-border-radius);
}

body.darkmode .scrollbarEnabled::-webkit-scrollbar-thumb,
body.darkmode .scrollbarEnabledX::-webkit-scrollbar-thumb {
  background: var(--dm-scrollbar);
  border-radius: var(--default-secondary-border-radius);
}

.scrollbarEnabled {
  padding-right: 14px;
}

.scrollbarEnabledX {
  padding-bottom: 18px;
}

.scrollbarEnabledHidden {
  scrollbar-width: none;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.scrollbarEnabledHiddenX {
  scrollbar-width: none;
  padding-bottom: 1px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.filters .scrollbarEnabledHiddenX {
  padding-top: 6px;
}

.scrollbarEnabledHidden::-webkit-scrollbar,
.scrollbarEnabledHidden ::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

/* Override for iOS: remove custom scrollbar styling and extra padding */
.ios .scrollbarEnabled,
.ios .scrollbarEnabledHidden {
  padding-right: 0;
  /* iOS native scrollbars don't take up space */
}

.ios .scrollbarEnabled::-webkit-scrollbar,
.ios .scrollbarEnabledHidden::-webkit-scrollbar {
  display: none !important;
}

.iosScrollFix {
  -webkit-overflow-scrolling: touch;
}

.iosScrollFix,
.iosScrollFix * {
  touch-action: auto;
  -webkit-user-drag: none;
}

.iosScrollFix[data-ios-eixo="x"],
.iosScrollFix[data-ios-eixo="x"] * {
  touch-action: pan-x;
}

.iosScrollFix[data-ios-eixo="y"],
.iosScrollFix[data-ios-eixo="y"] * {
  touch-action: pan-y;
}

/* trava o “vazamento” de scroll pro body */
[data-scroll],
[data-scroll-hidden],
[data-scroll-chat],
[data-scroll-horizontal],
[data-scroll-horizontal-hidden],
[data-scroll-horizontal-hidden-scroll] {
  overscroll-behavior: contain;
}

/* garante que o elemento que realmente scrolla também segure */
.scrollbarEnabled,
.scrollbarEnabledHidden,
.scrollbarEnabledX,
.scrollbarEnabledHiddenX,
.iosScrollFix {
  overscroll-behavior: contain;
}

/* opcional: se quiser zerar bounce (menos iOS-feeling) */
.noBounce,
.noBounce * {
  overscroll-behavior: none;
}

.enviromentWarning {
  position: fixed;
  top: 0;
  right: 0;
  height: 195px;
  width: 335px;
  pointer-events: none !important;
  overflow: hidden;
  mix-blend-mode: multiply;
  z-index: 9;
}

.envcat {
  position: absolute;
  top: -164px;
  right: 0;
  height: 360px;
  width: 455px;
  background-image: url('../assets/images/cat.gif');
  background-position: top left;
  background-size: 620px;
}

.enviromentWarning .plaque{
  position: absolute;
  display: flex;
  align-items: center;
  height: 51px;
  width: 100%;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  padding: 13px 18px;
  bottom: 44px;
  gap: 6px;
  left: 0;
}

body.darkmode .envcat {
  filter: invert(1);
}

body.darkmode .enviromentWarning {
  mix-blend-mode: color-dodge;
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.multiempresaLabel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 16px;
  font-size: 14px;
  background-color: var(--box-bg);
  color: rgba(0, 0, 0, 0.64) !important;
  padding: 2px 12px 2px 8px;
  pointer-events: none;
  gap: 4px;
}

body.darkmode .multiempresaLabel {
  background-color: #fff;
}

.multiempresaLabel img {
  height: 20px;
  width: 20px;
  opacity: 0.64;
}

#template-container {
  position: absolute;
  height: fit-content;
  width: fit-content;
  bottom: -9000px;
  display: none;
  padding: 0;
  margin: 0;
}

img {
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.maxWidth {
  max-width: 2200px;
}

.paddingLimit {
  position: relative;
  padding: 0 64px;
}

.hide {
  display: none;
}

.topRight {
  position: absolute;
  top: 16px;
  right: 16px;
}

@media only all and (min-width: 1698px) {
  .paddingLimit {
    padding: 0 49px;
  }
}

@media only all and (min-width: 1920px) {
  .paddingLimit {
    padding: 0 0px;
  }
}

@media only all and (max-width: 1024px) {
  .paddingLimit {
    padding: 0 44px;
  }
}

@media only all and (max-width: 768px) {
  .paddingLimit {
    padding: 0 24px;
  }
}

@media only all and (max-width: 385px) {
  .paddingLimit {
    padding: 0 16px;
  }
}