@charset "UTF-8";
.cart-count {
  position: relative;
  padding: 1rem;
}
.cart-count-icon {
  align-items: center;
  justify-content: center;
  display: flex;
}
.cart-count-icon svg {
  display: flex;
  width: 1rem;
  height: 100%;
}
.cart-count-icon path {
  fill: #1e2c3d;
  transition-duration: 0.5s;
}
.cart-count-number {
  position: absolute;
  top: 11px;
  right: 8px;
  line-height: 1;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #57acb7;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8px;
}
.cart-count-number.empty-cart {
  background: #e0e4eb;
  color: #576270;
}
.woocommerce-cart h1 {
  margin-bottom: 1em;
}
.woocommerce-cart-form__contents thead {
  display: none;
}
.woocommerce-cart-form__contents tbody {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}
@media (max-width: 1280px) {
  .woocommerce-cart-form__contents tbody {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .woocommerce-cart-form__contents tbody {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .woocommerce-cart-form__contents tbody {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 320px) {
  .woocommerce-cart-form__contents tbody {
    grid-template-columns: 1fr;
  }
}
.woocommerce-cart-form__contents tbody tr:last-child {
  grid-column: 1 / -1;
}
.woocommerce-cart .cart_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 1rem;
  background: #ffffff;
  font-size: 0.8rem;
  border-radius: 0.5rem;
}
.woocommerce-cart .cart_item td {
  padding: 0.2rem 0;
}
.woocommerce-cart .cart_item .product-price:before, .woocommerce-cart .cart_item .product-subtotal:before, .woocommerce-cart .cart_item .product-quantity:before {
  content: attr(data-title) ": ";
}
.woocommerce-cart .product-name {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 0;
  color: #1e2c3d;
}
.woocommerce-cart .product-name a {
  color: #1e2c3d;
  padding: 0.6rem 0;
  text-align: center;
  line-height: 1.2;
  font-size: 1.5rem;
  text-align: left;
  margin-top: 1rem;
}
.product-price {
  color: #576270;
}
.product-quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product-quantity input.qty {
  width: 4rem;
  height: 2rem;
  margin-left: 5px;
  padding: 0 0.6rem;
  border: 0;
}
td.product-remove {
  padding: 0;
}
.product-remove .remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0;
  width: 24px;
  height: 24px;
  background: #ffffff;
  font-size: 0;
  line-height: 0;
  border-radius: 100px;
}
.product-remove .remove:before, .product-remove .remove:after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #576270;
  transform: rotate(45deg);
  top: 11px;
  left: 6px;
  transition-duration: 0.5s;
}
.product-remove .remove:after {
  transform: rotate(-45deg);
}
.product-remove .remove:hover {
  background: red;
}
.product-remove .remove:hover:before, .product-remove .remove:hover:after {
  background: #ffffff;
}
.woocommerce-cart .cart_item td.product-thumbnail {
  padding: 0;
  border-radius: 0.5rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  max-width: 15rem;
  width: 100%;
  position: relative;
  padding-bottom: 40%;
  overflow: hidden;
}
.woocommerce-cart .cart_item td.product-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.woocommerce-cart-form__contents .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.woocommerce-cart-form__contents .coupon {
  display: flex;
  margin: -0.25rem;
}
.woocommerce-cart-form__contents .coupon .button {
  font-size: 0.8rem;
}
.woocommerce-cart-form__contents .coupon > * {
  margin: 0.25rem;
}
.woocommerce-cart-form__contents .button[disabled], .woocommerce-cart-form__contents .button[disabled]:hover {
  background: #e0e4eb;
  cursor: default;
}
.woocommerce-cart-form__contents .coupon label {
  display: none;
}
.woocommerce-cart-form__contents .actions > .button {
  margin-left: 3rem;
}
@media (max-width: 640px) {
  .woocommerce-cart-form__contents .actions {
    flex-direction: column;
  }
  .woocommerce-cart-form__contents .actions > .button {
    margin-top: 1rem;
    margin-left: 0;
  }
}
.cart-collaterals {
  background: #ffffff;
  margin-top: 1rem;
  border-radius: 0.5rem;
}
.cart-collaterals th {
  text-align: left;
}
.cart_totals {
  display: flex;
  flex-direction: column;
  grid-template-columns: 1fr;
  align-items: flex-start;
  max-width: 800px;
}
.cart_totals h2 {
  grid-row: 1 / span 2;
}
.shop_table th {
  vertical-align: top;
  padding-left: 0;
}
.woocommerce-shipping-methods {
  padding: 0;
  margin: 0;
  list-style: none;
}
.woocommerce-shipping-methods li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5rem;
}
.woocommerce-shipping-destination {
  margin-top: 1rem;
}
.button.checkout-button {
  width: 100%;
  font-size: 0.9rem;
  height: 4rem;
  margin-top: 2rem;
}
@media (max-width: 960px) {
  .cart_totals {
    grid-template-columns: 1fr;
  }
  .cart_totals h2 {
    grid-row: 1 / span 1;
  }
}
.return-to-shop {
  margin-top: 2rem;
}
.woocommerce-cart .cart_item .variation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 400;
  font-size: 0.8rem;
}
.woocommerce-cart .cart_item .variation .variation-Viktiginformation, .woocommerce-cart .cart_item .product-subtotal {
  display: none;
}
.woocommerce-cart .cart_item .product-price {
  width: 100%;
  border-top: 1px solid #e0e4eb;
  padding-top: 1rem;
  margin-top: 1rem;
}
.cart_totals h2 {
  font-size: 2rem;
}
.term-description {
  margin-bottom: 4rem;
  max-width: 40rem;
}
.product-category a {
  width: 100%;
}
.archive.tax-product_cat .products {
  padding-top: 1rem;
}
.woocommerce-loop-category__title .count {
  display: none;
}
.woocommerce-form-coupon-toggle {
  background: #ffffff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.woocommerce-checkout .checkout_coupon {
  background: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-radius: 0.5rem;
}
.woocommerce-checkout .checkout_coupon p {
  margin-bottom: 0;
}
.woocommerce-checkout .checkout_coupon p:first-child {
  display: none;
}
.woocommerce-checkout .checkout {
  background: #ffffff;
  border-radius: 0.5rem;
}
.woocommerce-NoticeGroup-checkout {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-row label {
  display: flex;
  margin-bottom: 0.25rem;
}
.form-row-first, .form-row-last, #billing_phone_field, #billing_email_field, #shipping_phone_field, #shipping_email_field {
  width: 48%;
}
.form-row-wide {
  width: 100%;
}
#billing_postcode_field, #shipping_postcode_field {
  width: 38%;
}
#billing_city_field, #shipping_city_field {
  width: 58%;
}
@media (max-width: 640px) {
  .form-row-first, .form-row-last, #billing_phone_field, #billing_email_field, #shipping_phone_field, #shipping_email_field {
    width: 100%;
  }
}
@media (max-width: 320px) {
  #billing_postcode_field, #shipping_postcode_field, #billing_city_field, #shipping_city_field {
    width: 100%;
  }
}
.woocommerce-shipping-fields {
  margin-top: 3rem;
}
.woocommerce-form__label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.woocommerce-additional-fields {
  margin-top: 3rem;
}
.woocommerce-checkout-review-order-table tbody, .woocommerce-checkout-review-order-table .cart-subtotal {
  font-size: 0.9rem;
  width: 100%;
}
.woocommerce-checkout-review-order-table .cart-subtotal th, .woocommerce-checkout-review-order-table .cart-subtotal td {
  padding-top: 1rem;
  padding-right: 0;
}
.woocommerce-checkout-review-order-table .order-total td {
  padding-right: 0;
}
.woocommerce-checkout-review-order-table .variation {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  font-weight: 400;
  margin: 0.25rem 0;
}
.woocommerce-checkout-review-order-table .variation dd {
  margin-bottom: 0.5rem;
}
.woocommerce-checkout-review-order-table .variation dd:last-child {
  margin-bottom: 0;
}
.woocommerce-checkout-review-order-table .variation dt, .woocommerce-checkout-review-order-table .variation dd {
  width: 50%;
  margin-left: 0;
}
.woocommerce-checkout-review-order-table .cart_item {
  border-bottom: 1px dashed #e0e4eb;
}
.woocommerce-checkout-review-order-table .cart_item td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.woocommerce-checkout-review-order-table .product-name {
  display: flex;
  padding-left: 0;
  padding-right: 1rem;
  flex-wrap: wrap;
  font-weight: 700;
}
.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  vertical-align: top;
  font-weight: 700;
  padding-right: 0;
}
.woocommerce-checkout-review-order-table tfoot tr {
  text-align: left;
}
.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}
#place_order {
  font-size: 1.2rem;
  height: 4rem;
  width: 100%;
  margin-top: 3rem;
}
.payment_method_cheque {
  display: none;
}
.cart_item {
  width: 100%;
}
.variation-Viktiginformation {
  display: none;
}
.woocommerce-Tabs-panel, .cart-collaterals, .woocommerce-cart-form__contents .actions, .woocommerce-form-coupon-toggle, .woocommerce-checkout .checkout_coupon, .woocommerce-checkout .checkout, .woocommerce-order-received .woocommerce, .woocommerce-MyAccount-content {
  padding: 2.5rem;
}
@media (max-width: 960px) {
  .woocommerce-Tabs-panel, .cart-collaterals, .woocommerce-cart-form__contents .actions, .woocommerce-form-coupon-toggle, .woocommerce-checkout .checkout_coupon, .woocommerce-checkout .checkout, .woocommerce-order-received .woocommerce, .woocommerce-MyAccount-content {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .woocommerce-Tabs-panel, .cart-collaterals, .woocommerce-cart-form__contents .actions, .woocommerce-form-coupon-toggle, .woocommerce-checkout .checkout_coupon, .woocommerce-checkout .checkout, .woocommerce-order-received .woocommerce, .woocommerce-MyAccount-content {
    padding: 1.5rem;
  }
}
@media (max-width: 320px) {
  .woocommerce-Tabs-panel, .cart-collaterals, .woocommerce-cart-form__contents .actions, .woocommerce-form-coupon-toggle, .woocommerce-checkout .checkout_coupon, .woocommerce-checkout .checkout, .woocommerce-order-received .woocommerce, .woocommerce-MyAccount-content {
    padding: 1rem;
  }
}
.woocommerce-message {
  font-size: 0.9rem;
  background: #ffffff;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  border-left: 0.5rem solid #00b757;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.woocommerce-message a {
  order: 2;
  font-size: 0.9rem;
  padding: 0 1.5rem 0 1rem;
  flex-shrink: 0;
  height: 3rem;
}
.woocommerce-error {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f0f2f5;
  margin-bottom: 1rem;
  padding: 1rem;
  border-left: 4px solid red;
  padding-left: 1rem;
}
@media (max-width: 640px) {
  .woocommerce-message {
    padding: 1rem 0.75rem 1rem 1rem;
  }
}
.required, .optional {
  text-decoration: none;
  opacity: 0.5;
}
address {
  font-style: normal;
}
.woocommerce-tabs, .woocommerce-account .woocommerce {
  margin-top: 5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.woocommerce-tabs ul, .woocommerce-MyAccount-navigation ul {
  margin: -1px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 12rem;
  flex-shrink: 0;
}
.woocommerce-tabs li a, .woocommerce-MyAccount-navigation-link a {
  margin: 1px 2px 1px 0;
  background: #f0f2f5;
  padding: 1rem 1.2rem;
  color: #1e2c3d;
  display: block;
  text-align: right;
  flex-grow: 1;
}
.woocommerce-tabs li a:hover, .woocommerce-MyAccount-navigation-link a:hover {
  background: #e0e4eb;
  color: #1e2c3d;
}
@media (max-width: 960px) {
  .woocommerce-tabs, .woocommerce-account .woocommerce {
    flex-direction: column;
  }
  .woocommerce-tabs ul, .woocommerce-MyAccount-navigation ul {
    margin: 0 -1px;
    flex-direction: row;
    width: calc(100% + 2px);
  }
  .woocommerce-tabs li, .woocommerce-MyAccount-navigation-link {
    flex-grow: 1;
  }
  .woocommerce-tabs li a, .woocommerce-MyAccount-navigation-link a {
    margin: 0 1px 2px 1px;
    text-align: center;
  }
}
.woocommerce-tabs .active a, .woocommerce-tabs .active a:hover, .woocommerce-MyAccount-navigation-link.is-active a, .woocommerce-MyAccount-navigation-link.is-active a:hover {
  background: #1e2c3d;
  color: #ffffff;
}
.woocommerce-Tabs-panel, .woocommerce-MyAccount-content {
  background: #f0f2f5;
  width: 100%;
}
.woocommerce-breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.woocommerce-breadcrumb, .woocommerce-breadcrumb a {
  color: #576270;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.woocommerce-breadcrumb a:hover {
  color: #233448;
}
.onsale {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #57acb7;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 0.75rem;
  width: 5.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 55px;
  border-bottom-right-radius: 55px;
  z-index: 10;
}
.stars {
  margin-top: 0.5rem;
}
.stars > span {
  display: flex;
}
.stars a {
  position: relative;
  text-indent: -9999px;
  width: 2rem;
  height: 1.5rem;
  line-height: 1;
  font-size: 1.5rem;
  color: #576270;
}
.stars a:before {
  display: block;
  position: absolute;
  content: "☆";
  text-indent: 0;
}
.stars.selected a:before {
  content: "★";
  color: #57acb7;
}
.stars a.active ~ a:before, .stars a:hover ~ a:before {
  content: "☆";
  color: #576270;
}
.stars a:hover:before, .stars.selected a:hover:before {
  color: #57acb7;
}
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1rem;
  width: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.star-rating:before {
  content: "☆☆☆☆☆";
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  color: #ffd700;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span:before {
  content: "★★★★★";
  top: 0;
  position: absolute;
  left: 0;
  color: #ffd700;
}
.woocommerce-pagination {
  padding-top: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.woocommerce-pagination > ul.page-numbers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.quantity {
  max-width: 5rem;
}
.product-type-gift-card .woocommerce-product-gallery__wrapper {
  box-shadow: none;
  background: #ffffff;
  border-radius: 0.5rem;
}
.gift-cards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gift-cards-list h3 {
  width: 100%;
}
.ywgc-main-form-preview-container {
  box-shadow: none;
}
.gift-cards-list button {
  color: #1e2c3d;
  border: 1px solid #e0e4eb;
  border-radius: 0.5rem;
  margin-bottom: 0;
  text-transform: lowercase;
  flex-grow: 1;
}
.gift-cards-list button:hover {
  border: 1px solid #89bcc2;
}
.ywgc-manual-amount, .ywgc-manual-currency-symbol {
  background: none !important;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.ywgc-manual-currency-symbol {
  padding: 0 1.2rem 0 0;
}
.ywgc-manual-amount-container {
  height: 3.5rem;
  border-radius: 0.5rem;
  background: #ffffff !important;
  width: 100%;
}
.ywgc-manual-amount-container, .ywgc-normal-border {
  border: 1px solid #e0e4eb;
  transition-duration: 0.5s;
}
.ywgc-manual-amount-container:hover, .ywgc-normal-border:hover {
  border: 1px solid #576270;
}
.ywgc-manual-amount::placeholder, .gift-card-content-editor.step-content input::placeholder, .gift-card-content-editor.step-content textarea::placeholder {
  font-size: 1rem;
}
.gift-card-content-editor.step-content h5 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.gift_card_template_button {
  display: flex;
}
.woocommerce-order-received .woocommerce {
  background: #f0f2f5;
}
.woocommerce-thankyou-order-received, .woocommerce-order-received h2 {
  font-size: 1.2rem;
}
.woocommerce-order-overview {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-order-details, .woocommerce-customer-details {
  margin-top: 3rem;
}
.woocommerce-table--order-details {
  text-align: left;
}
.woocommerce-table--order-details th:last-child, .woocommerce-table--order-details td:last-child {
  text-align: right;
}
.woocommerce-table--order-details tbody, .woocommerce-table--order-details tfoot {
  font-size: 0.9rem;
}
.woocommerce-order-received .order_item td {
  padding-left: 0;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.woocommerce-order-received .order_item td a, .woocommerce-order-received .order_item td strong {
  display: inline;
}
.woocommerce-order-received .order_item td strong {
  font-weight: 400;
  color: #576270;
}
.woocommerce-order-received tfoot td {
  padding-left: 0;
}
.woocommerce-order-received tfoot th, .woocommerce-order-received tfoot td {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.woocommerce-order-received tfoot tr:first-child th, .woocommerce-order-received tfoot tr:first-child td {
  padding-top: 1rem;
}
.woocommerce-order-received .woocommerce-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.woocommerce-order-received .woocommerce-column--1 {
  margin-right: 15%;
}
.woocommerce-result-count {
  float: left;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #576270;
}
.woocommerce-ordering {
  float: right;
}
@media (max-width: 640px) {
  .woocommerce-result-count {
    float: none;
  }
  .woocommerce-ordering {
    float: none;
    margin-top: 1rem;
  }
}
.archive .products {
  padding-top: 3rem;
}
.products.columns-5, .products.columns-4, .products.columns-3 {
  width: 100%;
  padding-left: 0;
  margin-top: 0;
  display: grid;
  column-gap: 2rem;
  row-gap: 4rem;
}
.products.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .products.columns-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .products.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .products.columns-5, .products.columns-4, .products.columns-3 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }
}
@media (max-width: 320px) {
  .products.columns-5, .products.columns-4, .products.columns-3 {
    grid-template-columns: 1fr;
  }
}
.products .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  text-align: center;
  width: 100%;
}
.custom-archive-product-image-wrapper {
  width: 100%;
  padding-top: 70%;
  position: relative;
  border-radius: 0.5rem;
}
.custom-archive-product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
.woocommerce-loop-product__title, .woocommerce-loop-category__title {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  text-align: left;
  font-family: "Inter", sans-serif;
}
.price {
  color: #233448;
  font-weight: 400 !important;
}
.price.bold-weight {
  font-weight: 700 !important;
}
.price del {
  color: #e0e4eb;
}
.price ins {
  text-decoration: none;
}
.products .product .button {
  position: relative;
  margin-top: 1rem;
  display: none;
}
.added_to_cart {
  display: none;
}
.add_to_cart_button:after {
  content: "";
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffffff;
  width: 0;
  height: 0;
  transform: rotate(135deg) scale(0);
  margin-top: -0.25rem;
  margin-left: 0;
  transition-duration: 0.5s;
}
.add_to_cart_button.added:after {
  width: 0.9em;
  height: 0.45em;
  transform: rotate(135deg) scale(1);
  margin-left: 0.5rem;
  transition-duration: 0.5s;
}
.price {
  font-weight: 700;
}
.price del {
  color: #576270;
}
.price ins {
  color: #00b757;
}
.woocommerce-result-count, .woocommerce-ordering {
  display: none;
}
.custom-archive-product-image-wrapper {
  overflow: hidden;
}
.custom-archive-product-image-wrapper img {
  transform: scale(1);
  transform-origin: 75% 75%;
  transition-duration: 0.5s;
}
.product-category a:hover .custom-archive-product-image-wrapper img, .woocommerce-LoopProduct-link:hover .custom-archive-product-image-wrapper img {
  transform: scale(1.03);
}
.page-description {
  max-width: 40rem;
}
.single .product {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.single .woocommerce-product-gallery {
  width: 47%;
  margin-right: 6%;
  position: relative;
}
.single .summary {
  width: 47%;
}
@media (max-width: 1280px) {
  .single .woocommerce-product-gallery {
    width: 47%;
    margin-right: 6%;
  }
}
@media (max-width: 640px) {
  .single .woocommerce-product-gallery {
    width: 100%;
    margin-right: 0;
  }
  .single .summary {
    margin-top: 1.5rem;
    width: 100%;
  }
}
.woocommerce-product-gallery__wrapper {
  margin: 0;
}
.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  box-sizing: content-box;
}
.woocommerce div.images .woocommerce-product-gallery__trigger:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #1e2c3d;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
}
.woocommerce div.images .woocommerce-product-gallery__trigger:after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #1e2c3d;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  transform: rotate(-45deg);
}
.flex-control-thumbs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-control-thumbs li {
  cursor: pointer;
  transition-duration: 0.5s;
  margin: 2px 2px 0 0;
}
.flex-control-thumbs li:hover {
  opacity: 0.5;
}
.flex-control-thumbs img {
  width: 96px;
}
.single .woocommerce-product-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.single .woocommerce-product-rating .star-rating {
  margin-right: 0.5rem;
  margin-bottom: 0;
}
.single .summary .price {
  color: #1e2c3d;
  font-size: 1.2rem;
}
.single .product-type-gift-card .summary .price {
  display: flex;
  flex-direction: row;
  gap: 0.5ch;
}
.single .summary .price .price span:first-of-type {
  margin-right: 0.3rem;
}
.single .summary .price del, .product-type-variable .summary .price {
  color: #576270;
}
.single .summary ins {
  text-decoration: none;
}
.woocommerce-product-details__short-description {
  margin-bottom: 2rem;
}
.single .cart, .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.woocommerce-variation {
  margin-bottom: 3rem;
}
table.variations {
  max-width: 24rem;
  margin-right: auto;
}
.single_variation_wrap {
  width: 100%;
}
table.variations td {
  padding-right: 0.5rem 0;
}
.reset_variations {
  display: none !important;
}
.woocommerce-variation-description {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.woocommerce-variation-price {
  margin-top: 1rem;
}
.single .quantity {
  margin-right: 0.5rem;
}
.product_meta {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #576270;
}
.woocommerce-product-attributes-item {
  border-bottom: 1px solid #e0e4eb;
}
.woocommerce-product-attributes-item:last-child {
  border-bottom: 0;
}
.woocommerce-product-attributes-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
.single .related.products {
  margin-top: 5rem;
  width: 100%;
}
.single .related.products > h2 {
  margin-bottom: 2rem;
}
.single-product-info {
  position: absolute;
  left: 6vw;
  top: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  background: #233448;
  padding: 1rem 1.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.single-product-info svg {
  width: 2rem;
  margin-right: 1rem;
}
.single-product-info svg path {
  fill: #ffffff;
}
.checkout-section {
  border: 1px solid #e0e4eb;
}
.produkt-mer-info:nth-child(even) .mer-info-img-wrapper {
  order: 2;
}
.produkt-mer-info {
  margin-top: 10rem;
}
@media (max-width: 960px) {
  .produkt-mer-info:nth-child(even) .mer-info-img-wrapper {
    order: 0;
  }
  .produkt-mer-info {
    margin-top: 5rem;
  }
}
.produkt-mer-info:first-child {
  margin-top: 0;
}
.single .price {
  display: flex;
  flex-direction: column;
}
.single .price ins {
  font-size: 1.7rem;
  font-weight: 700;
}
.single .price del {
  order: 2;
  font-size: 0.85rem;
  font-weight: 400;
}
.single-product .footer-google-reviews {
  display: none;
}
.woocommerce-account .woocommerce {
  margin-top: 1rem;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: red;
  color: #ffffff;
}
.woocommerce-MyAccount-content {
  text-align: left;
  font-size: 0.9rem;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.woocommerce-orders-table__row {
  border-bottom: 1px dashed #e0e4eb;
}
.woocommerce-orders-table__cell {
  padding-left: 0;
}
.woocommerce-orders-table__cell:last-child {
  padding-right: 0;
}
.woocommerce-orders-table__cell .button {
  height: 2rem;
  padding: 0 1rem;
  font-size: 0.8rem;
}
.woocommerce-address-fields__field-wrapper, .woocommerce-EditAccountForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.woocommerce-account label {
  font-weight: 700;
}
.woocommerce-EditAccountForm em {
  font-size: 0.8rem;
}
.woocommerce-account fieldset {
  margin: 0;
  margin-top: 2rem;
  padding: 0;
  border: 0;
  border-top: 1px solid #e0e4eb;
  width: 100%;
}
.woocommerce-account fieldset legend {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0;
  padding-right: 1rem;
}
.woocommerce-EditAccountForm .woocommerce-Button {
  margin-top: 1.5rem;
}
.woocommerce-Address-title {
  margin-top: 2rem;
}
.wc-pao-addon .wc-pao-addon-wrap select {
  min-width: 100%;
  width: 100%;
}
h2.wc-pao-addon-name {
  font-size: 1.75rem !important;
  margin-bottom: 0.5rem !important;
  color: #57acb7;
}
.wc-pao-addon-description {
  font-size: 0.85rem;
  font-style: normal !important;
  margin-bottom: 1rem;
}
.wc-pao-addon-container {
  margin-bottom: 3rem;
}
.wc-pao-addon .wc-pao-addon-wrap {
  display: flex;
  flex-direction: column;
}
.wc-pao-addon .wc-pao-addon-wrap input {
  margin-right: 0.5rem !important;
  background: #ffffff !important;
}
.wc-pao-addon .wc-pao-addon-wrap label {
  margin-bottom: 0;
}
.required {
  color: #e77171;
  opacity: 1;
  font-family: #57acb7;
  font-weight: 400;
  font-style: normal;
}
.woocommerce-breadcrumb {
  display: none;
}
.wc-pao-addon-wrap {
  row-gap: 0.4rem;
}
.wc-pao-addon-wrap div {
  display: flex;
}
#cc-main {
  --cc-font-family: Inter, sans-serif;
  --cc-modal-border-radius: 0.5rem;
  --cc-btn-border-radius: 0.5rem;
  --cc-modal-transition-duration: 0.5s;
  --cc-link-color: #57acb7;
  --cc-primary-color: #1e2c3d;
  --cc-secondary-color: #1e2c3d;
  --cc-btn-primary-bg: #57acb7;
  --cc-btn-primary-hover-bg: #89bcc2;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-secondary-bg: #f0f2f5;
  --cc-btn-secondary-hover-bg: #d1d7e1;
}
.cll {
  --im-font-family: Inter, sans-serif;
  --im-color: #ffffff;
  --im-link-color: #ffffff;
  --im-link-hover-color: #89bcc2;
  --im-btn-color: #ffffff;
  --im-btn-bg: #57acb7;
  --im-btn-hover-bg: #89bcc2;
  --im-btn-active-box-shadow: none;
  --im-btn-s-color: #1e2c3d;
  --im-btn-s-bg: #f0f2f5;
  --im-btn-s-hover-bg: #d1d7e1;
  --im-btn-s-active-bg: #d1d7e1;
  --im-overlay-bg: none;
}
#cc-main {
  font-size: 1rem !important;
}
#cc-main .cm__title, #cc-main h2.pm__title {
  font-size: 1.2rem !important;
}
#cc-main button.cm__btn, #cc-main button.pm__btn, #cc-main button.pm__close-btn {
  border: none;
}
#cc-main .cm--wide .cm__btn + .cm__btn, #cc-main .cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0 !important;
}
#cc-main .cm__texts {
  padding: 1.5rem 0 0 !important;
}
#cc-main .cm__desc {
  padding: 0 1.5rem 1.5rem 1.5rem !important;
}
#cc-main .cm__btns {
  padding: 1.5rem !important;
}
#cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
  padding: 1.5rem !important;
}
#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 0 !important;
}
@media (max-width: 640px) {
  #cc-main .cm-wrapper .cm__btns, #cc-main .cm-wrapper .cm__desc, #cc-main.cm-wrapper .cm__links, #cc-main .cm-wrapper .cm__title {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  #cc-main .pm-wrapper .pm__body, #cc-main .pm-wrapper .pm__footer, #cc-main .pm-wrapper .pm__header {
    padding: 1.5rem !important;
  }
}
.cll .c-bg-i {
  filter: blur(1rem);
}
.cll .c-l-b, .cll .c-la-b {
  box-shadow: none !important;
  border-radius: 0.5rem !important;
}
html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #ffffff;
  color: #1e2c3d;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
