@charset "UTF-8";
/* Project / Fonts */
/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi/Satoshi-Medium.woff2") format("woff2"), url("/assets/fonts/satoshi/Satoshi-Medium.woff") format("woff"), url("/assets/fonts/satoshi/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi/Satoshi-MediumItalic.woff2") format("woff2"), url("/assets/fonts/satoshi/Satoshi-MediumItalic.woff") format("woff"), url("/assets/fonts/satoshi/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi/Satoshi-Bold.woff2") format("woff2"), url("/assets/fonts/satoshi/Satoshi-Bold.woff") format("woff"), url("/assets/fonts/satoshi/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi/Satoshi-BoldItalic.woff2") format("woff2"), url("/assets/fonts/satoshi/Satoshi-BoldItalic.woff") format("woff"), url("/assets/fonts/satoshi/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi/Satoshi-Black.woff2") format("woff2"), url("/assets/fonts/satoshi/Satoshi-Black.woff") format("woff"), url("/assets/fonts/satoshi/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi/Satoshi-BlackItalic.woff2") format("woff2"), url("/assets/fonts/satoshi/Satoshi-BlackItalic.woff") format("woff"), url("/assets/fonts/satoshi/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
/* Project / Defaults */
a {
  color: var(--colors-primary-normal);
  text-decoration: underline;
}

p {
  margin-bottom: var(--type-spacing-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--type-weight-title);
}

strong, b {
  font-weight: var(--type-weight-bold);
}

hr {
  border-style: solid;
  border-color: var(--colors-gray-border);
}

body {
  background-color: var(--colors-primary-dark);
}

/* Project / Content */
#app {
  width: 100%;
  min-height: 100vh;
}

.background {
  background-color: #000;
  background-image: url("/assets/images/content/background.jpg");
  background-position: 0% 0%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.header {
  height: 115px;
}

/* Project / Support */ /* Components / Layout */
.layout-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-body__content {
  flex: 1;
}

.layout-header {
  position: relative;
  padding: var(--sizes-size-normal) 0;
  background-color: var(--colors-base);
  color: var(--colors-gray-dark);
}

.layout-header--floating {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
}

.layout-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  padding: var(--sizes-size-small) 0;
  box-shadow: 0px 1px 2px rgba(48, 48, 48, 0.2);
  background-color: white;
}

.layout-header.scope-reverse.is-fixed {
  background-color: #000000;
}

