/*
Theme Name: bsTheme
Theme URI: http://brotsalz.de/
Author: brot & salz
Author URI: http://www.brotsalz.de
Description: brot & salz Theme
Version: 1.0.1
Tested up to: 6.1.1
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bstheme
Tags: brot&salz, tailor-made-theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bsTheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* * Theme Overwrites
* --------------------------------------------- */
body {
  background: var(--cDark);
}

/* * Fonts 
* --------------------------------------------- */
/* jost-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../bsTheme/assets/fonts/jost/jost-v20-latin-regular.woff2')
    format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* trajan-sans-pro-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'TrajanSansProRegular';
  font-style: normal;
  font-weight: 400;
  src:
    url('../bsTheme/assets/fonts/trajan-sans-pro/trajan-sans-pro-regular/font.woff')
      format('woff2'),
    url('../bsTheme/assets/fonts/trajan-sans-pro/trajan-sans-pro-regular/font.woff2')
      format('woff2');
}

/* trajan-sans-pro-bold - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'TrajanSansProBold';
  font-style: normal;
  font-weight: 700;
  src:
    url('../bsTheme/assets/fonts/trajan-sans-pro/trajan-sans-pro-bold/font.woff')
      format('woff2'),
    url('../bsTheme/assets/fonts/trajan-sans-pro/trajan-sans-pro-bold/font.woff2')
      format('woff2');
}

/* * Utilities 
* --------------------------------------------- */
.seo_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}

/* * CTAs / Buttons
* --------------------------------------------- */
.cta {
  width: fit-content;
  margin-bottom: 0.5rem;
}

.no-interaction {
  pointer-events: none;
}

.cta > :is(a, button, div, input) {
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--cDef);
  cursor: pointer;
  transition: 0.3s all ease;
  position: relative;
  padding: 0;
  font-family: var(--family-body);
  font-weight: var(--fw-regular);
  display: flex;
  align-items: center;
}

.cta_corners {
  display: none;
}

/* Default ------------------ */
.cta.default > :is(a, button, div, input) {
  padding: 0.5rem 1.75rem;
  color: var(--cDef);
  transition: 0.3s all ease;
  position: relative;
  font-family: var(--family-alternative);
  font-weight: var(--fw-regular);
}

.cta.default .cta_corners {
  display: block;
}

/* Default ------------------ */
.cta.default.transparent > :is(a, button, div, input) {
  padding: 0.65rem 1.75rem 0.5rem 1.75rem;
  background: transparent;
  border: 2px solid var(--cRed);
  color: var(--cDef);
  border-radius: var(--b-radius-lg);
  transition: 0.3s all ease;
}

.cta.default.transparent:hover > :is(a, button, div, input) {
  background: var(--cRed);
}

/* Menu ------------------ */
.cta.menu > :is(a, button, div, input) {
  padding: 0 0 0.25rem 0;
  background: transparent;
  border: none;
  color: var(--cDef);
  font-family: var(--family-alternative);
  font-weight: var(--fw-regular);
  transition: 0.3s all ease;
}

.cta.menu > :is(a, button, div, input) {
  background: transparent;
  position: relative;
}
.cta.menu > :is(a, button, div, input)::after {
  position: absolute;
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--cRed);
  bottom: 0;
  transition: 0.3s all ease;
}

.cta.menu:hover > :is(a, button, div, input)::after {
  width: 100%;
}

/* Submit ------------------ */
.cta.submit {
  position: relative;
}

.cta.submit > :is(a, button, div, input) {
  transition: 0.3s all ease;
  background: var(--cDef);
  color: var(--cDark);
  border-radius: var(--b-radius-lg);
  padding: 0.65rem 1.75rem 0.5rem 1.75rem;
}

.cta.submit.deny {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 576px) {
  .cta.default > :is(a, button, div, input) {
    white-space: nowrap;
  }
}

/* Menu ------------------ */
.cta.hyper > :is(a, button, div, input) {
  padding: 0.15rem 0.75rem;
  background: transparent;
  border: 3px solid var(--cDef);
  color: var(--cRed);
  text-transform: uppercase;
  border-radius: 50px;
  transition: 0.3s all ease;
  font-size: clamp(var(--f-lg-min), var(--f-lg-ideal), var(--f-lg-max));
  height: 100%;
}

.cta.hyper:hover > :is(a, button, div, input) {
  background: var(--cRed);
  color: var(--cDef);
}

@media (max-width: 576px) {
  .cta.hyper > :is(a, button, div, input) {
    padding: 0.15rem 1rem;
  }
}

/* * Site Header
* --------------------------------------------- */
.site__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.6s all ease;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.75) 0%,
    rgba(8, 8, 8, 0) 100%
  );
}

