.alert {
  padding: 1rem 6px;
  display: grid;
  color: #757575;
  text-align: center;
  border-radius: var(--border-secondary);
  font-size: 16px;
  margin: 0.5rem 0;
}
.alert.error {
  background-color: rgb(249.3292682927, 183.1707317073, 183.1707317073);
  border: 1px solid var(--error);
}
.alert.warning {
  background-color: rgb(255, 218.7570850202, 68.5);
  border: 1px solid var(--warning);
}
.alert.success {
  background-color: rgb(183.0769230769, 241.9230769231, 189.6153846154);
  border: 1px solid var(--success);
  color: var(--text-on-primary);
}
.alert.info {
  background-color: #caf0f8;
  border: 1px solid #e2e2e2;
}
.alert .beyond-icon-button {
  position: absolute;
  right: 1rem;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.badge {
  border-radius: var(--border-primary);
  height: 26px;
  display: block;
  width: 7rem;
  text-align: center;
  line-height: 26px;
  color: var(--text-on-secondary);
  text-transform: lowercase;
}
.badge:first-letter {
  text-transform: uppercase;
}
.badge.approved {
  background-color: hsl(124, 100%, 50%);
}
.badge.pending {
  background-color: hsl(42, 100%, 50%);
}
.badge.cancel {
  background-color: hsl(0, 100%, 50%);
}
.badge.paid {
  background-color: var(--primary);
}
.badge.initial {
  background-color: hsl(210, 5%, 32%);
}
.badge.process {
  background-color: rgb(255, 136, 0);
}
.badge.closed {
  background-color: rgb(0, 11, 136);
}
.badge.rejected {
  background-color: rgb(124, 0, 114);
}
.beyond-icon-button {
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  display: inline-grid;
  position: relative;
  outline: none !important;
  align-items: center;
  justify-content: center;
}
.beyond-icon-button:not(.beyond-icon-button:disabled) {
  cursor: pointer;
}
.beyond-icon-button:disabled {
  opacity: 0.6;
}
.beyond-icon-button svg.beyond-icon {
  height: 15px;
  width: 15px;
}
.beyond-icon-button.circle {
  border-radius: 50%;
}
.beyond-icon-button.circle > .beyond-ripple {
  border-radius: 50%;
  align-self: center;
}
.beyond-icon-button.primary {
  background: var(--primary);
  color: var(--text-on-primary);
}
.beyond-icon-button.primary.dark {
  background: var(--primary-dark);
}
.beyond-icon-button.primary.light {
  background: var(--primary-light);
}
.beyond-icon-button.primary svg {
  fill: var(--text-on-primary);
}
.beyond-icon-button.gray {
  background: var(--gray-light);
}
.beyond-icon-button.secondary {
  background: var(--secondary);
  fill: var(--text-on-secondary);
  color: var(--text-on-secondary);
}
.beyond-icon-button.secondary.dark {
  background: var(--secondary-dark);
}
.beyond-icon-button.secondary.light {
  background: var(--secondary-light);
}
.beyond-icon-button.small-icon {
  height: 24px;
  width: 24px;
}
.beyond-icon-button.small-icon .beyond-icon {
  height: 12px;
  width: 12px;
}
.beyond-icon {
  height: 20px;
  width: 20px;
  position: relative;
}
.beyond-icon.circle {
  border-radius: 50%;
  padding: 5px;
}
.beyond-icon svg {
  fill: var(--text-on-primary);
}
.boxShadow {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}
.btn.beyond-button {
  cursor: pointer;
  width: auto;
  min-height: 35px;
  max-height: 35px;
  transition: all 300ms ease-in;
  border-radius: 8px;
  font-weight: 500;
  padding: 0 15px;
  display: inline-block;
  text-transform: lowercase;
  border: none;
}
.btn.beyond-button:not(:disabled) {
  box-shadow: rgba(240, 240, 240, 0.08) 0 1px 2px 0, rgb(240, 240, 240) 0 1px 3px 1px;
}
.btn.beyond-button:active:not(:disabled) {
  transform: translateY(3px);
}
.btn.beyond-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn.beyond-button.btn-primary {
  background-color: var(--primary);
  color: var(--text);
}
.btn.beyond-button.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-dark);
}
.btn.beyond-button.btn-primary-dark {
  background-color: var(--primary-dark);
  color: var(--text);
}
.btn.beyond-button.btn-primary-dark:hover:not(:disabled) {
  background-color: var(--primary);
}
.btn.beyond-button.btn-border {
  border: 1px solid var(--primary);
  background-color: var(--gray-lighter);
  color: #1f1f28 !important;
}
.btn.beyond-button.btn-border:hover:not(:disabled) {
  background-color: #f6f6ff;
}
.btn.beyond-button.btn-cancel {
  background-color: var(--gray-variant);
  color: var(--text-on-secondary);
}
.btn.beyond-button.btn-cancel:hover:not(:disabled) {
  background-color: var(--gray);
}
.btn.beyond-button:first-letter {
  text-transform: uppercase;
}
@media screen and (max-width: 360px) {
  .btn.beyond-button {
    font-size: 12px;
  }
}

