.beyond-button {
  outline: 0;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.beyond-button:active, .beyond-button:hover, .beyond-button:focus {
  outline: 0;
}
.beyond-button.secondary {
  background: var(--secondary);
  color: var(--text-on-secondary);
  transition: all 300ms ease-in-out;
}
.beyond-button.secondary:hover {
  background: var(--secondary-dark);
  transition: all 300ms ease-in;
}
.beyond-button.primary {
  background: var(--primary);
  color: var(--text-on-primary) !important;
  border: 1px solid var(--primary-dark);
  transition: all 300ms ease-in-out;
}
.beyond-button.primary:hover {
  background: var(--primary-dark);
  transition: all 300ms ease-in;
}
.beyond-button span {
  position: absolute;
  background-color: rgba(151, 151, 151, 0.7098039216);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  -webkit-animation: rippleEffect 1s linear infinite;
  animation: rippleEffect 1s linear infinite;
}
@-webkit-keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
.beyond-button.btn {
  cursor: pointer;
  width: auto;
  min-height: 35px;
  max-height: 35px;
  transition: all 300ms ease-in;
  border-radius: 25px !important;
  font-weight: 500;
  padding: 0 15px;
  display: inline-block;
  text-transform: lowercase;
  border: none;
}
.beyond-button.btn:not(:disabled) {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.beyond-button.btn:active:not(:disabled) {
  transform: translateY(3px);
}
.beyond-button.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.beyond-button.btn.btn-primary {
  background-color: var(--primary);
  color: var(--text-on-secondary) !important;
}
.beyond-button.btn.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-dark);
}
.beyond-button.btn.btn-primary-dark {
  background-color: var(--primary-dark);
  color: var(--text);
}
.beyond-button.btn.btn-primary-dark:hover:not(:disabled) {
  background-color: var(--primary);
}
.beyond-button.btn.btn-secondary {
  background-color: var(--secondary) !important;
  color: var(--text-on-secondary) !important;
}
.beyond-button.btn.btn-secondary:hover:not(:disabled) {
  background-color: var(--secondary-dark);
}
.beyond-button.btn.btn-border {
  border: 1px solid var(--primary);
  color: var(--text);
}
.beyond-button.btn.btn-border:hover:not(:disabled) {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.beyond-button.btn.btn-cancel {
  background-color: var(--gray);
  color: var(--text-on-secondary);
}
.beyond-button.btn.btn-cancel:hover:not(:disabled) {
  background-color: var(--gray);
}
.beyond-button.btn:first-letter {
  text-transform: uppercase;
}
@media screen and (max-width: 360px) {
  .beyond-button.btn {
    font-size: 12px;
  }
}
.beyond-button.has-icon {
  display: flex !important;
  align-items: center;
  column-gap: 8px;
}
.beyond-button.has-icon svg.beyond-icon {
  fill: var(--secondary);
}
button {
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: transparent;
}

.action-button {
  background: var(--primary-accent);
  color: var(--text-on-primary);
  border-radius: 10px;
  padding: 1rem 2rem;
}
div.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;
  padding: 0 8px;
}
div.beyond-element-input .beyond-input__required-label,
.beyond-element-textarea .beyond-input__required-label {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  color: var(--error);
}
div.beyond-element-input input,
div.beyond-element-input textarea,
.beyond-element-textarea input,
.beyond-element-textarea textarea {
  padding: 0.5rem;
  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;
}
div.beyond-element-input input:-webkit-autofill, div.beyond-element-input input:-webkit-autofill:focus,
div.beyond-element-input textarea:-webkit-autofill,
div.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 !important;
  transition: background-color 600000s 0s, color 600000s 0s !important;
}
div.beyond-element-input input:-internal-autofill-selected,
div.beyond-element-input textarea:-internal-autofill-selected,
.beyond-element-textarea input:-internal-autofill-selected,
.beyond-element-textarea textarea:-internal-autofill-selected {
  transition: background-color 600000s 0s, color 600000s 0s !important;
}
div.beyond-element-input input:focus,
div.beyond-element-input textarea:focus,
.beyond-element-textarea input:focus,
.beyond-element-textarea textarea:focus {
  color: var(--gray-dark);
}
div.beyond-element-input input::-webkit-color-swatch,
div.beyond-element-input textarea::-webkit-color-swatch,
.beyond-element-textarea input::-webkit-color-swatch,
.beyond-element-textarea textarea::-webkit-color-swatch {
  border: none;
  background-color: transparent;
  -webkit-transition: background-color 600000s 0s, color 600000s 0s !important;
  transition: background-color 600000s 0s, color 600000s 0s !important;
}
div.beyond-element-input input::-ms-clear, div.beyond-element-input input::-ms-reveal,
div.beyond-element-input textarea::-ms-clear,
div.beyond-element-input textarea::-ms-reveal,
.beyond-element-textarea input::-ms-clear,
.beyond-element-textarea input::-ms-reveal,
.beyond-element-textarea textarea::-ms-clear,
.beyond-element-textarea textarea::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}
div.beyond-element-input input[data-autocompleted],
.beyond-element-textarea input[data-autocompleted] {
  background-color: transparent !important;
}
div.beyond-element-input:hover:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled), div.beyond-element-input:focus-within:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled),
.beyond-element-textarea:hover:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled),
.beyond-element-textarea:focus-within:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled) {
  border-color: var(--primary);
}
div.beyond-element-input:hover:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled) input, div.beyond-element-input:hover:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled) textarea,
.beyond-element-textarea:hover:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled) input,
.beyond-element-textarea:hover:not(div.beyond-element-input.disabled,
.beyond-element-textarea.disabled) textarea {
  color: var(--gray-dark);
}
div.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;
  display: inline-block;
  text-transform: lowercase;
}
div.beyond-element-input label:first-letter,
.beyond-element-textarea label:first-letter {
  text-transform: uppercase;
}
div.beyond-element-input:focus-within label,
div.beyond-element-input input:not(:placeholder-shown) ~ label,
div.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);
}
div.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;
}
div.beyond-element-input.disabled, div.beyond-element-input:disabled,
.beyond-element-textarea.disabled,
.beyond-element-textarea:disabled {
  opacity: 0.5;
  cursor: no-drop;
}
div.beyond-element-input.disabled:focus-within label,
div.beyond-element-input.disabled input:not(:placeholder-shown) ~ label,
div.beyond-element-input.disabled textarea:not(:placeholder-shown) ~ label,
div.beyond-element-input.disabled label, div.beyond-element-input:disabled:focus-within label,
div.beyond-element-input:disabled input:not(:placeholder-shown) ~ label,
div.beyond-element-input:disabled textarea:not(:placeholder-shown) ~ label,
div.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;
}
div.beyond-element-input.disabled input,
div.beyond-element-input.disabled textarea, div.beyond-element-input:disabled input,
div.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;
}
div.beyond-element-input.has-icon,
.beyond-element-textarea.has-icon {
  display: flex;
  align-items: center;
}
div.beyond-element-input.has-icon label,
.beyond-element-textarea.has-icon label {
  padding: 8px 24px !important;
}
div.beyond-element-input.has-icon input,
div.beyond-element-input.has-icon textarea,
.beyond-element-textarea.has-icon input,
.beyond-element-textarea.has-icon textarea {
  padding: 0.5rem;
}
div.beyond-element-input.has-icon:focus-within label,
div.beyond-element-input.has-icon input:not(:placeholder-shown) ~ label,
div.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 8px !important;
}
div.beyond-element-input.has-icon .beyond-icon,
.beyond-element-textarea.has-icon .beyond-icon {
  z-index: 10;
}
@media screen and (max-width: 450px) {
  div.beyond-element-input.has-icon .beyond-icon-button,
  .beyond-element-textarea.has-icon .beyond-icon-button {
    height: 30px;
  }
}
div.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);
}
div.beyond-element-input.error,
.beyond-element-textarea.error {
  border-color: var(--error);
}
@media screen and (min-width: 768px) {
  div.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) {
  div.beyond-element-input .beyond-element-input-error,
  .beyond-element-textarea .beyond-element-input-error {
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  div.beyond-element-input,
  .beyond-element-textarea {
    font-size: 11px;
  }
  div.beyond-element-input .beyond-input__required-label,
  .beyond-element-textarea .beyond-input__required-label {
    font-size: 16px;
  }
  div.beyond-element-input input,
  .beyond-element-textarea input {
    padding: 0.4rem 1rem;
    line-height: 1.1rem;
    font-size: 13px;
  }
  div.beyond-element-input label,
  .beyond-element-textarea label {
    line-height: 17px;
  }
}
div.beyond-element-input .beyond-element-spinner,
.beyond-element-textarea .beyond-element-spinner {
  width: 40px;
  height: 40px;
}
.jadmin-input {
  display: flex;
  flex-direction: column;
  row-gap: 11.06px;
}
.jadmin-input .beyond-element-input,
.jadmin-input .beyond-element-textarea {
  margin: 0;
  border: 1px solid var(--outline);
  border-radius: 28px;
  background-color: var(--background);
  height: 43px;
}
.jadmin-input .beyond-element-input input,
.jadmin-input .beyond-element-textarea input {
  font-size: 16px;
  letter-spacing: 0px;
  color: var(--text);
  height: 100%;
}
.jadmin-input .beyond-element-input input:focus,
.jadmin-input .beyond-element-textarea input:focus {
  color: var(--text);
}
.jadmin-input .beyond-element-input input:-webkit-autofill, .jadmin-input .beyond-element-input input:-webkit-autofill:focus,
.jadmin-input .beyond-element-textarea input:-webkit-autofill,
.jadmin-input .beyond-element-textarea input:-webkit-autofill:focus {
  -webkit-transition: background-color infinite 0s, color infinite 0s;
  transition: background-color infinite 0s, color infinite 0s;
}
.jadmin-input .beyond-element-input input::-webkit-input-placeholder,
.jadmin-input .beyond-element-textarea input::-webkit-input-placeholder {
  padding: 16px 0 0;
}
.jadmin-input .beyond-element-input input::-moz-placeholder,
.jadmin-input .beyond-element-textarea input::-moz-placeholder {
  padding: 16px 0 0;
}
.jadmin-input .beyond-element-input input:-ms-input-placeholder,
.jadmin-input .beyond-element-textarea input:-ms-input-placeholder {
  padding: 16px 0 0;
}
.jadmin-input .beyond-element-input input::-ms-input-placeholder,
.jadmin-input .beyond-element-textarea input::-ms-input-placeholder {
  padding: 16px 0 0;
}
.jadmin-input .beyond-element-input input::placeholder,
.jadmin-input .beyond-element-textarea input::placeholder {
  padding: 16px 0 0;
}
.jadmin-input .beyond-element-input input[data-autocompleted],
.jadmin-input .beyond-element-textarea input[data-autocompleted] {
  background-color: transparent !important;
}
.jadmin-input .beyond-element-input input[type=password]::-ms-reveal,
.jadmin-input .beyond-element-input input[type=password]::-ms-clear,
.jadmin-input .beyond-element-input input[type=password]::-webkit-contacts-auto-fill-button,
.jadmin-input .beyond-element-input input[type=password]::-webkit-credentials-auto-fill-button,
.jadmin-input .beyond-element-textarea input[type=password]::-ms-reveal,
.jadmin-input .beyond-element-textarea input[type=password]::-ms-clear,
.jadmin-input .beyond-element-textarea input[type=password]::-webkit-contacts-auto-fill-button,
.jadmin-input .beyond-element-textarea input[type=password]::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.jadmin-input .beyond-element-input:hover:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled), .jadmin-input .beyond-element-input:focus-within:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled),
.jadmin-input .beyond-element-textarea:hover:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled),
.jadmin-input .beyond-element-textarea:focus-within:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled) {
  border-color: var(--primary-light);
}
.jadmin-input .beyond-element-input:hover:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled) input, .jadmin-input .beyond-element-input:hover:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled) textarea,
.jadmin-input .beyond-element-textarea:hover:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled) input,
.jadmin-input .beyond-element-textarea:hover:not(.jadmin-input .beyond-element-input.disabled,
.jadmin-input .beyond-element-textarea.disabled) textarea {
  color: var(--text);
}
.jadmin-input .beyond-element-input button.beyond-icon-button svg.beyond-icon,
.jadmin-input .beyond-element-textarea button.beyond-icon-button svg.beyond-icon {
  fill: var(--text);
}
.jadmin-input .beyond-element-input.small,
.jadmin-input .beyond-element-textarea.small {
  height: 43px;
}
.jadmin-input .beyond-element-input .beyond-element-input-error,
.jadmin-input .beyond-element-textarea .beyond-element-input-error {
  bottom: -1.25rem;
  color: var(--on-error);
  font-size: 12px;
}
@media screen and (max-width: 320px) {
  .jadmin-input .beyond-element-input .beyond-element-input-error,
  .jadmin-input .beyond-element-textarea .beyond-element-input-error {
    font-size: 11px;
  }
}
.jadmin-input .beyond-element-input.error,
.jadmin-input .beyond-element-textarea.error {
  border-color: var(--on-error);
}
.jadmin-input .beyond-element-textarea {
  min-height: 135px;
}
.jadmin-input .beyond-element-textarea textarea {
  min-height: inherit;
}
.jadmin-input .label-jadmin {
  font-size: 14px;
  letter-spacing: 0px;
  color: var(--text);
  font-weight: 300;
  line-height: 1;
  font-weight: normal;
  text-transform: lowercase;
}
.jadmin-input .label-jadmin::first-letter {
  text-transform: uppercase;
}
.modal-prices .modal-content {
  max-width: 400px;
}
.modal-prices .modal-content h6 {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}
.modal-prices .modal-content .content-form {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  margin: 16px 0;
}
.modal-prices .modal-content .text-right {
  text-align: right;
  margin: 22px 0 0;
}
.modal-prices .modal-content .text-right button.beyond-button {
  min-width: 100px;
}
.preload {
  background-color: var(--surface);
  width: 100%;
  position: relative;
  border-radius: 2px;
  margin-bottom: 0;
  overflow: hidden;
}
.preload:only-child {
  margin-top: 0;
}
.preload:before {
  content: "";
  display: block;
  background-color: var(--surface);
}
.preload:after {
  content: "";
  background-color: var(--surface-variant);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: loader-animate;
  animation-name: loader-animate;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
}
@-webkit-keyframes loader-animate {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes loader-animate {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
.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, 6s ease-in-out infinite -0.75s;
  animation: dash 1.5s ease-in-out infinite 0s, 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;
  }
}
.pull-down-menu.take-image {
  background-color: var(--surface-variant);
}
.pull-down-menu.take-image header span {
  color: var(--text) !important;
  font-size: 16px !important;
  display: block;
  text-align: center;
  width: 100%;
}
.pull-down-menu.take-image .menu-picture {
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  padding: 30px 15px;
  text-align: center;
  place-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  width: 100%;
  margin: 0 auto;
  display: grid;
}
.pull-down-menu.take-image .menu-picture .option-picture {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}
.pull-down-menu.take-image .menu-picture .option-picture button.beyond-icon-button {
  border-radius: 50%;
  position: relative;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
}
.pull-down-menu.take-image .menu-picture .option-picture button.beyond-icon-button svg.beyond-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-on-primary);
}
.pull-down-menu.take-image .menu-picture .option-picture button.beyond-icon-button input {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  height: 100%;
  width: 100%;
}
.pull-down-menu.take-image .menu-picture .option-picture span {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  display: block;
  text-align: center;
}