.menu_logo {
  width: 250px;
  transition: 0.3s all ease;
}

/* Nav open */
.navOpen {
  overflow: hidden;
  transition: 0.3s all ease;
}

/* Nav down */
.navDown .menu_logo {
  width: 200px;
}

@media (min-width: 993px) {
  .header_col_1 {
    padding-top: 5px;
  }
}

/* * Burger Button
* --------------------------------------------- */
.menu_burger__button {
  padding: 0;
  border: none;
  background: transparent;
}

.menu_burger__button div {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--cDef);
  padding: 0.5rem;
  background: transparent;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.menu_burger__button div span {
  width: 20px;
  height: 2px;
  background: var(--cDef);
  transition: 0.3s all ease;
}

.menu_burger__button div span:nth-of-type(2) {
  margin-block: 0.225rem;
}

.menu_burger__button div span:nth-of-type(3) {
  width: 10px;
}

.menu_burger__button:hover div span:nth-of-type(3) {
  width: 20px;
}

.menu_burger.active .menu_burger__button div span:nth-of-type(1) {
  transform: rotate(45deg);
}

.menu_burger.active .menu_burger__button div span:nth-of-type(2) {
  margin-block: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.menu_burger.active .menu_burger__button div span:nth-of-type(3) {
  display: none;
}

@media (max-width: 1200px) {
  .menu_burger {
    transform: translateX(-1.5rem);
  }
}

@media (max-width: 576px) {
  .menu_burger {
    transform: translateX(-2.5rem);
  }
}

/* * Burger Menu
* --------------------------------------------- */
#navOverlayContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  background-color: var(--cDark);
  z-index: -90;
  width: 100%;
  height: 100%;
  transition: 0s opacity ease;
}

.ovNavContainer__wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#navOverlayContainer.openOverlay {
  transition-delay: 0s;
  opacity: 1;
  z-index: 9;
}

@media (min-width: 993px) {
  #navOverlayContainer {
    display: none;
  }
}

/* * Footer
* --------------------------------------------- */
.line_separator {
  height: 2px !important;
  border: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cDef);
  opacity: 1;
}

#colophon {
  position: relative;
  z-index: 3;
}

.footer_background__wrapper {
  position: relative;
}

.footer_background__wrapper .footer_background__inner_wrapper {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
}

.footer_background__wrapper .footer_background__inner_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_cover {
  position: relative;
  z-index: 2;
}

.footer_cover > div {
  position: relative;
  z-index: 3;
}

.portrait_animation__wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 1s all ease;
  isolation: isolate; /* creates a new stacking context */
  will-change: transform;
}

#colophon.active .portrait_animation__wrapper {
  top: -300px;
}

.portrait_item {
  width: clamp(200px, 50vw, 1000px);
  margin-inline: auto;
  transform: rotate(0);
  transform-origin: bottom center;
  cursor: pointer;
}

.portrait_item.active {
  z-index: 1; /* Also reinforce during animation */
  animation: wobble 1s ease-in-out infinite;
  pointer-events: none;
}

.portrait_item img {
  z-index: 1 !important;
  width: 100%;
  height: auto;
}

.footer_newsletter_cover,
.footer_newsletter_cover
  :is(img.wp-block-cover__image-background, .wp-block-cover__background) {
  pointer-events: none;
}

.footer_newsletter_cover .wp-block-cover__inner-container {
  pointer-events: all;
}

@keyframes wobble {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  35% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 1800px) {
  #colophon.active .portrait_animation__wrapper {
    top: -250px;
  }
}

@media (max-width: 1400px) {
  #colophon.active .portrait_animation__wrapper {
    top: -225px;
  }
}

@media (max-width: 1200px) {
  #colophon.active .portrait_animation__wrapper {
    top: -185px;
  }
}

@media (max-width: 992px) {
  #colophon.active .portrait_animation__wrapper {
    top: -155px;
  }
}

@media (max-width: 850px) {
  #colophon.active .portrait_animation__wrapper {
    top: -120px;
  }
}

@media (max-width: 768px) {
  #colophon.active .portrait_animation__wrapper {
    top: -90px;
  }
}

@media (max-width: 576px) {
  #colophon.active .portrait_animation__wrapper {
    top: -90px;
  }

  .portrait_item {
    width: clamp(200px, 85vw, 1000px);
  }
}

.footer_logo img {
  height: 2rem;
  width: auto !important;
}

/* * Newsletter
* --------------------------------------------- */
.videoswitch__wrapper {
  position: relative;
  width: 100%;
}

.videoswitch__wrapper video {
  width: 100%;
  max-width: 550px;
}

.videoswitch__seo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}

.videoswitch__wrapper.left .is-style-secInd {
  text-align: left;
}