button, input, optgroup, select, textarea {
  margin: 0;
}
::selection {
  text-shadow: none;
  background: #b0c4de80;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
hr {
  border: 0;
  border-top: 1px solid #e0e4eb;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
code {
  background: #f0f2f5;
  border: 1px dashed #e0e4eb;
  border-radius: 3px;
  padding: 0 0.5rem;
  overflow-wrap: anywhere;
}
figure {
  margin: 0 0 1rem 0;
}
figure:last-child {
  margin: 0;
}
/* Search Form */
.search-form {
  display: flex;
}
.search-form label {
  flex-grow: 1;
}
.screen-reader-text {
  display: none;
}
.search-submit {
  margin-left: 1rem;
}
/* Post Meta Text */
.post-meta-text {
  display: flex;
  gap: 1.5em;
}
.post-meta-text, .post-meta-text a {
  color: #576270;
  font-size: 0.9rem;
}
.post-meta-text > * {
  position: relative;
}
.post-meta-text > *:after {
  content: "";
  width: 1px;
  height: 1em;
  background: #e0e4eb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  right: -0.75em;
}
.post-meta-text > *:last-child:after {
  display: none;
}
/* Widgets */
.widget:not(:last-child) {
  margin-bottom: 2rem;
}
/* 404 */
.four-o-four-section h1 {
  font-size: 10em;
  color: #e0e4eb;
}
/* Password Protected Page Form */
.post-password-form {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(min(6vw, 80px) + 20px) 6vw;
}
.post-password-form p:last-child {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .four-o-four-section h1 {
    font-size: 6em;
  }
}
.background-video-embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Only affect videos inside the modal */
.modal-box .responsive-video-embed {
  position: relative;
  padding: 0;
  /* cancel any 16:9 padding-bottom trick */
  height: auto;
}
.modal-box .responsive-video-embed video {
  display: block;
  width: 100%;
  height: auto;
  /* natural height */
  max-height: calc(100vh - 80px);
  /* optional: keep it inside viewport with margin */
  margin: 0 auto;
}
.button, .wp-block-button__link, .wp-block-file .wp-block-file__button, input[type=submit], .ywgc-predefined-amount-button {
  background: #57acb7;
  color: #ffffff;
  border: none;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 55px;
  border-bottom-right-radius: 55px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0 2.5rem 0 2rem;
  height: 3.5rem;
  transition-duration: 0.5s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.035rem;
}
.button:hover, .wp-block-button__link:hover, .wp-block-file .wp-block-file__button:hover, input[type=submit]:hover, .ywgc-predefined-amount-button:hover {
  background: #89bcc2;
  color: #ffffff;
}
.button.outline, .is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #57acb7;
  color: #233448;
}
.button.outline svg path {
  fill: #57acb7;
  transition-duration: 0.5s;
}
.button.outline:hover, .is-style-outline .wp-block-button__link:hover {
  background: #57acb7;
  border-color: #57acb7;
  color: #ffffff;
}
.button.outline:hover svg path {
  fill: #ffffff;
  transition-duration: 0.5s;
}
.button.button-small, .button-small .wp-block-button__link, .wp-block-file .wp-block-file__button {
  height: 2.5rem;
  padding: 0 1.2rem;
  font-size: 0.8rem;
}
.button.button-large, .button-large .wp-block-button__link {
  height: 5rem;
  padding: 0 2.2rem;
  font-size: 1.2rem;
}
.with-icon-only {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
}
.with-icon-only svg {
  width: 1.26rem;
  height: 1.26rem;
}
.with-icon-left svg {
  margin-right: 0.5em;
  width: 1.2em;
  height: 1.2em;
}
.with-icon-right svg {
  margin-left: 0.5em;
  width: 1.2em;
  height: 1.2em;
}
.with-icon-only path, .with-icon-left path, .with-icon-right path {
  fill: #ffffff;
  transition-duration: 0.5s;
}
.with-icon-only:hover path, .with-icon-left:hover path, .with-icon-right:hover path {
  fill: #ffffff;
}
.with-icon-only, .button-small.with-icon-only, .button-large.with-icon-only {
  padding: 0;
}
.button-small.with-icon-only {
  width: 2.5rem;
  height: 2.5rem;
}
.button-small.with-icon-only svg {
  width: 1.65rem;
  height: 1.65rem;
}
.button-large.with-icon-only {
  width: 5rem;
  height: 5rem;
}
.button-large.with-icon-only svg {
  width: 3.3rem;
  height: 3.3rem;
}
.button.inverted, .inverted input[type=submit] {
  background: #233448;
  color: #ffffff;
}
.button.inverted path {
  fill: #ffffff;
  transition-duration: 0.5s;
}
.button.inverted:hover, .inverted input[type=submit]:hover {
  background: #ffffff;
  color: #1e2c3d;
}
.button.inverted:hover path {
  fill: #1e2c3d;
}
.button.inverted.outline {
  background: transparent;
  border: 1px solid #233448;
  color: #233448;
}
.button.inverted.outline:hover {
  background: #233448;
  border-color: #233448;
  color: #ffffff;
}
.button.inverted.outline path {
  fill: #233448;
}
.button.inverted.outline:hover path {
  fill: #ffffff;
}
/* Add class .light-header to page settings in WP */
.light-header .main-menu-desktop a {
  color: #ffffff;
}
.light-header .main-menu-desktop .menu-item-has-children > a:after {
  border-color: #ffffff;
}
/* END */
.header {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  z-index: 2000;
  height: 5.5rem;
  width: 100%;
}
@media (max-width: 960px) {
  .header {
    position: fixed;
  }
}
.header-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  padding: 0 6vw;
}
.logo {
  position: fixed;
  top: 2.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  width: 6rem;
  height: 6rem;
  padding: 0.8rem;
  background: #ffffff;
  border-radius: 0.5rem;
}
.scrolled .logo {
  top: 1.5rem;
  width: 5rem;
  height: 5rem;
}
@media (max-width: 640px) {
  .logo {
    top: 1rem;
    left: 1rem;
    width: 6rem;
    height: 6rem;
  }
  .scrolled .logo {
    top: 1rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}
.logo img {
  width: 100%;
}
.header-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition-duration: 0.5s;
}
.header-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  border-radius: 1000px;
  transition-duration: 0.5s;
  background: #ffffff;
}
@media (min-width: 960px) {
  .header-buttons {
    height: 3.5rem;
    width: 3.5rem;
  }
}
@media (max-width: 960px) {
  .header-buttons {
    padding: 0 1rem;
  }
  .scrolled .header-buttons {
    top: 0.5rem;
  }
}
@media (max-width: 640px) {
  .header-buttons {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0 0.5rem;
    border-radius: 1000px;
    height: 2.8rem;
  }
  .scrolled .header-buttons {
    top: 0;
  }
  .cart-count-icon svg {
    width: 1rem;
  }
  .cart-count-number {
    top: 9px;
    right: 5px;
    font-size: 8px;
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 960px) {
  .header {
    height: 5rem;
  }
}
@media (max-width: 640px) {
  .header-row {
    padding: 0 20px;
  }
}
@media (max-width: 320px) {
  .header-row {
    padding: 0 15px;
  }
}
/* Main Menu Desktop */
.main-menu-desktop {
  margin-right: 2rem;
}
.main-menu-desktop > ul {
  height: 100%;
}
.main-menu-desktop a {
  color: #1e2c3d;
  padding: 2rem 1rem;
  height: 100%;
  word-break: keep-all;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.main-menu-desktop .menu-item.hover > a {
  color: #89bcc2;
}
.main-menu-desktop .menu-item {
  position: relative;
}
.main-menu-desktop .menu-item-has-children > a {
  padding-right: 2rem;
  cursor: default;
}
.main-menu-desktop .menu-item-has-children > .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 90%;
  left: -1.5rem;
  margin: 0;
  padding: 1rem;
  width: 15rem;
  list-style-type: none;
  background: #ffffff;
  transition-duration: 0.5s;
  transform: translate(0px, 5px);
  border-radius: 0.5rem;
}
.main-menu-desktop .menu-item-has-children:last-child > .sub-menu {
  left: auto;
  right: 0;
}
.main-menu-desktop .menu-item-has-children.hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(0px, 0px);
}
.main-menu-desktop .menu-item-has-children > a:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: calc(50% - 0.4rem);
  right: 0.8rem;
  transform: rotate(45deg);
  border-bottom: 1px solid #1e2c3d;
  border-right: 1px solid #1e2c3d;
}
.main-menu-desktop .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -1rem;
  left: 100%;
}
.main-menu-desktop .menu-item-has-children > .sub-menu > .menu-item-has-children.hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.main-menu-desktop .menu-item-has-children > .sub-menu .menu-item-has-children > a:after {
  display: none;
}
.main-menu-desktop .sub-menu a {
  padding: 0.8rem 1.5rem;
  color: #1e2c3d;
}
@media (max-width: 960px) {
  .main-menu-desktop {
    display: none;
  }
}
/* Hamburger */
.hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  cursor: pointer;
  outline: none;
  border: 0;
  margin: 0;
  margin-left: 1rem;
  padding: 0 1rem;
  z-index: 1000;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