.beyond-button.spinner .beyond-element-spinner circle {
  stroke: var(--element-bg) !important;
}
.beyond-checkbox .cbx {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.beyond-checkbox .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
  color: var(--gray-darker);
  font-weight: 500;
}
.beyond-checkbox .cbx span:first-child {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid var(--gray-darker);
  transition: all 0.2s ease;
}
.beyond-checkbox .cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
  width: 10px;
}
.beyond-checkbox .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 6px;
  transition-delay: 0.2s;
}
.beyond-checkbox .cbx span:last-child:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  height: 1px;
  width: 100%;
  transform-origin: 0 0;
  transform: scaleX(0);
}
.beyond-checkbox .cbx:hover span:first-child {
  border-color: var(--primary);
}
.beyond-checkbox .inp-cbx:checked + .cbx span:first-child {
  border-color: var(--primary);
  background: var(--primary);
  -webkit-animation: check 0.6s ease;
  animation: check 0.6s ease;
}
.beyond-checkbox .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.beyond-checkbox .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.beyond-checkbox .inp-cbx:checked + .cbx span:last-child {
  color: var(--gray-darker);
  transition: all 0.3s ease;
}
.beyond-checkbox .inp-cbx:checked + .cbx span:after {
  transform: scaleX(1);
  transition: all 0.3s ease;
}
@-webkit-keyframes check {
  50% {
    transform: scale(1.2);
  }
}
@keyframes check {
  50% {
    transform: scale(1.2);
  }
}
.drag-and-drop-container {
  background-color: #fff;
  width: 31rem;
  margin: 0 auto;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
}
.drag-and-drop-container .title-drag {
  font-size: 21px;
  margin-bottom: 15px;
  text-align: center;
  display: block;
}
.drag-and-drop-container .drop-file-button {
  width: 90%;
  display: flex;
  justify-content: flex-end;
  margin: 15px auto 0;
}
.drag-and-drop-container .drop-file-button .beyond-button {
  min-width: 7rem;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area {
  width: 90%;
  height: 200px;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  font-size: 24px;
  color: #555555;
  border: 2px #4267b2 dashed;
  border-radius: 12px;
  margin: auto;
  background-color: #f5f8ff;
  position: relative;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area .beyond-element-image {
  margin: 0;
  width: 120px;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area .beyond-element-image img {
  width: 100%;
  height: 100%;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area span {
  font-size: 16px;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area .area__icon {
  font-size: 64px;
  margin-top: 20px;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area.hover {
  cursor: pointer;
}
.drag-and-drop-container .FilesDragAndDrop .FilesDragAndDrop__area.hover:hover {
  opacity: 0.65;
}

.FilesDragAndDrop {
  position: relative;
}
.FilesDragAndDrop .FilesDragAndDrop__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  background-color: #e7e7e7;
  border-radius: 12px;
  color: #7f8e99;
  font-size: 24px;
  opacity: 0.9;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto;
}
.FilesDragAndDrop .FilesDragAndDrop__placeholder.FilesDragAndDrop__placeholder--error {
  background-color: #f7e7e7;
  color: #cf8e99;
}
.FilesDragAndDrop .FilesDragAndDrop__placeholder.FilesDragAndDrop__placeholder--success {
  background-color: #e7f7e7;
  color: #8ecf99;
}

.drop-file-preview {
  margin-top: 20px;
  max-height: 10rem;
  overflow: auto;
  padding: 0 10px;
}
.drop-file-preview::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  margin-top: 10px;
}
.drop-file-preview::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
  cursor: pointer;
}
.drop-file-preview::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.drop-file-preview::-webkit-scrollbar-thumb:active {
  background: var(--primary-dark);
}
.drop-file-preview::-webkit-scrollbar-track {
  background-color: #e1e1e1;
  border-radius: 4px;
}

.drop-file-preview p {
  font-weight: 500;
  margin: 0;
}

.drop-file-preview__title {
  margin-bottom: 20px;
  font-size: 17px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.drop-file-preview__item {
  position: relative;
  display: flex;
  margin-bottom: 10px;
  background-color: var(--input-bg);
  padding: 15px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  border-radius: 20px;
  margin-top: 20px;
}

.drop-file-preview__item img {
  width: 80px;
  margin-right: 20px;
}

.drop-file-preview__item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  row-gap: 8px;
}
.drop-file-preview__item__info p {
  margin: 0;
  font-size: 14px;
}

.drop-file-preview__item__del {
  background-color: var(--box-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.info-drag {
  padding: 1rem 2rem;
  display: grid;
  color: #000;
  text-align: left;
  border-radius: 8px;
  font-size: 13px;
  background-color: #caf0f8;
  border: 1px solid #e2e2e2;
  max-width: 90%;
  margin: 0 auto 15px;
}

.success-drag {
  padding: 1rem 2rem;
  display: grid;
  text-align: left;
  border-radius: 8px;
  font-size: 13px;
  background-color: rgb(183.0769230769, 241.9230769231, 189.6153846154);
  border: 1px solid var(--success);
  color: var(--text-on-primary);
  max-width: 90%;
  margin: 15px auto 0;
}

.warning-drag {
  padding: 1rem 2rem;
  display: grid;
  text-align: left;
  border-radius: 8px;
  font-size: 13px;
  background-color: rgb(255, 218.7570850202, 68.5);
  border: 1px solid var(--warning);
  color: var(--text-on-primary);
  max-width: 90%;
  margin: 15px auto 0;
  line-height: 19px;
}

.modal-drag-and-drop.modal-content-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 0;
  border-radius: var(--border-secondary);
}
.modal-drag-and-drop.modal-content-wrapper .content-info {
  max-height: 7rem;
  overflow: auto;
}
.modal-drag-and-drop.modal-content-wrapper .content-info::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  margin-top: 10px;
}
.modal-drag-and-drop.modal-content-wrapper .content-info::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
  cursor: pointer;
}
.modal-drag-and-drop.modal-content-wrapper .content-info::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.modal-drag-and-drop.modal-content-wrapper .content-info::-webkit-scrollbar-thumb:active {
  background: var(--primary-dark);
}
.modal-drag-and-drop.modal-content-wrapper .content-info::-webkit-scrollbar-track {
  background-color: #e1e1e1;
  border-radius: 4px;
}
.beyond-element-empty {
  text-align: center;
  color: var(--gray);
  padding: 15px 15%;
  display: flex;
  flex-flow: row;
  justify-items: center;
  align-items: center;
  height: 100%;
}
.beyond-element-empty .content {
  justify-items: center;
  display: flex;
  margin: auto;
  flex-flow: column;
}
.beyond-element-empty h3 {
  margin: 15px 0;
  font-size: 18px;
  text-transform: lowercase;
}
.beyond-element-empty h3:first-letter {
  text-transform: uppercase;
}
.beyond-element-empty a {
  color: var(--gray-light);
  font-size: 18px;
}
.beyond-element-empty a:hover {
  text-decoration: none;
  cursor: pointer;
}
.beyond-element-empty svg {
  width: 45px;
  height: 45px;
  display: grid;
  margin: auto;
  fill: var(--gray);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeIn {
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInNormal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInNormal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn-normal {
  -webkit-animation-name: fadeInNormal;
  animation-name: fadeInNormal;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
.floating-button.beyond-icon-button {
  width: 3rem;
  height: 3rem;
  display: flex;
  padding: 0;
  position: fixed;
  bottom: 6rem;
  right: 3rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  -webkit-clip-path: circle();
  clip-path: circle();
  max-height: inherit;
}
.floating-button.beyond-icon-button svg.beyond-icon {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 450px) {
  .floating-button.beyond-icon-button {
    right: 1rem;
  }
}
.justify-end {
  justify-content: flex-end;
}

.hide {
  visibility: hidden;
}

.icon-header.beyond-icon-button svg.beyond-icon,
.icon-header.beyond-icon-button svg.pragmate-icon,
.icon-header.pragmate-icon-button svg.beyond-icon,
.icon-header.pragmate-icon-button svg.pragmate-icon {
  width: 26px;
  height: 26px;
  fill: var(--primary-dark);
}

.total-items {
  font-size: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-style: italic;
  color: #4e5256;
  font-weight: 300;
}
.total-items.padding {
  padding-left: 16px;
}
.total-items strong {
  font-weight: 300;
  color: var(--primary-dark);
}

.end-column {
  display: block;
  text-align: center !important;
  width: 100%;
}
.page__container {
  display: flex;
  height: 100%;
  padding: 3rem 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page__container form {
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-primary);
  background-color: var(--element-bg);
  box-shadow: var(--box-shadow);
}
.page__container .title-login {
  margin: 0;
  padding: 0;
  font-size: 25px;
  text-align: center;
  color: var(--primary-dark);
  display: inline-block;
  text-transform: lowercase;
}
.page__container .title-login:first-letter {
  text-transform: uppercase;
}
.page__container .texts-subtitle {
  font-size: 14px;
  color: var(--gray);
  line-height: 20px;
  margin: 0.5rem 0 0;
  font-style: italic;
}
@media screen and (max-width: 450px) {
  .page__container .title-login {
    font-size: 16px;
  }
  .page__container .texts-subtitle {
    font-size: 12px;
  }
}

.hide {
  display: none;
}

.d-flex {
  display: flex;
}

.ga-16 {
  gap: 16px;
}

.ga-8 {
  gap: 16px;
}

.gap-8 {
  gap: 8px;
}

.gap-4 {
  gap: 4px;
}

.w-100 {
  width: 100%;
}

.align-end {
  align-items: end;
}

.flex-colum {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.mt-16 {
  margin-top: 1rem;
}

.align-start {
  align-items: flex-start;
}
.beyond-element-input, .beyond-element-textarea {
  width: 100%;
  position: relative;
  border: 1.5px solid var(--border-variant);
  border-radius: var(--border-secondary);
  margin: 1rem 0;
  transition: all 0.4s ease-in-out;
}
.beyond-element-input .beyond-input__required-label, .beyond-element-textarea .beyond-input__required-label {
  position: absolute;
  right: 1rem;
  bottom: 0.45rem;
  color: var(--error);
}
.beyond-element-input input, .beyond-element-input textarea, .beyond-element-textarea input, .beyond-element-textarea textarea {
  padding: 0.5rem 1rem;
  border: none;
  background-color: transparent;
  width: 100%;
  outline: none;
  color: var(--gray-darker);
  font-size: 16px;
  line-height: 1.5rem;
  transition: all 0.4s ease-in-out;
  background-clip: content-box;
}
.beyond-element-input input:-webkit-autofill, .beyond-element-input input:-webkit-autofill:focus, .beyond-element-input textarea:-webkit-autofill, .beyond-element-input textarea:-webkit-autofill:focus, .beyond-element-textarea input:-webkit-autofill, .beyond-element-textarea input:-webkit-autofill:focus, .beyond-element-textarea textarea:-webkit-autofill, .beyond-element-textarea textarea:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
}
.beyond-element-input input:focus, .beyond-element-input textarea:focus, .beyond-element-textarea input:focus, .beyond-element-textarea textarea:focus {
  color: var(--gray-dark);
}
.beyond-element-input input[data-autocompleted], .beyond-element-textarea input[data-autocompleted] {
  background-color: transparent !important;
}
.beyond-element-input:hover, .beyond-element-input:focus-within, .beyond-element-textarea:hover, .beyond-element-textarea:focus-within {
  border-color: var(--primary);
}
.beyond-element-input:hover input, .beyond-element-input:hover textarea, .beyond-element-textarea:hover input, .beyond-element-textarea:hover textarea {
  color: var(--gray-dark);
}
.beyond-element-input label, .beyond-element-textarea label {
  position: absolute;
  background-color: transparent;
  padding: 8px 24px;
  line-height: 24px;
  top: 0;
  left: 0;
  bottom: 0;
  color: var(--gray-dark);
  cursor: text;
  transition: all 0.4s ease-in-out;
  text-transform: lowercase;
}
.beyond-element-input label:first-letter, .beyond-element-textarea label:first-letter {
  text-transform: uppercase;
}
.beyond-element-input:focus-within label,
.beyond-element-input input:not(:placeholder-shown) ~ label,
.beyond-element-input textarea:not(:placeholder-shown) ~ label, .beyond-element-textarea:focus-within label,
.beyond-element-textarea input:not(:placeholder-shown) ~ label,
.beyond-element-textarea textarea:not(:placeholder-shown) ~ label {
  padding: 0px 8px;
  background-color: var(--element-bg);
  top: -12px;
  left: 16px;
  bottom: auto;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
}
.beyond-element-input .beyond-element-input-error, .beyond-element-textarea .beyond-element-input-error {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  color: var(--error);
  font-size: 12px;
}
.beyond-element-input.disabled, .beyond-element-input:disabled, .beyond-element-textarea.disabled, .beyond-element-textarea:disabled {
  opacity: 0.4;
  cursor: no-drop;
}
.beyond-element-input.disabled:focus-within, .beyond-element-input.disabled:hover, .beyond-element-input:disabled:focus-within, .beyond-element-input:disabled:hover, .beyond-element-textarea.disabled:focus-within, .beyond-element-textarea.disabled:hover, .beyond-element-textarea:disabled:focus-within, .beyond-element-textarea:disabled:hover {
  border: 1.5px solid var(--border-variant);
  color: var(--gray);
}
.beyond-element-input.disabled:focus-within input, .beyond-element-input.disabled:focus-within textarea, .beyond-element-input.disabled:hover input, .beyond-element-input.disabled:hover textarea, .beyond-element-input:disabled:focus-within input, .beyond-element-input:disabled:focus-within textarea, .beyond-element-input:disabled:hover input, .beyond-element-input:disabled:hover textarea, .beyond-element-textarea.disabled:focus-within input, .beyond-element-textarea.disabled:focus-within textarea, .beyond-element-textarea.disabled:hover input, .beyond-element-textarea.disabled:hover textarea, .beyond-element-textarea:disabled:focus-within input, .beyond-element-textarea:disabled:focus-within textarea, .beyond-element-textarea:disabled:hover input, .beyond-element-textarea:disabled:hover textarea {
  color: var(--gray-darker);
}
.beyond-element-input.disabled:focus-within label,
.beyond-element-input.disabled input:not(:placeholder-shown) ~ label,
.beyond-element-input.disabled textarea:not(:placeholder-shown) ~ label,
.beyond-element-input.disabled label, .beyond-element-input:disabled:focus-within label,
.beyond-element-input:disabled input:not(:placeholder-shown) ~ label,
.beyond-element-input:disabled textarea:not(:placeholder-shown) ~ label,
.beyond-element-input:disabled label, .beyond-element-textarea.disabled:focus-within label,
.beyond-element-textarea.disabled input:not(:placeholder-shown) ~ label,
.beyond-element-textarea.disabled textarea:not(:placeholder-shown) ~ label,
.beyond-element-textarea.disabled label, .beyond-element-textarea:disabled:focus-within label,
.beyond-element-textarea:disabled input:not(:placeholder-shown) ~ label,
.beyond-element-textarea:disabled textarea:not(:placeholder-shown) ~ label,
.beyond-element-textarea:disabled label {
  color: var(--gray);
  cursor: no-drop;
}
.beyond-element-input.disabled input, .beyond-element-input.disabled textarea, .beyond-element-input:disabled input, .beyond-element-input:disabled textarea, .beyond-element-textarea.disabled input, .beyond-element-textarea.disabled textarea, .beyond-element-textarea:disabled input, .beyond-element-textarea:disabled textarea {
  cursor: no-drop;
}
.beyond-element-input.has-icon label, .beyond-element-textarea.has-icon label {
  padding: 8px 25px !important;
}
.beyond-element-input.has-icon:focus-within label,
.beyond-element-input.has-icon input:not(:placeholder-shown) ~ label,
.beyond-element-input.has-icon textarea:not(:placeholder-shown) ~ label, .beyond-element-textarea.has-icon:focus-within label,
.beyond-element-textarea.has-icon input:not(:placeholder-shown) ~ label,
.beyond-element-textarea.has-icon textarea:not(:placeholder-shown) ~ label {
  padding: 0px 28px !important;
}
.beyond-element-input .eye.beyond-icon-button, .beyond-element-textarea .eye.beyond-icon-button {
  position: absolute;
  right: 0.5rem;
}
.beyond-element-input .eye.beyond-icon-button svg.beyond-icon, .beyond-element-textarea .eye.beyond-icon-button svg.beyond-icon {
  width: 20px;
  height: 20px;
  color: var(--gray);
  fill: var(--gray);
}
.beyond-element-input.error, .beyond-element-textarea.error {
  border-color: var(--error);
}
@media screen and (min-width: 768px) {
  .beyond-element-input .beyond-element-input-error, .beyond-element-textarea .beyond-element-input-error {
    font-size: 13px;
    bottom: -1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 1200px) {
  .beyond-element-input .beyond-element-input-error, .beyond-element-textarea .beyond-element-input-error {
    font-size: 13px;
  }
}
@media screen and (max-width: 360px) {
  .beyond-element-input, .beyond-element-textarea {
    font-size: 12px;
  }
  .beyond-element-input .beyond-input__required-label, .beyond-element-textarea .beyond-input__required-label {
    font-size: 16px;
  }
  .beyond-element-input input, .beyond-element-textarea input {
    padding: 0.4rem 1rem;
    line-height: 1.1rem;
    font-size: 13px;
  }
  .beyond-element-input label, .beyond-element-textarea label {
    line-height: 17px;
  }
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 510px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}

.Toastify__toast-body > div:last-child {
  flex: 1;
  word-break: break-all;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@-webkit-keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  -webkit-animation: Toastify__trackProgress linear 1 forwards;
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  -webkit-animation: Toastify__spin 0.65s linear infinite;
  animation: Toastify__spin 0.65s linear infinite;
}

@-webkit-keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  -webkit-animation-name: Toastify__bounceInLeft;
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  -webkit-animation-name: Toastify__bounceInRight;
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  -webkit-animation-name: Toastify__bounceInDown;
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  -webkit-animation-name: Toastify__bounceInUp;
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  -webkit-animation-name: Toastify__bounceOutLeft;
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  -webkit-animation-name: Toastify__bounceOutRight;
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  -webkit-animation-name: Toastify__bounceOutUp;
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  -webkit-animation-name: Toastify__bounceOutDown;
  animation-name: Toastify__bounceOutDown;
}

@-webkit-keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  -webkit-animation-name: Toastify__zoomIn;
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  -webkit-animation-name: Toastify__zoomOut;
  animation-name: Toastify__zoomOut;
}

@-webkit-keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@-webkit-keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  -webkit-animation-name: Toastify__flipIn;
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  -webkit-animation-name: Toastify__flipOut;
  animation-name: Toastify__flipOut;
}

@-webkit-keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@-webkit-keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  -webkit-animation-name: Toastify__slideInLeft;
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  -webkit-animation-name: Toastify__slideInRight;
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  -webkit-animation-name: Toastify__slideInDown;
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  -webkit-animation-name: Toastify__slideInUp;
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  -webkit-animation-name: Toastify__slideOutLeft;
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  -webkit-animation-name: Toastify__slideOutRight;
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  -webkit-animation-name: Toastify__slideOutUp;
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  -webkit-animation-name: Toastify__slideOutDown;
  animation-name: Toastify__slideOutDown;
}

@-webkit-keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-link {
  color: var(--primary);
  display: inline-block;
  cursor: pointer;
  text-transform: lowercase;
  font-size: 16px;
}
.btn-link:first-letter {
  text-transform: uppercase;
}
.btn-link:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
@media screen and (max-width: 360px) {
  .btn-link {
    font-size: 12px;
  }
}
.beyond-element-modal.approval-confirm .modal-content {
  min-width: 25rem;
  max-width: 35rem;
}
.beyond-element-modal.approval-confirm .modal-content .confirm-dialog-content {
  padding-top: 0px;
}
.beyond-element-modal.approval-confirm .modal-content p {
  word-break: break-all;
  font-size: 13px;
}
.beyond-element-modal.approval-confirm .modal-content summary {
  font-size: 18px;
  font-weight: 500;
}
.modal-backdrop {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 200;
}

.modal-content-wrapper {
  position: fixed;
  width: 300px;
  height: 300px;
  background-color: white;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 50px;
}
.modal-content-wrapper .beyond-icon-button {
  float: right;
  position: relative;
  z-index: 200;
}
.beyond-alert-dialog.beyond-alert-dialog-centered .alert-dialog-content, .beyond-alert-dialog.beyond-alert-dialog-centered .actions {
  display: grid;
  justify-content: center;
}
.beyond-alert-dialog .actions {
  border-top: 1px solid var(--gray-light);
  margin-top: 15px;
  display: grid;
  justify-content: end;
  padding: 15px 0 0;
}
.beyond-alert-dialog .actions .beyond-button {
  margin: 0;
}
body.body-beyond-modal-opened {
  height: 100vh;
  overflow-y: hidden;
  padding-right: 15px; /* Avoid width reflow */
}

.beyond-element-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.beyond-element-modal.show-modal {
  display: block;
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  padding: 20px;
}
.beyond-element-modal .modal-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.beyond-element-modal .modal-content {
  position: relative;
  color: #000;
  background: #FFF;
  padding: 1.5rem;
}
.beyond-element-modal .close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  display: inline-block;
  fill: var(--gray);
  color: var(--gray);
  transition: all 100ms ease-in;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.beyond-element-modal .close-icon:hover, .beyond-element-modal .close-icon:focus {
  fill: var(--gray-dark);
  color: var(--gray);
  transition: all 100ms ease-in;
}
.beyond-element-modal .close-icon svg {
  height: 12px;
  width: 13px;
  fill: #000;
}
.beyond-confirm-dialog.beyond-confirm-dialog-centered {
  justify-content: center;
  text-align: center;
}
.beyond-confirm-dialog.beyond-confirm-dialog-centered .confirm-dialog-content,
.beyond-confirm-dialog.beyond-confirm-dialog-centered .actions {
  display: grid;
  justify-content: center;
}
.beyond-confirm-dialog .actions {
  border-top: 1px solid var(--gray-light);
  padding: 15px 0 0;
  margin-top: 15px;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 8px;
  justify-content: end;
}
.beyond-confirm-dialog .actions .beyond-button {
  margin: 0;
  min-width: 6rem;
}
.beyond-confirm-dialog.modal-confirm {
  transform: none;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: var(--border-secondary);
  display: flex;
  flex-direction: row-reverse;
}
.beyond-confirm-dialog.modal-confirm .modal-content {
  padding: 8px 0px 0 0;
  max-width: 400px;
}
.beyond-confirm-dialog.modal-confirm .modal-content p {
  margin: 0;
  font-size: 15px;
}
.beyond-confirm-dialog.modal-confirm .modal-content summary {
  font-size: 17px;
  font-weight: 500;
}
.beyond-confirm-dialog.modal-confirm .close-modal {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: max-content;
  position: absolute;
  top: 8px;
  right: 8px;
}
.beyond-element-modal.md .modal-content {
  width: 70%;
}
.beyond-element-modal.lg .modal-content {
  width: 90%;
}
@media (max-width: 600px) {
  .beyond-element-modal .modal-content, .beyond-element-modal.md .modal-content, .beyond-element-modal.lg .modal-content {
    width: 90%;
  }
}
@media (max-width: 900px) {
  .beyond-element-modal.md {
    min-width: 80%;
  }
  .beyond-element-modal.lg {
    width: 90%;
  }
}
.modal-dispatch {
  padding: 0;
  width: 95%;
  height: 100%;
  max-height: 750px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: var(--border-secondary);
}
.modal-dispatch .beyond-icon-button {
  position: absolute;
  right: 0;
}
.modal-dispatch .modal-content {
  height: 100%;
  padding: 25px;
}
.modal-dispatch .modal-content .container-dispatch {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  column-gap: 32px;
  align-items: center;
}
.modal-dispatch .modal-content .container-dispatch strong {
  text-transform: uppercase;
}
.modal-dispatch .modal-content .container-dispatch .beyond-element-image {
  margin: 0;
  flex: 1 1 50%;
  height: 100%;
  padding: 0 1rem;
  max-width: 100%;
  max-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 450px;
  min-height: 450px;
  border: 1px solid #707070;
  border-radius: 8px;
}
.modal-dispatch .modal-content .container-dispatch .beyond-element-image img {
  width: 95%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  object-fit: scale-down;
}
.modal-dispatch .modal-content .container-dispatch .dispatch-content {
  height: 100%;
  flex: 1 1 50%;
  padding: 10px;
  row-gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-dispatch .modal-content .container-dispatch .dispatch-content h3 {
  margin: 0;
  font-size: 35px;
}
.modal-dispatch .modal-content .container-dispatch .check-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  font-size: 16px;
  color: #757575;
  justify-content: center;
}
.modal-dispatch .modal-content .container-dispatch .check-list .title-category {
  min-height: 150px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #d5eaff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  color: #242021;
  font-size: 30px;
  font-weight: 500;
}
.modal-dispatch .modal-content .container-dispatch .check-list .brand {
  min-height: 49px;
  background: #d5eaff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  opacity: 1;
  display: flex;
  justify-content: center;
  padding: 27px;
}
.modal-dispatch .modal-content .container-dispatch .check-list .two-features {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.modal-dispatch .modal-content .container-dispatch .check-list .two-features span {
  min-height: 49px;
  background: #d5eaff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  line-height: 3;
  min-width: 200px;
  padding: 0 27px 0;
}
.modal-dispatch .modal-content .container-dispatch .check-list .warehouses {
  min-height: 92px;
  background: #d5eaff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  padding: 27px;
  color: #242021;
}
.modal-dispatch .modal-content .container-dispatch .check-list .warehouses ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #242021;
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}
.modal-dispatch .modal-content .container-dispatch .check-list .warehouses ul li {
  font-size: 28px;
}
.modal-dispatch .modal-content .container-dispatch .check-list .warehouses strong {
  font-size: 27px;
}
.modal-dispatch .modal-content .container-dispatch .check-list span {
  font-size: 30px;
  color: #242021;
}
.massive-approval-modal {
  min-width: 577px;
  max-width: 800px;
  width: 100%;
  padding: 16px 21px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
}
.massive-approval-modal .select-options {
  flex: 1 1 50%;
}
.massive-approval-modal .content-approval header .modal-title-approval {
  color: #242021;
  font-size: 18px;
  font-weight: 400;
}
.massive-approval-modal .content-approval input {
  padding: 5px 10px;
  font-size: 14px;
}
.massive-approval-modal .content-approval .form-group-approval {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.massive-approval-modal .content-approval .form-group-approval label {
  letter-spacing: 0px;
  color: #757575;
  font-size: 13px;
}
.massive-approval-modal .content-approval .form-group-approval .beyond-element-input, .massive-approval-modal .content-approval .form-group-approval .beyond-element-textarea {
  margin: 0;
}
.massive-approval-modal .content-approval .form-group-approval .beyond-element-input {
  max-width: 300px;
}
.massive-approval-modal .content-approval .beyond-button {
  margin: 16px 0 0;
  float: right;
  min-width: 100px;
}

.list-operations-by-approval {
  padding: 0;
  margin: 16px 0;
}
.list-operations-by-approval .items-approvals {
  max-height: 265px;
  overflow-y: auto;
}
.list-operations-by-approval .items-approvals::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  margin-top: 10px;
}
.list-operations-by-approval .items-approvals::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
  cursor: pointer;
}
.list-operations-by-approval .items-approvals::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.list-operations-by-approval .items-approvals::-webkit-scrollbar-thumb:active {
  background: var(--primary-dark);
}
.list-operations-by-approval .items-approvals::-webkit-scrollbar-track {
  background-color: #e1e1e1;
  border-radius: 4px;
}
.list-operations-by-approval .header-list,
.list-operations-by-approval .item-list-approval {
  display: grid;
  grid-template-columns: 25px repeat(5, 1fr);
  place-items: center;
}
.list-operations-by-approval .items-approvals-history .item-list-approval, .list-operations-by-approval .header-list-history {
  grid-template-columns: repeat(3, 1fr) 25px;
}
.list-operations-by-approval .items-approvals-history .item-list-approval {
  overflow-x: hidden;
  padding: 0 4px;
}
.list-operations-by-approval .items-approvals-history .item-list-approval button.beyond-icon-button svg.beyond-icon {
  fill: var(--primary);
}
.list-operations-by-approval .header-list {
  border-bottom: 1px solid var(--gray-dark);
  height: 40px;
}
.list-operations-by-approval .item-list-approval {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-variant);
}
.list-operations-by-approval .item-list-approval .item-approval {
  display: flex;
  flex-direction: column;
}
.list-operations-by-approval .item-list-approval .beyond-element-image {
  margin: 0;
  width: 52px;
}
.list-operations-by-approval .item-list-approval .beyond-element-image img {
  width: 100%;
  height: 100%;
}
.list-operations-by-approval .item-list-approval span {
  display: inline-block;
  text-align: center;
  letter-spacing: 0px;
  color: #979797;
  font-size: 12px;
}
.list-operations-by-approval .item-list-approval .beyond-element-input {
  margin: 0;
  max-width: 80%;
}
.list-operations-by-approval .item-list-approval .beyond-element-input input {
  text-align: end;
}
.modal-payment.modal-reasons.modal-comments.modal-edit {
  min-width: 700px;
}
.modal-payment.modal-reasons.modal-comments.modal-edit .content-select .box-select {
  flex-direction: row;
  column-gap: 24px;
  width: 100%;
  padding: 0 16px;
}
.modal-payment.modal-reasons.modal-comments.modal-edit .add-card {
  margin: 8px 0 0;
  float: right;
  align-self: flex-end;
}
.modal-view-item {
  padding: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-width: 450px;
  word-break: break-all;
}
.modal-view-item .beyond-icon-button {
  display: none;
}
.approve-modal.modal-content-wrapper .content-history h4 {
  margin: 0 0 8px;
}
.approve-modal.modal-content-wrapper .form-group-approve {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.approve-modal.modal-content-wrapper .form-group-approve .beyond-element-input {
  margin: 0;
}
.approve-modal.modal-content-wrapper button.beyond-button {
  float: right;
  margin: 16px 0 8px;
  min-width: 110px;
}
.history-container.modal-content-wrapper {
  padding: 8px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  max-width: 350px;
  box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.history-container.modal-content-wrapper .close-modal.beyond-icon-button {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.history-container.modal-content-wrapper h4 {
  margin: 0;
  font-size: 18px;
}
.history-container.modal-content-wrapper .content-history {
  padding: 16px;
}
.history-container.modal-content-wrapper .content-history .history-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin: 8px 0 0;
}
.history-container.modal-content-wrapper .content-history .history-list a {
  color: #4e5256;
}
.history-container.modal-content-wrapper.history-container-approval {
  max-width: 700px;
}

.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em;
}

.react-calendar--doubleView {
  width: 700px;
}

.react-calendar--doubleView .react-calendar__viewContainer {
  display: flex;
  margin: -0.5em;
}

.react-calendar--doubleView .react-calendar__viewContainer > * {
  width: 50%;
  margin: 0.5em;
}

.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  box-sizing: border-box;
}