figure,
.beyond-element-image {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: var(--secondary) !important;
  border: 1px solid var(--outline);
}
figure img,
.beyond-element-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
figure button.beyond-icon-button,
.beyond-element-image button.beyond-icon-button {
  position: absolute;
  background-color: var(--tertiary);
  border-radius: 50%;
  border: 1px solid var(--outline);
  width: 34px;
  height: 34px;
  bottom: 0;
  right: 15px;
}
figure button.beyond-icon-button svg.beyond-icon,
.beyond-element-image button.beyond-icon-button svg.beyond-icon {
  width: 18px;
  height: 18px;
  fill: var(--text-on-secondary);
}
figure.image-result-fetching,
.beyond-element-image.image-result-fetching {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 450px) {
  figure,
  .beyond-element-image {
    width: 120px;
    height: 120px;
  }
  figure button.beyond-icon-button,
  .beyond-element-image button.beyond-icon-button {
    bottom: 0;
    right: 0;
  }
}
.essential__toasts .toast p.message {
  color: var(--text-on-secondary) !important;
}
.fadeIn {
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@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);
  }
}
@-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;
}
.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 .modal-content {
  max-width: 450px;
  width: 90%;
}
.beyond-alert-dialog .alert-dialog-content {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.beyond-alert-dialog .alert-dialog-content h3,
.beyond-alert-dialog .alert-dialog-content div {
  color: var(--text);
}
.beyond-alert-dialog .alert-dialog-content h3 {
  font-weight: bold;
  font-size: 18px;
}
.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;
}
.beyond-element-modal .modal-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  height: 100%;
}
@media screen and (max-height: 500px) {
  .beyond-element-modal .modal-wrapper {
    height: auto;
  }
}
.beyond-element-modal .modal-content {
  position: relative;
  color: #000;
  background: var(--background);
  padding: 1.5rem;
}
.beyond-element-modal .modal-wrapper .modal-content .close-icon {
  position: absolute;
  top: 4px;
  right: 15px;
  border: none;
  background: none;
  display: inline-block;
  transition: all 100ms ease-in;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.beyond-element-modal .modal-wrapper .modal-content .close-icon:hover, .beyond-element-modal .modal-wrapper .modal-content .close-icon:focus {
  fill: var(--gray-dark);
  color: var(--gray);
  transition: all 100ms ease-in;
}
.beyond-element-modal .modal-wrapper .modal-content .close-icon svg {
  height: 12px;
  width: 13px;
  fill: var(--text-on-primary);
}
.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.beyond-confirm-dialog-centered p, .beyond-confirm-dialog.beyond-confirm-dialog-centered div {
  color: var(--text);
}
.beyond-confirm-dialog .modal-content {
  max-width: 450px;
  width: 90%;
}
.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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 8px;
  right: 8px;
}
.beyond-element-modal.md .modal-content {
  width: 70%;
}
@media (max-width: 900px) {
  .beyond-element-modal.md {
    min-width: 80%;
  }
  .beyond-element-modal.lg {
    width: 90%;
  }
}
.beyond-element-modal.profile-modal .modal-content h3 {
  font-weight: bold;
  margin: 4px 0 0;
  color: var(--text);
}
.beyond-element-modal.profile-modal .modal-content .content-form {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  margin: 22px 0 0;
}
.beyond-element-modal.profile-modal .modal-content .content-form .texts-subtitle {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  display: inline-block;
}
.beyond-element-modal.profile-modal .modal-content .content-form .label-jadmin {
  font-weight: 500;
}
@media screen and (max-width: 320px) {
  .beyond-element-modal.profile-modal .modal-content {
    padding: 8px;
  }
}
.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.conf-modal h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 10px;
  display: inline-block;
  color: var(--text);
}