@media (prefers-reduced-motion: no-preference) {
  .layout-header.is-fixed {
    animation-name: layout-header--slide-in;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
  }
  @keyframes layout-header--slide-in {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
}
.layout-footer {
  position: relative;
  padding: var(--sizes-size-normal) 0;
  color: var(--colors-gray-light);
  background-color: var(--colors-gray-bg);
}

@media (max-width: 1020px) {
  .layout-footer__container {
    flex-direction: column;
  }
  .layout-footer__menu {
    margin-left: 0;
    margin-top: var(--sizes-size-small);
  }
}
@media (max-width: 720px) {
  .layout-footer {
    text-align: center;
  }
  .layout-footer__menu {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
}
body.has-mobile-menu {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background-color: var(--colors-base);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity;
  pointer-events: none;
  opacity: 0;
}

.mobile-menu.is-open {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu__close {
  position: absolute;
  top: 3rem;
  right: 4rem;
  cursor: pointer;
  height: 2rem;
  padding: 0.1em;
  color: var(--colors-gray-light);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color;
}

.mobile-menu__close:hover {
  color: var(--colors-gray-normal);
}

.mobile-menu__body {
  padding: 3rem;
}

.mobile-menu__menu {
  margin-top: 6rem;
  padding: 6rem 8rem;
  border: solid 2rem var(--colors-gray-bg);
}

/* Components / Dropdown Menu */
.dropdown-menu {
  position: relative;
  overflow: visible;
}

.dropdown-menu__trigger {
  display: inline-block;
}

.dropdown-menu__submenu {
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  cursor: default;
  white-space: nowrap;
  background-color: white;
  box-shadow: 0px 1px 2px rgba(48, 48, 48, 0.2);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, background-color, border-color, opacity, background-size, transform;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-1rem);
}

.dropdown-menu__submenu :where(a) {
  color: #303030;
}

:where(.dropdown-menu__submenu) {
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  gap: 1rem;
  min-width: 150px;
}

.dropdown-menu__submenu.is-open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu--inline :where(.dropdown-menu__submenu) {
  padding: 1rem 0;
  gap: 0.5rem;
}

.dropdown-menu--right .dropdown-menu__submenu {
  left: auto;
  right: 0;
}

/* Components / Dropdown Menu */
.mobile-menu-toggle {
  display: inline-block;
  position: relative;
  color: currentColor;
  cursor: pointer;
  width: 24px;
  height: 16px;
}
.mobile-menu-toggle span {
  display: block;
  position: absolute;
  left: 0%;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform, top, left, width, height, opacity;
}
.mobile-menu-toggle span:nth-child(1) {
  top: 0%;
}
.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
}
.mobile-menu-toggle span:nth-child(3) {
  top: 100%;
}

.mobile-menu-toggle--offset span:nth-child(3) {
  width: 75%;
}

.mobile-menu-toggle--offset:hover span:nth-child(1),
.mobile-menu-toggle--offset:active span:nth-child(1), .mobile-menu-toggle--offset.is-active span:nth-child(1) {
  top: 50%;
}
.mobile-menu-toggle--offset:hover span:nth-child(2),
.mobile-menu-toggle--offset:active span:nth-child(2), .mobile-menu-toggle--offset.is-active span:nth-child(2) {
  top: 0%;
}
.mobile-menu-toggle--offset:hover span:nth-child(3),
.mobile-menu-toggle--offset:active span:nth-child(3), .mobile-menu-toggle--offset.is-active span:nth-child(3) {
  left: 25%;
}

.mobile-menu-toggle--inverse span:nth-child(3) {
  width: 75%;
}

.mobile-menu-toggle--inverse:hover span:nth-child(1),
.mobile-menu-toggle--inverse:active span:nth-child(1), .mobile-menu-toggle--inverse.is-active span:nth-child(1) {
  top: 100%;
}
.mobile-menu-toggle--inverse:hover span:nth-child(3),
.mobile-menu-toggle--inverse:active span:nth-child(3), .mobile-menu-toggle--inverse.is-active span:nth-child(3) {
  top: 0%;
  left: 25%;
}

.mobile-menu-toggle--plus span:nth-child(3) {
  width: 100%;
}

.mobile-menu-toggle--plus:hover span:nth-child(1),
.mobile-menu-toggle--plus:active span:nth-child(1), .mobile-menu-toggle--plus.is-active span:nth-child(1) {
  top: 50%;
}
.mobile-menu-toggle--plus:hover span:nth-child(3),
.mobile-menu-toggle--plus:active span:nth-child(3), .mobile-menu-toggle--plus.is-active span:nth-child(3) {
  top: 50%;
}
.mobile-menu-toggle--plus:hover span:nth-child(2),
.mobile-menu-toggle--plus:active span:nth-child(2), .mobile-menu-toggle--plus.is-active span:nth-child(2) {
  transform: rotate(90deg);
  width: 80%;
  left: 10%;
}

.mobile-menu-toggle--up:hover span:nth-child(1),
.mobile-menu-toggle--up:active span:nth-child(1), .mobile-menu-toggle--up.is-active span:nth-child(1) {
  transform: rotate(90deg);
  left: -30%;
  width: 80%;
  top: 50%;
}
.mobile-menu-toggle--up:hover span:nth-child(2),
.mobile-menu-toggle--up:active span:nth-child(2), .mobile-menu-toggle--up.is-active span:nth-child(2) {
  transform: rotate(90deg);
  left: 0%;
  width: 80%;
  top: 40%;
}
.mobile-menu-toggle--up:hover span:nth-child(3),
.mobile-menu-toggle--up:active span:nth-child(3), .mobile-menu-toggle--up.is-active span:nth-child(3) {
  transform: rotate(-90deg);
  left: 30%;
  width: 80%;
  top: 50%;
}

.mobile-menu-toggle--arrow span:nth-child(1) {
  width: 100%;
}
.mobile-menu-toggle--arrow span:nth-child(2) {
  width: 75%;
}
.mobile-menu-toggle--arrow span:nth-child(3) {
  width: 50%;
}

.mobile-menu-toggle--arrow:hover span:nth-child(1),
.mobile-menu-toggle--arrow:active span:nth-child(1), .mobile-menu-toggle--arrow.is-active span:nth-child(1) {
  width: 50%;
  left: 50%;
}
.mobile-menu-toggle--arrow:hover span:nth-child(2),
.mobile-menu-toggle--arrow:active span:nth-child(2), .mobile-menu-toggle--arrow.is-active span:nth-child(2) {
  width: 75%;
  left: 25%;
}
.mobile-menu-toggle--arrow:hover span:nth-child(3),
.mobile-menu-toggle--arrow:active span:nth-child(3), .mobile-menu-toggle--arrow.is-active span:nth-child(3) {
  width: 100%;
}

/* Components / Modal */
body.has-modal-popup {
  overflow: hidden;
}

.modal-wrapper {
  display: inline-block;
}

.modal-popup {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity;
  pointer-events: none;
  opacity: 0;
}

.modal-popup.is-open {
  pointer-events: all;
  opacity: 1;
}

.modal-popup__body {
  position: relative;
  width: 80%;
  max-width: 100rem;
  width: clamp(40rem, 80%, 100rem);
  margin: auto;
}

:where(.modal-popup__body) {
  background-color: var(--colors-base);
  padding: var(--sizes-size-small) var(--sizes-size-normal);
}

.modal-popup__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  cursor: pointer;
  height: 2rem;
  padding: 0.1em;
  color: var(--colors-gray-light);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color;
}

