:root {
  --color-dark: #161616;
  --font-mont: 'Montserrat', sans-serif;
  --font-unb: 'Unbounded', sans-serif;
  --light-gray: #E4E1DC;
  --color-white: #ffffff;
  --green-color: #21F891;
  --bg-main: #FFFDE5;
  --color-red: #D50004;
}

.container {
  max-width: 375px;
  box-shadow: rgb(217, 217, 217) 0px 0px 30px -6px;
  margin: 0 auto;
  background: var(--bg-main);
  position: relative;
  padding: 15px 18px;
}

.empty-space {
  min-height: 64px;
}

.button {
  background-color: var(--color-red);
  font-size: 10px;
  line-height: 130%;
  font-weight: 600;
  font-family: var(--font-unb);
  text-transform: uppercase;
  padding: 16px 0;
  width: 100%;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.button-fixed {
  position: fixed;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.button-fixed.visible {
  opacity: 1;
  pointer-events: auto;
}