:root {
  --border-radius: 12px;
  --gray: #737f9e;
  --gray-light: #6c757d3d;
  --bs-primary: #916EF9;
  --bs-secondary: #40219A;
  --bs-success: #50cd89;
  --bs-info: #7239ea;
  --bs-warning: #ffc700;
  --bs-danger: #f1416c;
  --bs-purple-50: #FAF4FF;
  --bs-purple-100: #F2E6FF;
  --bs-purple-200: #E7D2FF;
  --bs-purple-300: #D5AFFF;
  --bs-purple-400: #BB7CFF;
  --bs-purple-500: #A24AFF;
  --bs-purple-600: #8D26F7;
  --bs-purple-700: #7816DA;
  --bs-purple-800: #6417AD;
  --bs-purple-900: #55158E;
  --bs-purple-950: #38016A;
  --text-purple-200: #B58ADD;
  --bs-secundary-50: #F7F8F8;
  --bs-secundary-100: #EDEEF1;
  --bs-secundary-200: #D8DBDF;
  --bs-secundary-300: #B6BAC3;
  --bs-secundary-400: #8E95A2;
  --bs-secundary-500: #6B7280;
  --bs-secundary-600: #5B616E;
  --bs-secundary-700: #4A4E5A;
  --bs-secundary-800: #40444C;
  --bs-secundary-900: #383A42;
  --bs-secundary-950: #25272C;
}

[data-bs-theme=dark] .ticker-wrap {
  position: relative;
  background-color: var(--gray-light);
}

.ticker-wrap {
  position: relative;
  background-color: var(--bs-secundary-100);
  flex-grow: 1;
  overflow-x: clip;
}

.ticker-wrap .ticker:hover {
  animation-play-state: paused;
}

@keyframes levanteTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.negativo {
  color: #ff5252 !important;
}

.positivo {
  color: #1eb980 !important;
}

.icon-margin {
  margin-left: 8px !important;
}

.ticker-wrap .ticker {
  line-height: 3rem;
  white-space: nowrap;
  animation: levanteTicker 40s linear 1s infinite;
  display: inline-block;
}

.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 5px 0 15px;
  font-size: 12px;
  color: #fff;
  padding-top: 5px;
}

.ticker a {
  font-size: 13px;
  font-weight: 500;
  padding: 0 15px;
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  align-items: center;
  height: 30px;
  border-right: 1px solid rgb(0 0 0 / 20%);
  text-decoration: none;
}

.ticker span {
  color: var(--bs-text-primary);
  font-weight: 600;
}

.ticker a span:nth-child(2) {
  margin: 0 10px;
}

.swiper-container {
  position: relative;
  overflow: hidden;
}

.text-secundary-300 {
  color: var(--bs-secundary-300);
}

.toastr-title {
  font-weight: bold;
}

.toastr-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toastr-message a,
.toastr-message label {
  color: #FFFFFF;
}

.toastr-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toastr-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}

.toastr-close-button:hover,
.toastr-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

.rtl .toastr-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toastr-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toastr-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toastr-top-center-nav-margin {
  top: 65px;
  right: 0;
  width: 100%;
}

.bs-purple-950 {
  color: var(--bs-purple-950);
}

.toastr-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toastr-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toastr-top-full-width-nav-margin {
  top: 65px;
  right: 0;
  width: 100%;
}

.toastr-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toastr-top-left {
  top: 12px;
  left: 12px;
}

.toastr-top-left-nav-margin {
  top: 65px;
  left: 12px;
}

.toastr-top-right {
  top: 12px;
  right: 12px;
}

.toastr-top-right-nav-margin {
  top: 65px;
  right: 12px;
}

.toastr-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toastr-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toastr-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
}

#toastr-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toastr-container>div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toastr-container>div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}

#toastr-container>div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toastr-container>.toastr-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toastr-container>.toastr-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toastr-container>.toastr-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toastr-container>.toastr-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toastr-container.toastr-top-center-nav-margin>div,
#toastr-container.toastr-top-center>div,
#toastr-container.toastr-bottom-center>div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toastr-container.toastr-top-full-width-nav-margin>div,
#toastr-container.toastr-top-full-width>div,
#toastr-container.toastr-bottom-full-width>div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toastr {
  background-color: #030303;
}

.toastr-success {
  background-color: #51A351;
}