.modal-popup__close:hover {
  color: var(--colors-gray-normal);
}

.modal-popup--inline .modal-popup__body {
  width: auto;
  max-width: 80rem;
}
.modal-popup--inline .modal-popup__close {
  top: 0.8rem;
  right: 1rem;
  height: 1.5rem;
}

:where(.modal-popup--inline .modal-popup__body) {
  padding: var(--sizes-size-x-small) var(--sizes-size-small);
}

/* Components / Pagination */
.pagination {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: var(--colors-gray-normal);
  font-size: var(--type-size-normal);
}
.pagination span, .pagination a {
  padding: 0.5rem 0.25em;
}
.pagination a {
  text-decoration: none;
  color: var(--colors-gray-normal);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color;
}
.pagination a:hover {
  color: var(--colors-primary-normal);
}
.pagination .active span {
  color: var(--colors-gray-dark);
  font-weight: var(--type-weight-bold);
}
.pagination .separator {
  margin: 0.5rem 0;
}

/* Components / Banner */
.display-banner {
  position: relative;
  border: none;
  padding-right: 5rem;
}

.display-banner.is-closed {
  display: none;
}

.display-banner__close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  cursor: pointer;
  height: 2rem;
  padding: 0.1em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color;
}

.display-banner__close:hover {
  color: var(--colors-gray-normal);
}

@media (max-width: 720px) {
  .display-banner {
    padding-right: 3rem;
  }
  .display-banner__close {
    height: 1.8rem;
    right: 0.8rem;
  }
}
/* Components / Hero */
.display-hero {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 25vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--colors-gray-bg);
}

.display-hero__cover {
  background-color: #00272F;
  opacity: 0.75;
}