/* * Newsletter
* --------------------------------------------- */
#form_EMAIL {
  border: 2px solid var(--cDef);
  border-radius: var(--b-radius-lg);
  padding: 0.5rem 1.5rem;
  color: var(--cDef);
  opacity: 1;
  font-weight: var(--fw-semibold);
}

::placeholder {
  text-decoration: uppercase;
  opacity: 1;
  color: var(--cDef);
  font-weight: var(--fw-semibold);
}

#form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.checkBoxWrap {
  isolation: isolate;
}

.checkBoxWrap input {
  position: absolute;
  opacity: 0 !important;
  cursor: none;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.checkBoxWrap .checker {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cDef);
  border-radius: 4px;
  z-index: 2;
}

.checkBoxWrap .checked {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.checkBoxWrap .checked svg {
  width: 90%;
  height: auto;
}

.checkBoxWrap.active .checked {
  display: flex;
}

@media (min-width: 577px) {
  #form_EMAIL,
  .dsgvoWrapper {
    width: 500px;
  }
}

@media (max-width: 576px) {
  #form_EMAIL {
    width: 300px;
  }
}

/* * Text Section
* --------------------------------------------- */
.additional_text {
  display: none;
  max-width: 800px;
}

/* * Utility Classes
* --------------------------------------------- */
.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index--1 {
  z-index: -1;
}

.gradient_dark::before,
.gradient_dark::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 25%;
  left: 0;
}

.gradient_dark::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.gradient_dark::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.gradient_dark.top_only::after {
  content: '';
  display: none;
}

.gradient_dark.bottom_only::before {
  content: '';
  display: none;
}

@media (max-width: 576px) {
  .mw-tiny {
    max-width: 250px;
  }

  .no-br-mobile br {
    display: none;
  }
}

/* * Intro section
* --------------------------------------------- */
.intro_background_spacer__wrapper {
  /* margin-block: -20%;
  position: relative;
  z-index: 2; */
  margin-top: -27%;
  margin-bottom: -18%;
  position: relative;
  z-index: 2;
}

.intro_background_spacer__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cRed);
  z-index: -1;
  filter: brightness(1);
  transition: 0.3s all ease;
}

.epilepsy__consent--given .intro_background_spacer__wrapper::before {
  animation: flicker 3s ease infinite;
  filter: brightness(0.15);
}

@keyframes flicker {
  0% {
    filter: brightness(0.15);
  }
  50% {
    filter: brightness(1.5);
  }
  100% {
    filter: brightness(0.15);
  }
}

.intro_background_spacer__wrapper :is(figure, img) {
  width: 100%;
}

.intro_second_headline br:nth-of-type(2) {
  display: none;
}

@media (max-width: 768px) {
  .book_packshot {
    max-width: 60%;
  }

  .intro_second_headline br:nth-of-type(1) {
    display: none;
  }

  .intro_second_headline br:nth-of-type(2) {
    display: inline;
  }
}

/* * Order Section
* --------------------------------------------- */
.order_headline_group {
  margin-top: -21rem;
}

.order_promotional_image {
  position: relative;
}

.order_promotional_image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 85%
  );
}

.order_promotional_video__wrapper {
  max-width: 850px;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.order_promotional_video video {
  aspect-ratio: initial !important;
}

.order_promotional_video__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #080808 85%);
}

.order_promotional_video__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #080808 85%);
}

.order_promotional_video {
  position: relative;
  width: 100%;
}

.order_promotional_video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #080808 85%);
}

.order_promotional_video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  z-index: 3;

  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #080808 85%);
}

@media (max-width: 576px) {
  .order_headline_group {
    margin-top: -11rem;
  }

  .order_promotional_image {
    max-width: 300px;
  }
}

/* * Merch Animation
* --------------------------------------------- */
.merch_asset {
  transform: scale(0.75);
  transition: 1s all ease;
}

.merch_section.active .merch_asset {
  transform: scale(1);
}

/* * Consent / Cookies
* --------------------------------------------- */
#change-consent {
  cursor: pointer;
}

/* * YouTube Single
* --------------------------------------------- */
.youtube_embed__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube_embed__wrapper .wp-block-embed {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube_embed__wrapper .wp-block-embed__wrapper {
  border: 3px solid var(--cRed);
  width: 100%;
  max-width: 992px;
  aspect-ratio: 16 / 9;
  border-radius: var(--b-radius-xl);
  overflow: hidden;
}

.youtube_embed__wrapper .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

/* * Leafs
* --------------------------------------------- */
.leaf {
  position: absolute;
  width: 7.5rem;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.leaf img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.leaf.left {
  left: 0;
}

.leaf.right {
  right: 0;
}

.leaf.right.order {
  top: 3rem;
}

.leaf.left.order,
.leaf.right.order {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .leaf {
    opacity: 0.5;
  }
}

.z-index-2 {
  z-index: 2;
}

/* * Password Form
* --------------------------------------------- */
.post-password-form {
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-block: 3rem;
}

.post-password-form p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 550px;
}

.post-password-form input[type='submit'] {
  margin-top: 1.5rem;
  color: var(--cDark);
}

/* * Law
* --------------------------------------------- */
.law strong {
  text-transform: uppercase;
}

/* * Vuetify Iframe
* --------------------------------------------- */
.vue-iframe-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.vue-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* * Error Messages
* --------------------------------------------- */
#errorMessage .modal-header {
  border: none;
}