.react-calendar button {
  margin: 0;
  border: 0;
  outline: none;
}

.react-calendar button:enabled:hover {
  cursor: pointer;
}

.react-calendar__navigation {
  display: flex;
  height: 44px;
  margin-bottom: 1em;
}

.react-calendar__navigation button {
  min-width: 44px;
  background: none;
  font-size: 20px;
}

.react-calendar__navigation .react-calendar__navigation__label__labelText {
  font-size: 14px;
}

.react-calendar__navigation button:disabled {
  background-color: #f0f0f0;
}

.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6;
}

.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
}

.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em;
}

.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold;
}

.react-calendar__month-view__days__day--weekend {
  color: #d10000;
}

.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575;
}

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em;
}

.react-calendar__tile {
  max-width: 100%;
  padding: 10px 6.6667px;
  background: none;
  text-align: center;
  line-height: 16px;
}

.react-calendar__tile:disabled {
  background-color: #f0f0f0;
}

.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6;
}

.react-calendar__tile--now {
  background: var(--primary-light);
  color: var(--text-on-primary) !important;
}

.react-calendar__tile--now:enabled:hover {
  background: #e6e6e6;
  color: #757575 !important;
}

.react-calendar__tile--now:enabled:focus {
  background: #e6e6e6;
  color: #ffffff !important;
}