.display-hero__more {
  display: inline-block;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.display-hero__more a {
  display: inline-block;
  color: white;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform;
}

.display-hero__more a:hover {
  transform: translateY(0.5rem);
}

.display-hero__more a > .style-icon {
  height: 2rem;
}

.display-hero__more:hover > .style-icon {
  transform: translateY(0.5rem);
}

.display-hero--fullscreen {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.display-hero--large {
  min-height: 75vh;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.display-hero--small {
  min-height: 12vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Components / Form & Inputs */
.form-control {
  position: relative;
  min-width: 10rem;
  color: var(--colors-gray-normal);
}

:where(.form-control) {
  margin-bottom: var(--sizes-size-small);
}

.form-control__label {
  display: inline-block;
  font-size: var(--type-size-small);
  margin-bottom: var(--sizes-size-subtle);
}

.form-control__body {
  position: relative;
  display: flex;
  align-items: center;
}

.form-control__input {
  display: block;
  width: 100%;
}

.form-control__description {
  display: inline-block;
  font-size: var(--type-size-small);
  font-style: italic;
}

.form-control__success {
  font-size: var(--type-size-small);
  color: #5DA176;
  margin-top: var(--sizes-size-subtle);
}

.form-control__error {
  font-size: var(--type-size-small);
  color: #CC2A2B;
  margin-top: var(--sizes-size-subtle);
}

.form-control__body:hover .form-control__input,
.form-control__body.is-active .form-control__input {
  outline: none;
  border-color: var(--colors-primary-normal);
}

.form-control--button .form-control__input {
  padding-right: 4rem;
}
.form-control--button select.form-control__input {
  -webkit-appearance: none;
}
.form-control--button button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--colors-gray-border);
  height: 1.5em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color;
}
.form-control--button button > :where(.style-icon) {
  height: 100%;
}
.form-control--button button:hover {
  color: var(--colors-primary-normal);
}

.form-control--icon .form-control__input {
  padding-right: 4rem;
}
.form-control--icon select.form-control__input {
  -webkit-appearance: none;
}
.form-control--icon .style-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: margin-top;
}
.form-control--icon :where(.style-icon) {
  height: 1em;
}

.form-control--select .form-control__body:hover .style-icon {
  margin-top: var(--sizes-size-subtle);
}

.form-input {
  font-family: var(--type-font-normal);
  font-size: var(--type-size-normal);
  padding: var(--sizes-padding-normal);
  line-height: 1.5em;
  color: var(--colors-gray-normal);
  border: solid 2px var(--colors-gray-border);
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, background-color, border-color, opacity, background-size, transform;
}

.form-input::-moz-placeholder {
  color: var(--colors-gray-light);
}

.form-input::placeholder {
  color: var(--colors-gray-light);
}

.form-input:hover, .form-input:active, .form-input:focus {
  outline: none;
  border-color: var(--colors-primary-normal);
}

input[type=checkbox].form-input,
input[type=radio].form-input {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin: 0.4em;
}

input[type=checkbox].form-input:not(:first-child),
input[type=radio].form-input:not(:first-child) {
  margin-left: var(--sizes-size-small);
}

input[type=checkbox].form-input + .form-control__description {
  margin-left: var(--sizes-size-x-small);
}

textarea.form-input {
  min-height: 10rem;
}

.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.chat-transition-enter-active,
.chat-transition-leave-active {
  transition: all 0.5s ease;
}

.chat-transition-enter-from,
.chat-transition-leave-to {
  opacity: 0;
  width: 0 !important;
}

.tepou-video {
  width: 100%;
}

.tepou-chat-wrapper {
  width: 300px;
  position: relative;
}

.tepou-chat {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
}

.additional-information {
  width: 630px;
}

.width--sidebar {
  width: 300px;
}

/* Components (Ripple) / Style Link */
.style-link {
  --text-color: currentColor;
  --background-color: transparent;
  --border-color: currentColor;
  --text-color-hover: var(--text-color);
  --background-color-hover: var(--background-color);
  --border-color-hover: var(--border-color);
}

.style-link--default {
  --text-color: var(--colors-primary-normal);
}

.style-link--default {
  --text-color-hover: var(--colors-primary-dark);
}

.style-link {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: var(--text-color);
  background-color: var(--background-color);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color;
}

.style-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.2em;
  height: 3px;
  background-color: var(--border-color);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity, transform;
  color: var(--colors-primary-border);
}

.style-link > .style-icon {
  vertical-align: middle;
  margin-top: -0.2em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform;
}