@media (max-width: 960px) {
  .hamburger {
    display: flex;
  }
}
.hamburger-inner {
  width: 28px;
  height: 20px;
  display: flex;
  position: relative;
  margin-top: -1px;
}
.hamburger-top-bar, .hamburger-middle-bar, .hamburger-bottom-bar {
  position: absolute;
  background: #1e2c3d;
  height: 1px;
}
.hamburger-top-bar {
  top: 0;
  transition: top 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s, width 0s ease-in-out 0.2s;
  width: 80%;
}
.hamburger-middle-bar {
  opacity: 1;
  top: 50%;
  transition: opacity 0s ease-in-out 0.2s, width 0s ease-in-out 0.2s;
  width: 100%;
}
.hamburger-bottom-bar {
  top: 100%;
  transition: top 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s, width 0s ease-in-out 0.2s;
  width: 65%;
}
.off-canvas-open .hamburger-top-bar {
  top: 50%;
  transform: rotate(45deg);
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s, width 0s ease-in-out 0.2s;
}
.off-canvas-open .hamburger-middle-bar {
  opacity: 0;
  transition: opacity 0s ease-in-out 0.2s, width 0s ease-in-out 0.2s;
}
.off-canvas-open .hamburger-bottom-bar {
  top: 50%;
  transform: rotate(-45deg);
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s, width 0s ease-in-out 0.2s;
}
.off-canvas-open .hamburger-top-bar, .off-canvas-open .hamburger-middle-bar, .off-canvas-open .hamburger-bottom-bar {
  width: 100%;
}
/* Off-canvas */
body.off-canvas-open {
  overflow: hidden;
}
.off-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  display: flex;
  z-index: -5;
  scroll-behavior: smooth;
  transition: opacity 0.5s, height 0.5s ease-out, z-index 0.5s;
  opacity: 0;
  overflow-y: scroll;
}
.off-canvas-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  background: #233448;
  padding: calc(6vw + 20px + 22px) 0;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.off-canvas-open .off-canvas {
  opacity: 1;
  height: 100%;
  z-index: 2000;
}
.off-canvas-content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.off-canvas-content {
  display: flex;
  justify-content: center;
  padding: 12rem 2rem;
  overflow-y: scroll;
  opacity: 0;
  transition-duration: 0.5s;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  overflow-y: scroll;
  height: 100%;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.off-canvas-content::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.off-canvas-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.off-canvas-open .off-canvas-content {
  opacity: 1;
  pointer-events: auto;
}
.off-canvas-spawn-container {
  overflow: hidden;
}
.off-canvas-spawn {
  transform: translateY(1.8rem) rotateX(10deg);
  transition: transform 0.725s cubic-bezier(0.415, 0.02, 0.175, 1), opacity 0.9s linear 0.1s;
  transition-delay: 0.04s;
}
.off-canvas-open .off-canvas-spawn {
  transform: translateY(0) rotateX(0deg);
}
.off-canvas-img img {
  border-bottom-left-radius: 10rem;
}
.viewport-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s, z-index 0.4s step-end;
}
.off-canvas-open .viewport-overlay, .search-open .viewport-overlay {
  opacity: 1;
  z-index: 10;
  transition: opacity 0.4s, z-index 0.4s step-start;
}
body.off-canvas-open, body.search-open {
  overflow: hidden;
}
/* Main Menu Mobile */
.accordion-menu {
  width: 100%;
}
.accordion-menu li {
  overflow: hidden;
  margin: 0.25rem 0 !important;
}
.accordion-menu a {
  transform: translateY(1.8rem) rotateX(10deg);
  color: #ffffff;
  padding: 0;
  word-break: keep-all;
  font-size: 1rem;
  transition: transform 0.725s cubic-bezier(0.415, 0.02, 0.175, 1), opacity 0.9s linear 0.1s;
  transition-delay: 0.04s;
  letter-spacing: 0.035rem;
  will-change: transform;
  position: relative;
}
.accordion-menu a:hover {
  color: #ffffff !important;
}
.accordion-menu a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  will-change: transform;
  background: #57acb7;
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.accordion-menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.accordion-menu-heading a {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
  pointer-events: none;
  text-transform: initial;
  margin-top: 3rem;
}
.accordion-menu-heading:first-child a {
  margin-top: 0;
}
.lead-menu a {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin: 0.35rem 0;
  font-family: "Montserrat Alternates", sans-serif;
}
.off-canvas-open .accordion-menu a {
  transform: translateY(0) rotateX(0deg);
}
.accordion-menu > ul > li:last-child > a {
  border-bottom: 0;
}
.accordion-menu .menu-item {
  position: relative;
}
.accordion-menu .menu-item-has-children > .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition-duration: 0.5s;
}
.accordion-menu .menu-item-has-children > a:after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  display: block;
  position: absolute;
  top: 1.25rem;
  right: 0.1rem;
  transform: rotate(45deg);
  border-bottom: 1px solid #1e2c3d;
  border-left: 1px solid #1e2c3d;
  opacity: 0.5;
  transition-duration: 0.4s;
}
.accordion-menu .menu-item-has-children > a.active:after {
  right: 0.1rem;
  transform: rotate(-45deg);
}
.accordion-menu .sub-menu {
  padding-left: 1rem;
}
/* Footer Columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  column-gap: 4rem;
}
@media (max-width: 960px) {
  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }
}
@media (max-width: 640px) {
  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .footer-columns > div {
    border-top: 1px solid #e0e4eb;
    padding-top: 2rem;
    margin-top: 2rem;
  }
  .footer-columns > div:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}
.footer-link a {
  color: #ffffff;
  height: 100%;
  word-break: keep-all;
  display: flex;
  align-items: center;
  position: relative;
  will-change: transform;
  margin: 0.2rem 0;
}
.footer-link a:hover {
  color: #ffffff !important;
}
.footer-link a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  will-change: transform;
  background: #57acb7;
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.footer-link a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.single-product .bottom-footer {
  z-index: 6;
  position: relative;
}
body {
  background: #f0f2f5;
}
.header-message {
  background: #ffb3c7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 0;
  font-size: 0.8rem;
}
.header-message img {
  width: 3.5rem;
}
.header-message a {
  color: #ffffff !important;
  font-size: 0.8rem;
}
.black-friday-price {
  background: #57acb7;
  color: #ffffff;
  padding: 0 0.6rem;
}
.main {
  overflow: hidden !important;
}
.klarna-background-color {
  background: #000;
}
.item-sub-heading {
  background: #233448;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.fixed-cta {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 58589484;
  background: #4a5869;
  border-radius: 0.5rem;
  overflow: hidden;
  transition-duration: 0.5s;
  opacity: 0;
  transform: translateX(-1rem);
  border: 1px solid #4a5869;
}
.scrolled .fixed-cta {
  opacity: 1;
  transform: translateX(0px);
}
.fixed-cta-header {
  padding: 0.4rem 0 0.3rem;
  background: #233448;
  margin-bottom: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}
.fixed-cta-header h4 {
  color: #ffffff;
}
.fixed-cta-button-wrapper {
  display: flex;
  gap: 1px;
  overflow: hidden;
}
.fixed-cta-button {
  background: #233448;
  height: 3.25rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  letter-spacing: 0.035rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  width: 10rem;
}
.fixed-cta-button:hover {
  background: #57acb7;
  color: #ffffff;
}
.klarna-meta-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #141e29;
  background: #ffb3c7;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
}
.klarna-meta-text div {
  margin: 0 2rem;
  transform: rotate(-2deg);
}
.klarna-meta-text div:first-child {
  margin-left: -5rem;
}
.klarna-logo {
  margin-right: 4rem;
}
.klarna-logo img {
  min-width: 11rem;
}
.klarna-cta-logo {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 8rem;
}
@media (max-width: 960px) {
  .klarna-cta-logo {
    top: 1rem;
    left: 0;
    width: 6rem;
  }
}
.ReviewBackground__Container-sc-1md28nh-0 {
  background-color: white !important;
}
.fNqGxJ {
  color: white;
}
.header-height-margin-top, .first-section-margin-top, .woocommerce-cart .section-content:first-of-type, .woocommerce-checkout .section-content:first-of-type {
  margin-top: 5.5rem;
}
@media (max-width: 640px) {
  .header-height-margin-top, .first-section-margin-top, .woocommerce-cart .section-content:first-of-type, .woocommerce-checkout .section-content:first-of-type {
    margin-top: 5rem;
  }
}
.fp-hero {
  min-height: 100vh;
}
@media (max-width: 640px) {
  .fp-hero {
    min-height: 65vh;
  }
}
.home .klarna-section, .page-template-tacksida .klarna-section {
  display: none;
}
.social-icon {
  display: flex;
  width: 30px;
}
.contact-link-large a {
  border-bottom: solid #57acb7 0.5rem;
  font-weight: 700;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 5vw;
}
@media (max-width: 640px) {
  .contact-link-large a {
    font-size: 2rem;
  }
}
@media (min-width: 1800px) {
  .contact-link-large a {
    font-size: 5rem;
  }
}
.link-with-line {
  padding-left: 4rem;
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.link-with-line a {
  color: #ffffff;
}
.link-with-line a:hover {
  color: #89bcc2;
}
.link-with-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3px;
  background: #ffffff;
}
.hero-contact-link {
  position: absolute;
  right: 7rem;
  top: calc(100vh - 4rem);
  transition-duration: 0.5s;
}
.scrolled .hero-contact-link {
  opacity: 0;
}
@media (max-width: 960px) {
  .hero-contact-link {
    display: none;
  }
}
.highlight {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #233448;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  z-index: 4;
}
.hightlight-text {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #57acb7;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.product-item-highlight {
  left: unset;
  right: 1rem;
  bottom: 1rem;
}
.product-item-highlight.hightlight-text {
  font-size: 0.65rem;
}
.hover-box-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 24px 43px -10px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}
@media (max-width: 640px) {
  .hover-box-wrapper {
    min-height: 300px;
  }
}
.hover-box-wrapper img {
  transition: transform 0.6s ease;
  transform: scale(1);
  transform-origin: 75% 75%;
}
.hover-box-wrapper:hover img {
  transform: scale(1.04);
}
.hover-box-content-position {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hover-box-content-wrapper {
  background: #ffffff;
  color: #1e2c3d;
  padding: 2rem;
  max-width: 75%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .hover-box-content-wrapper {
    padding: 1.5rem;
    max-width: 85%;
  }
}
.hover-box-button {
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: 2rem;
  z-index: 2;
  border-radius: inherit;
}
.hover-box-button::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: 0.2rem;
  width: 0;
  height: 0.5rem;
  background: #57acb7;
  opacity: 0.4;
  z-index: -1;
  -webkit-transition: -webkit-width 0.6s cubic-bezier(0, 0.87, 0.63, 1.01);
  transition: width 0.6s cubic-bezier(0, 0.87, 0.63, 1.01);
  border-radius: 0.5rem;
}
.hover-box-wrapper:hover .hover-box-button::after {
  width: 110%;
}
@media (max-width: 640px) {
  .hover-box-button {
    display: none;
  }
}
.hero-moving-blob-content {
  position: absolute;
  right: 6rem;
  top: calc(100vh - 17rem);
  z-index: 5;
  max-width: 280px;
}
.bg-blob-2 {
  position: absolute;
  left: -25%;
  bottom: -30%;
  opacity: 1;
  z-index: -1;
  display: flex;
  width: 55vw;
}
.bg-blob-3 {
  position: absolute;
  left: -25%;
  top: -20%;
  opacity: 1;
  z-index: -1;
  display: flex;
  width: 60vw;
  min-width: 400px;
  transform: rotate(-100deg);
}
.bg-blob-4 {
  position: absolute;
  right: -25%;
  bottom: -50%;
  opacity: 1;
  z-index: -1;
  display: flex;
  width: 60vw;
  min-width: 400px;
  transform: rotate(-45deg);
}
.bg-blob-5 {
  position: absolute;
  left: -80%;
  top: 30%;
  opacity: 1;
  z-index: -1;
  display: flex;
  width: 50vw;
}
.bg-blob-6 {
  position: absolute;
  left: 30vw;
  top: -60%;
  opacity: 1;
  z-index: -1;
  display: flex;
  width: 150vw;
  min-width: 400px;
  transform: rotate(-45deg);
}
@media (max-width: 640px) {
  .bg-blob-6 {
    left: 20vw;
    top: -20%;
    opacity: 1;
    z-index: -1;
    display: flex;
    width: 150vw;
    min-width: 400px;
    transform: rotate(-45deg);
  }
}
.hero-moving-blob {
  position: absolute;
  top: calc(100vh - 21rem);
  right: -5rem;
  background: #1e2c3d;
  min-width: 600px;
  width: 40vw;
  max-width: 600px;
  min-height: 400px;
  height: 30vw;
  max-height: 600px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  animation: morph 15s linear infinite;
  transform: rotate(20deg);
  pointer-events: none;
  transition-duration: 0.5s;
}
.moving-blob-right {
  position: absolute !important;
  top: 0;
  left: -8rem;
  min-width: 600px;
  width: 45vw;
  max-width: 700px;
  min-height: 400px;
  height: 40vw;
  max-height: 600px;
  border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
  overflow: hidden;
  animation: morph 15s linear infinite;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 640px) {
  .moving-blob-right {
    position: absolute !important;
    top: 0rem;
    left: -2rem;
    min-width: 400px;
    width: 45vw;
    max-width: 400px;
    min-height: 300px;
    height: 40vw;
    max-height: 600px;
  }
}
.klarna-ikon {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 15rem;
}
@media (max-width: 960px) {
  .klarna-ikon {
    top: 3rem;
    left: -1.5rem;
    width: 10rem;
  }
}
@media (max-width: 640px) {
  .klarna-ikon {
    top: 3rem;
    left: -0.5rem;
    width: 8rem;
  }
}
.splide__list {
  display: flex;
  list-style: none;
}
@media (max-width: 1800px) {
  .testimonials-wrapper {
    padding-left: 18vw;
  }
}
.testimonials-item {
  min-width: 350px;
  min-height: 150px;
  border-radius: 0.5rem;
  background: #1e2c3d;
  padding: 3rem;
  color: #89bcc2;
}
.splide__slide:first-child .testimonials-item {
  border-top-left-radius: 5rem;
}
.splide__slide:last-child .testimonials-item {
  border-bottom-right-radius: 5rem;
}
.testimonials-item img {
  width: 75px;
  height: 75px;
  border-radius: 1000px;
  object-fit: cover;
  border-width: 0.25rem;
  border-color: #89bcc2;
  border-style: solid;
  margin-right: 1.5rem;
}
.testimonials-author {
  color: #57acb7;
  font-size: 1.1rem;
}
.split-header-content {
  border-top-right-radius: 30rem;
  padding: 6rem;
  max-width: 50rem;
}
@media (max-width: 960px) {
  .split-header-content {
    border-top-right-radius: 25rem;
    padding: 4rem;
    max-width: 40rem;
  }
}
@media (max-width: 960px) {
  .split-header-content {
    border-top-right-radius: 0;
    padding: 2.5rem;
    max-width: 100%;
  }
}
.memory_slide {
  position: relative;
  animation: memory_slide 30s ease-in-out 2s infinite;
}
@keyframes memory_slide {
  0% {
    object-position: 0 50%;
  }
  50% {
    object-position: 100% 50%;
  }
  100% {
    object-position: 0 50%;
  }
}
@media (max-width: 1280px) {
  .memory_slide {
    animation-duration: 40s;
  }
}
@media (max-width: 960px) {
  .memory_slide {
    animation-duration: 50s;
  }
}
@media (max-width: 640px) {
  .memory_slide {
    animation-duration: 60s;
  }
}
@media (max-width: 320px) {
  .memory_slide {
    animation-duration: 70s;
  }
}
.about-item-value {
  font-size: 3rem;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  color: #57acb7;
}
@media (max-width: 640px) {
  .about-item-value {
    font-size: 1.6rem;
  }
}
.scrolldown-text {
  position: absolute;
  bottom: 12rem;
  right: -4.8rem;
  transform: translate(-50%) rotate(-90deg);
  z-index: 2;
  color: #ffffff;
  transition-duration: 0.5s;
  padding: 0.5rem;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  width: fit-content;
}
.scrolldown-text:hover {
  text-decoration: underline;
  color: #ffffff;
}
@media (max-width: 960px) {
  .scrolldown-text, .c-scrolldown {
    display: none;
  }
}
.fp-scrolldown-position {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
  transform: translate(-50%);
  width: 3px;
  height: 6rem;
  overflow: hidden;
  border-radius: 10px;
}
.fp-scrolldown-position-1 {
  left: 81%;
}
.fp-scrolldown-position-2 {
  left: 82%;
}
.c-scrolldown {
  transition-duration: 0.5s;
}
.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -8.5vh;
  background-size: 100% 200%;
  animation: scrolldown 2.5s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  animation-delay: -0.7s;
}
@keyframes scrolldown {
  0% {
    background-position: 0 -8.5vh;
    opacity: 0;
  }
  75% {
    background-position: 0 0;
    opacity: 1;
  }
  100% {
    background-position: 0 6rem;
  }
}
.scrolled .c-scrolldown, .scrolled .scrolldown-text {
  opacity: 0 !important;
}
.bg-circle {
  position: absolute;
  top: -60%;
  left: -100%;
  width: 250vw;
  border-radius: 100000px;
  height: 250vw;
  background: #e0e4eb;
  z-index: -1;
}
.payment-icons img {
  max-height: 30px;
}
.blob-tacksida {
  position: absolute;
  right: -15%;
  bottom: -20%;
  opacity: 1;
  display: flex;
  width: 60vw;
  min-width: 400px;
}
.blob-tacksida-1 {
  position: absolute;
  left: -15%;
  top: -20%;
  display: flex;
  width: 50vw;
  min-width: 400px;
  transform: rotate(125deg);
}
@media (max-width: 640px) {
  .blob-tacksida-1 {
    left: -20%;
    top: -15%;
    display: flex;
    width: 50vw;
    min-width: 300px;
  }
}
.timeline-car {
  display: flex;
  position: sticky;
  top: 3rem;
  left: 0;
}
.steps-number {
  min-width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #233448;
  border-radius: 100%;
  color: #ffffff;
  font-size: 1.75rem;
  font-family: "Montserrat Alternates", sans-serif;
  margin-top: 2rem;
  margin-right: 1.5rem;
}
@media (max-width: 640px) {
  .steps-number {
    min-width: 3rem;
    height: 3rem;
    margin-right: 1rem;
  }
}
.gym-nw-wrapper {
  min-height: 33vh;
  background: linear-gradient(317deg, rgba(0, 0, 0, 0.7385547969) 0%, rgba(0, 0, 0, 0.464044993) 28%, rgba(0, 0, 0, 0) 69%);
}
.gym-sub-heading {
  padding: 0.3rem 0.6rem;
  background: #54b747;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
}
.gym-nw-logo img {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #ffffff;
}
.gym-nw-logo img {
  width: 10rem;
}
.author-color-black .es-review-author-name {
  color: #1e2c3d !important;
}
.klarna-delbetalning-pris {
  color: #1e2c3d;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.klarna-delbetalning-pris span {
  margin-left: 4px;
  margin-right: 4px;
}
.klarna-delbetalning-pris img {
  width: 3.5rem;
}
.boende-tag {
  position: absolute;
  top: 0;
  right: 2.5rem;
  z-index: 1;
  background: #57acb7;
  color: #ffffff;
  padding: 1rem;
  display: flex;
  column-gap: 0.75rem;
  font-size: 0.9rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.boende-tag img {
  width: 1.1rem;
}
.boende-tag-small {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  column-gap: 0.5rem;
  position: absolute;
  background: #57acb7;
  color: #ffffff;
  left: 2rem;
  bottom: 1rem;
  font-size: 0.8rem;
}
.boende-tag-small img {
  width: 0.8rem;
}
.information-tag {
  position: absolute;
  top: 0;
  right: 1.5rem;
  z-index: 1;
  color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  display: flex;
  column-gap: 0.5rem;
  font-size: 0.9rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.information-tag img {
  width: 1rem;
  opacity: 0.5;
}
.text-wrap-balance {
  text-wrap: balance;
}
.product-item {
  transition-duration: 0.5s;
}
.product-item:hover {
  transform: translateY(-5px);
}
.category-title {
  position: relative;
  display: flex;
  align-items: center;
}
.category-title::after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0.2);
  margin-left: 2.5rem;
}
.category-button .button {
  border-radius: 1000px;
  font-weight: 700;
}
.product-item .price ins {
  font-weight: 700;
  font-size: 1.5rem;
}
.global-fixed-cta {
  position: fixed;
  left: 2rem;
  bottom: 0;
  transform: translateY(10px);
  padding: 1rem;
  background: #233448;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  opacity: 0;
  transition-duration: 0.5s;
  z-index: 5;
}
.scrolled .global-fixed-cta {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 640px) {
  .global-fixed-cta {
    left: 0.75rem;
    right: 0.75rem;
  }
}
.width-18ch {
  width: 18ch;
}
.boende-hero-bild {
  position: absolute;
  right: 0;
  top: -5rem;
  width: 13rem;
  z-index: -2;
}
.blob-boende {
  position: absolute;
  right: -30%;
  top: 10%;
  opacity: 1;
  display: flex;
  width: 60vw;
  min-width: 400px;
  z-index: -1;
}
.accordion {
  width: 100%;
}
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.accordion-title {
  padding: 2rem 3rem 2rem 0rem;
  margin: 0;
  position: relative;
  background: transparent;
  color: #233448;
  cursor: pointer;
  transition-duration: 0.5s;
}
.accordion-title::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: 400;
  font-size: 2rem;
}
.accordion-title.active::after {
  content: "−";
}
.accordion-content {
  background: #f0f2f5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.accordion-inner-content {
  padding-bottom: 2rem;
}
.product-accordion .accordion-item {
  background: #ffffff;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  border-bottom: none;
}
.product-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.product-accordion .accordion-content {
  background: #ffffff;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: -10;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  transition: opacity 0.5s ease-out, z-index 0s 0.5s ease-out;
}
.modal-open {
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #233448;
}
.modal-box {
  position: relative;
  width: 100%;
  overflow-y: hidden;
  z-index: 9999999999;
  transform: translateY(-1rem);
  transition-duration: 0.5s;
  margin: calc(4rem + 5vw);
  opacity: 0;
}
@media (max-width: 960px) {
  .modal-box {
    margin: 2.2rem;
  }
}
.modal-open .modal-box {
  transform: translateY(0);
  opacity: 1;
}
.modal-content {
  margin-top: 1rem;
}
.modal-play-button {
  background: #233448;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  transition-duration: 0.5s;
  position: absolute;
  bottom: -2rem;
  transform: scale(1);
  width: 8rem;
  height: 8rem;
  animation: pulse 2s infinite;
}
.modal-play-button.left {
  left: -2rem;
}
.modal-play-button.right {
  right: -2rem;
}
@media (max-width: 960px) {
  .modal-play-button {
    width: 6rem;
    height: 6rem;
  }
  .modal-play-button.left {
    left: -1rem;
  }
  .modal-play-button.right {
    right: -1rem;
  }
}
@media (max-width: 640px) {
  .modal-play-button {
    width: 6rem;
    height: 6rem;
  }
  .modal-play-button.left {
    left: -1rem;
  }
  .modal-play-button.right {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}
.modal-play-button svg {
  width: 30%;
  margin-left: 5%;
}
@keyframes pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 #233448;
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 0.8rem rgba(87, 172, 183, 0);
  }
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(87, 172, 183, 0);
  }
}
.close-icon {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 0.8;
  padding: 1rem;
  transition-duration: 0.5s;
}
@media (max-width: 960px) {
  .close-icon {
    right: 1rem;
    top: 1rem;
  }
}
.close-icon:hover {
  color: rgba(255, 255, 255, 0.5);
}
.popup-modal .modal-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.popup-modal .modal-box {
  padding: 0;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1000px;
  min-height: 50vh;
  margin: auto;
}
.popup-modal .modal-content {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.splide__arrows {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: -5rem;
  right: 0;
  z-index: 1;
  gap: 0.5rem;
  pointer-events: none;
}
.splide__arrow {
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: 1px solid #1e2c3d;
  position: relative;
  cursor: pointer;
  transition-duration: 0.5s;
  pointer-events: auto;
}
.splide__arrow:hover {
  background: #233448;
}
.splide__arrow:after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #57acb7;
  border-left: 2px solid #57acb7;
  position: absolute;
  top: 50%;
  left: 50%;
}
.splide__arrow--prev {
  border-top-left-radius: 0.5rem;
}
.splide__arrow--next {
  border-bottom-right-radius: 0.5rem;
}
.splide__arrow--prev:after {
  transform: translate(-25%, -50%) rotate(-45deg);
}
.splide__arrow--next:after {
  transform: translate(-75%, -50%) rotate(135deg);
}
.splide__pagination {
  position: absolute;
  bottom: 0.75rem;
  width: 100%;
  padding: 0;
}
.splide__pagination li {
  display: flex;
  margin: 3px !important;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media (max-width: 640px) {
  .splide {
    margin-top: 20rem;
  }
  .splide__arrow {
    background: #233448;
  }
}
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="search"], input[type="url"], textarea {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #e0e4eb;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1e2c3d;
  padding: 0 1.2rem;
  flex-grow: 1;
  transition-duration: 0.5s;
  transition-property: color, border-color, background, background-color;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="search"], input[type="url"] {
  height: 3.5rem;
  line-height: 1.2;
}
textarea {
  padding: 0.8rem 1.2rem;
  line-height: 1.6;
  min-height: 80px;
  resize: vertical;
}
input[type="text"]:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="tel"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="url"]:hover, textarea:hover {
  background: #ffffff;
  border-color: #576270;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="url"]:focus, textarea:focus {
  background: #ffffff;
  border-color: #57acb7;
}
::placeholder {
  color: #576270;
}
input[type="checkbox"], input[type="radio"] {
  flex-shrink: 0;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #e0e4eb;
  margin: 0 10px 0 0;
  transition-duration: 0.5s;
  transition-property: border-color, background, background-color;
}
input[type="checkbox"]:hover, input[type="radio"]:hover {
  background: #ffffff;
  border-color: #576270;
}
input[type="checkbox"]:after, input[type="radio"]:after {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  opacity: 0;
  transition-duration: 0.5s;
  background: #57acb7;
}
input[type="checkbox"]:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 26 26"><polyline points="6,13 11,18 20,8" style="fill:none;stroke:white;stroke-width:2" /></svg>');
}
input[type="radio"]:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 26 26"><circle cx="13" cy="13" r="6" style="fill:white;" /></svg>');
}
input[type="checkbox"]:checked:after, input[type="radio"]:checked:after {
  opacity: 1;
}
input[type="checkbox"], input[type="checkbox"]:after, input[type="checkbox"]:checked:after {
  border-radius: 0.25rem;
}
input[type="radio"], input[type="radio"]:after, input[type="radio"]:checked:after {
  border-radius: 100%;
}
select {
  height: 3.5rem;
  line-height: 1.2;
  padding: 0 1.2rem;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #e0e4eb;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #1e2c3d;
  background-image: linear-gradient(45deg, transparent 50%, grey 50%), linear-gradient(135deg, grey 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(22px), calc(100% - 15px) calc(22px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  transition-duration: 0.5s;
  transition-property: color, border-color, background-color;
  outline: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}
select:hover {
  border-color: #576270;
}
.product-template-default .variations {
  margin-bottom: 3rem;
}
.product-template-default .variations label {
  margin-right: 1rem;
}
.inverted input[type="text"], .inverted input[type="email"], .inverted input[type="number"], .inverted input[type="tel"], .inverted input[type="password"], .inverted input[type="search"], .inverted input[type="url"], .inverted textarea {
  background: transparent;
  color: #ffffff;
  border-color: #e0e4eb;
}
.inverted input[type="text"]:hover, .inverted input[type="email"]:hover, .inverted input[type="number"]:hover, .inverted input[type="tel"]:hover, .inverted input[type="password"]:hover, .inverted input[type="search"]:hover, .inverted input[type="url"]:hover, .inverted textarea:hover {
  background: transparent;
  border-color: #e0e4eb;
}
.inverted input[type="text"]:focus, .inverted input[type="email"]:focus, .inverted input[type="number"]:focus, .inverted input[type="tel"]:focus, .inverted input[type="password"]:focus, .inverted input[type="search"]:focus, .inverted input[type="url"]:focus, .inverted textarea:focus {
  background: transparent;
  border-color: #e0e4eb;
}
.inverted input::placeholder, .inverted textarea::placeholder {
  color: #576270;
}
.inverted input[type="checkbox"], .inverted input[type="radio"] {
  background: transparent;
  border-color: #e0e4eb;
}
.inverted input[type="checkbox"]:hover, .inverted input[type="radio"]:hover {
  border-color: #e0e4eb;
}
.inverted input[type="checkbox"]:checked:after, .inverted input[type="radio"]:checked:after {
  background: #ffffff;
}
.inverted select {
  background-color: transparent;
  border-color: #e0e4eb;
  color: #ffffff;
}
.inverted select:hover {
  border-color: #e0e4eb;
}
.fluentform .ff-el-form-hide_label .ff-el-input--label {
  display: none;
}
.fluentform .ff-el-form-check {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.fluentform .ff-el-form-check:last-child {
  margin-bottom: 0;
}
.fluentform .ff-el-form-check-label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.fluentform .ff-el-form-check.ff-el-tc label.ff_tc_label {
  display: flex;
}
.fluentform .ff-el-form-check.ff-el-tc label.ff_tc_label > span {
  width: auto;
}
.wp-block-table .has-fixed-layout {
  table-layout: fixed;
}
figure.wp-block-table thead > tr, figure.wp-block-table tfoot > tr {
  background: #1e2c3d;
  color: #ffffff;
  text-align: left;
}
.wp-block-buttons:not(:last-child) {
  margin-bottom: 1rem;
}
.wp-block-button__width-25 {
  width: 25%;
}
.wp-block-button__width-50 {
  width: 50%;
}
.wp-block-button__width-75 {
  width: 75%;
}
.wp-block-button__width-100 {
  width: 100%;
}
.wp-block-button__link {
  width: 100%;
}
.wp-block-file {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.wp-block-file:last-child {
  margin-bottom: 0;
}
.wp-block-file a:first-child {
  color: #1e2c3d;
  margin-right: 1rem;
}
.wp-block-file a:first-child:hover {
  color: #89bcc2;
}
.wp-block-columns {
  display: flex;
  column-gap: 1.5rem;
  row-gap: 1rem;
  margin-bottom: 1rem;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}
.wp-block-column {
  flex-grow: 1;
}
@media (max-width: 640px) {
  .wp-block-columns {
    flex-direction: column;
  }
}
.background-image-absolute {
  position: relative;
}
.background-image-absolute > img:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-absolute {
  position: relative;
}
.image-absolute > img:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ratio-1-1 {
  padding-bottom: 100%;
}
.ratio-4-3 {
  padding-bottom: 75%;
}
.ratio-3-2 {
  padding-bottom: 66.66%;
}
.ratio-16-9 {
  padding-bottom: 56.25%;
}
.ratio-2-1 {
  padding-bottom: 50%;
}
.ratio-3-1 {
  padding-bottom: 33.33%;
}
.ratio-4-1 {
  padding-bottom: 25%;
}
.ratio-1-2 {
  padding-bottom: 200%;
}
.ratio-2-3 {
  padding-bottom: 150%;
}
.ratio-3-4 {
  padding-bottom: 133.335%;
}
.ratio-4-5 {
  padding-bottom: 125%;
}
@media (max-width: 960px) {
  .md-ratio-3-2 {
    padding-bottom: 66.66%;
  }
}
@media (max-width: 640px) {
  .sm-ratio-1-1 {
    padding-bottom: 100%;
  }
  .sm-ratio-4-3 {
    padding-bottom: 75%;
  }
  .sm-ratio-3-2 {
    padding-bottom: 66.66%;
  }
}
.object-fit-cover > img:first-of-type {
  object-fit: cover;
}
.object-fit-contain > img:first-of-type {
  object-fit: contain;
}
.object-position-0-0 > img:first-of-type {
  object-position: 0% 0%;
}
.object-position-0-25 > img:first-of-type {
  object-position: 0% 25%;
}
.object-position-0-50 > img:first-of-type {
  object-position: 0% 50%;
}
.object-position-0-75 > img:first-of-type {
  object-position: 0% 75%;
}
.object-position-0-100 > img:first-of-type {
  object-position: 0% 100%;
}
.object-position-25-0 > img:first-of-type {
  object-position: 25% 0%;
}
.object-position-25-25 > img:first-of-type {
  object-position: 25% 25%;
}
.object-position-25-50 > img:first-of-type {
  object-position: 25% 50%;
}
.object-position-25-75 > img:first-of-type {
  object-position: 25% 75%;
}
.object-position-25-100 > img:first-of-type {
  object-position: 25% 100%;
}
.object-position-50-0 > img:first-of-type {
  object-position: 50% 0%;
}
.object-position-50-25 > img:first-of-type {
  object-position: 50% 25%;
}
.object-position-50-50 > img:first-of-type {
  object-position: 50% 50%;
}
.object-position-50-75 > img:first-of-type {
  object-position: 50% 75%;
}
.object-position-50-100 > img:first-of-type {
  object-position: 50% 100%;
}
.object-position-75-0 > img:first-of-type {
  object-position: 75% 0%;
}
.object-position-75-25 > img:first-of-type {
  object-position: 75% 25%;
}
.object-position-75-50 > img:first-of-type {
  object-position: 75% 50%;
}
.object-position-75-75 > img:first-of-type {
  object-position: 75% 75%;
}
.object-position-75-100 > img:first-of-type {
  object-position: 75% 100%;
}
.object-position-100-0 > img:first-of-type {
  object-position: 100% 0%;
}
.object-position-100-25 > img:first-of-type {
  object-position: 100% 25%;
}
.object-position-100-50 > img:first-of-type {
  object-position: 100% 50%;
}
.object-position-100-75 > img:first-of-type {
  object-position: 100% 75%;
}
.object-position-100-100 > img:first-of-type {
  object-position: 100% 100%;
}
.light-link a, a.light-link {
  color: rgba(255, 255, 255, 0.75);
}
.light-link a:hover, a.light-link:hover {
  color: #ffffff;
}
.dark-link a, a.dark-link {
  color: #1e2c3d;
}
.dark-link a:hover, a.dark-link:hover {
  color: #89bcc2;
}
.underlined-link a, a.underlined-link {
  border-bottom: 1px solid #e0e4eb;
  padding-bottom: 2px;
}
.underlined-link a:hover, a.underlined-link:hover {
  border-bottom: 1px solid #89bcc2;
}
.light-link.underlined-link a, a.light-link.underlined-link {
  border-bottom: 1px solid #576270;
  padding-bottom: 2px;
}
.light-link.underlined-link a:hover, a.light-link.underlined-link:hover {
  border-bottom: 1px solid #ffffff !important;
}
.list-check-mark, .list-check-mark ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-check-mark li, .list-check-mark ul li {
  padding-left: 1.2em;
  position: relative;
}
.list-check-mark li:before, .list-check-mark ul li:before {
  content: "";
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #1e2c3d;
  width: 0.8em;
  height: 0.4em;
  transform: rotate(135deg);
  position: absolute;
  left: 0;
  top: 0.4em;
}
.list-chevron, .list-chevron ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-chevron li, .list-chevron ul li {
  padding-left: 1em;
  position: relative;
}
.list-chevron li:before, .list-chevron ul li:before {
  content: "";
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #1e2c3d;
  width: 0.5em;
  height: 0.5em;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 0.5em;
}
.list-chevron.inverted li:before, .list-chevron.inverted ul li:before {
  border-color: #ffffff;
}
.list-numbered, .list-numbered ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.list-numbered li, .list-numbered ol li {
  padding-left: 3rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.list-numbered li:before, .list-numbered ol li:before {
  counter-increment: item;
  content: counter(item) "";
  width: 1.85rem;
  height: 1.85rem;
  background: #233448;
  color: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.list-numbered-raise.list-numbered li:before, .list-numbered-raise.list-numbered ol li:before {
  top: -0.25rem;
}
.list-numbered-lower.list-numbered li:before, .list-numbered-lower.list-numbered ol li:before {
  top: 0.25rem;
}
.horizontal-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.vertical-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.vertical-list li {
  padding: 0;
  list-style-type: none;
}
.stretch-li-content li {
  align-items: stretch;
}
.horizontal-list a, .vertical-list a {
  display: flex;
}
.list-spacing-5 li {
  margin-bottom: 1.5rem;
}
.list-spacing-4 li {
  margin-bottom: 1rem;
}
.list-spacing-3 li {
  margin-bottom: 0.75rem;
}
.list-spacing-2 li {
  margin-bottom: 0.5rem;
}
.list-spacing-1 li {
  margin-bottom: 0.25rem;
}
.list-spacing-last-child-0 li:last-child {
  margin-bottom: 0;
}
.page-width-wide {
  max-width: 1640px;
}
.page-width-default {
  max-width: 1280px;
}
.page-width-narrow {
  max-width: 800px;
}
.pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
a.page-numbers, span.page-numbers {
  padding: 0.6rem 1rem;
  background: #f0f2f5;
  color: #1e2c3d;
  margin-top: 5px;
  margin-right: 5px;
  border-radius: 0.5rem;
  display: block;
}
span.page-numbers.current {
  background: #57acb7;
  color: #ffffff;
}
a.page-numbers:hover {
  background: #89bcc2;
  color: #ffffff;
}
.section-wrapper {
  width: 100%;
  padding: calc(min(6vw, 100px) + 20px) 6vw;
}
.section-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 640px) {
  .section-wrapper {
    padding: 40px 20px;
  }
}
@media (max-width: 320px) {
  .section-wrapper {
    padding: 30px 15px;
  }
}
table {
  border-collapse: collapse;
  width: 100%;
}
table tr {
  transition-duration: 0.5s;
}
table td {
  padding-right: 2.5rem;
}
.table-divider tr {
  border-bottom: 1px solid #e0e4eb;
}
.tabel-cell-border td, .tabel-cell-border th, .is-style-regular td, .is-style-regular th {
  border: 1px solid #e0e4eb;
}
.table-striped tr:nth-child(even), .is-style-stripes tr:nth-child(even) {
  background: #f0f2f5;
}
.table-hover tr:hover {
  background: #e0e4eb;
}
.huge, h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  color: #1e2c3d;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 0.5em;
  overflow-wrap: anywhere;
  /* Manual word break with hyphens by adding &shy; in the word */
  hyphens: manual;
}
.inverted .huge, .inverted h1, .inverted h2, .inverted h3, .inverted h4, .inverted h5, .inverted h6 {
  color: #f0f2f5;
}
@media (max-width: 640px) {
  .huge, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1em;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.huge:first-child, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
.wp-block-column h2, .wp-block-column h3, .wp-block-column h4, .wp-block-column h5, .wp-block-column h6 {
  margin-top: 1rem;
}
.huge:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, blockquote:last-child {
  margin-bottom: 0;
}
b, strong {
  font-weight: 700;
}
i, em {
  font-style: italic;
}
blockquote {
  border-left: 3px solid #576270;
  color: #1e2c3d;
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
}
figcaption {
  font-size: 0.9rem;
  color: #576270;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
/* Links */
a {
  color: #57acb7;
  transition-duration: 0.5s;
  text-decoration: none;
  overflow-wrap: anywhere;
}
a:hover {
  color: #89bcc2;
}
h1 a, h2 a, h3 a, h4 a {
  color: #1e2c3d;
}
@keyframes fade-in-video {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.background-video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.background-video-embed iframe {
  width: 177.77vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: fade-in-video;
  animation-duration: 2s;
}
.video-height-3 {
  height: 75vh;
}
.video-height-3 iframe {
  min-height: 75vh;
}
.video-height-2 {
  height: 55vh;
}
.video-height-2 iframe {
  min-height: 55vh;
}
.video-height-1 {
  height: 30vh;
}
.video-height-1 iframe {
  min-height: 30vh;
}
.responsive-video-embed, .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
.responsive-video-embed iframe, .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.square-video iframe {
  transform: scale(1.77778);
}
.background-black {
  background: #1e2c3d;
}
.background-black-alpha-3 {
  background: rgba(0, 0, 0, 0.75);
}
.background-black-alpha-2 {
  background: rgba(0, 0, 0, 0.5);
}
.background-black-alpha-1 {
  background: rgba(0, 0, 0, 0.05);
}
.background-dark {
  background: #576270;
}
.background-light {
  background: #e0e4eb;
}
.background-pale {
  background: #f0f2f5;
}
.background-white {
  background: #ffffff;
}
.background-white-alpha-3 {
  background: rgba(255, 255, 255, 0.75);
}
.background-white-alpha-2 {
  background: rgba(255, 255, 255, 0.5);
}
.background-white-alpha-1 {
  background: rgba(255, 255, 255, 0.05);
}
.background-primary {
  background: #57acb7;
}
.background-secondary {
  background: #233448;
}
.background-tertiary {
  background: #89bcc2;
}
.background-success {
  background: #00b757;
}
.background-warning {
  background: orange;
}
.background-error {
  background: red;
}
.background-hover:hover {
  background: #89bcc2;
}
.background-hover-black:hover {
  background: #1e2c3d;
}
.background-hover-black-alpha-3:hover {
  background: rgba(0, 0, 0, 0.75);
}
.background-hover-black-alpha-2:hover {
  background: rgba(0, 0, 0, 0.5);
}
.background-hover-black-alpha-1:hover {
  background: rgba(0, 0, 0, 0.05);
}
.background-hover-dark:hover {
  background: #576270;
}
.background-hover-light:hover {
  background: #e0e4eb;
}
.background-hover-pale:hover {
  background: #f0f2f5;
}
.background-hover-white:hover {
  background: #ffffff;
}
.background-hover-white-alpha-3:hover {
  background: rgba(255, 255, 255, 0.75);
}
.background-hover-white-alpha-2:hover {
  background: rgba(255, 255, 255, 0.5);
}
.background-hover-white-alpha-1:hover {
  background: rgba(255, 255, 255, 0.05);
}
.background-hover-primary:hover {
  background: #57acb7;
}
.background-hover-secondary:hover {
  background: #233448;
}
.background-hover-tertiary:hover {
  background: #89bcc2;
}
.background-hover-success:hover {
  background: #00b757;
}
.background-hover-warning:hover {
  background: orange;
}
.background-hover-error:hover {
  background: red;
}
.border-radius {
  border-radius: 0.5rem;
}
.border-radius-100pr {
  border-radius: 100%;
}
.border-radius-pill {
  border-radius: 100000px;
}
.border-top-left-radius-large {
  border-top-left-radius: 15rem;
}
.entrance-shape {
  border-top-left-radius: 20rem;
  border-top-right-radius: 20rem;
}
.entrance-shape-reversed {
  border-bottom-left-radius: 20rem;
  border-bottom-right-radius: 20rem;
}
.entrance-shape-left {
  border-top-left-radius: 20rem;
  border-bottom-left-radius: 20rem;
}
.entrance-shape-right {
  border-top-right-radius: 20rem;
  border-bottom-right-radius: 20rem;
}
.a-border-bottom-left-radius {
  border-bottom-left-radius: 0.5rem;
}
.a-border-bottom-left-radius-0 {
  border-bottom-left-radius: 0;
}
.box-shadow-large {
  box-shadow: 0px 0px 3rem 0px rgba(0, 0, 0, 0.15);
}
.box-shadow-medium {
  box-shadow: 0px 24px 43px -10px rgba(0, 0, 0, 0.1);
}
.box-shadow-small {
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.15);
}
.color-black {
  color: #1e2c3d;
}
.color-black-alpha-3 {
  color: rgba(0, 0, 0, 0.75);
}
.color-black-alpha-2 {
  color: rgba(0, 0, 0, 0.5);
}
.color-black-alpha-1 {
  color: rgba(0, 0, 0, 0.05);
}
.color-dark {
  color: #576270;
}
.color-light {
  color: #e0e4eb;
}
.color-pale {
  color: #f0f2f5;
}
.color-white {
  color: #ffffff;
}
.color-white-alpha-3 {
  color: rgba(255, 255, 255, 0.75);
}
.color-white-alpha-2 {
  color: rgba(255, 255, 255, 0.5);
}
.color-white-alpha-1 {
  color: rgba(255, 255, 255, 0.05);
}
.color-primary {
  color: #57acb7;
}
.color-secondary {
  color: #233448;
}
.color-tertiary {
  color: #89bcc2;
}
.color-success {
  color: #00b757;
}
.color-warning {
  color: orange;
}
.color-error {
  color: red;
}
.color-link {
  color: #57acb7;
}
.color-hover:hover {
  color: #89bcc2;
}
.color-hover-black:hover {
  color: #1e2c3d;
}
.color-hover-black-alpha-3:hover {
  color: rgba(0, 0, 0, 0.75);
}
.color-hover-black-alpha-2:hover {
  color: rgba(0, 0, 0, 0.5);
}
.color-hover-black-alpha-1:hover {
  color: rgba(0, 0, 0, 0.05);
}
.color-hover-dark:hover {
  color: #576270;
}
.color-hover-light:hover {
  color: #e0e4eb;
}
.color-hover-pale:hover {
  color: #f0f2f5;
}
.color-hover-white:hover {
  color: #ffffff;
}
.color-hover-white-alpha-3:hover {
  color: rgba(255, 255, 255, 0.75);
}
.color-hover-white-alpha-2:hover {
  color: rgba(255, 255, 255, 0.5);
}
.color-hover-white-alpha-1:hover {
  color: rgba(255, 255, 255, 0.05);
}
.color-hover-primary:hover {
  color: #57acb7;
}
.color-hover-secondary:hover {
  color: #233448;
}
.color-hover-tertiary:hover {
  color: #89bcc2;
}
.color-hover-success:hover {
  color: #00b757;
}
.color-hover-warning:hover {
  color: orange;
}
.color-hover-error:hover {
  color: red;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.none {
  display: none;
}
@media (max-width: 1280px) {
  .lg-flex {
    display: flex;
  }
  .lg-grid {
    display: grid;
  }
  .lg-none {
    display: none;
  }
}
@media (max-width: 960px) {
  .md-flex {
    display: flex;
  }
  .md-grid {
    display: grid;
  }
  .md-none {
    display: none;
  }
}
@media (max-width: 640px) {
  .sm-flex {
    display: flex;
  }
  .sm-grid {
    display: grid;
  }
  .sm-none {
    display: none;
  }
}
.fill-black path {
  fill: #1e2c3d;
}
.fill-black-alpha-3 path {
  fill: rgba(0, 0, 0, 0.75);
}
.fill-black-alpha-2 path {
  fill: rgba(0, 0, 0, 0.5);
}
.fill-black-alpha-1 path {
  fill: rgba(0, 0, 0, 0.05);
}
.fill-dark path {
  fill: #576270;
}
.fill-light path {
  fill: #e0e4eb !important;
}
.fill-pale path {
  fill: #f0f2f5 !important;
}
.fill-white path {
  fill: #ffffff;
}
.fill-white-alpha-3 path {
  fill: rgba(255, 255, 255, 0.75);
}
.fill-white-alpha-2 path {
  fill: rgba(255, 255, 255, 0.5);
}
.fill-white-alpha-1 path {
  fill: rgba(255, 255, 255, 0.05);
}
.fill-primary path {
  fill: #57acb7 !important;
}
.fill-secondary path {
  fill: #233448 !important;
}
.fill-tertiary path {
  fill: #89bcc2;
}
.fill-success path {
  fill: #00b757;
}
.fill-warning path {
  fill: orange;
}
.fill-error path {
  fill: red;
}
.fill-hover:hover path {
  fill: #89bcc2;
}
.fill-hover-black:hover path {
  fill: #1e2c3d;
}
.fill-hover-black-alpha-3:hover path {
  fill: rgba(0, 0, 0, 0.75);
}
.fill-hover-black-alpha-2:hover path {
  fill: rgba(0, 0, 0, 0.5);
}
.fill-hover-black-alpha-1:hover path {
  fill: rgba(0, 0, 0, 0.05);
}
.fill-hover-dark:hover path {
  fill: #576270;
}
.fill-hover-light:hover path {
  fill: #e0e4eb;
}
.fill-hover-pale:hover path {
  fill: #f0f2f5;
}
.fill-hover-white:hover path {
  fill: #ffffff;
}
.fill-hover-white-alpha-3:hover path {
  fill: rgba(255, 255, 255, 0.75);
}
.fill-hover-white-alpha-2:hover path {
  fill: rgba(255, 255, 255, 0.5);
}
.fill-hover-white-alpha-1:hover path {
  fill: rgba(255, 255, 255, 0.05);
}
.fill-hover-primary:hover path {
  fill: #57acb7;
}
.fill-hover-secondary:hover path {
  fill: #233448;
}
.fill-hover-tertiary:hover path {
  fill: #89bcc2;
}
.fill-hover-success:hover path {
  fill: #00b757;
}
.fill-hover-warning:hover path {
  fill: orange;
}
.fill-hover-error:hover path {
  fill: red;
}
.brightness-90pr {
  filter: brightness(90%);
}
.brightness-80pr {
  filter: brightness(80%);
}
.brightness-70pr {
  filter: brightness(70%);
}
.brightness-60pr {
  filter: brightness(60%);
}
.brightness-50pr {
  filter: brightness(50%);
}
.brightness-40pr {
  filter: brightness(40%);
}
.brightness-30pr {
  filter: brightness(30%);
}
.direction-row {
  flex-direction: row;
}
.direction-column {
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}
.nowrap {
  flex-wrap: nowrap;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-space-around {
  justify-content: space-around;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-space-evenly {
  justify-content: space-evenly;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-stretch {
  align-items: stretch;
}
@media (max-width: 1280px) {
  .lg-direction-row {
    flex-direction: row;
  }
  .lg-direction-column {
    flex-direction: column;
  }
  .lg-wrap {
    flex-wrap: wrap;
  }
  .lg-nowrap {
    flex-wrap: nowrap;
  }
  .lg-justify-start {
    justify-content: flex-start;
  }
  .lg-justify-center {
    justify-content: center;
  }
  .lg-justify-end {
    justify-content: flex-end;
  }
  .lg-justify-space-around {
    justify-content: space-around;
  }
  .lg-justify-space-between {
    justify-content: space-between;
  }
  .lg-justify-space-evenly {
    justify-content: space-evenly;
  }
  .lg-align-start {
    align-items: flex-start;
  }
  .lg-align-center {
    align-items: center;
  }
  .lg-align-end {
    align-items: flex-end;
  }
  .lg-align-stretch {
    align-items: stretch;
  }
}
@media (max-width: 960px) {
  .md-direction-row {
    flex-direction: row;
  }
  .md-direction-column {
    flex-direction: column;
  }
  .md-wrap {
    flex-wrap: wrap;
  }
  .md-nowrap {
    flex-wrap: nowrap;
  }
  .md-justify-start {
    justify-content: flex-start;
  }
  .md-justify-center {
    justify-content: center;
  }
  .md-justify-end {
    justify-content: flex-end;
  }
  .md-justify-space-around {
    justify-content: space-around;
  }
  .md-justify-space-between {
    justify-content: space-between;
  }
  .md-justify-space-evenly {
    justify-content: space-evenly;
  }
  .md-align-start {
    align-items: flex-start;
  }
  .md-align-center {
    align-items: center;
  }
  .md-align-end {
    align-items: flex-end;
  }
  .md-align-stretch {
    align-items: stretch;
  }
}
@media (max-width: 640px) {
  .sm-direction-row {
    flex-direction: row;
  }
  .sm-direction-column {
    flex-direction: column;
  }
  .sm-wrap {
    flex-wrap: wrap;
  }
  .sm-nowrap {
    flex-wrap: nowrap;
  }
  .sm-justify-start {
    justify-content: flex-start;
  }
  .sm-justify-center {
    justify-content: center;
  }
  .sm-justify-end {
    justify-content: flex-end;
  }
  .sm-justify-space-around {
    justify-content: space-around;
  }
  .sm-justify-space-between {
    justify-content: space-between;
  }
  .sm-justify-space-evenly {
    justify-content: space-evenly;
  }
  .sm-align-start {
    align-items: flex-start;
  }
  .sm-align-center {
    align-items: center;
  }
  .sm-align-end {
    align-items: flex-end;
  }
  .sm-align-stretch {
    align-items: stretch;
  }
}
.grow-5 {
  flex-grow: 5;
}
.grow-4 {
  flex-grow: 4;
}
.grow-3 {
  flex-grow: 3;
}
.grow-2 {
  flex-grow: 2;
}
.grow-1 {
  flex-grow: 1;
}
.grow-0 {
  flex-grow: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.columns-1 {
  grid-template-columns: 1fr;
}
.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.columns-1-2 {
  grid-template-columns: 1fr 2fr;
}
.columns-2-1 {
  grid-template-columns: 2fr 1fr;
}
.columns-1-3 {
  grid-template-columns: 1fr 3fr;
}
.columns-3-1 {
  grid-template-columns: 3fr 1fr;
}
.columns-3-2 {
  grid-template-columns: 3fr 2fr;
}
.columns-2-3 {
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 1280px) {
  .lg-columns-1 {
    grid-template-columns: 1fr;
  }
  .lg-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lg-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .lg-columns-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .lg-columns-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .lg-columns-1-3 {
    grid-template-columns: 1fr 3fr;
  }
  .lg-columns-3-1 {
    grid-template-columns: 3fr 1fr;
  }
  .lg-columns-3-2 {
    grid-template-columns: 3fr 2fr;
  }
  .lg-columns-2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
@media (max-width: 960px) {
  .md-columns-1 {
    grid-template-columns: 1fr;
  }
  .md-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .md-columns-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .md-columns-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .md-columns-1-3 {
    grid-template-columns: 1fr 3fr;
  }
  .md-columns-3-1 {
    grid-template-columns: 3fr 1fr;
  }
  .md-columns-3-2 {
    grid-template-columns: 3fr 2fr;
  }
  .md-columns-2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
@media (max-width: 640px) {
  .sm-columns-1 {
    grid-template-columns: 1fr;
  }
  .sm-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .sm-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .sm-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .sm-columns-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .sm-columns-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .sm-columns-1-3 {
    grid-template-columns: 1fr 3fr;
  }
  .sm-columns-3-1 {
    grid-template-columns: 3fr 1fr;
  }
  .sm-columns-3-2 {
    grid-template-columns: 3fr 2fr;
  }
  .sm-columns-2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
.column-start-1 {
  grid-column-start: 1;
}
.column-start-2 {
  grid-column-start: 2;
}
.column-start-3 {
  grid-column-start: 3;
}
.column-start-4 {
  grid-column-start: 4;
}
.column-start-5 {
  grid-column-start: 5;
}
.column-start-7 {
  grid-column-start: 7;
}
.column-span-1 {
  grid-column-end: span 1;
}
.column-span-2 {
  grid-column-end: span 2;
}
.column-span-3 {
  grid-column-end: span 3;
}
.column-span-4 {
  grid-column-end: span 4;
}
.column-span-5 {
  grid-column-end: span 5;
}
@media (max-width: 1280px) {
  .lg-column-start-1 {
    grid-column-start: 1;
  }
  .lg-column-start-2 {
    grid-column-start: 2;
  }
  .lg-column-start-3 {
    grid-column-start: 3;
  }
  .lg-column-start-4 {
    grid-column-start: 4;
  }
  .lg-column-start-5 {
    grid-column-start: 5;
  }
  .lg-column-span-1 {
    grid-column-end: span 1;
  }
  .lg-column-span-2 {
    grid-column-end: span 2;
  }
  .lg-column-span-3 {
    grid-column-end: span 3;
  }
  .lg-column-span-4 {
    grid-column-end: span 4;
  }
  .lg-column-span-5 {
    grid-column-end: span 5;
  }
}
@media (max-width: 960px) {
  .md-column-start-1 {
    grid-column-start: 1;
  }
  .md-column-start-2 {
    grid-column-start: 2;
  }
  .md-column-start-3 {
    grid-column-start: 3;
  }
  .md-column-start-4 {
    grid-column-start: 4;
  }
  .md-column-start-5 {
    grid-column-start: 5;
  }
  .md-column-span-1 {
    grid-column-end: span 1;
  }
  .md-column-span-2 {
    grid-column-end: span 2;
  }
  .md-column-span-3 {
    grid-column-end: span 3;
  }
  .md-column-span-4 {
    grid-column-end: span 4;
  }
  .md-column-span-5 {
    grid-column-end: span 5;
  }
  .md-column-span-6 {
    grid-column-end: span 6;
  }
}
@media (max-width: 640px) {
  .sm-column-start-1 {
    grid-column-start: 1;
  }
  .sm-column-start-2 {
    grid-column-start: 2;
  }
  .sm-column-start-3 {
    grid-column-start: 3;
  }
  .sm-column-start-4 {
    grid-column-start: 4;
  }
  .sm-column-start-5 {
    grid-column-start: 5;
  }
  .sm-column-span-1 {
    grid-column-end: span 1;
  }
  .sm-column-span-2 {
    grid-column-end: span 2;
  }
  .sm-column-span-3 {
    grid-column-end: span 3;
  }
  .sm-column-span-4 {
    grid-column-end: span 4;
  }
  .sm-column-span-5 {
    grid-column-end: span 5;
  }
}
.rows-1 {
  grid-template-rows: 1fr;
}
.rows-2 {
  grid-template-rows: repeat(2, 1fr);
}
.rows-3 {
  grid-template-rows: repeat(3, 1fr);
}
.rows-4 {
  grid-template-rows: repeat(4, 1fr);
}
.rows-5 {
  grid-template-rows: repeat(5, 1fr);
}
.rows-7 {
  grid-template-rows: repeat(7, 1fr);
}
@media (max-width: 1280px) {
  .lg-rows-1 {
    grid-template-rows: 1fr;
  }
  .lg-rows-2 {
    grid-template-rows: repeat(2, 1fr);
  }
  .lg-rows-3 {
    grid-template-rows: repeat(3, 1fr);
  }
  .lg-rows-4 {
    grid-template-rows: repeat(4, 1fr);
  }
  .lg-rows-5 {
    grid-template-rows: repeat(5, 1fr);
  }
}
@media (max-width: 960px) {
  .md-rows-1 {
    grid-template-rows: 1fr;
  }
  .md-rows-2 {
    grid-template-rows: repeat(2, 1fr);
  }
  .md-rows-3 {
    grid-template-rows: repeat(3, 1fr);
  }
  .md-rows-4 {
    grid-template-rows: repeat(4, 1fr);
  }
  .md-rows-5 {
    grid-template-rows: repeat(5, 1fr);
  }
}
@media (max-width: 640px) {
  .sm-rows-1 {
    grid-template-rows: 1fr;
  }
  .sm-rows-2 {
    grid-template-rows: repeat(2, 1fr);
  }
  .sm-rows-3 {
    grid-template-rows: repeat(3, 1fr);
  }
  .sm-rows-4 {
    grid-template-rows: repeat(4, 1fr);
  }
  .sm-rows-5 {
    grid-template-rows: repeat(5, 1fr);
  }
}
.row-start-1 {
  grid-row-start: 1;
}
.row-start-2 {
  grid-row-start: 2;
}
.row-start-3 {
  grid-row-start: 3;
}
.row-start-4 {
  grid-row-start: 4;
}
.row-start-5 {
  grid-row-start: 5;
}
.row-start-7 {
  grid-row-start: 7;
}
.row-span-1 {
  grid-row-end: span 1;
}
.row-span-2 {
  grid-row-end: span 2;
}
.row-span-3 {
  grid-row-end: span 3;
}
.row-span-4 {
  grid-row-end: span 4;
}
.row-span-5 {
  grid-row-end: span 5;
}
.row-span-6 {
  grid-row-end: span 6;
}
.row-span-7 {
  grid-row-end: span 7;
}
@media (max-width: 1280px) {
  .lg-row-start-1 {
    grid-row-start: 1;
  }
  .lg-row-start-2 {
    grid-row-start: 2;
  }
  .lg-row-start-3 {
    grid-row-start: 3;
  }
  .lg-row-start-4 {
    grid-row-start: 4;
  }
  .lg-row-start-5 {
    grid-row-start: 5;
  }
  .lg-row-span-1 {
    grid-row-end: span 1;
  }
  .lg-row-span-2 {
    grid-row-end: span 2;
  }
  .lg-row-span-3 {
    grid-row-end: span 3;
  }
  .lg-row-span-4 {
    grid-row-end: span 4;
  }
  .lg-row-span-5 {
    grid-row-end: span 5;
  }
}
@media (max-width: 960px) {
  .md-row-start-1 {
    grid-row-start: 1;
  }
  .md-row-start-2 {
    grid-row-start: 2;
  }
  .md-row-start-3 {
    grid-row-start: 3;
  }
  .md-row-start-4 {
    grid-row-start: 4;
  }
  .md-row-start-5 {
    grid-row-start: 5;
  }
  .md-row-start-6 {
    grid-row-start: 6;
  }
  .md-row-start-7 {
    grid-row-start: 7;
  }
  .md-row-span-1 {
    grid-row-end: span 1;
  }
  .md-row-span-2 {
    grid-row-end: span 2;
  }
  .md-row-span-3 {
    grid-row-end: span 3;
  }
  .md-row-span-4 {
    grid-row-end: span 4;
  }
  .md-row-span-5 {
    grid-row-end: span 5;
  }
}
@media (max-width: 640px) {
  .sm-row-start-1 {
    grid-row-start: 1;
  }
  .sm-row-start-2 {
    grid-row-start: 2;
  }
  .sm-row-start-3 {
    grid-row-start: 3;
  }
  .sm-row-start-4 {
    grid-row-start: 4;
  }
  .sm-row-start-5 {
    grid-row-start: 5;
  }
  .sm-row-span-1 {
    grid-row-end: span 1;
  }
  .sm-row-span-2 {
    grid-row-end: span 2;
  }
  .sm-row-span-3 {
    grid-row-end: span 3;
  }
  .sm-row-span-4 {
    grid-row-end: span 4;
  }
  .sm-row-span-5 {
    grid-row-end: span 5;
  }
}
.row-gap-tiny {
  row-gap: 0.5rem;
}
.row-gap-small {
  row-gap: 1.5rem;
}
.row-gap-default {
  row-gap: 2.25rem;
}
.row-gap-large {
  row-gap: 5.5rem;
}
.column-gap-tiny {
  column-gap: 0.5rem;
}
.column-gap-small {
  column-gap: 1.5rem;
}
.column-gap-default {
  column-gap: 2.25rem;
}
.column-gap-large {
  column-gap: 5.5rem;
}
@media (max-width: 1280px) {
  .row-gap-small {
    row-gap: 1.333rem;
  }
  .row-gap-default {
    row-gap: 1.9995rem;
  }
  .row-gap-large {
    row-gap: 4.665rem;
  }
  .column-gap-small {
    column-gap: 1.333rem;
  }
  .column-gap-default {
    column-gap: 1.9995rem;
  }
  .column-gap-large {
    column-gap: 4.665rem;
  }
}
@media (max-width: 960px) {
  .row-gap-small {
    row-gap: 1.167rem;
  }
  .row-gap-default {
    row-gap: 1.7505rem;
  }
  .row-gap-large {
    row-gap: 3.835rem;
  }
  .column-gap-small {
    column-gap: 1.167rem;
  }
  .column-gap-default {
    column-gap: 1.7505rem;
  }
  .column-gap-large {
    column-gap: 3.835rem;
  }
}
@media (max-width: 640px) {
  .row-gap-small {
    row-gap: 1rem;
  }
  .row-gap-default {
    row-gap: 1.5rem;
  }
  .row-gap-large {
    row-gap: 3rem;
  }
  .column-gap-small {
    column-gap: 1rem;
  }
  .column-gap-default {
    column-gap: 1.5rem;
  }
  .column-gap-large {
    column-gap: 3rem;
  }
}
.height-100pr {
  height: 100%;
}
.min-height-100pr {
  min-height: 100%;
}
.margin-5 {
  margin: 3rem;
}
.margin-4 {
  margin: 2rem;
}
.margin-3 {
  margin: 1.5rem;
}
.margin-2 {
  margin: 1rem;
}
.margin-1 {
  margin: 0.5rem;
}
.margin-0 {
  margin: 0;
}
@media (max-width: 1280px) {
  .lg-margin-5 {
    margin: 3rem;
  }
  .lg-margin-4 {
    margin: 2rem;
  }
  .lg-margin-3 {
    margin: 1.5rem;
  }
  .lg-margin-2 {
    margin: 1rem;
  }
  .lg-margin-1 {
    margin: 0.5rem;
  }
  .lg-margin-0 {
    margin: 0;
  }
}
@media (max-width: 960px) {
  .md-margin-5 {
    margin: 3rem;
  }
  .md-margin-4 {
    margin: 2rem;
  }
  .md-margin-3 {
    margin: 1.5rem;
  }
  .md-margin-2 {
    margin: 1rem;
  }
  .md-margin-1 {
    margin: 0.5rem;
  }
  .md-margin-0 {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .sm-margin-5 {
    margin: 3rem;
  }
  .sm-margin-4 {
    margin: 2rem;
  }
  .sm-margin-3 {
    margin: 1.5rem;
  }
  .sm-margin-2 {
    margin: 1rem;
  }
  .sm-margin-1 {
    margin: 0.5rem;
  }
  .sm-margin-0 {
    margin: 0;
  }
}
.margin-top-9 {
  margin-top: 9rem;
}
.margin-top-8 {
  margin-top: 7rem;
}
.margin-top-7 {
  margin-top: 5rem;
}
.margin-top-6 {
  margin-top: 4rem;
}
.margin-top-5 {
  margin-top: 3rem;
}
.margin-top-4 {
  margin-top: 2rem;
}
.margin-top-3 {
  margin-top: 1.5rem;
}
.margin-top-2 {
  margin-top: 1rem;
}
.margin-top-1 {
  margin-top: 0.5rem;
}
.margin-top-0 {
  margin-top: 0;
}
@media (max-width: 1280px) {
  .lg-margin-top-5 {
    margin-top: 3rem;
  }
  .lg-margin-top-4 {
    margin-top: 2rem;
  }
  .lg-margin-top-3 {
    margin-top: 1.5rem;
  }
  .lg-margin-top-2 {
    margin-top: 1rem;
  }
  .lg-margin-top-1 {
    margin-top: 0.5rem;
  }
  .lg-margin-top-0 {
    margin-top: 0;
  }
}
@media (max-width: 960px) {
  .md-margin-top-5 {
    margin-top: 3rem;
  }
  .md-margin-top-4 {
    margin-top: 2rem;
  }
  .md-margin-top-3 {
    margin-top: 1.5rem;
  }
  .md-margin-top-2 {
    margin-top: 1rem;
  }
  .md-margin-top-1 {
    margin-top: 0.5rem;
  }
  .md-margin-top-0 {
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .sm-margin-top-5 {
    margin-top: 3rem;
  }
  .sm-margin-top-4 {
    margin-top: 2rem;
  }
  .sm-margin-top-3 {
    margin-top: 1.5rem;
  }
  .sm-margin-top-2 {
    margin-top: 1rem;
  }
  .sm-margin-top-1 {
    margin-top: 0.5rem;
  }
  .sm-margin-top-0 {
    margin-top: 0;
  }
}
.margin-right-9 {
  margin-right: 9rem;
}
.margin-right-8 {
  margin-right: 7rem;
}
.margin-right-7 {
  margin-right: 5rem;
}
.margin-right-6 {
  margin-right: 4rem;
}
.margin-right-5 {
  margin-right: 3rem;
}
.margin-right-4 {
  margin-right: 2rem;
}
.margin-right-3 {
  margin-right: 1.5rem;
}
.margin-right-2 {
  margin-right: 1rem;
}
.margin-right-1 {
  margin-right: 0.5rem;
}
.margin-right-0 {
  margin-right: 0;
}
@media (max-width: 1280px) {
  .lg-margin-right-5 {
    margin-right: 3rem;
  }
  .lg-margin-right-4 {
    margin-right: 2rem;
  }
  .lg-margin-right-3 {
    margin-right: 1.5rem;
  }
  .lg-margin-right-2 {
    margin-right: 1rem;
  }
  .lg-margin-right-1 {
    margin-right: 0.5rem;
  }
  .lg-margin-right-0 {
    margin-right: 0;
  }
}
@media (max-width: 960px) {
  .md-margin-right-5 {
    margin-right: 3rem;
  }
  .md-margin-right-4 {
    margin-right: 2rem;
  }
  .md-margin-right-3 {
    margin-right: 1.5rem;
  }
  .md-margin-right-2 {
    margin-right: 1rem;
  }
  .md-margin-right-1 {
    margin-right: 0.5rem;
  }
  .md-margin-right-0 {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .sm-margin-right-5 {
    margin-right: 3rem;
  }
  .sm-margin-right-4 {
    margin-right: 2rem;
  }
  .sm-margin-right-3 {
    margin-right: 1.5rem;
  }
  .sm-margin-right-2 {
    margin-right: 1rem;
  }
  .sm-margin-right-1 {
    margin-right: 0.5rem;
  }
  .sm-margin-right-0 {
    margin-right: 0;
  }
}
.margin-bottom-9 {
  margin-bottom: 9rem;
}
.margin-bottom-8 {
  margin-bottom: 7rem;
}
.margin-bottom-7 {
  margin-bottom: 5rem;
}
.margin-bottom-6 {
  margin-bottom: 4rem;
}
.margin-bottom-5 {
  margin-bottom: 3rem;
}
.margin-bottom-4 {
  margin-bottom: 2rem;
}
.margin-bottom-3 {
  margin-bottom: 1.5rem;
}
.margin-bottom-2 {
  margin-bottom: 1rem;
}
.margin-bottom-1 {
  margin-bottom: 0.5rem;
}
.margin-bottom-0 {
  margin-bottom: 0;
}
@media (max-width: 1280px) {
  .lg-margin-bottom-5 {
    margin-bottom: 3rem;
  }
  .lg-margin-bottom-4 {
    margin-bottom: 2rem;
  }
  .lg-margin-bottom-3 {
    margin-bottom: 1.5rem;
  }
  .lg-margin-bottom-2 {
    margin-bottom: 1rem;
  }
  .lg-margin-bottom-1 {
    margin-bottom: 0.5rem;
  }
  .lg-margin-bottom-0 {
    margin-bottom: 0;
  }
}
@media (max-width: 960px) {
  .md-margin-bottom-5 {
    margin-bottom: 3rem;
  }
  .md-margin-bottom-4 {
    margin-bottom: 2rem;
  }
  .md-margin-bottom-3 {
    margin-bottom: 1.5rem;
  }
  .md-margin-bottom-2 {
    margin-bottom: 1rem;
  }
  .md-margin-bottom-1 {
    margin-bottom: 0.5rem;
  }
  .md-margin-bottom-0 {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .sm-margin-bottom-5 {
    margin-bottom: 3rem;
  }
  .sm-margin-bottom-4 {
    margin-bottom: 2rem;
  }
  .sm-margin-bottom-3 {
    margin-bottom: 1.5rem;
  }
  .sm-margin-bottom-2 {
    margin-bottom: 1rem;
  }
  .sm-margin-bottom-1 {
    margin-bottom: 0.5rem;
  }
  .sm-margin-bottom-0 {
    margin-bottom: 0;
  }
}
.margin-left-9 {
  margin-left: 9rem;
}
.margin-left-8 {
  margin-left: 7rem;
}
.margin-left-7 {
  margin-left: 5rem;
}
.margin-left-6 {
  margin-left: 4rem;
}
.margin-left-5 {
  margin-left: 3rem;
}
.margin-left-4 {
  margin-left: 2rem;
}
.margin-left-3 {
  margin-left: 1.5rem;
}
.margin-left-2 {
  margin-left: 1rem;
}
.margin-left-1 {
  margin-left: 0.5rem;
}
.margin-left-0 {
  margin-left: 0;
}
@media (max-width: 1280px) {
  .lg-margin-left-5 {
    margin-left: 3rem;
  }
  .lg-margin-left-4 {
    margin-left: 2rem;
  }
  .lg-margin-left-3 {
    margin-left: 1.5rem;
  }
  .lg-margin-left-2 {
    margin-left: 1rem;
  }
  .lg-margin-left-1 {
    margin-left: 0.5rem;
  }
  .lg-margin-left-0 {
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .md-margin-left-5 {
    margin-left: 3rem;
  }
  .md-margin-left-4 {
    margin-left: 2rem;
  }
  .md-margin-left-3 {
    margin-left: 1.5rem;
  }
  .md-margin-left-2 {
    margin-left: 1rem;
  }
  .md-margin-left-1 {
    margin-left: 0.5rem;
  }
  .md-margin-left-0 {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .sm-margin-left-5 {
    margin-left: 3rem;
  }
  .sm-margin-left-4 {
    margin-left: 2rem;
  }
  .sm-margin-left-3 {
    margin-left: 1.5rem;
  }
  .sm-margin-left-2 {
    margin-left: 1rem;
  }
  .sm-margin-left-1 {
    margin-left: 0.5rem;
  }
  .sm-margin-left-0 {
    margin-left: 0;
  }
}
.margin-top-n9 {
  margin-top: -9rem;
}
.margin-top-n8 {
  margin-top: -7rem;
}
.margin-top-n7 {
  margin-top: -5rem;
}
.margin-top-n6 {
  margin-top: -4rem;
}
.margin-top-n5 {
  margin-top: -3rem;
}
.margin-top-n4 {
  margin-top: -2rem;
}
.margin-top-n3 {
  margin-top: -1.5rem;
}
.margin-top-n2 {
  margin-top: -1rem;
}
.margin-top-n1 {
  margin-top: -0.5rem;
}
@media (max-width: 1280px) {
  .lg-margin-top-n5 {
    margin-top: -3rem;
  }
  .lg-margin-top-n4 {
    margin-top: -2rem;
  }
  .lg-margin-top-n3 {
    margin-top: -1.5rem;
  }
  .lg-margin-top-n2 {
    margin-top: -1rem;
  }
  .lg-margin-top-n1 {
    margin-top: -0.5rem;
  }
}
@media (max-width: 960px) {
  .md-margin-top-n5 {
    margin-top: -3rem;
  }
  .md-margin-top-n4 {
    margin-top: -2rem;
  }
  .md-margin-top-n3 {
    margin-top: -1.5rem;
  }
  .md-margin-top-n2 {
    margin-top: -1rem;
  }
  .md-margin-top-n1 {
    margin-top: -0.5rem;
  }
}
@media (max-width: 640px) {
  .sm-margin-top-n5 {
    margin-top: -3rem;
  }
  .sm-margin-top-n4 {
    margin-top: -2rem;
  }
  .sm-margin-top-n3 {
    margin-top: -1.5rem;
  }
  .sm-margin-top-n2 {
    margin-top: -1rem;
  }
  .sm-margin-top-n1 {
    margin-top: -0.5rem;
  }
}
.margin-bottom-n9 {
  margin-bottom: -9rem;
}
.margin-bottom-n8 {
  margin-bottom: -7rem;
}
.margin-bottom-n7 {
  margin-bottom: -5rem;
}
.margin-bottom-n6 {
  margin-bottom: -4rem;
}
.margin-bottom-n5 {
  margin-bottom: -3rem;
}
.margin-bottom-n4 {
  margin-bottom: -2rem;
}
.margin-bottom-n3 {
  margin-bottom: -1.5rem;
}
.margin-bottom-n2 {
  margin-bottom: -1rem;
}
.margin-bottom-n1 {
  margin-bottom: -0.5rem;
}
@media (max-width: 1280px) {
  .lg-margin-bottom-n5 {
    margin-bottom: -3rem;
  }
  .lg-margin-bottom-n4 {
    margin-bottom: -2rem;
  }
  .lg-margin-bottom-n3 {
    margin-bottom: -1.5rem;
  }
  .lg-margin-bottom-n2 {
    margin-bottom: -1rem;
  }
  .lg-margin-bottom-n1 {
    margin-bottom: -0.5rem;
  }
}
@media (max-width: 960px) {
  .md-margin-bottom-n5 {
    margin-bottom: -3rem;
  }
  .md-margin-bottom-n4 {
    margin-bottom: -2rem;
  }
  .md-margin-bottom-n3 {
    margin-bottom: -1.5rem;
  }
  .md-margin-bottom-n2 {
    margin-bottom: -1rem;
  }
  .md-margin-bottom-n1 {
    margin-bottom: -0.5rem;
  }
}
@media (max-width: 640px) {
  .sm-margin-bottom-n5 {
    margin-bottom: -3rem;
  }
  .sm-margin-bottom-n4 {
    margin-bottom: -2rem;
  }
  .sm-margin-bottom-n3 {
    margin-bottom: -1.5rem;
  }
  .sm-margin-bottom-n2 {
    margin-bottom: -1rem;
  }
  .sm-margin-bottom-n1 {
    margin-bottom: -0.5rem;
  }
}
.margin-left-n9 {
  margin-left: -9rem;
}
.margin-left-n8 {
  margin-left: -7rem;
}
.margin-left-n7 {
  margin-left: -5rem;
}
.margin-left-n6 {
  margin-left: -4rem;
}
.margin-left-n5 {
  margin-left: -3rem;
}
.margin-left-n4 {
  margin-left: -2rem;
}
.margin-left-n3 {
  margin-left: -1.5rem;
}
.margin-left-n2 {
  margin-left: -1rem;
}
.margin-left-n1 {
  margin-left: -0.5rem;
}
@media (max-width: 1280px) {
  .lg-margin-left-n5 {
    margin-left: -3rem;
  }
  .lg-margin-left-n4 {
    margin-left: -2rem;
  }
  .lg-margin-left-n3 {
    margin-left: -1.5rem;
  }
  .lg-margin-left-n2 {
    margin-left: -1rem;
  }
  .lg-margin-left-n1 {
    margin-left: -0.5rem;
  }
}
@media (max-width: 960px) {
  .md-margin-left-n5 {
    margin-left: -3rem;
  }
  .md-margin-left-n4 {
    margin-left: -2rem;
  }
  .md-margin-left-n3 {
    margin-left: -1.5rem;
  }
  .md-margin-left-n2 {
    margin-left: -1rem;
  }
  .md-margin-left-n1 {
    margin-left: -0.5rem;
  }
}
@media (max-width: 640px) {
  .sm-margin-left-n5 {
    margin-left: -3rem;
  }
  .sm-margin-left-n4 {
    margin-left: -2rem;
  }
  .sm-margin-left-n3 {
    margin-left: -1.5rem;
  }
  .sm-margin-left-n2 {
    margin-left: -1rem;
  }
  .sm-margin-left-n1 {
    margin-left: -0.5rem;
  }
}
.margin-left-auto {
  margin-left: auto;
}
.margin-right-auto {
  margin-right: auto;
}
.button-margin-top-3 {
  margin-top: 4rem;
}
.button-margin-top-2 {
  margin-top: 2.5rem;
}
@media (max-width: 960px) {
  .button-margin-top-2 {
    margin-top: 1.5rem;
  }
}
.button-margin-top-1 {
  margin-top: 1.5rem;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
@media (max-width: 1280px) {
  .lg-order-0 {
    order: 0;
  }
  .lg-order-1 {
    order: 1;
  }
  .lg-order-2 {
    order: 2;
  }
  .lg-order-3 {
    order: 3;
  }
  .lg-order-4 {
    order: 4;
  }
}
@media (max-width: 960px) {
  .md-order-0 {
    order: 0;
  }
  .md-order-1 {
    order: 1;
  }
  .md-order-2 {
    order: 2;
  }
  .md-order-3 {
    order: 3;
  }
  .md-order-4 {
    order: 4;
  }
}
@media (max-width: 640px) {
  .sm-order-0 {
    order: 0;
  }
  .sm-order-1 {
    order: 1;
  }
  .sm-order-2 {
    order: 2;
  }
  .sm-order-3 {
    order: 3;
  }
  .sm-order-4 {
    order: 4;
  }
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-scroll {
  overflow: scroll;
}
.overflow-x-hidden {
  overflow: hidden;
}
.overflow-y-scroll {
  overflow: scroll;
}
.overflow-y-hidden {
  overflow: hidden;
}
@media (max-width: 1280px) {
  .lg-overflow-scroll {
    overflow: scroll;
  }
  .lg-overflow-hidden {
    overflow: hidden;
  }
  .lg-overflow-x-scroll {
    overflow: scroll;
  }
  .lg-overflow-x-hidden {
    overflow: hidden;
  }
  .lg-overflow-y-scroll {
    overflow: scroll;
  }
  .lg-overflow-y-hidden {
    overflow: hidden;
  }
}
@media (max-width: 960px) {
  .md-overflow-scroll {
    overflow: scroll;
  }
  .md-overflow-hidden {
    overflow: hidden;
  }
  .md-overflow-x-scroll {
    overflow: scroll;
  }
  .md-overflow-x-hidden {
    overflow: hidden;
  }
  .md-overflow-y-scroll {
    overflow: scroll;
  }
  .md-overflow-y-hidden {
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .sm-overflow-scroll {
    overflow: scroll;
  }
  .sm-overflow-hidden {
    overflow: hidden;
  }
  .sm-overflow-x-scroll {
    overflow: scroll;
  }
  .sm-overflow-x-hidden {
    overflow: hidden;
  }
  .sm-overflow-y-scroll {
    overflow: scroll;
  }
  .sm-overflow-y-hidden {
    overflow: hidden;
  }
}
.padding-small {
  padding: 1.5rem;
}
.padding-default {
  padding: 2.25rem;
}
.padding-large {
  padding: 3.5rem;
}
@media (max-width: 1280px) {
  .padding-small {
    padding: 1.333rem;
  }
  .padding-default {
    padding: 1.9995rem;
  }
  .padding-large {
    padding: 2.999rem;
  }
}
@media (max-width: 960px) {
  .padding-small {
    padding: 1.167rem;
  }
  .padding-default {
    padding: 1.7505rem;
  }
  .padding-large {
    padding: 2.501rem;
  }
}
@media (max-width: 640px) {
  .padding-small {
    padding: 1rem;
  }
  .padding-default {
    padding: 1.5rem;
  }
  .padding-large {
    padding: 2rem;
  }
}
.padding-top-0 {
  padding-top: 0;
}
.padding-bottom-0 {
  padding-bottom: 0;
}
.padding-5 {
  padding: 3rem;
}
.padding-4 {
  padding: 2rem;
}
.padding-3 {
  padding: 1.5rem;
}
.padding-2 {
  padding: 1rem;
}
.padding-1 {
  padding: 0.5rem;
}
.padding-0 {
  padding: 0;
}
@media (max-width: 1280px) {
  .lg-padding-5 {
    padding: 3rem;
  }
  .lg-padding-4 {
    padding: 2rem;
  }
  .lg-padding-3 {
    padding: 1.5rem;
  }
  .lg-padding-2 {
    padding: 1rem;
  }
  .lg-padding-1 {
    padding: 0.5rem;
  }
  .lg-padding-0 {
    padding: 0;
  }
}
@media (max-width: 960px) {
  .md-padding-5 {
    padding: 3rem;
  }
  .md-padding-4 {
    padding: 2rem;
  }
  .md-padding-3 {
    padding: 1.5rem;
  }
  .md-padding-2 {
    padding: 1rem;
  }
  .md-padding-1 {
    padding: 0.5rem;
  }
  .md-padding-0 {
    padding: 0;
  }
}
@media (max-width: 640px) {
  .sm-padding-5 {
    padding: 3rem;
  }
  .sm-padding-4 {
    padding: 2rem;
  }
  .sm-padding-3 {
    padding: 1.5rem;
  }
  .sm-padding-2 {
    padding: 1rem;
  }
  .sm-padding-1 {
    padding: 0.5rem;
  }
  .sm-padding-0 {
    padding: 0;
  }
}
.padding-top-8 {
  padding-top: 7rem;
}
.padding-top-7 {
  padding-top: 5rem;
}
.padding-top-5 {
  padding-top: 3rem;
}
.padding-top-4 {
  padding-top: 2rem;
}
.padding-top-3 {
  padding-top: 1.5rem;
}
.padding-top-2 {
  padding-top: 1rem;
}
.padding-top-1 {
  padding-top: 0.5rem;
}
.padding-top-0 {
  padding-top: 0;
}
@media (max-width: 1280px) {
  .lg-padding-top-8 {
    padding-top: 7rem;
  }
  .lg-padding-top-5 {
    padding-top: 3rem;
  }
  .lg-padding-top-4 {
    padding-top: 2rem;
  }
  .lg-padding-top-3 {
    padding-top: 1.5rem;
  }
  .lg-padding-top-2 {
    padding-top: 1rem;
  }
  .lg-padding-top-1 {
    padding-top: 0.5rem;
  }
  .lg-padding-top-0 {
    padding-top: 0;
  }
}
@media (max-width: 960px) {
  .md-padding-top-5 {
    padding-top: 3rem;
  }
  .md-padding-top-4 {
    padding-top: 2rem;
  }
  .md-padding-top-3 {
    padding-top: 1.5rem;
  }
  .md-padding-top-2 {
    padding-top: 1rem;
  }
  .md-padding-top-1 {
    padding-top: 0.5rem;
  }
  .md-padding-top-0 {
    padding-top: 0;
  }
}
@media (max-width: 640px) {
  .sm-padding-top-5 {
    padding-top: 3rem;
  }
  .sm-padding-top-4 {
    padding-top: 2rem;
  }
  .sm-padding-top-3 {
    padding-top: 1.5rem;
  }
  .sm-padding-top-2 {
    padding-top: 1rem;
  }
  .sm-padding-top-1 {
    padding-top: 0.5rem;
  }
  .sm-padding-top-0 {
    padding-top: 0;
  }
}
.padding-right-7 {
  padding-right: 5rem;
}
.padding-right-6 {
  padding-right: 4rem;
}
.padding-right-5 {
  padding-right: 3rem;
}
.padding-right-4 {
  padding-right: 2rem;
}
.padding-right-3 {
  padding-right: 1.5rem;
}
.padding-right-2 {
  padding-right: 1rem;
}
.padding-right-1 {
  padding-right: 0.5rem;
}
.padding-right-0 {
  padding-right: 0;
}
@media (max-width: 1280px) {
  .lg-padding-right-5 {
    padding-right: 3rem;
  }
  .lg-padding-right-4 {
    padding-right: 2rem;
  }
  .lg-padding-right-3 {
    padding-right: 1.5rem;
  }
  .lg-padding-right-2 {
    padding-right: 1rem;
  }
  .lg-padding-right-1 {
    padding-right: 0.5rem;
  }
  .lg-padding-right-0 {
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .md-padding-right-5 {
    padding-right: 3rem;
  }
  .md-padding-right-4 {
    padding-right: 2rem;
  }
  .md-padding-right-3 {
    padding-right: 1.5rem;
  }
  .md-padding-right-2 {
    padding-right: 1rem;
  }
  .md-padding-right-1 {
    padding-right: 0.5rem;
  }
  .md-padding-right-0 {
    padding-right: 0;
  }
}
@media (max-width: 640px) {
  .sm-padding-right-5 {
    padding-right: 3rem;
  }
  .sm-padding-right-4 {
    padding-right: 2rem;
  }
  .sm-padding-right-3 {
    padding-right: 1.5rem;
  }
  .sm-padding-right-2 {
    padding-right: 1rem;
  }
  .sm-padding-right-1 {
    padding-right: 0.5rem;
  }
  .sm-padding-right-0 {
    padding-right: 0;
  }
}
.padding-bottom-5 {
  padding-bottom: 3rem;
}
.padding-bottom-4 {
  padding-bottom: 2rem;
}
.padding-bottom-3 {
  padding-bottom: 1.5rem;
}
.padding-bottom-2 {
  padding-bottom: 1rem;
}
.padding-bottom-1 {
  padding-bottom: 0.5rem;
}
.padding-bottom-0 {
  padding-bottom: 0;
}
@media (max-width: 1280px) {
  .lg-padding-bottom-5 {
    padding-bottom: 3rem;
  }
  .lg-padding-bottom-4 {
    padding-bottom: 2rem;
  }
  .lg-padding-bottom-3 {
    padding-bottom: 1.5rem;
  }
  .lg-padding-bottom-2 {
    padding-bottom: 1rem;
  }
  .lg-padding-bottom-1 {
    padding-bottom: 0.5rem;
  }
  .lg-padding-bottom-0 {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) {
  .md-padding-bottom-5 {
    padding-bottom: 3rem;
  }
  .md-padding-bottom-4 {
    padding-bottom: 2rem;
  }
  .md-padding-bottom-3 {
    padding-bottom: 1.5rem;
  }
  .md-padding-bottom-2 {
    padding-bottom: 1rem;
  }
  .md-padding-bottom-1 {
    padding-bottom: 0.5rem;
  }
  .md-padding-bottom-0 {
    padding-bottom: 0;
  }
}
@media (max-width: 640px) {
  .sm-padding-bottom-5 {
    padding-bottom: 3rem;
  }
  .sm-padding-bottom-4 {
    padding-bottom: 2rem;
  }
  .sm-padding-bottom-3 {
    padding-bottom: 1.5rem;
  }
  .sm-padding-bottom-2 {
    padding-bottom: 1rem;
  }
  .sm-padding-bottom-1 {
    padding-bottom: 0.5rem;
  }
  .sm-padding-bottom-0 {
    padding-bottom: 0;
  }
}
.padding-left-6 {
  padding-left: 4rem;
}
.padding-left-5 {
  padding-left: 3rem;
}
.padding-left-4 {
  padding-left: 2rem;
}
.padding-left-3 {
  padding-left: 1.5rem;
}
.padding-left-2 {
  padding-left: 1rem;
}
.padding-left-1 {
  padding-left: 0.5rem;
}
.padding-left-0 {
  padding-left: 0;
}
@media (max-width: 1280px) {
  .lg-padding-left-5 {
    padding-left: 3rem;
  }
  .lg-padding-left-4 {
    padding-left: 2rem;
  }
  .lg-padding-left-3 {
    padding-left: 1.5rem;
  }
  .lg-padding-left-2 {
    padding-left: 1rem;
  }
  .lg-padding-left-1 {
    padding-left: 0.5rem;
  }
  .lg-padding-left-0 {
    padding-left: 0;
  }
}
@media (max-width: 960px) {
  .md-padding-left-5 {
    padding-left: 3rem;
  }
  .md-padding-left-4 {
    padding-left: 2rem;
  }
  .md-padding-left-3 {
    padding-left: 1.5rem;
  }
  .md-padding-left-2 {
    padding-left: 1rem;
  }
  .md-padding-left-1 {
    padding-left: 0.5rem;
  }
  .md-padding-left-0 {
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .sm-padding-left-5 {
    padding-left: 3rem;
  }
  .sm-padding-left-4 {
    padding-left: 2rem;
  }
  .sm-padding-left-3 {
    padding-left: 1.5rem;
  }
  .sm-padding-left-2 {
    padding-left: 1rem;
  }
  .sm-padding-left-1 {
    padding-left: 0.5rem;
  }
  .sm-padding-left-0 {
    padding-left: 0;
  }
}
.remove-section-padding-left {
  padding-left: 0;
}
.remove-section-padding-right {
  padding-right: 0;
}
@media (min-width: 1601px) {
  .hg-remove-section-padding-left {
    padding-left: 0;
  }
  .hg-remove-section-padding-right {
    padding-right: 0;
  }
}
@media (min-width: 1281px) {
  .lg-remove-section-padding-left {
    padding-left: 0;
  }
  .lg-remove-section-padding-right {
    padding-right: 0;
  }
}
@media (min-width: 961px) {
  .md-remove-section-padding-left {
    padding-left: 0;
  }
  .md-remove-section-padding-right {
    padding-right: 0;
  }
}
@media (min-width: 641px) {
  .sm-remove-section-padding-left {
    padding-left: 0;
  }
  .sm-remove-section-padding-right {
    padding-right: 0;
  }
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
@media (max-width: 1280px) {
  .lg-relative {
    position: relative;
  }
  .lg-absolute {
    position: absolute;
  }
  .lg-fixed {
    position: fixed;
  }
  .lg-sticky {
    position: sticky;
  }
}
@media (max-width: 960px) {
  .md-relative {
    position: relative;
  }
  .md-absolute {
    position: absolute;
  }
  .md-fixed {
    position: fixed;
  }
  .md-sticky {
    position: sticky;
  }
}
@media (max-width: 640px) {
  .sm-relative {
    position: relative;
  }
  .sm-absolute {
    position: absolute;
  }
  .sm-fixed {
    position: fixed;
  }
  .sm-sticky {
    position: sticky;
  }
}
.text-align-left, .has-text-align-left {
  text-align: left;
}
.text-align-center, .has-text-align-center {
  text-align: center;
}
.text-align-right, .has-text-align-right {
  text-align: right;
}
@media (max-width: 1280px) {
  .lg-text-align-left {
    text-align: left;
  }
  .lg-text-align-center {
    text-align: center;
  }
  .lg-text-align-right {
    text-align: right;
  }
}
@media (max-width: 960px) {
  .md-text-align-left {
    text-align: left;
  }
  .md-text-align-center {
    text-align: center;
  }
  .md-text-align-right {
    text-align: right;
  }
}
@media (max-width: 640px) {
  .sm-text-align-left {
    text-align: left;
  }
  .sm-text-align-center {
    text-align: center;
  }
  .sm-text-align-right {
    text-align: right;
  }
}
.text-columns-4 {
  column-count: 4;
}
.text-columns-3 {
  column-count: 3;
}
.text-columns-2 {
  column-count: 2;
}
.text-column-gap-4 {
  column-gap: 4rem;
}
.text-column-gap-3 {
  column-gap: 3rem;
}
.text-column-gap-2 {
  column-gap: 2rem;
}
.text-column-gap-1 {
  column-gap: 1rem;
}
@media (max-width: 1280px) {
  .lg-text-columns-4 {
    column-count: 4;
  }
  .lg-text-columns-3 {
    column-count: 3;
  }
  .lg-text-columns-2 {
    column-count: 2;
  }
  .lg-text-columns-1 {
    column-count: 1;
  }
  .lg-text-column-gap-4 {
    column-gap: 4rem;
  }
  .lg-text-column-gap-3 {
    column-gap: 3rem;
  }
  .lg-text-column-gap-2 {
    column-gap: 2rem;
  }
  .lg-text-column-gap-1 {
    column-gap: 1rem;
  }
}
@media (max-width: 960px) {
  .md-text-columns-4 {
    column-count: 4;
  }
  .md-text-columns-3 {
    column-count: 3;
  }
  .md-text-columns-2 {
    column-count: 2;
  }
  .md-text-columns-1 {
    column-count: 1;
  }
  .md-text-column-gap-4 {
    column-gap: 4rem;
  }
  .md-text-column-gap-3 {
    column-gap: 3rem;
  }
  .md-text-column-gap-2 {
    column-gap: 2rem;
  }
  .md-text-column-gap-1 {
    column-gap: 1rem;
  }
}
@media (max-width: 640px) {
  .sm-text-columns-4 {
    column-count: 4;
  }
  .sm-text-columns-3 {
    column-count: 3;
  }
  .sm-text-columns-2 {
    column-count: 2;
  }
  .sm-text-columns-1 {
    column-count: 1;
  }
  .sm-text-column-gap-4 {
    column-gap: 4rem;
  }
  .sm-text-column-gap-3 {
    column-gap: 3rem;
  }
  .sm-text-column-gap-2 {
    column-gap: 2rem;
  }
  .sm-text-column-gap-1 {
    column-gap: 1rem;
  }
}
.primary-font-family {
  font-family: "Inter", sans-serif;
}
.secondary-font-family {
  font-family: "Montserrat Alternates", sans-serif;
}
.tertiary-font-family {
  font-family: sans-serif;
}
.light-weight {
  font-weight: 300;
}
.normal-weight {
  font-weight: 400;
}
.bold-weight {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.line-height-default {
  line-height: 1.6;
}
.line-height-medium {
  line-height: 1.4;
}
.line-height-small {
  line-height: 1.2;
}
.lead-text {
  font-size: 1.3rem;
}
.meta-text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.meta-text.inverted {
  color: rgba(255, 255, 255, 0.5);
}
html, body {
  font-size: 16px;
}
.huge, .has-huge-font-size {
  font-size: 5.5rem;
}
h1, .h1-size {
  font-size: 3.5rem;
}
h2, .h2-size {
  font-size: 3rem;
}
h3, .h3-size {
  font-size: 2.1rem;
}
h4, .h4-size, h5 {
  font-size: 1.3rem;
}
@media (max-width: 1280px) {
  html, body {
    font-size: 15.666px;
  }
  .huge, .has-huge-font-size {
    font-size: 4.3978rem;
  }
  h1, .h1-size {
    font-size: 3.0658rem;
  }
  h2, .h2-size {
    font-size: 2.666rem;
  }
  h3, .h3-size {
    font-size: 1.933rem;
  }
  h4, .h4-size, h5 {
    font-size: 1.2332rem;
  }
}
@media (max-width: 960px) {
  html, body {
    font-size: 15.334px;
  }
  .huge, .has-huge-font-size {
    font-size: 3.3022rem;
  }
  h1, .h1-size {
    font-size: 2.6342rem;
  }
  h2, .h2-size {
    font-size: 2.334rem;
  }
  h3, .h3-size {
    font-size: 1.767rem;
  }
  h4, .h4-size, h5 {
    font-size: 1.1668rem;
  }
}
@media (max-width: 640px) {
  html, body {
    font-size: 15px;
  }
  .huge, .has-huge-font-size {
    font-size: 2.2rem;
  }
  h1, .h1-size {
    font-size: 2.2rem;
  }
  h2, .h2-size {
    font-size: 2rem;
  }
  h3, .h3-size {
    font-size: 1.6rem;
  }
  h4, .h4-size, h5 {
    font-size: 1.1rem;
  }
}
.font-size-large, .has-large-font-size {
  font-size: 1.2rem;
}
.font-size-medium, .has-medium-font-size {
  font-size: 1.1rem;
}
.font-size-default {
  font-size: 1rem;
}
.font-size-small, .has-small-font-size {
  font-size: 0.9rem;
}
.font-size-extra-small {
  font-size: 0.8rem;
}
.viewport-min-height-100 {
  min-height: 100vh;
}
.viewport-min-height-3 {
  min-height: 75vh;
}
.viewport-min-height-2 {
  min-height: 55vh;
}
.viewport-min-height-1 {
  min-height: 30vh;
}
@media (max-width: 1280px) {
  .lg-viewport-min-height-3 {
    min-height: 75vh;
  }
  .lg-viewport-min-height-2 {
    min-height: 55vh;
  }
  .lg-viewport-min-height-1 {
    min-height: 30vh;
  }
}
@media (max-width: 960px) {
  .md-viewport-min-height-3 {
    min-height: 75vh;
  }
  .md-viewport-min-height-2 {
    min-height: 55vh;
  }
  .md-viewport-min-height-1 {
    min-height: 30vh;
  }
}
@media (max-width: 640px) {
  .sm-viewport-min-height-3 {
    min-height: 75vh;
  }
  .sm-viewport-min-height-2 {
    min-height: 55vh;
  }
  .sm-viewport-min-height-1 {
    min-height: 30vh;
  }
}
.width-18 {
  width: 1536px;
}
.width-17 {
  width: 1408px;
}
.width-16 {
  width: 1280px;
}
.width-15 {
  width: 1152px;
}
.width-14 {
  width: 1024px;
}
.width-13 {
  width: 896px;
}
.width-12 {
  width: 768px;
}
.width-11 {
  width: 640px;
}
.width-10 {
  width: 512px;
}
.width-09 {
  width: 384px;
}
.width-08 {
  width: 256px;
}
.width-07 {
  width: 192px;
}
.width-06 {
  width: 128px;
}
.width-05 {
  width: 96px;
}
.width-04 {
  width: 64px;
}
.width-03 {
  width: 32px;
}
.width-02 {
  width: 24px;
}
.width-01 {
  width: 16px;
}
@media (max-width: 1280px) {
  .lg-width-18 {
    width: 1536px;
  }
  .lg-width-17 {
    width: 1408px;
  }
  .lg-width-16 {
    width: 1280px;
  }
  .lg-width-15 {
    width: 1152px;
  }
  .lg-width-14 {
    width: 1024px;
  }
  .lg-width-13 {
    width: 896px;
  }
  .lg-width-12 {
    width: 768px;
  }
  .lg-width-11 {
    width: 640px;
  }
  .lg-width-10 {
    width: 512px;
  }
  .lg-width-09 {
    width: 384px;
  }
  .lg-width-08 {
    width: 256px;
  }
  .lg-width-07 {
    width: 192px;
  }
  .lg-width-06 {
    width: 128px;
  }
  .lg-width-05 {
    width: 96px;
  }
  .lg-width-04 {
    width: 64px;
  }
  .lg-width-03 {
    width: 32px;
  }
  .lg-width-02 {
    width: 24px;
  }
  .lg-width-01 {
    width: 16px;
  }
}
@media (max-width: 960px) {
  .md-width-18 {
    width: 1536px;
  }
  .md-width-17 {
    width: 1408px;
  }
  .md-width-16 {
    width: 1280px;
  }
  .md-width-15 {
    width: 1152px;
  }
  .md-width-14 {
    width: 1024px;
  }
  .md-width-13 {
    width: 896px;
  }
  .md-width-12 {
    width: 768px;
  }
  .md-width-11 {
    width: 640px;
  }
  .md-width-10 {
    width: 512px;
  }
  .md-width-09 {
    width: 384px;
  }
  .md-width-08 {
    width: 256px;
  }
  .md-width-07 {
    width: 192px;
  }
  .md-width-06 {
    width: 128px;
  }
  .md-width-05 {
    width: 96px;
  }
  .md-width-04 {
    width: 64px;
  }
  .md-width-03 {
    width: 32px;
  }
  .md-width-02 {
    width: 24px;
  }
  .md-width-01 {
    width: 16px;
  }
}
@media (max-width: 640px) {
  .sm-width-18 {
    width: 1536px;
  }
  .sm-width-17 {
    width: 1408px;
  }
  .sm-width-16 {
    width: 1280px;
  }
  .sm-width-15 {
    width: 1152px;
  }
  .sm-width-14 {
    width: 1024px;
  }
  .sm-width-13 {
    width: 896px;
  }
  .sm-width-12 {
    width: 768px;
  }
  .sm-width-11 {
    width: 640px;
  }
  .sm-width-10 {
    width: 512px;
  }
  .sm-width-09 {
    width: 384px;
  }
  .sm-width-08 {
    width: 256px;
  }
  .sm-width-07 {
    width: 192px;
  }
  .sm-width-06 {
    width: 128px;
  }
  .sm-width-05 {
    width: 96px;
  }
  .sm-width-04 {
    width: 64px;
  }
  .sm-width-03 {
    width: 32px;
  }
  .sm-width-02 {
    width: 24px;
  }
  .sm-width-01 {
    width: 16px;
  }
}
.width-100pr {
  width: 100%;
}
.width-80pr {
  width: 80%;
}
.width-75pr {
  width: 75%;
}
.width-66pr {
  width: 66.66%;
}
.width-60pr {
  width: 60%;
}
.width-50pr {
  width: 50%;
}
.width-40pr {
  width: 40%;
}
.width-33pr {
  width: 33.33%;
}
.width-25pr {
  width: 25%;
}
.width-20pr {
  width: 20%;
}
@media (max-width: 1280px) {
  .lg-width-100pr {
    width: 100%;
  }
  .lg-width-80pr {
    width: 80%;
  }
  .lg-width-75pr {
    width: 75%;
  }
  .lg-width-66pr {
    width: 66.66%;
  }
  .lg-width-60pr {
    width: 60%;
  }
  .lg-width-50pr {
    width: 50%;
  }
  .lg-width-40pr {
    width: 40%;
  }
  .lg-width-33pr {
    width: 33.33%;
  }
  .lg-width-25pr {
    width: 25%;
  }
  .lg-width-20pr {
    width: 20%;
  }
}
@media (max-width: 960px) {
  .md-width-100pr {
    width: 100%;
  }
  .md-width-80pr {
    width: 80%;
  }
  .md-width-75pr {
    width: 75%;
  }
  .md-width-66pr {
    width: 66.66%;
  }
  .md-width-60pr {
    width: 60%;
  }
  .md-width-50pr {
    width: 50%;
  }
  .md-width-40pr {
    width: 40%;
  }
  .md-width-33pr {
    width: 33.33%;
  }
  .md-width-25pr {
    width: 25%;
  }
  .md-width-20pr {
    width: 20%;
  }
}
@media (max-width: 640px) {
  .sm-width-100pr {
    width: 100%;
  }
  .sm-width-80pr {
    width: 80%;
  }
  .sm-width-75pr {
    width: 75%;
  }
  .sm-width-66pr {
    width: 66.66%;
  }
  .sm-width-60pr {
    width: 60%;
  }
  .sm-width-50pr {
    width: 50%;
  }
  .sm-width-40pr {
    width: 40%;
  }
  .sm-width-33pr {
    width: 33.33%;
  }
  .sm-width-25pr {
    width: 25%;
  }
  .sm-width-20pr {
    width: 20%;
  }
}
.text-width-8 {
  max-width: 80ch;
}
.text-width-7 {
  max-width: 60ch;
}
.text-width-6 {
  max-width: 40ch;
}
.text-width-5 {
  max-width: 30ch;
}
.text-width-4 {
  max-width: 25ch;
}
.text-width-3 {
  max-width: 20ch;
}
.text-width-2 {
  max-width: 15ch;
}
.text-width-1 {
  max-width: 10ch;
}
.max-width-18 {
  max-width: 1536px;
}
.max-width-17 {
  max-width: 1408px;
}
.max-width-16 {
  max-width: 1280px;
}
.max-width-15 {
  max-width: 1152px;
}
.max-width-14 {
  max-width: 1024px;
}
.max-width-13 {
  max-width: 896px;
}
.max-width-12 {
  max-width: 768px;
}
.max-width-11 {
  max-width: 640px;
}
.max-width-10 {
  max-width: 512px;
}
.max-width-09 {
  max-width: 384px;
}
.max-width-08 {
  max-width: 256px;
}
.max-width-07 {
  max-width: 192px;
}
.max-width-06 {
  max-width: 128px;
}
.max-width-05 {
  max-width: 96px;
}
.max-width-04 {
  max-width: 64px;
}
.max-width-03 {
  max-width: 32px;
}
.max-width-02 {
  max-width: 24px;
}
.max-width-01 {
  max-width: 16px;
}
@media (max-width: 1280px) {
  .lg-max-width-18 {
    max-width: 1536px;
  }
  .lg-max-width-17 {
    max-width: 1408px;
  }
  .lg-max-width-16 {
    max-width: 1280px;
  }
  .lg-max-width-15 {
    max-width: 1152px;
  }
  .lg-max-width-14 {
    max-width: 1024px;
  }
  .lg-max-width-13 {
    max-width: 896px;
  }
  .lg-max-width-12 {
    max-width: 768px;
  }
  .lg-max-width-11 {
    max-width: 640px;
  }
  .lg-max-width-10 {
    max-width: 512px;
  }
  .lg-max-width-09 {
    max-width: 384px;
  }
  .lg-max-width-08 {
    max-width: 256px;
  }
  .lg-max-width-07 {
    max-width: 192px;
  }
  .lg-max-width-06 {
    max-width: 128px;
  }
  .lg-max-width-05 {
    max-width: 96px;
  }
  .lg-max-width-04 {
    max-width: 64px;
  }
  .lg-max-width-03 {
    max-width: 32px;
  }
  .lg-max-width-02 {
    max-width: 24px;
  }
  .lg-max-width-01 {
    max-width: 16px;
  }
}
@media (max-width: 960px) {
  .md-max-width-18 {
    max-width: 1536px;
  }
  .md-max-width-17 {
    max-width: 1408px;
  }
  .md-max-width-16 {
    max-width: 1280px;
  }
  .md-max-width-15 {
    max-width: 1152px;
  }
  .md-max-width-14 {
    max-width: 1024px;
  }
  .md-max-width-13 {
    max-width: 896px;
  }
  .md-max-width-12 {
    max-width: 768px;
  }
  .md-max-width-11 {
    max-width: 640px;
  }
  .md-max-width-10 {
    max-width: 512px;
  }
  .md-max-width-09 {
    max-width: 384px;
  }
  .md-max-width-08 {
    max-width: 256px;
  }
  .md-max-width-07 {
    max-width: 192px;
  }
  .md-max-width-06 {
    max-width: 128px;
  }
  .md-max-width-05 {
    max-width: 96px;
  }
  .md-max-width-04 {
    max-width: 64px;
  }
  .md-max-width-03 {
    max-width: 32px;
  }
  .md-max-width-02 {
    max-width: 24px;
  }
  .md-max-width-01 {
    max-width: 16px;
  }
}
@media (max-width: 640px) {
  .sm-max-width-18 {
    max-width: 1536px;
  }
  .sm-max-width-17 {
    max-width: 1408px;
  }
  .sm-max-width-16 {
    max-width: 1280px;
  }
  .sm-max-width-15 {
    max-width: 1152px;
  }
  .sm-max-width-14 {
    max-width: 1024px;
  }
  .sm-max-width-13 {
    max-width: 896px;
  }
  .sm-max-width-12 {
    max-width: 768px;
  }
  .sm-max-width-11 {
    max-width: 640px;
  }
  .sm-max-width-10 {
    max-width: 512px;
  }
  .sm-max-width-09 {
    max-width: 384px;
  }
  .sm-max-width-08 {
    max-width: 256px;
  }
  .sm-max-width-07 {
    max-width: 192px;
  }
  .sm-max-width-06 {
    max-width: 128px;
  }
  .sm-max-width-05 {
    max-width: 96px;
  }
  .sm-max-width-04 {
    max-width: 64px;
  }
  .sm-max-width-03 {
    max-width: 32px;
  }
  .sm-max-width-02 {
    max-width: 24px;
  }
  .sm-max-width-01 {
    max-width: 16px;
  }
}
.min-width-18 {
  min-width: 1536px;
}
.min-width-17 {
  min-width: 1408px;
}
.min-width-16 {
  min-width: 1280px;
}
.min-width-15 {
  min-width: 1152px;
}
.min-width-14 {
  min-width: 1024px;
}
.min-width-13 {
  min-width: 896px;
}
.min-width-12 {
  min-width: 768px;
}
.min-width-11 {
  min-width: 640px;
}
.min-width-10 {
  min-width: 512px;
}
.min-width-09 {
  min-width: 384px;
}
.min-width-08 {
  min-width: 256px;
}
.min-width-07 {
  min-width: 192px;
}
.min-width-06 {
  min-width: 128px;
}
.min-width-05 {
  min-width: 96px;
}
.min-width-04 {
  min-width: 64px;
}
.min-width-03 {
  min-width: 32px;
}
.min-width-02 {
  min-width: 24px;
}
.min-width-01 {
  min-width: 16px;
}
@media (max-width: 1280px) {
  .lg-min-width-18 {
    min-width: 1536px;
  }
  .lg-min-width-17 {
    min-width: 1408px;
  }
  .lg-min-width-16 {
    min-width: 1280px;
  }
  .lg-min-width-15 {
    min-width: 1152px;
  }
  .lg-min-width-14 {
    min-width: 1024px;
  }
  .lg-min-width-13 {
    min-width: 896px;
  }
  .lg-min-width-12 {
    min-width: 768px;
  }
  .lg-min-width-11 {
    min-width: 640px;
  }
  .lg-min-width-10 {
    min-width: 512px;
  }
  .lg-min-width-09 {
    min-width: 384px;
  }
  .lg-min-width-08 {
    min-width: 256px;
  }
  .lg-min-width-07 {
    min-width: 192px;
  }
  .lg-min-width-06 {
    min-width: 128px;
  }
  .lg-min-width-05 {
    min-width: 96px;
  }
  .lg-min-width-04 {
    min-width: 64px;
  }
  .lg-min-width-03 {
    min-width: 32px;
  }
  .lg-min-width-02 {
    min-width: 24px;
  }
  .lg-min-width-01 {
    min-width: 16px;
  }
}
@media (max-width: 960px) {
  .md-min-width-18 {
    min-width: 1536px;
  }
  .md-min-width-17 {
    min-width: 1408px;
  }
  .md-min-width-16 {
    min-width: 1280px;
  }
  .md-min-width-15 {
    min-width: 1152px;
  }
  .md-min-width-14 {
    min-width: 1024px;
  }
  .md-min-width-13 {
    min-width: 896px;
  }
  .md-min-width-12 {
    min-width: 768px;
  }
  .md-min-width-11 {
    min-width: 640px;
  }
  .md-min-width-10 {
    min-width: 512px;
  }
  .md-min-width-09 {
    min-width: 384px;
  }
  .md-min-width-08 {
    min-width: 256px;
  }
  .md-min-width-07 {
    min-width: 192px;
  }
  .md-min-width-06 {
    min-width: 128px;
  }
  .md-min-width-05 {
    min-width: 96px;
  }
  .md-min-width-04 {
    min-width: 64px;
  }
  .md-min-width-03 {
    min-width: 32px;
  }
  .md-min-width-02 {
    min-width: 24px;
  }
  .md-min-width-01 {
    min-width: 16px;
  }
}
@media (max-width: 640px) {
  .sm-min-width-18 {
    min-width: 1536px;
  }
  .sm-min-width-17 {
    min-width: 1408px;
  }
  .sm-min-width-16 {
    min-width: 1280px;
  }
  .sm-min-width-15 {
    min-width: 1152px;
  }
  .sm-min-width-14 {
    min-width: 1024px;
  }
  .sm-min-width-13 {
    min-width: 896px;
  }
  .sm-min-width-12 {
    min-width: 768px;
  }
  .sm-min-width-11 {
    min-width: 640px;
  }
  .sm-min-width-10 {
    min-width: 512px;
  }
  .sm-min-width-09 {
    min-width: 384px;
  }
  .sm-min-width-08 {
    min-width: 256px;
  }
  .sm-min-width-07 {
    min-width: 192px;
  }
  .sm-min-width-06 {
    min-width: 128px;
  }
  .sm-min-width-05 {
    min-width: 96px;
  }
  .sm-min-width-04 {
    min-width: 64px;
  }
  .sm-min-width-03 {
    min-width: 32px;
  }
  .sm-min-width-02 {
    min-width: 24px;
  }
  .sm-min-width-01 {
    min-width: 16px;
  }
}
.z-index-3 {
  z-index: 3;
}
.z-index-2 {
  z-index: 2;
}
.z-index-1 {
  z-index: 1;
}
.z-index-0 {
  z-index: 0;
}
.z-index-n1 {
  z-index: -1;
}