.react-calendar__tile.react-calendar__year-view__months__month {
  color: #757575;
}

.react-calendar__tile--hasActive {
  background: #76baff;
}

.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
  color: #757575 !important;
}

.react-calendar__tile--active {
  background: var(--primary);
  color: white !important;
}

.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff;
}

.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}
.postpone-container.modal-content-wrapper {
  padding: 8px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.postpone-container.modal-content-wrapper .close-modal.beyond-icon-button {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.postpone-container.modal-content-wrapper h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  color: #212121;
}
.postpone-container.modal-content-wrapper h6 {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
}
.postpone-container.modal-content-wrapper .content-history {
  padding: 16px;
}
.postpone-container.modal-content-wrapper .content-history .content-calendar {
  width: 100%;
  row-gap: 16px;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.postpone-container.modal-content-wrapper .content-history .content-calendar .react-calendar {
  margin: 0 auto;
}
.postpone-container.modal-content-wrapper .content-history .content-calendar .content-button {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.postpone-container.modal-content-wrapper .content-history .content-calendar .content-button button.beyond-button {
  align-self: flex-end;
  min-width: 120px;
  max-height: 38px;
  height: 38px;
}
.modal-reasons.modal-comments.modal-edit.modal-tags {
  max-width: 480px;
}
.modal-reasons.modal-comments.modal-edit.modal-tags .content-select {
  padding: 0px 22px;
}
.modal-reasons.modal-comments.modal-edit.modal-tags .content-select .box-select {
  width: 100%;
  min-width: auto;
}
.modal-reasons.modal-comments.modal-edit.modal-tags .content-select .box-select .beyond-element-radio label {
  color: #242021;
  margin: 0;
}
.operations-find.main-operations .perfect-scrollbar-view {
  width: 100%;
}
.operations-find.main-operations .perfect-scrollbar-view .jview-component {
  min-width: 100%;
  width: 100%;
}
.operations-find.main-operations .perfect-scrollbar-view .jview-component .header {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr)) !important;
  place-items: center;
}
.operations-find.main-operations .perfect-scrollbar-view .jview-component .header span {
  justify-self: initial;
}
.operations-find.main-operations .perfect-scrollbar-view .jview-component .card {
  min-width: 550px;
}
.operations-find.main-operations .perfect-scrollbar-view .jview-component .beyond-element-empty {
  margin: 20px auto 0;
}
.operations-find.main-operations .search-operations fieldset {
  margin: 0;
  display: block;
  left: 0;
  right: 0;
}
.operations-find.main-operations .content-item {
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr)) !important;
  place-items: center;
}
.operations-find.main-operations .content-item span {
  justify-self: initial;
}
.operations-find.main-operations .content-item figure.beyond-element-image {
  margin: 0;
}
.main-operations .header-operations.header-table {
  background-color: #fff;
  padding: 16px;
  border-radius: var(--border-secondary);
  box-shadow: var(--box-shadow);
  margin: 0 0 16px;
}
.main-operations .jview-component {
  padding: 0 20px 0;
}
.main-operations .jview-component .beyond-element-empty {
  padding: 40px;
  margin: auto;
  height: auto;
}
.main-operations .jview-component .card {
  margin: 0;
  padding: 0;
  min-width: 700px;
  overflow-x: visible;
  display: grid;
  grid-auto-columns: auto;
  grid-template-columns: 1fr;
}
.main-operations .jview-component .card .content-checkbox {
  display: flex;
  align-self: center;
  margin: 0;
  width: auto;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.main-operations .jview-component .card .content-checkbox input[type=checkbox] {
  cursor: pointer;
  margin: 0;
}
.main-operations .jview-component .card .content-checkbox input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.main-operations .jview-component .card .content-checkbox .beyond-icon-button svg {
  fill: var(--primary);
  width: 20px;
  height: 20px;
}
.main-operations .jview-component .header {
  display: grid;
  grid-template-columns: 3rem 200px 11rem repeat(auto-fit, minmax(75px, 1fr));
  padding: 20px 0 16px;
  margin-left: 0;
  place-items: center;
  border-bottom: 1px solid var(--gray-dark);
}
.main-operations .jview-component .header span {
  justify-self: start;
  color: #757575;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.main-operations .jview-component .header span.arrow {
  display: flex;
  align-items: center;
}
.main-operations .jview-component .header span.arrow .beyond-icon-button {
  width: 30px;
  height: 30px;
}
.main-operations .jview-component .header span.arrow .beyond-icon-button .beyond-icon {
  width: 30px;
  height: 30px;
}
.main-operations .jview-component .header .content-left {
  min-width: 10.5rem;
  display: flex;
  justify-content: flex-end;
  justify-self: right;
  align-items: center;
  z-index: 2;
  position: relative;
  background: #fff;
  max-height: 1rem;
}
.main-operations .jview-component .header input[type=checkbox] {
  margin: 0;
}
.main-operations .jview-component .header button:is(.beyond-icon-button) {
  width: 30px;
  height: 30px;
}
.main-operations .jview-component .header button:is(.beyond-icon-button) svg.beyond-icon {
  fill: var(--gray-variant);
  color: var(--gray-variant);
}
.main-operations .jview-component .header button:is(.beyond-icon-button):not(:disabled):hover svg.beyond-icon {
  fill: var(--primary);
  color: var(--primary);
}
.main-operations .jview-component .header button:is(.beyond-icon-button):disabled {
  cursor: not-allowed;
}
@media screen and (max-width: 450px) {
  .main-operations .jview-component {
    padding: 16px 8px;
  }
}
.main-operations .jview-component__header {
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
  margin: 0;
}
.main-operations .jview-component__header .header-lot {
  padding: 8px 0;
}
.main-operations .jview-component__header .date.form-group .beyond-element-input input,
.main-operations .jview-component__header .date.form-group .beyond-element-input label {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group .beyond-element-input input {
  background-size: 13px;
  background-position: right 1.8em top 44%, 0 0;
}
.main-operations .jview-component__header .date.form-group input.form-field::-webkit-input-placeholder {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group input.form-field::-moz-placeholder {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group input.form-field:-ms-input-placeholder {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group input.form-field::-ms-input-placeholder {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group input.form-field::placeholder {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group .beyond-button {
  font-size: 10px;
}
.main-operations .jview-component__header .date.form-group .beyond-icon-button.date {
  transform: translate(-70px, 0);
}
.main-operations .jview-component__header__content-search {
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.main-operations .jview-component .beyond-element-empty .content svg {
  width: 25px;
  height: 25px;
}
.main-operations .jview-component .beyond-element-empty .content h3 {
  font-size: 13px;
}
.main-operations.main-lots .jview-component {
  min-width: auto;
}
.main-operations.main-lots .jview-component .header {
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  place-content: center;
  place-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.main-operations.main-lots .jview-component__header .header-lot {
  padding: 8px 0;
}
.main-operations.main-receptions .jview-component {
  min-width: auto;
}
.main-operations.main-receptions .jview-component .header-lot {
  border-bottom: 1px solid var(--gray-dark);
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.main-operations.main-receptions .jview-component .header-lot .header {
  border-bottom: none;
}
.main-operations.main-receptions .jview-component .header-lot .content-left {
  grid-template-columns: repeat(3, 30px);
}
.main-operations.main-receptions .jview-component .header {
  grid-template-columns: 4rem 90px 10rem 9rem repeat(auto-fit, minmax(30px, 1fr));
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 0 0 6px;
}
.main-operations.main-receptions .jview-component .header .beyond-button {
  max-width: 7rem;
  max-height: 2rem;
  min-height: 30px;
  min-width: 80px;
  justify-self: end;
}
.main-operations.main-receptions .jview-component .header .item-checkbox {
  justify-self: start;
}
.main-operations.main-upc-not-found .jview-component {
  min-height: auto;
  min-width: auto;
}
.main-operations.main-upc-not-found .jview-component .header {
  grid-template-columns: 16px 6rem repeat(auto-fit, minmax(65px, 1fr));
  place-content: center;
  place-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 0 0 6px;
}
.main-operations.main-upc-not-found .jview-component .header .beyond-button {
  max-width: 7rem;
  max-height: 2rem;
  min-height: 30px;
  min-width: 80px;
  justify-self: normal;
}
.main-operations.main-upc-not-found .jview-component .header .content-left {
  min-width: auto;
}
.main-operations.operations-publications .jview-component .header {
  grid-template-columns: 4rem 90px 10rem 9rem repeat(auto-fit, minmax(30px, 1fr));
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.search-panel {
  display: flex;
  -moz-column-gap: 16px;
  column-gap: 16px;
  align-items: center;
}
.main-operations .beyond-checkbox .cbx span:last-child {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.main-operations .content-left {
  display: grid;
  justify-content: flex-end;
  justify-self: right;
  align-items: center;
  place-items: center;
  grid-template-columns: repeat(8, 30px);
}
.main-operations .content-left .icons {
  display: flex;
  justify-content: center;
}
.main-operations .content-left svg.beyond-icon {
  fill: var(--primary);
  color: var(--primary);
  width: 18px;
  height: 18px;
}
.main-operations .content-item {
  display: grid;
  grid-template-columns: 3rem 200px 11rem repeat(auto-fit, minmax(30px, 1fr));
  align-items: center;
  width: 100%;
  padding: 8px 0;
  place-items: center;
}
.main-operations .content-item span,
.main-operations .content-item strong {
  justify-self: start;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  color: #979797;
  font-size: 300;
}
.main-operations .content-item span a,
.main-operations .content-item strong a {
  text-decoration: none;
  color: #979797;
}
.main-operations .content-item span a:hover,
.main-operations .content-item strong a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-color: var(--primary);
  text-decoration-color: var(--primary);
}
.main-operations .content-item span:not(.tooltip):not(.tiptext):not(.tooltip-item):not(.span-check),
.main-operations .content-item strong {
  display: inline-block;
  text-align: center;
  max-width: 100%;
  z-index: 1;
  position: relative;
  align-self: center;
  justify-self: center;
}
.main-operations .content-item span:not(.tooltip):not(.tiptext):not(.tooltip-item):not(.span-check).number,
.main-operations .content-item strong.number {
  text-align: center;
  width: 100% !important;
  justify-self: center !important;
}
.main-operations .content-item span:not(.tooltip):not(.tiptext):not(.tooltip-item):not(.span-check).edit,
.main-operations .content-item strong.edit {
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid var(--border-variant);
  border-radius: var(--border-secondary);
  justify-self: center;
}
.main-operations .content-item span:not(.tooltip):not(.tiptext):not(.tooltip-item):not(.span-check).edit.disabled,
.main-operations .content-item strong.edit.disabled {
  pointer-events: none;
}
.main-operations .content-item strong {
  font-weight: 600;
}
.main-operations .content-item .item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px 0 0;
  width: 100%;
}
.main-operations .content-item .item-info span,
.main-operations .content-item .item-info strong {
  display: inline-block;
  text-align: left !important;
  width: auto !important;
}
.main-operations .content-item figure.beyond-element-image {
  width: 55px;
  height: 55px;
  margin: 0 auto;
}
.main-operations .content-item figure.beyond-element-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.main-operations .content-item figure.beyond-element-image.beyond-element-image-preload {
  background-color: var(--gray-light);
}
.main-operations .content-item figure.beyond-element-image ~ figure.beyond-element-image.image-hover {
  display: none;
}
.main-operations .content-item figure.beyond-element-image:hover ~ figure.beyond-element-image.image-hover {
  position: absolute;
  z-index: 100000;
  display: inline;
  width: 200px;
  top: -100px;
  bottom: 0;
  height: 200px;
  border: 1px solid var(--gray);
  background-color: var(--element-bg);
  left: 65px;
}
.main-operations .content-item figure.beyond-element-image:hover ~ figure.beyond-element-image.image-hover img {
  -o-object-position: center;
  object-position: center;
  position: absolute;
  inset: 0;
  margin: auto;
}
.main-operations .content-item figure.beyond-element-image:hover ~ figure.image-hover.beyond-element-image-preload {
  background-color: var(--gray-light);
}
.main-operations .content-item figure.beyond-element-image:hover ~ figure.image-hover.beyond-element-image-preload p {
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
}
.main-operations .content-item button:is(.beyond-icon-button) {
  width: 30px;
  height: 30px;
}
.main-operations .content-item button:is(.beyond-icon-button) svg.beyond-icon {
  fill: var(--gray-variant);
  color: var(--gray-variant);
}
.main-operations .content-item button:is(.beyond-icon-button):not(:disabled):hover svg.beyond-icon {
  fill: var(--primary);
  color: var(--primary);
}
.main-operations .content-item button:is(.beyond-icon-button):not(:disabled):active {
  transform: scale(0.9);
}
.main-operations .content-item button:is(.beyond-icon-button):disabled {
  cursor: not-allowed;
}
.main-operations .content-item .image-amazon {
  display: flex;
  -moz-column-gap: 5px;
  column-gap: 5px;
  align-items: center;
  position: relative;
}
.main-operations .content-item .content-checkbox svg.warning-icon {
  width: 20px;
  height: 38px;
  align-self: center;
  fill: var(--warning);
}
.main-operations .content-item .beyond-element-input {
  background-color: var(--element-bg);
  justify-self: center;
}
.main-operations .content-item .beyond-element-input.input {
  max-width: 90px;
}
.main-operations .content-item .beyond-element-input input {
  padding: 5px 10px;
  font-size: 14px;
  text-align: right;
}
.main-operations .container-item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--border-variant);
  transition: all 200ms ease-in;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.main-operations .container-item.hover {
  cursor: pointer;
}
.main-operations .container-item.hover:hover {
  background-color: var(--gray-lighter);
}
.main-operations .container-item .no-event {
  pointer-events: none;
}
.main-operations .container-item.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.main-operations .container-item.no-pointer {
  cursor: default;
}
.main-operations .container-item.no-pointer:hover {
  background-color: transparent;
}
.main-operations .container-item.warning {
  background-color: rgba(247, 199, 0, 0.1294117647);
}
.main-operations.main-lots .content-item {
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  place-content: center;
  place-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.main-operations.main-lots .content-item .beyond-button {
  max-width: 7rem;
  max-height: 2rem;
  min-height: 30px;
  justify-self: normal;
}
.main-operations.main-lots .container-item {
  height: 75px;
}
.main-operations.main-receptions .container-item {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.main-operations.main-receptions .container-item .content-item {
  padding: 8px 0;
}
.main-operations.main-receptions .container-item .beyond-icon-button svg.beyond-icon {
  fill: #1e85f1;
}
.main-operations.main-receptions .container-item .content-left {
  grid-template-columns: repeat(3, 30px);
}
.main-operations.main-receptions .container-item .content-left .beyond-icon-button svg.beyond-icon {
  width: 19px;
  height: 19px;
}
.main-operations.main-receptions .container-item.no-found {
  background-color: var(--input-bg);
}
.main-operations.main-receptions .content-item {
  grid-template-columns: 4rem 90px 10rem 9rem repeat(auto-fit, minmax(30px, 1fr));
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.main-operations.main-receptions .content-item .beyond-button {
  max-width: 7rem;
  max-height: 2rem;
  min-height: 30px;
  justify-self: end;
}
.main-operations.main-receptions .content-item .content-checkbox {
  justify-self: start;
}
.main-operations.main-upc-not-found .card {
  min-width: 550px;
}
.main-operations.main-upc-not-found .card .container-item {
  overflow: visible;
}
.main-operations.main-upc-not-found .card .content-item {
  grid-template-columns: 16px 6rem repeat(auto-fit, minmax(75px, 1fr));
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.main-operations.main-upc-not-found .card .content-item .beyond-button {
  max-width: 8rem;
  min-width: 8rem;
  justify-self: end;
}
.main-operations.main-upc-not-found .card .content-item .beyond-element-input {
  margin: 0;
  max-height: 40px;
}
.main-operations.main-upc-not-found .card .content-item span:not(.tooltip):not(.tiptext) {
  max-width: 110px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1480px) {
  .main-operations.main-upc-not-found .card .content-item span:not(.tooltip):not(.tiptext) {
    max-width: 90px;
  }
}
.main-operations.main-upc-not-found .card .content-item .content-left {
  grid-template-columns: 30px 30px 30px 30px;
}
.main-operations.main-upc-not-found .card .content-item figure.beyond-element-image {
  width: 45px;
  height: 45px;
}
.main-operations.operations-publications .content-left {
  grid-template-columns: repeat(4, 1fr);
}
.main-operations.operations-publications .card {
  overflow: visible;
}
.main-operations.operations-publications .card .container-item {
  padding: 5px 0;
}
.main-operations.operations-publications .card .container-item {
  overflow: visible;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.main-operations.operations-publications .card .content-item {
  grid-template-columns: 4rem 90px 10rem 9rem repeat(auto-fit, minmax(70px, 1fr));
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.main-operations.operations-publications .card .content-item .content-checkbox {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.main-operations.operations-publications .card .content-item .beyond-button {
  max-width: 8rem;
  min-width: 6rem;
  justify-self: end;
}
.main-content .perfect-scrollbar-view .jview-component {
  padding: 0;
}
.main-content .perfect-scrollbar-view .jview-component .jview-component__header__content-search, .main-content .perfect-scrollbar-view .jview-component .footer-jivew {
  padding: 1rem;
}
.main-content .perfect-scrollbar-view .jview-component .card {
  margin: 0;
  padding: 0 1rem 0;
}
.main-content .perfect-scrollbar-view .jview-component .jview-component__header__content-search {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.header-operations {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.search-operations {
  position: relative;
}
.search-operations .content-search {
  display: flex;
  background-color: var(--element-bg);
  border-radius: var(--border-secondary);
  border: 1px solid var(--primary);
  align-items: center;
  min-width: 30rem;
  justify-content: space-between;
  -moz-column-gap: 6px;
  column-gap: 6px;
  position: relative;
  height: 40px;
  padding: 0 4px;
  max-width: 400px;
  margin: 0 auto;
}
.search-operations .content-search:focus-within {
  border: 1px solid var(--primary-dark);
}
.search-operations .content-search:focus-within .beyond-icon-button .beyond-icon,
.search-operations .content-search:focus-within .list-search .beyond-icon {
  fill: var(--primary-dark);
  color: var(--primary-dark);
}
.search-operations .content-search input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  color: var(--text-grey);
  padding: 4px 0 0;
  caret-color: var(--primary-dark);
  background-clip: content-box;
}
.search-operations .content-search input:-webkit-autofill, .search-operations .content-search input:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
}
.search-operations .content-search input::-webkit-input-placeholder {
  color: #4e5256;
  font-size: 12px;
  font-weight: 300;
}
.search-operations .content-search input::-moz-placeholder {
  color: #4e5256;
  font-size: 12px;
  font-weight: 300;
}
.search-operations .content-search input:-ms-input-placeholder {
  color: #4e5256;
  font-size: 12px;
  font-weight: 300;
}
.search-operations .content-search input::-ms-input-placeholder {
  color: #4e5256;
  font-size: 12px;
  font-weight: 300;
}
.search-operations .content-search input::placeholder {
  color: #4e5256;
  font-size: 12px;
  font-weight: 300;
}
.search-operations .content-search input[data-autocompleted] {
  background-color: transparent !important;
}
.search-operations .content-search input[type=search]::-webkit-search-decoration,
.search-operations .content-search input[type=search]::-webkit-search-cancel-button,
.search-operations .content-search input[type=search]::-webkit-search-results-button,
.search-operations .content-search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search-operations .content-search .beyond-icon-button .beyond-icon {
  fill: #979797;
  color: #979797;
}
.search-operations .content-search .icon-search {
  width: 27px;
  height: 27px;
  transform: translateY(3px);
}
.search-operations .content-search .icon-search .beyond-icon {
  width: 17px;
  height: 17px;
}
.search-operations .content-search .list-search {
  width: 30px;
  height: 30px;
  transform: translateY(2px);
}
.search-operations .content-search .list-search .beyond-icon {
  width: 20px;
  height: 20px;
}
.search-operations .content-search .icon-buttons {
  display: flex;
  flex-direction: row-reverse;
}
.search-operations .content-search .close {
  transform: translateY(2px);
  width: 30px;
  height: 30px;
}
.search-operations .content-search .close .beyond-icon {
  width: 15px;
  height: 15px;
}
.search-operations .fields-date {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.search-operations fieldset {
  padding-inline: 0;
  padding-block: 0;
  margin-inline: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border: none;
  position: absolute;
  z-index: 10;
  background: #fff;
  width: 100%;
  max-width: 30rem;
  padding: 16px;
}
.search-operations fieldset input::-webkit-input-placeholder {
  opacity: 0.7;
}
.search-operations fieldset input::-moz-placeholder {
  opacity: 0.7;
}
.search-operations fieldset input:-ms-input-placeholder {
  opacity: 0.7;
}
.search-operations fieldset input::-ms-input-placeholder {
  opacity: 0.7;
}
.search-operations fieldset input::placeholder {
  opacity: 0.7;
}
.search-operations fieldset.show {
  opacity: 1;
  transform: translateY(0px);
  -webkit-animation: show 0.3s ease-in-out;
  animation: show 0.3s ease-in-out;
  visibility: visible;
}
.search-operations fieldset.hide-fields {
  -webkit-animation: hide 0.3s ease-in-out;
  animation: hide 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@-webkit-keyframes show {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes show {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  from {
    transform: translateY(0px);
    opacity: 1;
  }
  to {
    transform: translateY(10px);
    opacity: 0;
  }
}
@keyframes hide {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(10px);
  }
}
.search-operations fieldset .beyond-button.btn.btn-primary {
  float: right;
  font-size: 11px;
  height: 30px;
  min-height: 30px;
  min-width: 75px;
  margin: 0 10px 0 0;
}
.search-operations fieldset .beyond-button.btn.btn-primary:hover {
  box-shadow: 0 1px 2px 0 rgba(26, 115, 232, 0.45), 0 1px 3px 1px rgba(26, 115, 232, 0.3);
  background-color: #297be6;
  outline: 1px solid transparent;
  border: none;
}
.search-operations .fieldset {
  display: grid;
  grid-template-columns: 1fr 3fr;
  width: 100%;
  padding: 10px;
}
.search-operations .fieldset input {
  border: none;
  border-bottom: 1px solid var(--text-grey);
  outline: none;
  align-self: center;
  color: var(--text-grey);
  caret-color: var(--primary-dark);
}
.search-operations .fieldset input:focus {
  border-bottom: 1px solid var(--primary);
}
.search-operations .fieldset label {
  align-self: center;
  color: var(--text-grey);
  font-size: 13px;
}
.search-operations .field-select select {
  font-size: 12px;
}
.search-operations .error-date {
  color: var(--error);
  padding: 10px;
  font-size: 12px;
}
main .section-buttons {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 0.3rem;
  column-gap: 0.3rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}
main .section-buttons button.beyond-button {
  min-width: 128px;
  height: 37px;
}
main.main-lots .section-buttons {
  width: 100%;
  justify-content: space-between;
}
main.main-lots .section-buttons button.beyond-button {
  min-width: 160px;
}
main.main-receptions .section-buttons {
  width: 100%;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
main.main-receptions .section-buttons button.beyond-button {
  min-width: 80px;
}
main.main-receptions .section-buttons button.beyond-button.btn-start {
  display: flex;
  min-width: 115px;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
main.main-receptions .section-buttons button.beyond-button.btn-start .beyond-element-spinner {
  margin: 0;
}
.beyond-element-radio {
  display: flex;
  gap: 16px;
  align-items: end;
}
.beyond-element-radio input[type=radio] {
  --text: var(--text-on-primary);
  --radio: var(--primary);
  --radio-checked: var(--primary);
  --radio-size: 20px;
  --width: 100px;
  --height: 140px;
  --border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  height: var(--radio-size);
  width: var(--radio-size);
  outline: none;
  margin: 0;
  cursor: pointer;
  border: 2px solid var(--radio);
  background: transparent;
  border-radius: 50%;
  display: grid;
  justify-self: end;
  justify-items: center;
  align-items: center;
  overflow: hidden;
  transition: border 0.5s ease;
}
.beyond-element-radio input[type=radio]::before, .beyond-element-radio input[type=radio]::after {
  content: "";
  display: flex;
  justify-self: center;
  border-radius: 50%;
}
.beyond-element-radio input[type=radio]::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  opacity: var(--opacity, 1);
}
.beyond-element-radio input[type=radio]::after {
  position: relative;
  width: 50%;
  height: 50%;
  background: var(--radio-checked);
  top: var(--y, 100%);
  transition: top 0.5s cubic-bezier(0.48, 1.97, 0.5, 0.63);
}
.beyond-element-radio input[type=radio]:checked {
  --radio: var(--radio-checked);
}
.beyond-element-radio input[type=radio]:checked::after {
  --y: 0%;
  animation: stretch-animate 0.3s ease-out 0.17s;
}
.beyond-element-radio input[type=radio]:checked::before {
  --opacity: 0;
}
.beyond-element-radio input[type=radio]:checked ~ input[type=radio]::after {
  --y: -100%;
}
.beyond-element-radio input[type=radio]:not(:checked)::before {
  --opacity: 1;
  transition: opacity 0s linear 0.5s;
}
@keyframes stretch-animate {
  0% {
    transform: scale(1, 1);
  }
  28% {
    transform: scale(1.15, 0.85);
  }
  50% {
    transform: scale(0.9, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.beyond-element-radio label {
  display: block;
  line-height: 1;
  color: var(--text-on-primary);
  font-size: 16px;
}
.modal-reasons {
  width: auto;
  max-width: 600px;
  border-radius: var(--border-primary);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 16px 8px;
}
.modal-reasons .close-modal {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.modal-reasons .select-payment {
  margin: 0 0 0.5rem;
}
.modal-reasons .select {
  width: 100%;
  margin: 0 0 0.5rem;
}
.modal-reasons .content-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  width: 100%;
  margin: 0rem 0px 1rem;
}
.modal-reasons .content-select .box-select {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 90%;
  row-gap: 5px;
}
.modal-reasons .content-select .box-select select {
  width: 100%;
}
.modal-reasons .content-select .box-select label {
  text-align: left;
  display: block;
  text-transform: lowercase;
}
.modal-reasons .content-select .box-select label:first-letter {
  text-transform: uppercase;
}
.modal-reasons .content-select .box-select .beyond-element-input {
  margin: 0;
}
.modal-reasons .content-select .box-select .beyond-element-textarea {
  height: 8rem;
  margin: 0;
}
.modal-reasons .content-select .box-select .beyond-element-textarea textarea {
  height: 100%;
  resize: none;
}
.modal-reasons .content-select .box-select .beyond-element-textarea:focus-within label,
.modal-reasons .content-select .box-select .beyond-element-textarea textarea:not(:placeholder-shown) ~ label {
  top: -9px;
}
.modal-reasons .content-select .modal-title-reasons {
  text-transform: uppercase;
}
.modal-reasons .content-select .modal-title-edit,
.modal-reasons .content-select .modal-title-reasons {
  text-align: center;
  font-size: 22px;
  margin-block: 0;
  color: #242021;
}
.modal-reasons .content-select .modal-title-edit small,
.modal-reasons .content-select .modal-title-reasons small {
  color: var(--text-grey);
}
.modal-reasons .content-select .modal-title-edit {
  font-size: 19px;
}
.modal-reasons .content-select .edit-input {
  margin: 0;
}
.modal-reasons .content-select .edit-input label {
  display: none;
}
.modal-reasons .content-select .pay-input {
  margin: 0 0 8px;
}
.modal-reasons .content-select .title-payment {
  min-width: 80%;
  max-width: 80%;
}
.modal-reasons .content-select .text {
  display: inline-block;
  width: 100%;
  margin: 8px 0 0;
}
.modal-reasons .content-select input[type=date],
.modal-reasons .content-select input[type=date]:hover,
.modal-reasons .content-select input[type=date]:focus {
  background: transparent url("https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png") no-repeat right 1em top 44%, 0 0;
  background-color: transparent;
  background-image: url("https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png");
  background-repeat: no-repeat;
  background-position: right 1em top 60%, 0 0;
}
.modal-reasons .content-select input[type=date]::-webkit-calendar-picker-indicator,
.modal-reasons .content-select input[type=date]:hover::-webkit-calendar-picker-indicator,
.modal-reasons .content-select input[type=date]:focus::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 1rem;
  opacity: 0;
  bottom: 10px;
}
.modal-reasons .content-select .content-buttons {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 90%;
}
.modal-reasons .content-select .beyond-button {
  min-width: 128px;
}
.modal-reasons .beyond-element-spinner:not(.button-spinner) {
  width: 150px;
  height: 250px;
}
.modal-reasons.modal-edit {
  max-width: 560px;
}
.modal-reasons.modal-edit .beyond-element-input .beyond-element-input-error {
  font-size: 12px;
}
.modal-reasons.edit-link {
  max-width: 760px;
}
.modal-reasons.edit-link .content-select .box-select {
  max-width: 700px;
  width: 100%;
}
.modal-reasons.modal-operations {
  max-width: 650px;
  max-height: 500px;
}
.modal-reasons .upc-loading {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: no-drop;
  border-radius: var(--border-primary);
}
.modal-reasons .upc-loading .beyond-element-spinner {
  position: absolute;
  inset: 0;
}
.modal-reasons .content-select-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.modal-comments .content-select .box-select label {
  margin: 0rem 0 0.5rem;
}
.modal-comments .content-select .box-select .beyond-element-textarea:focus-within label,
.modal-comments .content-select .box-select .beyond-element-textarea textarea:not(:placeholder-shown) ~ label {
  top: -15px;
}
.modal-comments .header {
  width: 80%;
}
.modal-comments .header p {
  word-break: break-all;
  margin-block: 0;
  margin: 1rem 0 0;
}
select {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.3;
  padding: 0.4em 1.4em 0.3em 0.8em;
  width: auto;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  border-radius: 0.3em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #FFF 0%, #f7f7f7 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.5em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  transition: all 0.15s ease-in-out;
}
select:hover {
  border-color: #888;
}
select:focus {
  border-color: var(--primary-dark);
  color: #222;
  outline: none;
}
select option {
  font-weight: normal;
}
select:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
}
@media screen and (max-width: 360px) {
  select {
    font-size: 12px;
  }
}
.beyond-element-toast {
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.beyond-element-toast:before, .beyond-element-toast:after {
  content: "";
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  top: 50%;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 100px/10px;
}
.beyond-element-toast:after {
  right: 10px;
  left: auto;
  transform: skew(8deg) rotate(3deg);
}
.beyond-element-spinner {
  width: 30px;
  height: 30px;
  margin: auto;
}
.beyond-element-spinner svg {
  -webkit-animation: rotate 1.5s linear infinite;
  animation: rotate 1.5s linear infinite;
  height: 100%;
  width: 100%;
}
.beyond-element-spinner circle {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite 0s, color 6s ease-in-out infinite -0.75s;
  animation: dash 1.5s ease-in-out infinite 0s, color 6s ease-in-out infinite -0.75s;
  stroke-linecap: round;
  fill: none;
  stroke-width: 3;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
.status {
  min-width: 1rem !important;
  height: 1rem;
  display: inline-block;
  border: 1px solid var(--text-grey);
  border-radius: var(--border-secondary);
  justify-self: center !important;
  max-width: 1rem !important;
}
.status.red {
  background-color: red;
}
.status.green {
  background-color: green;
}
.status.approved {
  background-color: hsl(124, 100%, 50%);
}
.status.pending {
  background-color: hsl(42, 100%, 50%);
}
.status.cancel {
  background-color: hsl(0, 100%, 50%);
}
.status.paid {
  background-color: var(--primary);
}
.status.initial {
  background-color: hsl(210, 5%, 32%);
}
.status.process {
  background-color: rgb(255, 136, 0);
}
.status.closed {
  background-color: rgb(0, 11, 136);
}
.status.cancel {
  background-color: hsl(0, 100%, 50%);
}
.status.pending-lot {
  background-color: var(--gray);
}
.status.close-lot {
  background-color: var(--gray);
}
.status.received-lot {
  background-color: var(--gray);
}
.status.rejected {
  background-color: rgb(124, 0, 114);
}
.status.addedCart {
  background-color: rgb(0, 238, 255);
}
*, *::after, *::before {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  font-family: var(--font-family);
  width: auto;
  background-color: #F1F8FF;
}

main:not(.layout-login) {
  margin-top: 80px;
  background-color: #F1F8FF;
  min-height: calc(100vh - 80px);
  padding: 1.5rem;
}
@media screen and (max-width: 450px) {
  main:not(.layout-login) {
    padding: 1rem;
  }
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 600;
}
.tippy-touch {
  cursor: pointer !important;
}

.tippy-notransition {
  transition: none !important;
}

.tippy-popper {
  max-width: 400px;
  -webkit-perspective: 800px;
  perspective: 800px;
  z-index: 9999;
  outline: 0;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.tippy-popper.html-template {
  max-width: 96%;
  max-width: calc(100% - 20px);
}

.tippy-popper[x-placement^=top] [x-arrow] {
  border-top: 7px solid #333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  bottom: -7px;
  margin: 0 9px;
}

.tippy-popper[x-placement^=top] [x-arrow].arrow-small {
  border-top: 5px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: -5px;
}

.tippy-popper[x-placement^=top] [x-arrow].arrow-big {
  border-top: 10px solid #333;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -10px;
}

.tippy-popper[x-placement^=top] [x-circle] {
  -webkit-transform-origin: 0 33%;
  transform-origin: 0 33%;
}

.tippy-popper[x-placement^=top] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -55%);
  transform: scale(1) translate(-50%, -55%);
  opacity: 1;
}

.tippy-popper[x-placement^=top] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -50%);
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow] {
  border-top: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-top: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow] {
  border-top: 7px solid rgba(0, 0, 0, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-top: 5px solid rgba(0, 0, 0, 0.7);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-top: 10px solid rgba(0, 0, 0, 0.7);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=top] [data-animation=perspective] {
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.tippy-popper[x-placement^=top] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px) rotateX(0);
  transform: translateY(-10px) rotateX(0);
}

.tippy-popper[x-placement^=top] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateY(0) rotateX(90deg);
  transform: translateY(0) rotateX(90deg);
}

.tippy-popper[x-placement^=top] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.tippy-popper[x-placement^=top] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.tippy-popper[x-placement^=top] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.tippy-popper[x-placement^=top] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tippy-popper[x-placement^=top] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px) scale(1);
  transform: translateY(-10px) scale(1);
}

.tippy-popper[x-placement^=top] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateY(0) scale(0);
  transform: translateY(0) scale(0);
}

.tippy-popper[x-placement^=bottom] [x-arrow] {
  border-bottom: 7px solid #333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: -7px;
  margin: 0 9px;
}

.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small {
  border-bottom: 5px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  top: -5px;
}

.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big {
  border-bottom: 10px solid #333;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  top: -10px;
}

.tippy-popper[x-placement^=bottom] [x-circle] {
  -webkit-transform-origin: 0 -50%;
  transform-origin: 0 -50%;
}

.tippy-popper[x-placement^=bottom] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -45%);
  transform: scale(1) translate(-50%, -45%);
  opacity: 1;
}

.tippy-popper[x-placement^=bottom] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -5%);
  transform: scale(0.15) translate(-50%, -5%);
  opacity: 0;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow] {
  border-bottom: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-bottom: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow] {
  border-bottom: 7px solid rgba(0, 0, 0, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-bottom: 5px solid rgba(0, 0, 0, 0.7);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-bottom: 10px solid rgba(0, 0, 0, 0.7);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective] {
  -webkit-transform-origin: top;
  transform-origin: top;
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateY(10px) rotateX(0);
  transform: translateY(10px) rotateX(0);
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateY(0) rotateX(-90deg);
  transform: translateY(0) rotateX(-90deg);
}

.tippy-popper[x-placement^=bottom] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.tippy-popper[x-placement^=bottom] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.tippy-popper[x-placement^=bottom] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.tippy-popper[x-placement^=bottom] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tippy-popper[x-placement^=bottom] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateY(10px) scale(1);
  transform: translateY(10px) scale(1);
}

.tippy-popper[x-placement^=bottom] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateY(0) scale(0);
  transform: translateY(0) scale(0);
}

.tippy-popper[x-placement^=left] [x-arrow] {
  border-left: 7px solid #333;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  right: -7px;
  margin: 6px 0;
}

.tippy-popper[x-placement^=left] [x-arrow].arrow-small {
  border-left: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  right: -5px;
}

.tippy-popper[x-placement^=left] [x-arrow].arrow-big {
  border-left: 10px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  right: -10px;
}

.tippy-popper[x-placement^=left] [x-circle] {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.tippy-popper[x-placement^=left] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}

.tippy-popper[x-placement^=left] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -50%);
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow] {
  border-left: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-left: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-left: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow] {
  border-left: 7px solid rgba(0, 0, 0, 0.7);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-left: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-left: 10px solid rgba(0, 0, 0, 0.7);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=left] [data-animation=perspective] {
  -webkit-transform-origin: right;
  transform-origin: right;
}

.tippy-popper[x-placement^=left] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px) rotateY(0);
  transform: translateX(-10px) rotateY(0);
}

.tippy-popper[x-placement^=left] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateX(0) rotateY(-90deg);
  transform: translateX(0) rotateY(-90deg);
}

.tippy-popper[x-placement^=left] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.tippy-popper[x-placement^=left] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.tippy-popper[x-placement^=left] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.tippy-popper[x-placement^=left] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.tippy-popper[x-placement^=left] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px) scale(1);
  transform: translateX(-10px) scale(1);
}

.tippy-popper[x-placement^=left] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateX(0) scale(0);
  transform: translateX(0) scale(0);
}

.tippy-popper[x-placement^=right] [x-arrow] {
  border-right: 7px solid #333;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  left: -7px;
  margin: 6px 0;
}

.tippy-popper[x-placement^=right] [x-arrow].arrow-small {
  border-right: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  left: -5px;
}

.tippy-popper[x-placement^=right] [x-arrow].arrow-big {
  border-right: 10px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  left: -10px;
}

.tippy-popper[x-placement^=right] [x-circle] {
  -webkit-transform-origin: -50% 0;
  transform-origin: -50% 0;
}

.tippy-popper[x-placement^=right] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}

.tippy-popper[x-placement^=right] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -50%);
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow] {
  border-right: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-right: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-right: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow] {
  border-right: 7px solid rgba(0, 0, 0, 0.7);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-right: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-right: 10px solid rgba(0, 0, 0, 0.7);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=right] [data-animation=perspective] {
  -webkit-transform-origin: left;
  transform-origin: left;
}