:where(.style-link > .style-icon) {
  height: 0.8em;
}

.style-link:hover,
.style-link:active, .style-link.is-active,
.group:hover .style-link {
  cursor: pointer;
  color: var(--text-color-hover);
}

.style-link:hover:after,
.style-link:active:after, .style-link.is-active:after {
  color: var(--text-color-hover);
  opacity: 1;
  transform: translateY(0.2rem);
}

.style-link--disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.style-link--readonly {
  cursor: not-allowed !important;
}

.style-link--current {
  --text-color: currentColor;
  --border-color: currentColor;
  --text-color-hover: currentColor;
  --border-color-hover: currentColor;
}

.style-link--subtle:after {
  opacity: 0;
}

.style-link--no-border:after {
  display: none;
}

.style-link--block {
  --text-color: var(--colors-reverse);
  --background-color: transparent;
  --text-color-hover: var(--colors-reverse);
  --background-color-hover: var(--colors-gray-bg);
  display: block;
  padding: var(--sizes-padding-normal);
}

.style-link--block:after {
  display: none;
}

.style-link--plain {
  --text-color: currentColor;
  --text-color-hover: currentColor;
}

.style-link--plain:after {
  display: none;
}

.style-link--icon-external:hover .style-icon {
  transform: translateX(0.1rem) translateY(-0.1rem);
}

.style-link--icon-down:hover .style-icon {
  transform: translateY(0.1rem);
}

.style-link--icon-right:hover .style-icon {
  transform: translateX(0.2rem);
}

.scope-reverse .style-link {
  --text-color: white;
  --text-color-hover: white;
}
.scope-reverse .style-link--current,
.scope-reverse .style-link--plain {
  --text-color-hover: currentColor;
}
.scope-reverse .style-link--block {
  --text-color: var(--colors-reverse);
  --text-color-hover: var(--colors-reverse);
}

/* Components (Ripple) / style Button */
.style-button {
  --text-color: var(--colors-base);
  --background-color: var(--colors-primary-dark);
  --border-color: var(--background-color);
  --text-color-hover: var(--text-color);
  --background-color-hover: var(--colors-primary-normal);
  --border-color-hover: var(--border-color);
}

.style-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: var(--text-color);
  background-color: var(--background-color);
  border: solid 2px var(--colors-gray-border);
  border-radius: 28px;
  border-color: var(--border-color);
  text-decoration: none;
  padding: 12px 52px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, background-color, border-color;
}

:where(button.style-button) {
  font-family: var(--type-font-normal);
  font-size: var(--type-size-normal);
}

.style-button > .style-icon {
  vertical-align: middle;
  margin-top: -0.1em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform;
}

:where(.style-button > .style-icon) {
  height: 0.8em;
}

.style-button:hover,
.style-button:active, .style-button.is-active,
.group:hover .style-button {
  color: var(--text-color-hover);
  background-color: var(--background-color-hover);
  border-color: var(--border-color-hover);
}

.style-button--disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.style-button--readonly {
  cursor: not-allowed !important;
}

.style-button--outline {
  --text-color: var(--colors-reverse);
  --background-color: var(--colors-base);
  --border-color: var(--text-color);
  --background-color-hover: var(--colors-primary-light-bg-elements);
}

.scope-reverse .style-button--default {
  --text-color: var(--colors-reverse);
  --background-color: var(--colors-base);
  --border-color: var(--background-color);
  --background-color-hover: var(--colors-secondary-normal);
}
.scope-reverse .style-button--outline {
  --text-color: var(--colors-base);
  --background-color: var(--colors-reverse);
  --border-color: var(--text-color);
  --background-color-hover: var(--colors-primary-normal);
}

/* Scopes / Reverse */
.scope-reverse {
  color: white;
  --colors-gray-title: white;
}

/* Overrides / Print */
.print-page-break {
  display: none;
}

@media print {
  @page {
    size: 330mm 427mm;
    margin: 14mm;
  }
  .layout-container {
    width: 1170px;
  }
  .print-page-break {
    page-break-before: always;
  }
}