.toastr-error {
  background-color: #BD362F;
}

.toastr-info {
  background-color: #2F96B4;
}

.toastr-warning {
  background-color: #F89406;
}

.toastr-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

.toastr {
  background-position: calc(100% - 1.5rem) center !important;
  /*rtl:ignore*/
  background-position: 1.5rem center !important;
  box-shadow: var(--bs-dropdown-box-shadow) !important;
  border-radius: 0.475rem !important;
  border: 0 !important;
  background-color: var(--bs-gray-100);
  color: var(--bs-gray-700);
  padding: 1.25rem 1.25rem 1.25rem 4.5rem !important;
}

.toastr .toastr-close-button {
  outline: none !important;
  font-size: 0;
  width: 0.85rem;
  height: 0.85rem;
}

.toastr .toastr-title {
  font-size: 1.15rem;
  font-weight: 500;
}

.toastr .toastr-title+.toastr-message {
  margin-top: 0.25rem;
}

.toastr .toastr-message {
  font-size: 1rem;
  font-weight: 400;
}

.toastr.toastr-success {
  background-color: var(--bs-success);
  color: var(--bs-success-inverse);
}

.toastr.toastr-success .toastr-close-button {
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--bs-success-inverse);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-success-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-success-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.toastr.toastr-info {
  background-color: var(--bs-info);
  color: var(--bs-info-inverse);
}

.toastr.toastr-info .toastr-close-button {
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--bs-info-inverse);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-info-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-info-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.toastr.toastr-warning {
  background-color: var(--bs-warning);
  color: var(--bs-warning-inverse);
}

.toastr.toastr-warning .toastr-close-button {
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--bs-warning-inverse);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-warning-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-warning-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.toastr.toastr-error {
  background-color: var(--bs-danger);
  color: var(--bs-danger-inverse);
}

.toastr.toastr-error .toastr-close-button {
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--bs-danger-inverse);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-danger-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-danger-inverse%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.toastr-top-center {
  top: 12px;
}

.toastr-bottom-center {
  bottom: 12px;
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toastr-container>div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }

  #toastr-container>div.rtl {
    padding: 8px 50px 8px 8px;
  }

  #toastr-container .toastr-close-button {
    right: -0.2em;
    top: -0.2em;
  }

  #toastr-container .rtl .toastr-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  #toastr-container>div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }

  #toastr-container>div.rtl {
    padding: 8px 50px 8px 8px;
  }

  #toastr-container .toastr-close-button {
    right: -0.2em;
    top: -0.2em;
  }

  #toastr-container .rtl .toastr-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  #toastr-container>div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }

  #toastr-container>div.rtl {
    padding: 15px 50px 15px 15px;
  }
}

.h-60px {
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
}

.app-sidebar,
.app-sidebar-menu,
.app-sidebar-footer {
  background-color: var(--bs-purple-950);
}