.title-text {
  display: inline-block;
  height: 35px;
  line-height: 52px;
  padding: 0 15px;
  margin-top: 22px;
}

.success h1 {
  color: var(--success);
}

.conf-modal p {
  color: var(--text);
  padding: 15px;
  font-size: 16px;
  line-height: 24px;
}

.modal-footer .conf-but {
  display: inline-block;
  float: right;
  margin-right: 15px;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--secondary);
  background: none;
  padding: 10px 15px;
  border-radius: 4px;
}

.modal-footer .conf-but:hover {
  cursor: pointer;
  opacity: 0.8;
}

.modal-footer .conf-but.green {
  color: var(--success);
}
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("/assets/caret-down-solid.svg"), 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;
  width: 100%;
}
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;
  }
}
*, *::after, *::before {
  font-family: var(--font-family);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -o-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
}
*:active, *:hover, *:focus, *::after:active, *::after:hover, *::after:focus, *::before:active, *::before:hover, *::before:focus {
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -o-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
}
.background-black {
  position: fixed;
  inset: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}
.justify-end {
  justify-content: flex-end;
}

.hide {
  visibility: hidden;
}

.icon-header.beyond-icon-button svg.beyond-icon {
  width: 26px;
  height: 26px;
}

.total-items {
  font-size: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.total-items.padding {
  padding-left: 16px;
}

.end-column {
  display: block;
  text-align: right;
}

.hide {
  display: none;
}

.d-flex {
  display: flex;
}

.gap-16 {
  gap: 16px;
}

.ga-8 {
  gap: 16px;
}

.w-100 {
  width: 100%;
}

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

.font-normal {
  font-weight: normal;
}

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

.space-between {
  justify-content: space-between;
}
:root {
  font-weight: lighter;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1,
.h1 {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.43px;
  font-weight: 900;
}

h2,
.h2 {
  font-size: 2rem;
  line-height: 44px;
  letter-spacing: 0.43px;
}

h3,
.h3 {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.35px;
}
h3 small,
.h3 small {
  display: grid;
  font-size: 1rem;
}

.pretitle {
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
}

h3,
h4,
.h3,
.h4 {
  color: var(--text-color);
}
h3.regular,
h4.regular,
.h3.regular,
.h4.regular {
  font-weight: lighter;
}

h4,
.h4 {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}

.pretitle-h1 {
  font-size: 1.65rem;
  line-height: 30px;
  color: var(--app-primary-color);
  letter-spacing: -0.26px;
}

figure {
  margin: 0;
  padding: 0;
}

.p1 {
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 0;
  line-height: 24px;
}

.p2, p,
ul,
li {
  font-size: 1rem;
  letter-spacing: 0.16px;
  font-weight: lighter;
  line-height: 24px;
}

ul li {
  padding: 0.25rem;
}

.primary-color {
  color: var(--primary) !important;
}

.secondary-color {
  color: var(--secondary) !important;
}

.subtitle {
  font-size: 18px;
}

.t3 {
  font-size: 13px;
  text-transform: uppercase;
}

.secondary-accent {
  color: var(--secondary-accent);
}

.mt-15 {
  margin-top: 15px !important;
  margin-bottom: 15px;
}

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

.button-text {
  font-size: 0.75rem;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.text-on-primary {
  color: var(--text-on-primary) !important;
}

.docs__info {
  padding: 2rem;
  background: var(--app-surface-notes);
  border-radius: var(--border-radius-base);
  margin-bottom: 2rem;
}