.tippy-popper[x-placement^=right] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateX(10px) rotateY(0);
  transform: translateX(10px) rotateY(0);
}

.tippy-popper[x-placement^=right] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateX(0) rotateY(90deg);
  transform: translateX(0) rotateY(90deg);
}

.tippy-popper[x-placement^=right] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.tippy-popper[x-placement^=right] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.tippy-popper[x-placement^=right] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.tippy-popper[x-placement^=right] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.tippy-popper[x-placement^=right] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateX(10px) scale(1);
  transform: translateX(10px) scale(1);
}

.tippy-popper[x-placement^=right] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateX(0) scale(0);
  transform: translateX(0) scale(0);
}

.tippy-popper .tippy-tooltip.transparent-theme {
  background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-popper .tippy-tooltip.light-theme {
  color: #26323d;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.1), 0 4px 80px -8px rgba(0, 20, 60, 0.2);
  background-color: #fff;
}

.tippy-popper .tippy-tooltip.light-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip {
  position: relative;
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  text-align: center;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #333;
}

.tippy-tooltip--small {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

.tippy-tooltip--big {
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
}

.tippy-tooltip[data-animatefill] {
  overflow: hidden;
  background-color: transparent;
}

.tippy-tooltip[data-interactive] {
  pointer-events: auto;
}

.tippy-tooltip[data-inertia] {
  transition-timing-function: cubic-bezier(0.53, 2, 0.36, 0.85);
}

.tippy-tooltip [x-arrow] {
  position: absolute;
  width: 0;
  height: 0;
}

.tippy-tooltip [x-circle] {
  position: absolute;
  will-change: transform;
  background-color: #333;
  border-radius: 50%;
  width: 130%;
  width: calc(110% + 2rem);
  left: 50%;
  top: 50%;
  z-index: -1;
  overflow: hidden;
  transition: all ease;
}

.tippy-tooltip [x-circle]:before {
  content: "";
  padding-top: 90%;
  float: left;
}

@media (max-width: 450px) {
  .tippy-popper {
    max-width: 96%;
    max-width: calc(100% - 20px);
  }
}
.beyond-element-toast-container {
  position: fixed;
  top: 60px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  grid-row-gap: 1rem;
  row-gap: 1rem;
  max-width: 25rem;
}
@media screen and (max-width: 450px) {
  .beyond-element-toast-container {
    right: 3px;
  }
}
.beyond-element-toast-container .toast__container {
  display: table-cell;
  vertical-align: middle;
}
.beyond-element-toast-container .add-margin {
  margin-top: 20px;
}
.beyond-element-toast-container .toast__svg {
  fill: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
}
.beyond-element-toast-container .toast-content {
  text-align: left;
  padding: 21px 0;
  background-color: #fff;
  border-radius: var(--border-secondary);
  max-width: 500px;
  top: 0px;
  position: relative;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
  max-height: 8rem;
  height: auto;
}
.beyond-element-toast-container .toast-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.beyond-element-toast-container .toast__icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  padding: 7px;
  border-radius: 50%;
  display: inline-block;
}
.beyond-element-toast-container .toast__type {
  color: #3e3e3e;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}
.beyond-element-toast-container .toast__message {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  color: #878787;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
}
.beyond-element-toast-container .toast__content {
  padding-left: 70px;
  padding-right: 60px;
}
.beyond-element-toast-container .toast__close {
  position: absolute;
  right: 22px;
  top: 5px;
  bottom: 0;
  margin: auto 0;
  width: 14px;
  cursor: pointer;
  height: 14px;
  fill: #878787;
}
.beyond-element-toast-container .success .toast__icon {
  background-color: #2bde3f;
}
.beyond-element-toast-container .success:before {
  background-color: #2bde3f;
}
.beyond-element-toast-container .info .toast__icon {
  background-color: #1d72f3;
}
.beyond-element-toast-container .info:before {
  background-color: #1d72f3;
}
.beyond-element-toast-container .warning .toast__icon {
  background-color: #ffc007;
}
.beyond-element-toast-container .warning:before {
  background-color: #ffc007;
}
.beyond-element-toast-container .error .toast__icon {
  background-color: var(--error);
}
.beyond-element-toast-container .error:before {
  background-color: var(--error);
}

.beyond-element-toast-container.toast-content {
  bottom: 60px;
  top: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tooltip-item {
  position: relative;
  display: flex;
}
.tooltip-item:before, .tooltip-item:after {
  --scale: 0;
  --arrow-size: 6px;
  --tooltip-color: #333;
  position: absolute;
  top: 3px;
  transform: translateX(-50%) translateY(var(--translate-y, 0)) scale(var(--scale));
  transition: 150ms transform;
  transform-origin: bottom center;
  left: 50%;
  z-index: 10;
}
.tooltip-item:before {
  --translate-y: calc(-100% - var(--arrow-size));
  content: attr(data-tooltip);
  color: white;
  padding: 0.5rem;
  border-radius: 0.3rem;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--tooltip-color);
  font-size: 11.5px;
}
.tooltip-item:hover:before, .tooltip-item:hover:after {
  --scale: 1;
}
.tooltip-item:after {
  --translate-y: calc(-1.2 * var(--arrow-size));
  content: "";
  border: var(--arrow-size) solid transparent;
  border-top-color: var(--tooltip-color);
  transform-origin: top center;
}
.tooltip-item.bottom::before {
  top: 76px;
  transform-origin: top center;
}
.tooltip-item.bottom::after {
  top: 33px;
  transform-origin: bottom center;
  border-bottom-color: var(--tooltip-color);
  border-top-color: transparent;
}