.app-sidebar-footer .btn {
  font-weight: 600;
  background-color: var(--bs-purple-900) !important;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar {
  background-color: #121212;
  border-right: 0 !important;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .app-sidebar-logo {
  border-bottom: 0px;
}

@media (min-width: 992px) {
  .app-sidebar-menu {
    padding: 0 10px;
  }
}

.app-sidebar-logo {
  justify-content: center;
  background-color: var(--bs-purple-500);
}

.app-content {
  padding-top: 0px;
}

/** start sidebar  */
/** @ TODO VERIFICAR */
/* [data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active .menu-title {
  color: var(--bs-purple-50);
  font-weight: 600;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-title {
  color: var(--bs-purple-50);
  font-weight: 600;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,
[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: var(--bs-purple-300)
}

.menu-sub .menu-title {
  color: var(--text-purple-200) !important;
  font-weight: 500 !important;
} */

/* .menu-sub .menu-link {
  padding: 0.50rem 0;
}

.menu-sub .menu-item {
  padding: 15px 0;
} */

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active {
  background-color: var(--bs-purple-900);
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu-sub .menu-item .menu-link.active {
  background-color: transparent;
}

.menu-sub-indention .menu-item .menu-item .menu-link.active {
  margin-right: 0px;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active .menu-icon,
[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active .menu-icon .svg-icon,
[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active .menu-icon i,
[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-icon i {
  color: var(--bs-purple-500);
}

/** end sidebar */

.search-bar {
  max-width: 600px;
}

.search-bar .form-control {
  border-color: var(--bs-body-bg);
  color: var(--bs-primary-text);
}

.search-bar .btn-primary {
  background-color: var(--bs-body-bg);
}

.search-bar .btn-primary i {
  color: var(--bs-primary-text);
}

[data-bs-theme=dark] .app-navbar .btn-icon {
  background-color: #000;
}

[data-bs-theme=dark] .app-navbar .btn-icon i {
  color: #916EF9;
}

.menu-sub-dropdown {
  top: -40px !important;
}

.app-header,
.app-sidebar-logo {
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}

.is-sticky {
  height: 80px;
}

.is-sticky .menu-sub-dropdown {
  top: -10px !important;
}

.is-sticky .h-60px {
  height: 50px !important;
}

.icons {
  position: absolute;
  top: 15px;
  right: 15px;
}

.icons .favorite {
  position: absolute;
  top: 0;
  right: 0;
}

.icons .radar {
  position: absolute;
  top: 30px;
  right: 0;
}

.line-h {
  line-height: 1.4;
}

.scrolltop {
  right: 90px;
  bottom: 30px;
}

.scrolltop i {
  color: black !important;
}

.app-footer {
  display: block;
}

.app-content {
  padding-bottom: 0px;
}

.inner-shadow {
  -webkit-box-shadow: inset 300px 0px 200px -50px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: inset 300px 0px 200px -50px rgba(0, 0, 0, 0.7);
  box-shadow: inset 300px 0px 200px -50px rgba(0, 0, 0, 0.7);
}

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

body::-webkit-scrollbar-track {
  background: var(--bs-app-bg-color);
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--bs-text-primary);
  border-radius: 20px;
  border: 3px solid var(--bs-app-bg-color);
}

.row-cols-7>* {
  flex: 0 0 auto;
  width: 14.2857141%;
}

@media (min-width: 2000px) {
  .row-cols-xxl-7>* {
    flex: 0 0 auto;
    width: 14.2857141%;
  }
}

@media (max-width: 991.98px) {
  .menu-sub-dropdown {
    top: -15px !important;
  }
}

.wallet-icon {
  right: 15px;
  top: 15px;
}

.table.gy-6 th {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.slick-next,
.slick-prev {
  display: none !important
}

.js-slick-carousel {
  margin: 0 auto;
}

.slick-slide {
  margin-right: 2rem;
}

.wallets-recommendations {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-card .overlay-wrapper {
  height: 266px;
  background-color: #000;
  margin-bottom: 0.75rem !important;
  border-radius: 0.625rem;
  height: 200px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

i.bi.bi-star-fill.home {
  color: yellow !important;
  margin-left: 10px;
  margin-right: 5px;
}

.image-default {
  width: 300px;
  height: 375px;
  object-fit: cover;
  object-position: 80%;
  max-width: 100%;
  border-radius: 0.625rem;
}

.image-personalized {
  width: 170px;
  height: 240px;
  object-fit: cover;
  object-position: center center !important;
  background-size: cover;
  max-width: 100%;
  border-radius: 0.625rem;
}

.app--reports .image-personalized {
  height: auto !important;
}

.wrapper-card:hover {
  opacity: 0.8;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: left;
}

.show-categories .col-md-3 {
  padding: 0 30px 30px 0 !important;
}

.infinite-scroll-request {
  display: flex !important;
  align-items: center !important;
}

.ticker_logo img {
  border-radius: 7px;
  max-width: 48px;
}

.app-footer {
  margin-top: 30px !important;
}

@media (max-width: 1540px) {
  #kt_app_content_container .app-container {
    padding: 0 !important;
    margin-top: 10px;
  }
}

.bullet.b {
  margin-bottom: 3px;
  height: 2.2px;
  margin: 0px 3px;
  margin-bottom: 3px;
}

.article-feed .disabled:hover {
  cursor: not-allowed !important;
}

.ticker-details {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1.1rem 0;
}

.ticker-details p {
  font-size: .8rem;
  font-weight: 400;
  color: var(--gray);
}

.ticker-details span {
  font-size: 1.5rem;
  font-weight: 600;
}

.dark-theme .ticker-details span {
  color: #fff;
}

.table-details td {
  text-align: left !important;
}

.table-details tr {
  border-bottom: 1px solid var(--gray-light) !important;
}

.ticker-details .icons-ticker {
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 0.75rem;
  margin-bottom: 1.5rem;
}

.ticker-details .icons-ticker i {
  font-size: 2rem;
}

.table-details thead,
.table-details tbody,
.table-details tfoot,
.table-details tr,
.table-details td,
.table-details th {
  border-style: none;
}

.table-details table {
  width: 100%;
  table-layout: fixed;
  border: none;
  border-radius: 0px;
  box-shadow: none;
}

.table-details th {
  color: #fff !important;
}

.table-details .text-right {
  text-align: right !important
}

.table-details td {
  font-size: 1.3rem;
  font-weight: 500;
}

.table-details .n-mobile {
  font-size: 1rem;
  font-weight: 400;
}

.browser-stats div:hover {
  opacity: 0.7;
}

.show-ticker {
  margin-top: 20px !important;
}

.ticker-header {
  float: right;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.ticker-body {
  margin: 0;
  padding: 0;
}

.ticker-att {
  text-align: right;
}

.ticker-footer {
  text-align: center;
  margin-top: 5px !important;
  padding: 0 !important;
}

.ticker-fall {
  color: red !important;
}

.ticker-growth {
  color: green !important;
}

.growth {
  color: green !important;
}

.fall {
  color: red !important;
}

.login-exclusivo abbr[title] {
  display: none;
}

.login-exclusivo div.required:after {
  display: none;
}

.login-exclusivo .button-primary {
  background: rgb(145, 110, 249);
}

.login-exclusivo .bg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-exclusivo #kt_app_footer .menu-item {
  display: none !important;
}

.container-xl span.badge.badge-light-primary.fs-base {
  display: inline-block;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mr {
  margin-right: .5rem !important;
}

.text-limit-190px {
  display: inline-block;
  max-width: 190px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-limit-100 {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .badge.badge-light-primary a {
  color: var(--bs-primary);
} */

.banner-lat {
  width: 48rem;
}

.banner-lat .card {
  background-image: url("/theme/images/banner/bg-lat.png");
  background-color: #000;
}

.banner-lat .logo {
  width: 210px;
}

.banner-lat .btn {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 5px;
  background-color: #0094FF;
}

#rewards.fade:not(.show) {
  display: none !important;
}

.banner-sgr {
  width: 48rem;
}

.banner-sgr .card {
  background-image: url("/theme/images/banner/bg-sgr.png");
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-sgr .logo {
  width: 225px;
}

.banner-sgr .btn {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 5px;
  background-color: #2ec232;
}

button.hiperlink.btn.btn-primary.btn-md.mt-5:hover {
  background-color: green !important;
  color: #000 !important;
}

.mw-170px {
  max-width: 170px !important;
}

@media (min-width: 1200px) {
  #kt_app_footer .app-container {
    padding: 0 !important;
  }
}

::selection {
  color: #fff;
  background: var(--bs-primary);
}

.overflow-auto {
  scrollbar-width: thin;
  scrollbar-color: var(--bs-scrollbar-color) transparent;
}

.breadcrumb .breadcrumb-item:after {
  font-weight: bold !important;
  color: var(--bs-secundary-500) !important;
}

#variacoes .w-20px {
  background-color: var(--bs-secundary-100) !important;
}

[data-bs-theme=light] .breadcrumb li:last-child a {
  font-weight: bold !important;
  color: var(--bs-secundary-700) !important;
}

[data-bs-theme=dark] .breadcrumb li:last-child a {
  filter: invert(1) grayscale(100);
}

[data-bs-theme=dark] .bs-purple-950 {
  color: var(--bs-purple-600);
}

.overflow-auto.app--contents {
  scroll-behavior: smooth;
  transition: all 0.1s ease-out;
}

.overflow-auto.app--contents {
  overflow-x: hidden !important;
}

.overflow-auto.app--contents:active {
  cursor: grabbing;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* .app--products-show.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(260deg, #603FBF 0%, #E63366 100%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
} */


.bg-purple-atendimento img {
  position: absolute;
  left: -158px;
  top: 232px;
  transform: translateY(-50%);
  width: 346px;
  height: 318.03px;
  border: 1px;
}

.bg-purple-atendimento {
  background-color: var(--bs-purple-500);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  position: relative;
}

.bi-whatsapp::before {
  content: "\f618";
  margin-right: 0 !important;
  color: rgb(93, 255, 93);
  font-size: 12px;
}

.bi-telephone::before {
  margin-right: 0 !important;
  color: var(--bs-purple-400);
  font-size: 12px;
}

.bi-envelope::before {
  margin-right: 0 !important;
  color: var(--bs-purple-400);
  font-size: 12px;
}

.no-underline {
  text-decoration: none;
  color: #8E95A2;
}

.no-underline:hover,
.no-underline:focus,
.no-underline:active {
  color: #646161;
  text-decoration: none;
}

.text-gray-atendimento {
  color: #8E95A2;
} */

.nav-stretch .menu-link.active {
  background-color: transparent !important;
}

.nav-stretch .hover-scroll-x .menu-active-bg .menu-item .menu-link.active {
  background-color: transparent !important;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .hover-scroll-overlay-y {
  scrollbar-color: transparent transparent !important;
}

/* Estilo para garantir que o item ativo tenha um ::after no final */
.app--menu-product .menu-item.here,
.app--menu-product .menu-item>.menu-link.active {
  position: relative;
  background-color: transparent;
  color: #a663f2;
}

.app--menu-product .menu-item.here:not(.show)::after,
.app--menu-product .menu-item>.menu-link.active::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #a663f2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.app--menu-product .menu-item .menu-sub .menu-link.active::after {
  content: none;
}

@media (max-width: 990px) {

  .app--menu-product .menu-item.here:not(.show)::after,
  .app--menu-product .menu-item>.menu-link.active::after {
    width: 25%;
    left: 13px;
    transform: translateX(0%);
  }
}

.text-purple-settings {
  color: var(--bs-purple-500);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

.bg-light-green-settings {
  background-color: #DCFCE7;
  padding: 10px 12px;
  border-radius: 6px;
  opacity: 0px;
  max-width: 100%;
  margin-left: 2px;
}

.no-required-indicator .required:after {
  content: "";
}

.no-required-indicator div.required:after {
  display: none;
}

.custom-form .custom-floating {
  position: relative;
  margin-bottom: 1rem;
}

.custom-form .custom-floating .custom-label {
  position: absolute;
  top: 35%;
  left: 7px;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  font-size: 1rem;
  color: #6c757d;
}

.custom-form .custom-floating input:focus+.custom-label,
.custom-form .custom-floating select:focus+.custom-label,
.custom-form .custom-floating textarea:focus+.custom-label,
.custom-form .custom-floating input:not(:placeholder-shown)+.custom-label,
.custom-form .custom-floating select:not([value=""])+.custom-label,
.custom-form .custom-floating textarea:not(:placeholder-shown)+.custom-label {
  top: -5;
  left: 7px;
  transform: translateY(-100%);
  font-size: 0.85rem;
  color: #495057;
}

.custom-form .custom-floating input,
.custom-form .custom-floating select,
.custom-form .custom-floating textarea {
  padding: 1rem 0.75rem 0.25rem 0.75rem;
  height: auto;
  font-size: 1rem;
}

.custom-form .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.password-show {
  position: relative
}

.password-show .password-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  color: var(--bs-secundary-700);
  margin-top: 5px;
  cursor: pointer;
  transition: .3s ease all;
}

.password-show .password-icon:hover {
  color: var(--bs-secundary-700);
}

#show_hide_password a:hover {
  background-color: rgba(0, 0, 0, 0);
}

#show_hide_password .is-invalid {
  background-image: none;
}

.btn-my-orders {
  font-size: 11.3px;
  font-weight: 500;
  line-height: 10px;
  background-color: var(--bs-secundary-200) !important;
  color: var(--bs-text-gray-500);
  padding: 10px 10px;
  border-radius: 20px !important;
  display: inline-flex;
  align-items: center;
}

.btn-my-orders i {
  font-weight: 500;
  font-size: 11px;
  margin-right: 2px !important;
}

.badge-rounded {
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 12px;
}

.hover-scroll-x {
  scroll-behavior: smooth;
}

.page-item.disabled .page-link .svg-icon,
.page-item.disabled .page-link i {
  color: var(--bs-text-gray-300)
}

.page-item.opt {
  border-radius: 0.475rem;
  height: 2.5rem;
  min-width: 2.5rem;
  font-weight: 500;
  font-size: 1.075rem;
  background-color: var(--bs-dark-inverse);
}

.page-item.disabled {
  background-color: var(--bs-gray-200) !important;
  cursor: not-allowed !important;
}

.nfe-btn {
  border-radius: 10px;
  padding: 10px;
  background-color: var(--bs-gray-300) !important;
}

.nfe-btn a {
  text-decoration: none;
  color: var(--bs-primary) !important;
}

.nfe-btn i {
  color: var(--bs-primary) !important;
  margin-right: 3px !important;
}

.app--order-datails-info {
  display: inline-block;
  border-radius: 20px;
  padding: 8px 15px;
  background-color: var(--bs-gray-300) !important;
}

.card-orders-logged {
  border: 1px solid var(--bs-secondary-border-subtle);
  background-color: var(--bs-app-bg-color);
  padding: 20px;
}

.row-dashed {
  border-bottom-width: 1px !important;
  border-bottom-style: dashed;
  border-bottom-color: var(--bs-border-color);
}

#user-signatures .card-header {
  min-height: none !important;
}

.bs-text-400 {
  color: var(--bs-secundary-400)
}

.bs-text-500 {
  color: var(--bs-secundary-500)
}

.app--access-table .pt-0 {
  padding-top: 0 !important;
}

.app--access-table td {
  padding: 1.5rem 1rem !important;
}

.app--access-table thead th {
  padding: 1rem !important;
}

[data-bs-theme=light] .app--bg-purple {
  background-color: var(--bs-purple-100);
  color: var(--bs-purple-500);
}

[data-bs-theme=dark] .app--bg-purple {
  background-color: var(--bs-purple-950);
  color: white;
}

@media (max-width: 1200px) {
  .app--banner-shop {
    padding: 20px !important;
  }
}

.app--banner-shop {
  padding: 2.5rem;
  padding-bottom: 7px !important;
}

.app--banner-shop img {
  border-radius: 0.625rem;
}

@media (max-width: 768px) {
  .app--frammer-shop h1 {
    letter-spacing: 8px !important;
    font-size: 18px !important;
  }
}

.app--frammer-shop h1 {
  margin: 0 auto;
  color: var(--bs-purple-500);
  border-radius: 30px;
  font-size: 20px;
  padding: 10px 5px 10px 20px;
  border: 2px solid var(--bs-secundary-100);
  font-weight: 400;
  letter-spacing: 15px;
  text-transform: uppercase;
}

.app--frammer-shop span {
  color: var(--bs-purple-950);
  font-size: 1rem;
  margin: 10px 0;
}

[data-bs-theme=light] .text-purple-950 {
  color: var(--bs-purple-950);
}

[data-bs-theme=light] .text-purple-500 {
  color: var(--bs-purple-500);
}

.divisor-y {
  width: 2px;
  height: 100%;
  background-color: var(--bs-secundary-300);
}

.my-auto {
  margin: 0 auto !important;
}

.ff-monospace {
  font-family: monospace;
}

.h-223px {
  height: 223px;
}

.mh-223px {
  min-height: 223px;
}

@media (max-width: 768px) {
  .app--iframe-contact .col.border-right {
    border-radius: 10px;
  }
}

.ml-auto {
  margin-left: auto !important;
}

.bgi-postion-left-center {
  background-position: left bottom;
}

.mw-225px {
  max-width: 225px !important;
}

.border-left {
  border-radius: 10px 0 0 10px;
}

.border-right {
  border-radius: 0 10px 10px 0;
}

[data-bs-theme=light] .app--iframe-contact .border-left {
  background-color: var(--bs-purple-500);
}

[data-bs-theme=light] .app--iframe-contact .border-right {
  background-color: var(--bs-purple-900);
}

[data-bs-theme=dark] .app--iframe-contact .border-left {
  background-color: #222222;
}

[data-bs-theme=dark] .app--iframe-contact .border-right {
  background-color: #000000;
}

[data-bs-theme=dark] .app--frammer-shop span {
  color: var(--bs-purple-300);
}

.app--badge-wallets {
  border: 1px solid var(--bs-purple-300);
  border-radius: 50px;
  color: var(--bs-purple-950);
  padding: 5px 12px;
}

[data-bs-theme=dark] .app--badge-wallets {
  color: var(--bs-purple-400);
}

.app--recommended-wallet-truncate-700 {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 700px;
}

.app--recommended-wallet-badge-white {
  border-radius: 50px;
  background-color: var(--bs-secundary-100);
  padding: 5px 12px;
  margin-left: 10px !important;
}

@media (max-width: 576px) {
  .app--recommended-wallet-truncate-700 {
    max-width: 130px;
  }
  .app--recommended-wallet-truncate-100 {
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
  }
  .app--recommended-wallet-d-none-mobile {
    display: none;
  }
  .app--recommended-wallet-header {
    white-space: nowrap;
  }
}


.iti__country-list {
  background-color: var(--bs-body-bg) !important;
}

.app--form-settings .form-control-solid {
  border-color: var(--bs-gray-300) !important;
}

.form-control {
  background: var(--bs-bg-input);
  color: #6c7984;
}

.form-label {
  margin-bottom: .55rem;
  font-size: 13px;
  color: var(--bs-text-gray-400);
  font-weight: 500;
}

.iti.iti--allow-dropdown {
  width: 100%;
}

.iti__arrow {
  border-top: 4px solid var(--bs-gray-300) !important;
}

.iti__country-list {
  width: 385px !important;
  border-radius: 10px !important;
  overflow-x: hidden;
}

.iti__country {
  padding: 15px 10px !important;
}

@media (max-width: 991.98px) {
  .iti__country-list {
    width: 340px !important;
  }
}

@media (max-width: 600px) {
  .wrapper-paginator {
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
  }
}

.form-control.is-invalid~.btn[data-kt-password-meter-control="visibility"] i {
  right: 20px;
  top: -11px;
}

.app--orders .badge-success,
.app--orders .badge-warning,
.app--orders .badge-danger {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 576px) {
  .app--orders .badge-success,
  .app--orders .badge-warning,
  .app--orders .badge-danger {
    font-size: 0.9rem;
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
  }
  .app--orders-split,
  .app--orders-date {
    white-space: nowrap;
  }
  .app--orders-ver-mais {
    white-space: nowrap;
    text-align: center !important;
  }
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>td.sorting:before,
table.dataTable thead>tr>td.sorting:after,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_asc:after,
table.dataTable thead>tr>td.sorting_desc:before,
table.dataTable thead>tr>td.sorting_desc:after,
table.dataTable thead>tr>td.sorting_asc_disabled:before,
table.dataTable thead>tr>td.sorting_asc_disabled:after,
table.dataTable thead>tr>td.sorting_desc_disabled:before,
table.dataTable thead>tr>td.sorting_desc_disabled:after {
  right: 0 !important;
}

.app--wallets td {
  font-weight: 500 !important;
}

[data-bs-theme="light"] body.app--errors {
  background: url("/theme/assets/media/auth/bg10.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}

[data-bs-theme="dark"] body.app--errors {
  background: url("/theme/assets/media/auth/bg10-dark.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
}

#kt_app_header_wrapper .form-control {
  background-color: var(--bs-body-bg) !important;
}

.custom-card-posts .image-wrapper {
  position: relative;
  display: inline-block;
}

.custom-card-posts .image-wrapper img.image-personalized {
  object-fit: cover;
  display: block;
}

.custom-card-posts .image-wrapper h5.category-name {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-size: calc(1.1em - .1vw);
  margin: 0;
  font-weight: bold;
  color: white;
  z-index: 2;
  pointer-events: none;
  text-align: start;
  max-width: 90%;
  /* Limita a largura do texto no contêiner */
  max-height: 7.5em;
  /* Aproximadamente 3 linhas de altura */
  line-height: 1.5;
  /* Espaçamento entre linhas */
  overflow: hidden;
  /* Oculta o texto excedente */
  display: -webkit-box;
  /* Ativa o comportamento para múltiplas linhas */
  -webkit-line-clamp: 5;
  /* Limita o texto a 3 linhas */
  -webkit-box-orient: vertical;
  /* Define a orientação do layout para truncar */
  text-overflow: ellipsis;
  /* Adiciona os '...' no final */
  white-space: normal;
  /* Permite quebra de linha dentro do limite */
}


.skeleton-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

#kt_modal_address_required .modal-content {
  background-color: var(--bs-app-header-base-bg-color) !important;
}