#errorMessage .modal-content {
  background: var(--cDark);
  border: 2px solid var(--cRed);
  border-radius: var(--b-radius-xl);
  padding: 2rem;
}

#errorMessage .modal-header .btn-close {
  filter: contrast(0);
}

/* * Social Media Fix
* --------------------------------------------- */
.soMeOnlyTitles {
  display: none;
}

body.socialMediaBrowser .soMeOnlyTitles {
  display: block;
}

body.socialMediaBrowser .videoSwitch {
  display: none !important;
}

.maintenanceCont {
  color: #fff;
}

/* * YouTube
* --------------------------------------------- */
.wp-block-embed iframe,
.wp-block-video video,
.aws_video__wrapper video {
  /* border: 2px solid var(--cRed);
  border-radius: var(--b-radius-xl); */
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.wp-block-embed.wp-embed-aspect-9-16 iframe,
.wp-block-video video,
.aws_video__wrapper video {
  aspect-ratio: 9 / 16;
}

.phone_mockup__wrapper {
  max-width: 350px;
  position: relative;
}

.phone_mockup {
  margin: 0;
}

.phone_mockup.back {
  position: relative;
}

.phone_mockup.back::before {
  box-shadow: 10px 20px 30px rgba(255, 0, 0, 0.35);
  border-radius: 40px;
  z-index: -1;
  position: absolute;
  content: '';
  top: 1%;
  left: 1%;
  width: 96%;
  height: 97%;
}

.phone_mockup.front {
  position: absolute;
  top: 2.5%;
  left: 49.5%;
  transform: translateX(-50%);
  z-index: 3;
  width: 48%;
}

.phone_mockup__wrapper
  :is(.wp-block-embed, .wp-block-video, .aws_video__wrapper) {
  position: absolute;
  z-index: 2;
  top: 11%;
  left: 49.65%;
  transform: translateX(-50%);
  width: 85%;
  margin: 0;
}

/* * Epilepsy Warning
* --------------------------------------------- */
#epilepsyWarningModal {
  z-index: 1050;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--cDark);
}

video.background_video {
  transition: 1s all ease;
}

body:not(.epilepsy__consent--given) video.background_video {
  opacity: 0;
}

.epilepsy_background {
  position: absolute;
  z-index: -1;
  max-width: 1000px;
  max-height: 1000px;
  filter: brightness(0.5);
  transform: scale(1) rotate(0deg);
  transition: 2s all ease;
}

#epilepsyWarningModal.epilepsyModal--closing .epilepsy_background {
  transform: scale(1.4) rotate(-25deg);
}

/* * Preloader
* --------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--cDark);
  z-index: 1060;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* * Interactivity UI
* --------------------------------------------- */
#interactivity-ui {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  transition: 0.3s all ease;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  pointer-events: none;
}

#interactivity-ui.down {
  bottom: 1rem;
}

.ui_button {
  background: var(--cRed);
  border-radius: 50px;
  padding: 10px 35px 5px 35px;
  color: var(--cDark);
  border: none;
  font-family: var(--family-headline);
  position: relative;
  font-size: 16px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  pointer-events: all;
}

.ui_button.video {
  width: 164px;
}

.ui_button.audio {
  width: 176px;
}

.ui_button__text {
  display: flex;
}

.ui_button__text--status {
  margin-left: 0.25rem;
}

.ui_button__icon {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 25px;
  height: 25px;
  background: var(--cDark);
  border-radius: 50%;
  transition: 0.3s all ease;
  transform: scale(1);
}

.ui_button.on .ui_button__icon {
  left: calc(100% - 29px); /* 100% - icon size - offset */
}

.ui_button:hover .ui_button__icon {
  transform: scale(0.8);
}

/* * Main Price
* --------------------------------------------- */
@media (min-width: 769px) {
  .price_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .price_grid__item1 {
    grid-column: 1;
    grid-row: 1;
    width: 60%;
    z-index: 1;
  }

  .price_grid__item2 {
    grid-column: 1;
    grid-row: 1;
    width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
  }
}
