@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, mark {
  font-size: inherit;
  font-weight: inherit;
}

mark {
  color: inherit;
  background-color: transparent;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active,
textarea:focus {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

h1 {
  font-family: "Roboto Medium", sans-serif;
  font-style: normal;
  font-size: 6rem;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #E9E9E9;
}
@media screen and (max-width: 1440px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.6rem;
    line-height: 1em;
  }
}

h2, .eyebrow {
  font-family: "Din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.95rem;
  line-height: 1.1em;
  text-transform: uppercase;
  color: #E9E9E9;
}
@media screen and (max-width: 1440px) {
  h2, .eyebrow {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  h2, .eyebrow {
    font-size: 1.2rem;
  }
}

h3 {
  font-family: "Din-2014", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  line-height: 1.1em;
  text-transform: uppercase;
  color: black;
}
@media screen and (max-width: 1440px) {
  h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: black;
}
@media screen and (max-width: 1440px) {
  h4 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.2rem;
  }
}

p, a, li, td {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: normal;
  color: black;
}
@media screen and (max-width: 1440px) {
  p, a, li, td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  p, a, li, td {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  transition: all 0.5s;
}
a:hover {
  color: #CC332E;
  transition: all 0.5s;
}

.in-text-href {
  color: #CC332E;
}
.in-text-href:hover {
  color: black;
}
@media screen and (max-width: 768px) {
  .in-text-href {
    text-decoration: underline;
  }
}

button, .pseudo_button {
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 1.1rem;
  background-color: #CC332E;
  padding: 18px 32px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: 1px;
  text-align: center;
  color: white;
  transition: all 0.5s;
}
button svg, .pseudo_button svg {
  fill: white;
  height: 0.8rem;
  position: relative;
  transition: left 0.5s;
}
button:hover, .pseudo_button:hover {
  border: none;
  background: #dc5b56;
  color: white;
  transition: all 0.5s;
}
button:hover svg, .pseudo_button:hover svg {
  fill: white;
  left: 7px;
  transition: left 0.5s;
}
button:disabled, .pseudo_button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 1440px) {
  button, .pseudo_button {
    font-size: 1rem;
    padding: 10px 20px;
    column-gap: 0.9rem;
  }
  button:hover svg, .pseudo_button:hover svg {
    left: 5px;
  }
}
@media screen and (max-width: 768px) {
  button, .pseudo_button {
    font-size: 1rem;
    padding: 15px 20px;
    column-gap: 1.1rem;
  }
  button:hover svg, .pseudo_button:hover svg {
    left: 7px;
  }
}

.no-fill-button {
  border: 1px solid white;
  background: none;
  transition: border 0.5s;
}
.no-fill-button:hover {
  border: 1px solid #CC332E;
  background: none;
  transition: border 0.5s;
}

.in-text-button {
  background: none;
  color: black;
  padding: 10px 0;
  column-gap: 0.7rem;
  transition: all 0.5s;
}
.in-text-button svg {
  fill: black;
  transition: all 0.5s;
}
.in-text-button:hover {
  color: #CC332E;
  background: none;
  transition: all 0.5s;
}
.in-text-button:hover svg {
  fill: #CC332E;
  transition: all 0.5s;
}
@media screen and (max-width: 1440px) {
  .in-text-button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .in-text-button {
    text-decoration: underline;
    font-size: 1rem;
  }
}

.black-button {
  background: black;
}
.black-button:hover {
  background: rgb(70, 70, 70);
}

.button_invisible {
  background: none;
  transition: background-color 0.5s;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.button_invisible:hover {
  background: none;
}

.checkout-button .button-icon, .animated-checkout-button .button-icon {
  height: 1.2rem;
}

.checkout-button {
  overflow: hidden;
}
.checkout-button .button-icon {
  left: 5px;
}

.animated-checkout-button .checkout-button__text {
  animation-name: rollin-2;
  animation-duration: 4s;
}
.animated-checkout-button .button-icon {
  animation-name: rollin;
  animation-duration: 4s;
}

@keyframes rollin {
  0% {
    left: 5px;
  }
  25% {
    left: 5px;
  }
  39% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    left: 60px;
  }
  41% {
    opacity: 0;
    left: -150px;
  }
  42% {
    opacity: 1;
  }
  75% {
    left: 5px;
  }
  100% {
    left: 5px;
  }
}
@keyframes rollin-2 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
mark {
  color: #CC332E;
}

.swiper {
  width: 100%;
  height: 400px;
  --swiper-theme-color: #CC332E;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ring {
  --uib-size: 40px;
  --uib-speed: 2s;
  --uib-color: black;
  height: var(--uib-size);
  width: var(--uib-size);
  vertical-align: middle;
  transform-origin: center;
  animation: rotate var(--uib-speed) linear infinite;
}

.ring circle {
  fill: none;
  stroke: white;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: stretch calc(var(--uib-speed) * 0.75) ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes stretch {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -124px;
  }
}
dialog {
  border: none;
  border-radius: 0;
  margin: auto;
  padding: 20px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  text-align: center;
  z-index: 99999;
}
dialog::backdrop {
  z-index: 99998;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
}
dialog h4 {
  margin-bottom: 1rem;
}
dialog form {
  margin-top: 1.5rem;
}
dialog form button {
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px !important;
}

body {
  display: block;
  position: static;
  width: auto;
  overscroll-behavior: none;
}

.fixed-header {
  position: fixed;
  top: 3vh;
  height: 70px;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1440px) {
  .fixed-header {
    height: 55px;
    top: 2vh;
  }
}
.fixed-header .top-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -3vh;
  background-color: #CC332E;
  padding: 0.5rem;
}
@media screen and (max-width: 1440px) {
  .fixed-header .top-banner {
    top: -2vh;
  }
}
@media screen and (max-width: 768px) {
  .fixed-header .top-banner {
    padding: 0.2rem;
  }
}
.fixed-header .top-banner p {
  color: #FFFFFF;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
.fixed-header__wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  background-color: rgba(0, 0, 0, 0.87);
  top: -3vh;
  transition: all 0.5s;
}
@media screen and (max-width: 1440px) {
  .fixed-header__wrapper {
    top: -2vh;
  }
}
.fixed-header__wrapper .logo-img {
  height: 100%;
  display: flex;
  align-items: center;
}
.fixed-header__wrapper .logo-img img {
  height: 50%;
}
.fixed-header__wrapper .menu {
  display: flex;
  align-items: center;
  column-gap: 3vw;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .fixed-header__wrapper .menu {
    column-gap: 1.5vw;
  }
}
.fixed-header__wrapper .menu__navigation {
  display: flex;
  align-items: center;
  column-gap: 3vw;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .fixed-header__wrapper .menu__navigation {
    column-gap: 1.5vw;
  }
}
.fixed-header__wrapper .menu__navigation .menu__link {
  font-family: "Din-2014", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: 2px;
  color: white;
}
.fixed-header__wrapper .menu__navigation .menu__link:hover {
  color: #CC332E;
}
@media screen and (max-width: 1440px) {
  .fixed-header__wrapper .menu__navigation .menu__link {
    font-size: 1rem;
  }
}
.fixed-header__wrapper .menu__navigation .mobile-only {
  display: none;
}
.fixed-header__wrapper .menu__navigation .drop-down-menu {
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fixed-header__wrapper .menu__navigation .drop-down-menu:hover .drop-down-menu__content {
  opacity: 1;
  max-height: 350px;
  padding: 20px 30px;
  transition: max-height 0s, padding 0s, opacity 0.5s;
}
.fixed-header__wrapper .menu__navigation .drop-down-menu__content {
  background-color: rgba(0, 0, 0, 0.87);
  position: absolute;
  top: 41px;
  left: -30px;
  z-index: 30;
  min-width: 350px;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  overflow: hidden;
  opacity: 0;
  max-height: 0px;
  transition: opacity 0.5s 1s, max-height 0s 1.5s, padding 0s 1.5s;
}
.fixed-header__wrapper .menu__navigation .drop-down-menu__link {
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3em;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 1440px) {
  .fixed-header__wrapper .menu__navigation .drop-down-menu__content {
    min-width: 250px;
    top: 40px;
    left: -15px;
  }
  .fixed-header__wrapper .menu__navigation .drop-down-menu__content .drop-down-menu:hover .drop-down-menu__content {
    padding: 15px 15px;
  }
  .fixed-header__wrapper .menu__navigation .drop-down-menu__link {
    font-size: 1rem;
  }
}
.fixed-header__wrapper .menu .pull-left form .btn-group .dropdown-toggle {
  border: none;
  text-decoration: none;
  color: #FFFFFF;
}
.fixed-header__wrapper .menu .pull-left form .btn-group .dropdown-toggle:hover {
  color: #CC332E;
}
.fixed-header__wrapper .menu .pull-left form .btn-group .dropdown-toggle img {
  vertical-align: middle;
  height: 1em;
  margin-top: -0.2em;
}
.fixed-header__wrapper .menu .pull-left form .btn-group .dropdown-menu {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.87);
  top: 150%;
}
.fixed-header__wrapper .menu .pull-left form .btn-group .dropdown-menu li .language-select {
  font-family: "Din-2014", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
  color: white;
  text-align: left;
  border: none;
}
.fixed-header__wrapper .menu .pull-left form .btn-group .dropdown-menu li .language-select img {
  vertical-align: middle;
  height: 0.9em;
  margin-top: -0.2em;
}
.fixed-header__wrapper .menu__button {
  width: auto;
  height: 100%;
}
.fixed-header__wrapper .menu__burger {
  display: none;
  width: auto;
  height: 80%;
}
.fixed-header__wrapper .menu__burger svg {
  height: 40%;
}
.fixed-header__wrapper .menu__burger:hover svg {
  fill: #CC332E;
  left: 0;
  transition: all 0.5s;
}
.fixed-header__wrapper .menu__checkout-ready-button .checkout-ready {
  opacity: 0;
}
.fixed-header__wrapper .menu__quit {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixed-header {
    height: 8vh;
  }
  .fixed-header__wrapper {
    background-color: #181515;
  }
  .fixed-header__wrapper .menu__navigation {
    display: none;
    opacity: 0;
    transition: opacity 0.5s 1s;
  }
  .fixed-header__wrapper .menu__button {
    display: none;
  }
  .fixed-header__wrapper .menu__burger {
    display: block;
  }
  .fixed-header__wrapper .menu__checkout-ready-button svg .checkout-ready {
    opacity: 1;
  }
}
.fixed-header .no-background {
  background: none;
  top: 0;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .header-opened {
    width: 100vw;
    height: 100vh;
    top: 0;
    background-color: #181515;
    transition: height 0.3s;
  }
  .header-opened .fixed-header__wrapper {
    top: 0;
    transition: top 0s;
  }
  .header-opened .fixed-header__wrapper .logo-img {
    display: none;
  }
  .header-opened .fixed-header__wrapper .menu {
    padding: 4vh 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .header-opened .fixed-header__wrapper .menu__quit {
    width: 100%;
    display: flex;
    justify-content: end;
  }
  .header-opened .fixed-header__wrapper .menu__quit svg {
    height: 20px;
    width: 20px;
  }
  .header-opened .fixed-header__wrapper .menu__navigation {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 1.5vh;
    align-items: start;
    padding: 20vh 0 3vh 5vw;
    opacity: 1;
    transition: opacity 0.5s 3s;
  }
  .header-opened .fixed-header__wrapper .menu__navigation .menu__link {
    color: #e9e9e9;
    font-size: 1.25rem;
    font-weight: 800;
    font-style: italic;
  }
  .header-opened .fixed-header__wrapper .menu__navigation .menu__gap {
    width: 100%;
    height: 3px;
  }
  .header-opened .fixed-header__wrapper .menu__navigation .secondary {
    font-weight: 400;
    font-size: 1rem;
    font-style: normal;
  }
  .header-opened .fixed-header__wrapper .menu__navigation .desktop-only {
    display: none;
  }
  .header-opened .fixed-header__wrapper .menu__navigation .mobile-only {
    display: flex;
  }
  .header-opened .fixed-header__wrapper .menu__language {
    display: none;
  }
  .header-opened .fixed-header__wrapper .menu__button {
    display: flex;
    height: 45px;
    margin-left: 5vw;
  }
  .header-opened .fixed-header__wrapper .menu__burger {
    display: none;
  }
}
.fixed-counter {
  width: 130px;
  height: 120px;
  background: #CC332E;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 40vh;
  right: 0;
  z-index: 20;
  padding: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #E9E9E9;
  display: flex;
  align-items: center;
}
.fixed-counter .counter-area {
  display: block;
}
.fixed-counter .counter-close {
  position: absolute;
  top: -1.6em;
  right: 5px;
  color: black;
  text-shadow: 0 0 2px white;
}
.fixed-counter .counter-close:hover {
  color: #CC332E;
}
@media screen and (max-width: 1440px) {
  .fixed-counter {
    width: 110px;
    height: 95px;
    font-size: 1rem;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fixed-counter {
    width: 130px;
    height: 100px;
    font-size: 1rem;
    padding: 20px;
    bottom: 0;
  }
}

.medium-modal-dialog {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  z-index: 150;
  display: flex;
  overflow: auto;
  height: 0;
  opacity: 0;
  transition: height 0s 0.5s, opacity 0.5s;
}
@media screen and (max-height: 768px) {
  .medium-modal-dialog {
    justify-content: start;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .medium-modal-dialog {
    justify-content: start;
  }
  .medium-modal-dialog__wrapper {
    margin-top: 20px;
  }
}
.medium-modal-dialog__wrapper {
  width: 600px;
  background: #E9E9E9;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1rem;
}
.medium-modal-dialog__wrapper .santa {
  display: none;
}
.medium-modal-dialog__wrapper .close_modal {
  position: absolute;
  z-index: 100;
  top: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
}
.medium-modal-dialog__wrapper .close_modal svg {
  height: 80%;
  width: 80%;
  stroke: black;
  transition: stroke 0.5s;
}
.medium-modal-dialog__wrapper .close_modal:hover svg {
  stroke: #CC332E;
  left: 0;
  transition: stroke 0.5s;
}
.medium-modal-dialog__wrapper .booking-form {
  z-index: 10;
  padding: 40px;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  color: #181515;
}
.medium-modal-dialog__wrapper .booking-form__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  padding-bottom: 15px;
}
.medium-modal-dialog__wrapper .booking-form__subtitle {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  font-size: 1.15rem;
  padding-bottom: 10px;
}
.medium-modal-dialog__wrapper .booking-form__switcher {
  display: flex;
  gap: 10px;
  margin: 10px 0 20px 0;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product {
  padding: 0 !important;
  width: 50%;
  height: auto;
  flex: 1;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  user-select: none;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-background {
  position: absolute;
  top: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-background .background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.5px);
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .background-img.zoomed-150 {
  transform: scale(1.6) translateX(5px);
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .background-img.zoomed-110 {
  transform: scale(2) translateX(10px);
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper {
  padding: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.3s;
  transform: scale(1);
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper p {
  margin-bottom: 0;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper .subtitle {
  color: #989898;
  transition: all 0.3s;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper .price {
  margin: 15px 0 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper .selected {
  display: none;
  text-align: center;
  margin-top: 10px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 500;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product .product-wrapper .not-selected {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #ffffff;
  background: none;
  border: 1px solid #ffffff;
  font-weight: 300;
  transition: all 0.3s;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input {
  display: none;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product:hover .product-wrapper {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product:hover .product-wrapper .subtitle {
  color: #ffffff;
  transition: all 0.3s;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product:hover .product-wrapper .not-selected {
  color: #000000;
  background: #ffffff;
  transition: all 0.3s;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input:checked + .product-wrapper {
  background: rgba(201, 51, 46, 0.95);
  box-shadow: 2px 2px 5px #000;
  transition: all 0.3s;
  transform: scale(1.03);
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input:checked + .product-wrapper .title, .medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input:checked + .product-wrapper .subtitle, .medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input:checked + .product-wrapper .price {
  color: #ffffff;
  transition: all 0.3s;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input:checked + .product-wrapper .selected {
  display: block;
}
.medium-modal-dialog__wrapper .booking-form__switcher .booking-form__product input:checked + .product-wrapper .not-selected {
  display: none;
}
.medium-modal-dialog__wrapper .booking-form__validation {
  width: 100%;
  height: auto;
  font-size: 1.15rem;
  color: #CC332E;
  visibility: hidden;
}
.medium-modal-dialog__wrapper .booking-form__validation .validation-cross {
  font-size: 1.5em;
}
.medium-modal-dialog__wrapper .booking-form__button {
  margin: 10px 0 5px 0;
}
.medium-modal-dialog__wrapper .booking-form__button .ring {
  display: none;
  justify-content: center;
  position: relative;
  height: 1em;
  width: 1em;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
}
.medium-modal-dialog__wrapper .booking-form__button:disabled {
  background: #ce928d;
}
.medium-modal-dialog__wrapper .booking-form__button:disabled .ring {
  display: block;
}
.medium-modal-dialog__wrapper .booking-form__loading-message {
  display: none;
}
.medium-modal-dialog__wrapper .booking-form label {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  font-size: 1.15rem;
  padding: 0;
  margin: 0;
  height: 6rem;
}
.medium-modal-dialog__wrapper .booking-form label .datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border: 2px solid #CC332E;
  background-color: #CC332E;
  border-radius: 50%;
  transition: all 0.5s;
}
.medium-modal-dialog__wrapper .booking-form label .datepicker-cell.highlighted:not(.selected):not(.range):not(.today) a {
  color: white;
  transition: all 0.5s;
}
.medium-modal-dialog__wrapper .booking-form label .datepicker-cell.highlighted:hover {
  background-color: #f9f9f9 !important;
  transition: all 0.5s;
}
.medium-modal-dialog__wrapper .booking-form label .datepicker-cell.highlighted:hover a {
  color: #CC332E !important;
  transition: all 0.5s;
}
.medium-modal-dialog__wrapper .booking-form label .datepicker-cell.selected, .medium-modal-dialog__wrapper .booking-form label .datepicker-cell.selected:hover {
  background-color: #CC332E;
  border: 1px solid white;
  border-radius: 0;
  box-shadow: black;
}
.medium-modal-dialog__wrapper .booking-form .form-field {
  width: 100%;
  height: 38px;
  padding: 6px 16px;
  margin: 4px 0 0 0;
  background: #dedede;
  font-size: 1.15rem;
}
.medium-modal-dialog__wrapper .booking-form .form-field:disabled {
  color: rgb(195, 195, 195);
  background: rgb(225, 225, 225);
}
.medium-modal-dialog__wrapper .booking-form .booking_extra {
  padding: 0;
  display: flex;
  align-items: center;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra input {
  margin: 0 !important;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra input[type=number]::-webkit-outer-spin-button,
.medium-modal-dialog__wrapper .booking-form .booking_extra input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra button {
  height: 38px;
  margin: 0;
  padding: 4px 6px;
}
@media screen and (max-width: 768px) {
  .medium-modal-dialog__wrapper .booking-form .booking_extra button {
    height: 30px;
  }
}
.medium-modal-dialog__wrapper .booking-form .booking_extra label {
  display: flex;
  align-items: center;
  justify-content: left;
  padding-top: 0;
  margin-bottom: 0;
  height: fit-content;
  margin-right: auto;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra label a {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra label a svg {
  height: 1.2em;
  margin: 0 0.3em;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra label a svg .svg-bg {
  fill: #858585;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra label a:hover {
  text-decoration: underline;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra label a:hover svg .svg-bg {
  fill: #CC332E;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .booking-form__extra, .medium-modal-dialog__wrapper .booking-form .booking_extra .booking-form__persons {
  width: 5em;
  text-align: center;
  margin-right: 0.2rem;
}
@media screen and (max-width: 1440px) {
  .medium-modal-dialog__wrapper .booking-form .booking_extra .booking-form__extra, .medium-modal-dialog__wrapper .booking-form .booking_extra .booking-form__persons {
    width: 3em;
  }
}
.medium-modal-dialog__wrapper .booking-form .booking_extra img {
  height: 1rem;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .input-tooltip {
  position: relative;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .input-tooltip .input-options {
  display: flex;
  width: calc(100% + 16px);
  flex-direction: column;
  background: #dedede;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
  align-items: center;
  position: absolute;
  bottom: 100%;
  max-height: 7.5rem;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 1000;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .input-tooltip .input-options .option {
  cursor: pointer;
  padding: 2px 4px;
  width: 100%;
  text-align: center;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .input-tooltip .input-options .option:first-child {
  padding-top: 4px;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .input-tooltip .input-options .option:last-child {
  padding-bottom: 4px;
}
.medium-modal-dialog__wrapper .booking-form .booking_extra .input-tooltip .input-options .option:hover {
  background: #c8c8c8;
}
.medium-modal-dialog__wrapper .booking-form .zero-padding {
  padding: 0 !important;
}
.medium-modal-dialog__wrapper .booking-form .captcha-container {
  margin-top: 10px;
}
.medium-modal-dialog__wrapper .booking-form .captcha-container .form-group {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .medium-modal-dialog__wrapper {
    width: 90%;
    max-width: 500px;
  }
  .medium-modal-dialog__wrapper .close_modal {
    top: 7px;
    right: 7px;
    height: 20px;
    width: 20px;
  }
  .medium-modal-dialog__wrapper .booking-form {
    padding: 20px;
  }
  .medium-modal-dialog__wrapper .booking-form__title {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  .medium-modal-dialog__wrapper .booking-form__subtitle {
    padding-bottom: 10px;
  }
  .medium-modal-dialog__wrapper .booking-form__validation {
    font-size: 1.15rem;
  }
  .medium-modal-dialog__wrapper .booking-form__button {
    margin: 5px 0 4px auto;
    font-size: 1.15rem;
  }
  .medium-modal-dialog__wrapper .booking-form label {
    font-size: 1.15rem;
    padding-top: 5px;
  }
  .medium-modal-dialog__wrapper .booking-form .form-field {
    height: 30px;
    padding: 4px 8px;
    margin: 4px 0;
    font-size: 1.15rem;
  }
}

.modal-opened {
  height: 100%;
  opacity: 1;
  transition: height 0s, opacity 0.5s;
}

.new-year-style .medium-modal-dialog__wrapper {
  overflow: hidden;
}
.new-year-style .medium-modal-dialog__wrapper .santa {
  display: block;
  position: absolute;
  height: 150px;
  right: -30px;
  bottom: -35px;
  transform: rotate(-10deg);
  animation: ease-out 1s santa;
}
@keyframes santa {
  from {
    right: -100px;
    bottom: -100px;
  }
  to {
    right: -30px;
    bottom: -35px;
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow {
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(1) {
  opacity: 0.5009;
  transform: translate(95.8832vw, -10px) scale(0.6794);
  animation: fall-1 13s -15s linear infinite;
}
@keyframes fall-1 {
  65.161% {
    transform: translate(91.1712vw, 65.161vh) scale(0.6794);
  }
  to {
    transform: translate(93.5272vw, 100vh) scale(0.6794);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.9177;
  transform: translate(63.0296vw, -10px) scale(0.0849);
  animation: fall-2 29s -20s linear infinite;
}
@keyframes fall-2 {
  39.11% {
    transform: translate(53.525vw, 39.11vh) scale(0.0849);
  }
  to {
    transform: translate(58.2773vw, 100vh) scale(0.0849);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.6923;
  transform: translate(35.2347vw, -10px) scale(0.1522);
  animation: fall-3 22s -7s linear infinite;
}
@keyframes fall-3 {
  53.82% {
    transform: translate(40.9349vw, 53.82vh) scale(0.1522);
  }
  to {
    transform: translate(38.0848vw, 100vh) scale(0.1522);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.8325;
  transform: translate(24.4029vw, -10px) scale(0.3576);
  animation: fall-4 22s -21s linear infinite;
}
@keyframes fall-4 {
  48.897% {
    transform: translate(31.8243vw, 48.897vh) scale(0.3576);
  }
  to {
    transform: translate(28.1136vw, 100vh) scale(0.3576);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.2804;
  transform: translate(26.1818vw, -10px) scale(0.6269);
  animation: fall-5 15s -24s linear infinite;
}
@keyframes fall-5 {
  52.712% {
    transform: translate(19.6529vw, 52.712vh) scale(0.6269);
  }
  to {
    transform: translate(22.91735vw, 100vh) scale(0.6269);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.6978;
  transform: translate(6.2166vw, -10px) scale(0.7314);
  animation: fall-6 10s -20s linear infinite;
}
@keyframes fall-6 {
  76.761% {
    transform: translate(-1.8717vw, 76.761vh) scale(0.7314);
  }
  to {
    transform: translate(2.17245vw, 100vh) scale(0.7314);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.4992;
  transform: translate(31.8007vw, -10px) scale(0.3834);
  animation: fall-7 21s -20s linear infinite;
}
@keyframes fall-7 {
  32.532% {
    transform: translate(36.9526vw, 32.532vh) scale(0.3834);
  }
  to {
    transform: translate(34.37665vw, 100vh) scale(0.3834);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.4569;
  transform: translate(25.6056vw, -10px) scale(0.0134);
  animation: fall-8 15s -20s linear infinite;
}
@keyframes fall-8 {
  73.945% {
    transform: translate(25.2519vw, 73.945vh) scale(0.0134);
  }
  to {
    transform: translate(25.42875vw, 100vh) scale(0.0134);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.9313;
  transform: translate(40.2587vw, -10px) scale(0.1898);
  animation: fall-9 23s -15s linear infinite;
}
@keyframes fall-9 {
  32.962% {
    transform: translate(38.0196vw, 32.962vh) scale(0.1898);
  }
  to {
    transform: translate(39.13915vw, 100vh) scale(0.1898);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.1058;
  transform: translate(31.0725vw, -10px) scale(0.5739);
  animation: fall-10 30s -29s linear infinite;
}
@keyframes fall-10 {
  52.787% {
    transform: translate(32.3763vw, 52.787vh) scale(0.5739);
  }
  to {
    transform: translate(31.7244vw, 100vh) scale(0.5739);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.6214;
  transform: translate(47.7246vw, -10px) scale(0.9498);
  animation: fall-11 30s -30s linear infinite;
}
@keyframes fall-11 {
  72.257% {
    transform: translate(49.3884vw, 72.257vh) scale(0.9498);
  }
  to {
    transform: translate(48.5565vw, 100vh) scale(0.9498);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.0259;
  transform: translate(51.213vw, -10px) scale(0.4365);
  animation: fall-12 22s -6s linear infinite;
}
@keyframes fall-12 {
  38.785% {
    transform: translate(52.0321vw, 38.785vh) scale(0.4365);
  }
  to {
    transform: translate(51.62255vw, 100vh) scale(0.4365);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.6196;
  transform: translate(24.0318vw, -10px) scale(0.2221);
  animation: fall-13 23s -18s linear infinite;
}
@keyframes fall-13 {
  30.845% {
    transform: translate(31.0473vw, 30.845vh) scale(0.2221);
  }
  to {
    transform: translate(27.53955vw, 100vh) scale(0.2221);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.6267;
  transform: translate(57.1387vw, -10px) scale(0.1295);
  animation: fall-14 16s -12s linear infinite;
}
@keyframes fall-14 {
  47.542% {
    transform: translate(56.9764vw, 47.542vh) scale(0.1295);
  }
  to {
    transform: translate(57.05755vw, 100vh) scale(0.1295);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.1422;
  transform: translate(56.3707vw, -10px) scale(0.4288);
  animation: fall-15 11s -6s linear infinite;
}
@keyframes fall-15 {
  63.359% {
    transform: translate(52.9559vw, 63.359vh) scale(0.4288);
  }
  to {
    transform: translate(54.6633vw, 100vh) scale(0.4288);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.4315;
  transform: translate(73.602vw, -10px) scale(0.4878);
  animation: fall-16 11s -25s linear infinite;
}
@keyframes fall-16 {
  62.744% {
    transform: translate(80.0725vw, 62.744vh) scale(0.4878);
  }
  to {
    transform: translate(76.83725vw, 100vh) scale(0.4878);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.5547;
  transform: translate(8.6944vw, -10px) scale(0.7584);
  animation: fall-17 14s -17s linear infinite;
}
@keyframes fall-17 {
  66.863% {
    transform: translate(18.4391vw, 66.863vh) scale(0.7584);
  }
  to {
    transform: translate(13.56675vw, 100vh) scale(0.7584);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.4237;
  transform: translate(31.6632vw, -10px) scale(0.7347);
  animation: fall-18 16s -9s linear infinite;
}
@keyframes fall-18 {
  66.841% {
    transform: translate(21.8477vw, 66.841vh) scale(0.7347);
  }
  to {
    transform: translate(26.75545vw, 100vh) scale(0.7347);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.0015;
  transform: translate(36.0965vw, -10px) scale(0.5163);
  animation: fall-19 16s -9s linear infinite;
}
@keyframes fall-19 {
  58.734% {
    transform: translate(27.7537vw, 58.734vh) scale(0.5163);
  }
  to {
    transform: translate(31.9251vw, 100vh) scale(0.5163);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.26;
  transform: translate(29.3808vw, -10px) scale(0.1576);
  animation: fall-20 15s -28s linear infinite;
}
@keyframes fall-20 {
  59.616% {
    transform: translate(25.7243vw, 59.616vh) scale(0.1576);
  }
  to {
    transform: translate(27.55255vw, 100vh) scale(0.1576);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.9908;
  transform: translate(94.7626vw, -10px) scale(0.2904);
  animation: fall-21 28s -4s linear infinite;
}
@keyframes fall-21 {
  57.342% {
    transform: translate(94.0799vw, 57.342vh) scale(0.2904);
  }
  to {
    transform: translate(94.42125vw, 100vh) scale(0.2904);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.5148;
  transform: translate(48.7664vw, -10px) scale(0.518);
  animation: fall-22 25s -18s linear infinite;
}
@keyframes fall-22 {
  39.255% {
    transform: translate(44.6921vw, 39.255vh) scale(0.518);
  }
  to {
    transform: translate(46.72925vw, 100vh) scale(0.518);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.3196;
  transform: translate(29.883vw, -10px) scale(0.1861);
  animation: fall-23 21s -22s linear infinite;
}
@keyframes fall-23 {
  60.873% {
    transform: translate(32.8373vw, 60.873vh) scale(0.1861);
  }
  to {
    transform: translate(31.36015vw, 100vh) scale(0.1861);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.989;
  transform: translate(36.8383vw, -10px) scale(0.4627);
  animation: fall-24 10s -9s linear infinite;
}
@keyframes fall-24 {
  31.78% {
    transform: translate(44.5063vw, 31.78vh) scale(0.4627);
  }
  to {
    transform: translate(40.6723vw, 100vh) scale(0.4627);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.1966;
  transform: translate(92.9065vw, -10px) scale(0.108);
  animation: fall-25 26s -5s linear infinite;
}
@keyframes fall-25 {
  72.583% {
    transform: translate(91.3239vw, 72.583vh) scale(0.108);
  }
  to {
    transform: translate(92.1152vw, 100vh) scale(0.108);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.4205;
  transform: translate(21.4009vw, -10px) scale(0.4092);
  animation: fall-26 19s -25s linear infinite;
}
@keyframes fall-26 {
  62.518% {
    transform: translate(12.4915vw, 62.518vh) scale(0.4092);
  }
  to {
    transform: translate(16.9462vw, 100vh) scale(0.4092);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.891;
  transform: translate(1.8904vw, -10px) scale(0.4548);
  animation: fall-27 25s -25s linear infinite;
}
@keyframes fall-27 {
  30.559% {
    transform: translate(5.9201vw, 30.559vh) scale(0.4548);
  }
  to {
    transform: translate(3.90525vw, 100vh) scale(0.4548);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.5288;
  transform: translate(6.3026vw, -10px) scale(0.394);
  animation: fall-28 18s -12s linear infinite;
}
@keyframes fall-28 {
  51.892% {
    transform: translate(14.8123vw, 51.892vh) scale(0.394);
  }
  to {
    transform: translate(10.55745vw, 100vh) scale(0.394);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.5462;
  transform: translate(68.8662vw, -10px) scale(0.4745);
  animation: fall-29 21s -26s linear infinite;
}
@keyframes fall-29 {
  51.898% {
    transform: translate(73.7687vw, 51.898vh) scale(0.4745);
  }
  to {
    transform: translate(71.31745vw, 100vh) scale(0.4745);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.6549;
  transform: translate(15.4082vw, -10px) scale(0.8767);
  animation: fall-30 20s -8s linear infinite;
}
@keyframes fall-30 {
  66.094% {
    transform: translate(15.0594vw, 66.094vh) scale(0.8767);
  }
  to {
    transform: translate(15.2338vw, 100vh) scale(0.8767);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.2535;
  transform: translate(63.8288vw, -10px) scale(0.3683);
  animation: fall-31 26s -14s linear infinite;
}
@keyframes fall-31 {
  70.806% {
    transform: translate(63.4393vw, 70.806vh) scale(0.3683);
  }
  to {
    transform: translate(63.63405vw, 100vh) scale(0.3683);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.6651;
  transform: translate(23.9318vw, -10px) scale(0.7497);
  animation: fall-32 10s -6s linear infinite;
}
@keyframes fall-32 {
  35.95% {
    transform: translate(17.1865vw, 35.95vh) scale(0.7497);
  }
  to {
    transform: translate(20.55915vw, 100vh) scale(0.7497);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.2029;
  transform: translate(25.8268vw, -10px) scale(0.473);
  animation: fall-33 20s -28s linear infinite;
}
@keyframes fall-33 {
  31.508% {
    transform: translate(17.9114vw, 31.508vh) scale(0.473);
  }
  to {
    transform: translate(21.8691vw, 100vh) scale(0.473);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.1238;
  transform: translate(9.7158vw, -10px) scale(0.8492);
  animation: fall-34 26s -8s linear infinite;
}
@keyframes fall-34 {
  41.511% {
    transform: translate(2.5672vw, 41.511vh) scale(0.8492);
  }
  to {
    transform: translate(6.1415vw, 100vh) scale(0.8492);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.9423;
  transform: translate(75.9697vw, -10px) scale(0.437);
  animation: fall-35 13s -6s linear infinite;
}
@keyframes fall-35 {
  67.256% {
    transform: translate(72.1533vw, 67.256vh) scale(0.437);
  }
  to {
    transform: translate(74.0615vw, 100vh) scale(0.437);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.4808;
  transform: translate(90.8039vw, -10px) scale(0.5867);
  animation: fall-36 17s -17s linear infinite;
}
@keyframes fall-36 {
  47.706% {
    transform: translate(90.2161vw, 47.706vh) scale(0.5867);
  }
  to {
    transform: translate(90.51vw, 100vh) scale(0.5867);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.3683;
  transform: translate(17.5119vw, -10px) scale(0.7064);
  animation: fall-37 17s -15s linear infinite;
}
@keyframes fall-37 {
  78.774% {
    transform: translate(13.1363vw, 78.774vh) scale(0.7064);
  }
  to {
    transform: translate(15.3241vw, 100vh) scale(0.7064);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.3168;
  transform: translate(88.3414vw, -10px) scale(0.0636);
  animation: fall-38 17s -26s linear infinite;
}
@keyframes fall-38 {
  70.375% {
    transform: translate(94.4489vw, 70.375vh) scale(0.0636);
  }
  to {
    transform: translate(91.39515vw, 100vh) scale(0.0636);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.1161;
  transform: translate(6.9391vw, -10px) scale(0.2643);
  animation: fall-39 26s -14s linear infinite;
}
@keyframes fall-39 {
  33.107% {
    transform: translate(7.5008vw, 33.107vh) scale(0.2643);
  }
  to {
    transform: translate(7.21995vw, 100vh) scale(0.2643);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.932;
  transform: translate(60.9212vw, -10px) scale(0.6386);
  animation: fall-40 10s -12s linear infinite;
}
@keyframes fall-40 {
  56.21% {
    transform: translate(60.4883vw, 56.21vh) scale(0.6386);
  }
  to {
    transform: translate(60.70475vw, 100vh) scale(0.6386);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.2659;
  transform: translate(88.3833vw, -10px) scale(0.96);
  animation: fall-41 28s -10s linear infinite;
}
@keyframes fall-41 {
  38.077% {
    transform: translate(81.0204vw, 38.077vh) scale(0.96);
  }
  to {
    transform: translate(84.70185vw, 100vh) scale(0.96);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.6813;
  transform: translate(82.0654vw, -10px) scale(0.6536);
  animation: fall-42 14s -10s linear infinite;
}
@keyframes fall-42 {
  44.267% {
    transform: translate(91.4816vw, 44.267vh) scale(0.6536);
  }
  to {
    transform: translate(86.7735vw, 100vh) scale(0.6536);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.0239;
  transform: translate(29.9508vw, -10px) scale(0.069);
  animation: fall-43 12s -21s linear infinite;
}
@keyframes fall-43 {
  52.497% {
    transform: translate(20.7688vw, 52.497vh) scale(0.069);
  }
  to {
    transform: translate(25.3598vw, 100vh) scale(0.069);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.4131;
  transform: translate(53.9676vw, -10px) scale(0.4157);
  animation: fall-44 14s -9s linear infinite;
}
@keyframes fall-44 {
  40.944% {
    transform: translate(56.4968vw, 40.944vh) scale(0.4157);
  }
  to {
    transform: translate(55.2322vw, 100vh) scale(0.4157);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.2002;
  transform: translate(89.8022vw, -10px) scale(0.3012);
  animation: fall-45 10s -23s linear infinite;
}
@keyframes fall-45 {
  73.562% {
    transform: translate(98.176vw, 73.562vh) scale(0.3012);
  }
  to {
    transform: translate(93.9891vw, 100vh) scale(0.3012);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.8055;
  transform: translate(53.5528vw, -10px) scale(0.7246);
  animation: fall-46 13s -30s linear infinite;
}
@keyframes fall-46 {
  77.718% {
    transform: translate(56.6754vw, 77.718vh) scale(0.7246);
  }
  to {
    transform: translate(55.1141vw, 100vh) scale(0.7246);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.1835;
  transform: translate(54.843vw, -10px) scale(0.1794);
  animation: fall-47 27s -2s linear infinite;
}
@keyframes fall-47 {
  78.631% {
    transform: translate(47.5181vw, 78.631vh) scale(0.1794);
  }
  to {
    transform: translate(51.18055vw, 100vh) scale(0.1794);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.6971;
  transform: translate(80.2983vw, -10px) scale(0.3051);
  animation: fall-48 19s -27s linear infinite;
}
@keyframes fall-48 {
  70.255% {
    transform: translate(76.1276vw, 70.255vh) scale(0.3051);
  }
  to {
    transform: translate(78.21295vw, 100vh) scale(0.3051);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.5099;
  transform: translate(47.3825vw, -10px) scale(0.2532);
  animation: fall-49 10s -24s linear infinite;
}
@keyframes fall-49 {
  43.54% {
    transform: translate(37.5068vw, 43.54vh) scale(0.2532);
  }
  to {
    transform: translate(42.44465vw, 100vh) scale(0.2532);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.4214;
  transform: translate(1.4428vw, -10px) scale(0.1624);
  animation: fall-50 11s -29s linear infinite;
}
@keyframes fall-50 {
  34.669% {
    transform: translate(-2.6156vw, 34.669vh) scale(0.1624);
  }
  to {
    transform: translate(-0.5864vw, 100vh) scale(0.1624);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.8569;
  transform: translate(43.9324vw, -10px) scale(0.3914);
  animation: fall-51 23s -5s linear infinite;
}
@keyframes fall-51 {
  48.518% {
    transform: translate(50.4055vw, 48.518vh) scale(0.3914);
  }
  to {
    transform: translate(47.16895vw, 100vh) scale(0.3914);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.856;
  transform: translate(47.8025vw, -10px) scale(0.0026);
  animation: fall-52 30s -29s linear infinite;
}
@keyframes fall-52 {
  38.377% {
    transform: translate(49.8581vw, 38.377vh) scale(0.0026);
  }
  to {
    transform: translate(48.8303vw, 100vh) scale(0.0026);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.9227;
  transform: translate(39.0793vw, -10px) scale(0.1415);
  animation: fall-53 17s -15s linear infinite;
}
@keyframes fall-53 {
  47.302% {
    transform: translate(43.3228vw, 47.302vh) scale(0.1415);
  }
  to {
    transform: translate(41.20105vw, 100vh) scale(0.1415);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.3278;
  transform: translate(48.9653vw, -10px) scale(0.611);
  animation: fall-54 11s -20s linear infinite;
}
@keyframes fall-54 {
  54.605% {
    transform: translate(52.1757vw, 54.605vh) scale(0.611);
  }
  to {
    transform: translate(50.5705vw, 100vh) scale(0.611);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.8554;
  transform: translate(48.2093vw, -10px) scale(0.9968);
  animation: fall-55 14s -22s linear infinite;
}
@keyframes fall-55 {
  58.403% {
    transform: translate(57.7331vw, 58.403vh) scale(0.9968);
  }
  to {
    transform: translate(52.9712vw, 100vh) scale(0.9968);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.636;
  transform: translate(71.2218vw, -10px) scale(0.9381);
  animation: fall-56 26s -22s linear infinite;
}
@keyframes fall-56 {
  65.092% {
    transform: translate(62.7022vw, 65.092vh) scale(0.9381);
  }
  to {
    transform: translate(66.962vw, 100vh) scale(0.9381);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.1302;
  transform: translate(48.228vw, -10px) scale(0.508);
  animation: fall-57 30s -28s linear infinite;
}
@keyframes fall-57 {
  42.032% {
    transform: translate(46.5123vw, 42.032vh) scale(0.508);
  }
  to {
    transform: translate(47.37015vw, 100vh) scale(0.508);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.8116;
  transform: translate(59.8711vw, -10px) scale(0.2891);
  animation: fall-58 24s -10s linear infinite;
}
@keyframes fall-58 {
  47.163% {
    transform: translate(65.0524vw, 47.163vh) scale(0.2891);
  }
  to {
    transform: translate(62.46175vw, 100vh) scale(0.2891);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.1159;
  transform: translate(93.8749vw, -10px) scale(0.3606);
  animation: fall-59 25s -26s linear infinite;
}
@keyframes fall-59 {
  69.021% {
    transform: translate(99.7506vw, 69.021vh) scale(0.3606);
  }
  to {
    transform: translate(96.81275vw, 100vh) scale(0.3606);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.8026;
  transform: translate(74.6438vw, -10px) scale(0.9186);
  animation: fall-60 19s -13s linear infinite;
}
@keyframes fall-60 {
  48.652% {
    transform: translate(76.1874vw, 48.652vh) scale(0.9186);
  }
  to {
    transform: translate(75.4156vw, 100vh) scale(0.9186);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.5367;
  transform: translate(62.6733vw, -10px) scale(0.7971);
  animation: fall-61 25s -12s linear infinite;
}
@keyframes fall-61 {
  34.089% {
    transform: translate(60.1885vw, 34.089vh) scale(0.7971);
  }
  to {
    transform: translate(61.4309vw, 100vh) scale(0.7971);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.7235;
  transform: translate(85.916vw, -10px) scale(0.3891);
  animation: fall-62 11s -14s linear infinite;
}
@keyframes fall-62 {
  65.894% {
    transform: translate(82.1592vw, 65.894vh) scale(0.3891);
  }
  to {
    transform: translate(84.0376vw, 100vh) scale(0.3891);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.5349;
  transform: translate(7.732vw, -10px) scale(0.8929);
  animation: fall-63 28s -4s linear infinite;
}
@keyframes fall-63 {
  49.682% {
    transform: translate(-0.4128vw, 49.682vh) scale(0.8929);
  }
  to {
    transform: translate(3.6596vw, 100vh) scale(0.8929);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.2522;
  transform: translate(51.8119vw, -10px) scale(0.4921);
  animation: fall-64 17s -12s linear infinite;
}
@keyframes fall-64 {
  72.869% {
    transform: translate(55.4616vw, 72.869vh) scale(0.4921);
  }
  to {
    transform: translate(53.63675vw, 100vh) scale(0.4921);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.6801;
  transform: translate(30.1102vw, -10px) scale(0.0609);
  animation: fall-65 28s -22s linear infinite;
}
@keyframes fall-65 {
  70.136% {
    transform: translate(30.0573vw, 70.136vh) scale(0.0609);
  }
  to {
    transform: translate(30.08375vw, 100vh) scale(0.0609);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.4152;
  transform: translate(88.5467vw, -10px) scale(0.5275);
  animation: fall-66 29s -24s linear infinite;
}
@keyframes fall-66 {
  66.243% {
    transform: translate(87.3762vw, 66.243vh) scale(0.5275);
  }
  to {
    transform: translate(87.96145vw, 100vh) scale(0.5275);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.2054;
  transform: translate(34.7277vw, -10px) scale(0.0635);
  animation: fall-67 20s -18s linear infinite;
}
@keyframes fall-67 {
  59.728% {
    transform: translate(29.0737vw, 59.728vh) scale(0.0635);
  }
  to {
    transform: translate(31.9007vw, 100vh) scale(0.0635);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.1141;
  transform: translate(80.4702vw, -10px) scale(0.8083);
  animation: fall-68 19s -19s linear infinite;
}
@keyframes fall-68 {
  76.194% {
    transform: translate(71.0273vw, 76.194vh) scale(0.8083);
  }
  to {
    transform: translate(75.74875vw, 100vh) scale(0.8083);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.5275;
  transform: translate(68.5654vw, -10px) scale(0.1034);
  animation: fall-69 11s -23s linear infinite;
}
@keyframes fall-69 {
  54.213% {
    transform: translate(58.5895vw, 54.213vh) scale(0.1034);
  }
  to {
    transform: translate(63.57745vw, 100vh) scale(0.1034);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.1796;
  transform: translate(15.2841vw, -10px) scale(0.6982);
  animation: fall-70 18s -26s linear infinite;
}
@keyframes fall-70 {
  72.317% {
    transform: translate(20.9824vw, 72.317vh) scale(0.6982);
  }
  to {
    transform: translate(18.13325vw, 100vh) scale(0.6982);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.239;
  transform: translate(91.4911vw, -10px) scale(0.3457);
  animation: fall-71 21s -28s linear infinite;
}
@keyframes fall-71 {
  65.295% {
    transform: translate(90.9372vw, 65.295vh) scale(0.3457);
  }
  to {
    transform: translate(91.21415vw, 100vh) scale(0.3457);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.8593;
  transform: translate(72.9375vw, -10px) scale(0.4211);
  animation: fall-72 24s -29s linear infinite;
}
@keyframes fall-72 {
  56.292% {
    transform: translate(78.7396vw, 56.292vh) scale(0.4211);
  }
  to {
    transform: translate(75.83855vw, 100vh) scale(0.4211);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.0904;
  transform: translate(39.9661vw, -10px) scale(0.4509);
  animation: fall-73 23s -8s linear infinite;
}
@keyframes fall-73 {
  38.318% {
    transform: translate(39.7947vw, 38.318vh) scale(0.4509);
  }
  to {
    transform: translate(39.8804vw, 100vh) scale(0.4509);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.4417;
  transform: translate(74.9066vw, -10px) scale(0.6666);
  animation: fall-74 16s -28s linear infinite;
}
@keyframes fall-74 {
  43.026% {
    transform: translate(66.5776vw, 43.026vh) scale(0.6666);
  }
  to {
    transform: translate(70.7421vw, 100vh) scale(0.6666);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.4774;
  transform: translate(44.9045vw, -10px) scale(0.9268);
  animation: fall-75 23s -24s linear infinite;
}
@keyframes fall-75 {
  76.47% {
    transform: translate(38.2433vw, 76.47vh) scale(0.9268);
  }
  to {
    transform: translate(41.5739vw, 100vh) scale(0.9268);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.6367;
  transform: translate(71.3176vw, -10px) scale(0.0524);
  animation: fall-76 20s -22s linear infinite;
}
@keyframes fall-76 {
  44.11% {
    transform: translate(78.7284vw, 44.11vh) scale(0.0524);
  }
  to {
    transform: translate(75.023vw, 100vh) scale(0.0524);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.4282;
  transform: translate(50.5385vw, -10px) scale(0.5123);
  animation: fall-77 12s -26s linear infinite;
}
@keyframes fall-77 {
  61.591% {
    transform: translate(41.0427vw, 61.591vh) scale(0.5123);
  }
  to {
    transform: translate(45.7906vw, 100vh) scale(0.5123);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.2582;
  transform: translate(56.4192vw, -10px) scale(0.1158);
  animation: fall-78 30s -29s linear infinite;
}
@keyframes fall-78 {
  60.722% {
    transform: translate(49.3646vw, 60.722vh) scale(0.1158);
  }
  to {
    transform: translate(52.8919vw, 100vh) scale(0.1158);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.5906;
  transform: translate(29.4198vw, -10px) scale(0.2893);
  animation: fall-79 16s -7s linear infinite;
}
@keyframes fall-79 {
  70.662% {
    transform: translate(26.835vw, 70.662vh) scale(0.2893);
  }
  to {
    transform: translate(28.1274vw, 100vh) scale(0.2893);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.7294;
  transform: translate(33.7138vw, -10px) scale(0.2914);
  animation: fall-80 13s -27s linear infinite;
}
@keyframes fall-80 {
  64.574% {
    transform: translate(36.8988vw, 64.574vh) scale(0.2914);
  }
  to {
    transform: translate(35.3063vw, 100vh) scale(0.2914);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.85;
  transform: translate(63.1386vw, -10px) scale(0.5922);
  animation: fall-81 24s -16s linear infinite;
}
@keyframes fall-81 {
  39.348% {
    transform: translate(53.6828vw, 39.348vh) scale(0.5922);
  }
  to {
    transform: translate(58.4107vw, 100vh) scale(0.5922);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.2072;
  transform: translate(58.3599vw, -10px) scale(0.7574);
  animation: fall-82 11s -19s linear infinite;
}
@keyframes fall-82 {
  63.834% {
    transform: translate(67.2079vw, 63.834vh) scale(0.7574);
  }
  to {
    transform: translate(62.7839vw, 100vh) scale(0.7574);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.9456;
  transform: translate(69.7196vw, -10px) scale(0.3593);
  animation: fall-83 19s -28s linear infinite;
}
@keyframes fall-83 {
  47.265% {
    transform: translate(63.1978vw, 47.265vh) scale(0.3593);
  }
  to {
    transform: translate(66.4587vw, 100vh) scale(0.3593);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.751;
  transform: translate(30.2832vw, -10px) scale(0.7426);
  animation: fall-84 22s -28s linear infinite;
}
@keyframes fall-84 {
  36.726% {
    transform: translate(22.797vw, 36.726vh) scale(0.7426);
  }
  to {
    transform: translate(26.5401vw, 100vh) scale(0.7426);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.9917;
  transform: translate(55.2489vw, -10px) scale(0.5835);
  animation: fall-85 29s -25s linear infinite;
}
@keyframes fall-85 {
  75.086% {
    transform: translate(64.3967vw, 75.086vh) scale(0.5835);
  }
  to {
    transform: translate(59.8228vw, 100vh) scale(0.5835);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.0882;
  transform: translate(95.0067vw, -10px) scale(0.2194);
  animation: fall-86 22s -6s linear infinite;
}
@keyframes fall-86 {
  75.473% {
    transform: translate(97.4222vw, 75.473vh) scale(0.2194);
  }
  to {
    transform: translate(96.21445vw, 100vh) scale(0.2194);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.2713;
  transform: translate(77.9886vw, -10px) scale(0.4328);
  animation: fall-87 15s -3s linear infinite;
}
@keyframes fall-87 {
  79.609% {
    transform: translate(83.1751vw, 79.609vh) scale(0.4328);
  }
  to {
    transform: translate(80.58185vw, 100vh) scale(0.4328);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.1134;
  transform: translate(45.2535vw, -10px) scale(0.2612);
  animation: fall-88 25s -13s linear infinite;
}
@keyframes fall-88 {
  36.863% {
    transform: translate(51.3777vw, 36.863vh) scale(0.2612);
  }
  to {
    transform: translate(48.3156vw, 100vh) scale(0.2612);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.9464;
  transform: translate(65.3367vw, -10px) scale(0.3935);
  animation: fall-89 18s -25s linear infinite;
}
@keyframes fall-89 {
  71.091% {
    transform: translate(74.8848vw, 71.091vh) scale(0.3935);
  }
  to {
    transform: translate(70.11075vw, 100vh) scale(0.3935);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.523;
  transform: translate(7.1196vw, -10px) scale(0.9311);
  animation: fall-90 18s -21s linear infinite;
}
@keyframes fall-90 {
  79.727% {
    transform: translate(1.7333vw, 79.727vh) scale(0.9311);
  }
  to {
    transform: translate(4.42645vw, 100vh) scale(0.9311);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.2219;
  transform: translate(12.3231vw, -10px) scale(0.2658);
  animation: fall-91 11s -5s linear infinite;
}
@keyframes fall-91 {
  44.872% {
    transform: translate(6.2843vw, 44.872vh) scale(0.2658);
  }
  to {
    transform: translate(9.3037vw, 100vh) scale(0.2658);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.1979;
  transform: translate(37.4932vw, -10px) scale(0.151);
  animation: fall-92 16s -3s linear infinite;
}
@keyframes fall-92 {
  55.942% {
    transform: translate(42.7369vw, 55.942vh) scale(0.151);
  }
  to {
    transform: translate(40.11505vw, 100vh) scale(0.151);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.7745;
  transform: translate(22.0235vw, -10px) scale(0.302);
  animation: fall-93 29s -13s linear infinite;
}
@keyframes fall-93 {
  30.216% {
    transform: translate(15.9591vw, 30.216vh) scale(0.302);
  }
  to {
    transform: translate(18.9913vw, 100vh) scale(0.302);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.0695;
  transform: translate(10.4024vw, -10px) scale(0.5116);
  animation: fall-94 16s -11s linear infinite;
}
@keyframes fall-94 {
  49.044% {
    transform: translate(10.2859vw, 49.044vh) scale(0.5116);
  }
  to {
    transform: translate(10.34415vw, 100vh) scale(0.5116);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.0599;
  transform: translate(39.5089vw, -10px) scale(0.4548);
  animation: fall-95 15s -4s linear infinite;
}
@keyframes fall-95 {
  44.225% {
    transform: translate(31.9069vw, 44.225vh) scale(0.4548);
  }
  to {
    transform: translate(35.7079vw, 100vh) scale(0.4548);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.672;
  transform: translate(59.3132vw, -10px) scale(0.4183);
  animation: fall-96 11s -1s linear infinite;
}
@keyframes fall-96 {
  73.562% {
    transform: translate(52.4453vw, 73.562vh) scale(0.4183);
  }
  to {
    transform: translate(55.87925vw, 100vh) scale(0.4183);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.7557;
  transform: translate(71.7142vw, -10px) scale(0.8475);
  animation: fall-97 24s -1s linear infinite;
}
@keyframes fall-97 {
  48.745% {
    transform: translate(76.718vw, 48.745vh) scale(0.8475);
  }
  to {
    transform: translate(74.2161vw, 100vh) scale(0.8475);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.7613;
  transform: translate(50.1766vw, -10px) scale(0.2708);
  animation: fall-98 21s -28s linear infinite;
}
@keyframes fall-98 {
  47.554% {
    transform: translate(49.3492vw, 47.554vh) scale(0.2708);
  }
  to {
    transform: translate(49.7629vw, 100vh) scale(0.2708);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.5465;
  transform: translate(20.0672vw, -10px) scale(0.0756);
  animation: fall-99 17s -19s linear infinite;
}
@keyframes fall-99 {
  44.672% {
    transform: translate(14.6618vw, 44.672vh) scale(0.0756);
  }
  to {
    transform: translate(17.3645vw, 100vh) scale(0.0756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.7534;
  transform: translate(44.031vw, -10px) scale(0.2943);
  animation: fall-100 10s -5s linear infinite;
}
@keyframes fall-100 {
  37.521% {
    transform: translate(45.3508vw, 37.521vh) scale(0.2943);
  }
  to {
    transform: translate(44.6909vw, 100vh) scale(0.2943);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.5652;
  transform: translate(28.1874vw, -10px) scale(0.0733);
  animation: fall-101 20s -10s linear infinite;
}
@keyframes fall-101 {
  58.274% {
    transform: translate(29.1183vw, 58.274vh) scale(0.0733);
  }
  to {
    transform: translate(28.65285vw, 100vh) scale(0.0733);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.0567;
  transform: translate(75.1957vw, -10px) scale(0.6703);
  animation: fall-102 23s -1s linear infinite;
}
@keyframes fall-102 {
  33.863% {
    transform: translate(74.6538vw, 33.863vh) scale(0.6703);
  }
  to {
    transform: translate(74.92475vw, 100vh) scale(0.6703);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.0568;
  transform: translate(2.2071vw, -10px) scale(0.9803);
  animation: fall-103 28s -27s linear infinite;
}
@keyframes fall-103 {
  62.087% {
    transform: translate(1.0538vw, 62.087vh) scale(0.9803);
  }
  to {
    transform: translate(1.63045vw, 100vh) scale(0.9803);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.2825;
  transform: translate(35.8493vw, -10px) scale(0.8115);
  animation: fall-104 17s -24s linear infinite;
}
@keyframes fall-104 {
  33.001% {
    transform: translate(29.3993vw, 33.001vh) scale(0.8115);
  }
  to {
    transform: translate(32.6243vw, 100vh) scale(0.8115);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.3952;
  transform: translate(23.9488vw, -10px) scale(0.7045);
  animation: fall-105 25s -6s linear infinite;
}
@keyframes fall-105 {
  74.245% {
    transform: translate(20.6847vw, 74.245vh) scale(0.7045);
  }
  to {
    transform: translate(22.31675vw, 100vh) scale(0.7045);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.5336;
  transform: translate(33.6303vw, -10px) scale(0.8477);
  animation: fall-106 21s -17s linear infinite;
}
@keyframes fall-106 {
  48.896% {
    transform: translate(37.1563vw, 48.896vh) scale(0.8477);
  }
  to {
    transform: translate(35.3933vw, 100vh) scale(0.8477);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.2492;
  transform: translate(8.9245vw, -10px) scale(0.4553);
  animation: fall-107 15s -3s linear infinite;
}
@keyframes fall-107 {
  76.734% {
    transform: translate(-0.4992vw, 76.734vh) scale(0.4553);
  }
  to {
    transform: translate(4.21265vw, 100vh) scale(0.4553);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.3013;
  transform: translate(27.8304vw, -10px) scale(0.1828);
  animation: fall-108 27s -6s linear infinite;
}
@keyframes fall-108 {
  74.678% {
    transform: translate(24.3979vw, 74.678vh) scale(0.1828);
  }
  to {
    transform: translate(26.11415vw, 100vh) scale(0.1828);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.0482;
  transform: translate(62.3048vw, -10px) scale(0.4876);
  animation: fall-109 24s -9s linear infinite;
}
@keyframes fall-109 {
  62.672% {
    transform: translate(56.2877vw, 62.672vh) scale(0.4876);
  }
  to {
    transform: translate(59.29625vw, 100vh) scale(0.4876);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.2575;
  transform: translate(54.9897vw, -10px) scale(0.831);
  animation: fall-110 11s -20s linear infinite;
}
@keyframes fall-110 {
  66.727% {
    transform: translate(57.0645vw, 66.727vh) scale(0.831);
  }
  to {
    transform: translate(56.0271vw, 100vh) scale(0.831);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.3383;
  transform: translate(46.4892vw, -10px) scale(0.0789);
  animation: fall-111 13s -25s linear infinite;
}
@keyframes fall-111 {
  34.19% {
    transform: translate(55.2022vw, 34.19vh) scale(0.0789);
  }
  to {
    transform: translate(50.8457vw, 100vh) scale(0.0789);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.6932;
  transform: translate(81.6869vw, -10px) scale(0.7023);
  animation: fall-112 13s -23s linear infinite;
}
@keyframes fall-112 {
  61.652% {
    transform: translate(88.5567vw, 61.652vh) scale(0.7023);
  }
  to {
    transform: translate(85.1218vw, 100vh) scale(0.7023);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.0825;
  transform: translate(59.9121vw, -10px) scale(0.7415);
  animation: fall-113 15s -16s linear infinite;
}
@keyframes fall-113 {
  64.8% {
    transform: translate(68.0546vw, 64.8vh) scale(0.7415);
  }
  to {
    transform: translate(63.98335vw, 100vh) scale(0.7415);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.606;
  transform: translate(8.5395vw, -10px) scale(0.1427);
  animation: fall-114 21s -6s linear infinite;
}
@keyframes fall-114 {
  55.388% {
    transform: translate(9.0043vw, 55.388vh) scale(0.1427);
  }
  to {
    transform: translate(8.7719vw, 100vh) scale(0.1427);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.213;
  transform: translate(2.3962vw, -10px) scale(0.9951);
  animation: fall-115 17s -15s linear infinite;
}
@keyframes fall-115 {
  66.488% {
    transform: translate(-0.8636vw, 66.488vh) scale(0.9951);
  }
  to {
    transform: translate(0.7663vw, 100vh) scale(0.9951);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.6069;
  transform: translate(6.4127vw, -10px) scale(0.8523);
  animation: fall-116 19s -25s linear infinite;
}
@keyframes fall-116 {
  71.853% {
    transform: translate(2.4346vw, 71.853vh) scale(0.8523);
  }
  to {
    transform: translate(4.42365vw, 100vh) scale(0.8523);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.7157;
  transform: translate(24.824vw, -10px) scale(0.1562);
  animation: fall-117 25s -18s linear infinite;
}
@keyframes fall-117 {
  36.714% {
    transform: translate(15.3931vw, 36.714vh) scale(0.1562);
  }
  to {
    transform: translate(20.10855vw, 100vh) scale(0.1562);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.3226;
  transform: translate(89.9156vw, -10px) scale(0.9688);
  animation: fall-118 21s -19s linear infinite;
}
@keyframes fall-118 {
  62.492% {
    transform: translate(84.819vw, 62.492vh) scale(0.9688);
  }
  to {
    transform: translate(87.3673vw, 100vh) scale(0.9688);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.3428;
  transform: translate(62.7873vw, -10px) scale(0.3656);
  animation: fall-119 20s -26s linear infinite;
}
@keyframes fall-119 {
  73.685% {
    transform: translate(59.9893vw, 73.685vh) scale(0.3656);
  }
  to {
    transform: translate(61.3883vw, 100vh) scale(0.3656);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.7872;
  transform: translate(83.0293vw, -10px) scale(0.8235);
  animation: fall-120 24s -9s linear infinite;
}
@keyframes fall-120 {
  48.002% {
    transform: translate(75.8447vw, 48.002vh) scale(0.8235);
  }
  to {
    transform: translate(79.437vw, 100vh) scale(0.8235);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.0089;
  transform: translate(61.6617vw, -10px) scale(0.4962);
  animation: fall-121 10s -21s linear infinite;
}
@keyframes fall-121 {
  69.586% {
    transform: translate(60.2871vw, 69.586vh) scale(0.4962);
  }
  to {
    transform: translate(60.9744vw, 100vh) scale(0.4962);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.5806;
  transform: translate(55.5557vw, -10px) scale(0.4175);
  animation: fall-122 15s -14s linear infinite;
}
@keyframes fall-122 {
  71.131% {
    transform: translate(59.7919vw, 71.131vh) scale(0.4175);
  }
  to {
    transform: translate(57.6738vw, 100vh) scale(0.4175);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.8207;
  transform: translate(3.9929vw, -10px) scale(0.8447);
  animation: fall-123 19s -3s linear infinite;
}
@keyframes fall-123 {
  76.405% {
    transform: translate(11.8361vw, 76.405vh) scale(0.8447);
  }
  to {
    transform: translate(7.9145vw, 100vh) scale(0.8447);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.7593;
  transform: translate(52.5108vw, -10px) scale(0.9312);
  animation: fall-124 19s -4s linear infinite;
}
@keyframes fall-124 {
  51.821% {
    transform: translate(53.2507vw, 51.821vh) scale(0.9312);
  }
  to {
    transform: translate(52.88075vw, 100vh) scale(0.9312);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.1568;
  transform: translate(86.5384vw, -10px) scale(0.6711);
  animation: fall-125 23s -29s linear infinite;
}
@keyframes fall-125 {
  67.226% {
    transform: translate(77.8018vw, 67.226vh) scale(0.6711);
  }
  to {
    transform: translate(82.1701vw, 100vh) scale(0.6711);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.6367;
  transform: translate(72.7672vw, -10px) scale(0.6466);
  animation: fall-126 15s -7s linear infinite;
}
@keyframes fall-126 {
  30.527% {
    transform: translate(63.2703vw, 30.527vh) scale(0.6466);
  }
  to {
    transform: translate(68.01875vw, 100vh) scale(0.6466);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.2651;
  transform: translate(80.6329vw, -10px) scale(0.71);
  animation: fall-127 15s -4s linear infinite;
}
@keyframes fall-127 {
  79.735% {
    transform: translate(85.4756vw, 79.735vh) scale(0.71);
  }
  to {
    transform: translate(83.05425vw, 100vh) scale(0.71);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.4072;
  transform: translate(96.2126vw, -10px) scale(0.6014);
  animation: fall-128 20s -21s linear infinite;
}
@keyframes fall-128 {
  46.068% {
    transform: translate(98.0165vw, 46.068vh) scale(0.6014);
  }
  to {
    transform: translate(97.11455vw, 100vh) scale(0.6014);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.0472;
  transform: translate(68.0489vw, -10px) scale(0.5477);
  animation: fall-129 23s -27s linear infinite;
}
@keyframes fall-129 {
  71.945% {
    transform: translate(77.707vw, 71.945vh) scale(0.5477);
  }
  to {
    transform: translate(72.87795vw, 100vh) scale(0.5477);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.6498;
  transform: translate(85.2431vw, -10px) scale(0.053);
  animation: fall-130 11s -1s linear infinite;
}
@keyframes fall-130 {
  44.153% {
    transform: translate(75.4623vw, 44.153vh) scale(0.053);
  }
  to {
    transform: translate(80.3527vw, 100vh) scale(0.053);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.4384;
  transform: translate(18.9611vw, -10px) scale(0.659);
  animation: fall-131 20s -16s linear infinite;
}
@keyframes fall-131 {
  59.82% {
    transform: translate(22.5134vw, 59.82vh) scale(0.659);
  }
  to {
    transform: translate(20.73725vw, 100vh) scale(0.659);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.5689;
  transform: translate(76.96vw, -10px) scale(0.6224);
  animation: fall-132 24s -20s linear infinite;
}
@keyframes fall-132 {
  60.153% {
    transform: translate(67.5235vw, 60.153vh) scale(0.6224);
  }
  to {
    transform: translate(72.24175vw, 100vh) scale(0.6224);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.6946;
  transform: translate(64.3114vw, -10px) scale(0.3954);
  animation: fall-133 29s -18s linear infinite;
}
@keyframes fall-133 {
  68.65% {
    transform: translate(66.2426vw, 68.65vh) scale(0.3954);
  }
  to {
    transform: translate(65.277vw, 100vh) scale(0.3954);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.1249;
  transform: translate(73.4065vw, -10px) scale(0.2165);
  animation: fall-134 20s -7s linear infinite;
}
@keyframes fall-134 {
  32.72% {
    transform: translate(77.7834vw, 32.72vh) scale(0.2165);
  }
  to {
    transform: translate(75.59495vw, 100vh) scale(0.2165);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.0014;
  transform: translate(79.3582vw, -10px) scale(0.2206);
  animation: fall-135 27s -11s linear infinite;
}
@keyframes fall-135 {
  41.131% {
    transform: translate(75.7917vw, 41.131vh) scale(0.2206);
  }
  to {
    transform: translate(77.57495vw, 100vh) scale(0.2206);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.0061;
  transform: translate(89.6325vw, -10px) scale(0.9139);
  animation: fall-136 15s -15s linear infinite;
}
@keyframes fall-136 {
  39.894% {
    transform: translate(89.9421vw, 39.894vh) scale(0.9139);
  }
  to {
    transform: translate(89.7873vw, 100vh) scale(0.9139);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.2313;
  transform: translate(43.904vw, -10px) scale(0.3635);
  animation: fall-137 29s -5s linear infinite;
}
@keyframes fall-137 {
  50.119% {
    transform: translate(46.3466vw, 50.119vh) scale(0.3635);
  }
  to {
    transform: translate(45.1253vw, 100vh) scale(0.3635);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.9594;
  transform: translate(68.8123vw, -10px) scale(0.6413);
  animation: fall-138 21s -27s linear infinite;
}
@keyframes fall-138 {
  63.524% {
    transform: translate(72.8784vw, 63.524vh) scale(0.6413);
  }
  to {
    transform: translate(70.84535vw, 100vh) scale(0.6413);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.9254;
  transform: translate(33.2561vw, -10px) scale(0.4504);
  animation: fall-139 20s -29s linear infinite;
}
@keyframes fall-139 {
  76.017% {
    transform: translate(38.6106vw, 76.017vh) scale(0.4504);
  }
  to {
    transform: translate(35.93335vw, 100vh) scale(0.4504);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.4037;
  transform: translate(61.981vw, -10px) scale(0.5055);
  animation: fall-140 25s -18s linear infinite;
}
@keyframes fall-140 {
  68.737% {
    transform: translate(57.21vw, 68.737vh) scale(0.5055);
  }
  to {
    transform: translate(59.5955vw, 100vh) scale(0.5055);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.987;
  transform: translate(91.7365vw, -10px) scale(0.4665);
  animation: fall-141 29s -11s linear infinite;
}
@keyframes fall-141 {
  76.339% {
    transform: translate(96.8455vw, 76.339vh) scale(0.4665);
  }
  to {
    transform: translate(94.291vw, 100vh) scale(0.4665);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.407;
  transform: translate(70.136vw, -10px) scale(0.34);
  animation: fall-142 21s -13s linear infinite;
}
@keyframes fall-142 {
  71.963% {
    transform: translate(65.9217vw, 71.963vh) scale(0.34);
  }
  to {
    transform: translate(68.02885vw, 100vh) scale(0.34);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.6506;
  transform: translate(30.9993vw, -10px) scale(0.6715);
  animation: fall-143 11s -21s linear infinite;
}
@keyframes fall-143 {
  73.929% {
    transform: translate(34.1679vw, 73.929vh) scale(0.6715);
  }
  to {
    transform: translate(32.5836vw, 100vh) scale(0.6715);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.2019;
  transform: translate(90.5747vw, -10px) scale(0.9771);
  animation: fall-144 22s -30s linear infinite;
}
@keyframes fall-144 {
  38.059% {
    transform: translate(85.0991vw, 38.059vh) scale(0.9771);
  }
  to {
    transform: translate(87.8369vw, 100vh) scale(0.9771);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.71;
  transform: translate(3.7949vw, -10px) scale(0.0118);
  animation: fall-145 10s -15s linear infinite;
}
@keyframes fall-145 {
  48.378% {
    transform: translate(3.9704vw, 48.378vh) scale(0.0118);
  }
  to {
    transform: translate(3.88265vw, 100vh) scale(0.0118);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.395;
  transform: translate(74.3615vw, -10px) scale(0.074);
  animation: fall-146 16s -2s linear infinite;
}
@keyframes fall-146 {
  71.324% {
    transform: translate(75.8653vw, 71.324vh) scale(0.074);
  }
  to {
    transform: translate(75.1134vw, 100vh) scale(0.074);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.6667;
  transform: translate(96.6614vw, -10px) scale(0.0208);
  animation: fall-147 13s -25s linear infinite;
}
@keyframes fall-147 {
  36.59% {
    transform: translate(93.8624vw, 36.59vh) scale(0.0208);
  }
  to {
    transform: translate(95.2619vw, 100vh) scale(0.0208);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.2951;
  transform: translate(44.8071vw, -10px) scale(0.0004);
  animation: fall-148 24s -23s linear infinite;
}
@keyframes fall-148 {
  77.762% {
    transform: translate(49.3154vw, 77.762vh) scale(0.0004);
  }
  to {
    transform: translate(47.06125vw, 100vh) scale(0.0004);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.4113;
  transform: translate(3.5256vw, -10px) scale(0.8551);
  animation: fall-149 10s -16s linear infinite;
}
@keyframes fall-149 {
  46.051% {
    transform: translate(11.0688vw, 46.051vh) scale(0.8551);
  }
  to {
    transform: translate(7.2972vw, 100vh) scale(0.8551);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.1434;
  transform: translate(88.149vw, -10px) scale(0.0805);
  animation: fall-150 22s -24s linear infinite;
}
@keyframes fall-150 {
  49.548% {
    transform: translate(96.498vw, 49.548vh) scale(0.0805);
  }
  to {
    transform: translate(92.3235vw, 100vh) scale(0.0805);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.3946;
  transform: translate(11.9363vw, -10px) scale(0.0869);
  animation: fall-151 14s -12s linear infinite;
}
@keyframes fall-151 {
  32.826% {
    transform: translate(4.5526vw, 32.826vh) scale(0.0869);
  }
  to {
    transform: translate(8.24445vw, 100vh) scale(0.0869);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.1113;
  transform: translate(90.3894vw, -10px) scale(0.8433);
  animation: fall-152 24s -14s linear infinite;
}
@keyframes fall-152 {
  67.42% {
    transform: translate(100.3574vw, 67.42vh) scale(0.8433);
  }
  to {
    transform: translate(95.3734vw, 100vh) scale(0.8433);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.1416;
  transform: translate(25.0755vw, -10px) scale(0.9246);
  animation: fall-153 11s -9s linear infinite;
}
@keyframes fall-153 {
  66.994% {
    transform: translate(32.811vw, 66.994vh) scale(0.9246);
  }
  to {
    transform: translate(28.94325vw, 100vh) scale(0.9246);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.7409;
  transform: translate(32.5099vw, -10px) scale(0.9197);
  animation: fall-154 15s -19s linear infinite;
}
@keyframes fall-154 {
  47.737% {
    transform: translate(30.8227vw, 47.737vh) scale(0.9197);
  }
  to {
    transform: translate(31.6663vw, 100vh) scale(0.9197);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.7999;
  transform: translate(88.9757vw, -10px) scale(0.5292);
  animation: fall-155 18s -24s linear infinite;
}
@keyframes fall-155 {
  58.465% {
    transform: translate(91.4248vw, 58.465vh) scale(0.5292);
  }
  to {
    transform: translate(90.20025vw, 100vh) scale(0.5292);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.584;
  transform: translate(21.5088vw, -10px) scale(0.6715);
  animation: fall-156 28s -26s linear infinite;
}
@keyframes fall-156 {
  67.96% {
    transform: translate(12.9921vw, 67.96vh) scale(0.6715);
  }
  to {
    transform: translate(17.25045vw, 100vh) scale(0.6715);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.1602;
  transform: translate(99.6705vw, -10px) scale(0.9496);
  animation: fall-157 28s -28s linear infinite;
}
@keyframes fall-157 {
  39.817% {
    transform: translate(107.2423vw, 39.817vh) scale(0.9496);
  }
  to {
    transform: translate(103.4564vw, 100vh) scale(0.9496);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.8721;
  transform: translate(97.4949vw, -10px) scale(0.5043);
  animation: fall-158 14s -12s linear infinite;
}
@keyframes fall-158 {
  31.635% {
    transform: translate(99.9148vw, 31.635vh) scale(0.5043);
  }
  to {
    transform: translate(98.70485vw, 100vh) scale(0.5043);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.092;
  transform: translate(87.0385vw, -10px) scale(0.8609);
  animation: fall-159 16s -8s linear infinite;
}
@keyframes fall-159 {
  61.501% {
    transform: translate(94.2097vw, 61.501vh) scale(0.8609);
  }
  to {
    transform: translate(90.6241vw, 100vh) scale(0.8609);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.6002;
  transform: translate(43.5984vw, -10px) scale(0.8437);
  animation: fall-160 28s -26s linear infinite;
}
@keyframes fall-160 {
  59.948% {
    transform: translate(41.489vw, 59.948vh) scale(0.8437);
  }
  to {
    transform: translate(42.5437vw, 100vh) scale(0.8437);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.3562;
  transform: translate(32.9929vw, -10px) scale(0.417);
  animation: fall-161 30s -8s linear infinite;
}
@keyframes fall-161 {
  46.699% {
    transform: translate(26.3483vw, 46.699vh) scale(0.417);
  }
  to {
    transform: translate(29.6706vw, 100vh) scale(0.417);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.8496;
  transform: translate(69.1964vw, -10px) scale(0.5832);
  animation: fall-162 30s -29s linear infinite;
}
@keyframes fall-162 {
  34.118% {
    transform: translate(60.0768vw, 34.118vh) scale(0.5832);
  }
  to {
    transform: translate(64.6366vw, 100vh) scale(0.5832);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.004;
  transform: translate(11.4481vw, -10px) scale(0.4524);
  animation: fall-163 24s -28s linear infinite;
}
@keyframes fall-163 {
  67.33% {
    transform: translate(15.6883vw, 67.33vh) scale(0.4524);
  }
  to {
    transform: translate(13.5682vw, 100vh) scale(0.4524);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.8034;
  transform: translate(57.3474vw, -10px) scale(0.8001);
  animation: fall-164 26s -14s linear infinite;
}
@keyframes fall-164 {
  72.959% {
    transform: translate(51.7913vw, 72.959vh) scale(0.8001);
  }
  to {
    transform: translate(54.56935vw, 100vh) scale(0.8001);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.7573;
  transform: translate(96.4142vw, -10px) scale(0.8352);
  animation: fall-165 20s -21s linear infinite;
}
@keyframes fall-165 {
  72.261% {
    transform: translate(91.5567vw, 72.261vh) scale(0.8352);
  }
  to {
    transform: translate(93.98545vw, 100vh) scale(0.8352);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.65;
  transform: translate(49.8013vw, -10px) scale(0.5398);
  animation: fall-166 23s -29s linear infinite;
}
@keyframes fall-166 {
  42.585% {
    transform: translate(56.9576vw, 42.585vh) scale(0.5398);
  }
  to {
    transform: translate(53.37945vw, 100vh) scale(0.5398);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.4328;
  transform: translate(4.9498vw, -10px) scale(0.083);
  animation: fall-167 21s -28s linear infinite;
}
@keyframes fall-167 {
  49.418% {
    transform: translate(13.2415vw, 49.418vh) scale(0.083);
  }
  to {
    transform: translate(9.09565vw, 100vh) scale(0.083);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.6585;
  transform: translate(22.13vw, -10px) scale(0.6655);
  animation: fall-168 30s -12s linear infinite;
}
@keyframes fall-168 {
  60.334% {
    transform: translate(24.5636vw, 60.334vh) scale(0.6655);
  }
  to {
    transform: translate(23.3468vw, 100vh) scale(0.6655);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.1547;
  transform: translate(83.2283vw, -10px) scale(0.3878);
  animation: fall-169 12s -5s linear infinite;
}
@keyframes fall-169 {
  67.739% {
    transform: translate(82.832vw, 67.739vh) scale(0.3878);
  }
  to {
    transform: translate(83.03015vw, 100vh) scale(0.3878);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.292;
  transform: translate(61.8941vw, -10px) scale(0.7922);
  animation: fall-170 28s -13s linear infinite;
}
@keyframes fall-170 {
  68.759% {
    transform: translate(57.8779vw, 68.759vh) scale(0.7922);
  }
  to {
    transform: translate(59.886vw, 100vh) scale(0.7922);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.141;
  transform: translate(92.0888vw, -10px) scale(0.8428);
  animation: fall-171 13s -9s linear infinite;
}
@keyframes fall-171 {
  68.027% {
    transform: translate(97.7255vw, 68.027vh) scale(0.8428);
  }
  to {
    transform: translate(94.90715vw, 100vh) scale(0.8428);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.1346;
  transform: translate(89.5804vw, -10px) scale(0.7076);
  animation: fall-172 10s -29s linear infinite;
}
@keyframes fall-172 {
  65.722% {
    transform: translate(82.5008vw, 65.722vh) scale(0.7076);
  }
  to {
    transform: translate(86.0406vw, 100vh) scale(0.7076);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.1299;
  transform: translate(58.3007vw, -10px) scale(0.7966);
  animation: fall-173 25s -8s linear infinite;
}
@keyframes fall-173 {
  77.085% {
    transform: translate(59.1453vw, 77.085vh) scale(0.7966);
  }
  to {
    transform: translate(58.723vw, 100vh) scale(0.7966);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.7907;
  transform: translate(59.5013vw, -10px) scale(0.6455);
  animation: fall-174 30s -16s linear infinite;
}
@keyframes fall-174 {
  46.369% {
    transform: translate(49.6058vw, 46.369vh) scale(0.6455);
  }
  to {
    transform: translate(54.55355vw, 100vh) scale(0.6455);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.7619;
  transform: translate(74.3217vw, -10px) scale(0.3441);
  animation: fall-175 19s -3s linear infinite;
}
@keyframes fall-175 {
  72.311% {
    transform: translate(79.3445vw, 72.311vh) scale(0.3441);
  }
  to {
    transform: translate(76.8331vw, 100vh) scale(0.3441);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.5434;
  transform: translate(98.844vw, -10px) scale(0.8129);
  animation: fall-176 13s -26s linear infinite;
}
@keyframes fall-176 {
  70.814% {
    transform: translate(102.569vw, 70.814vh) scale(0.8129);
  }
  to {
    transform: translate(100.7065vw, 100vh) scale(0.8129);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.6804;
  transform: translate(13.5129vw, -10px) scale(0.0396);
  animation: fall-177 27s -30s linear infinite;
}
@keyframes fall-177 {
  57.347% {
    transform: translate(16.8628vw, 57.347vh) scale(0.0396);
  }
  to {
    transform: translate(15.18785vw, 100vh) scale(0.0396);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.639;
  transform: translate(70.4256vw, -10px) scale(0.8986);
  animation: fall-178 19s -7s linear infinite;
}
@keyframes fall-178 {
  60.927% {
    transform: translate(61.8397vw, 60.927vh) scale(0.8986);
  }
  to {
    transform: translate(66.13265vw, 100vh) scale(0.8986);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.3911;
  transform: translate(7.3636vw, -10px) scale(0.4526);
  animation: fall-179 28s -15s linear infinite;
}
@keyframes fall-179 {
  69.069% {
    transform: translate(8.6665vw, 69.069vh) scale(0.4526);
  }
  to {
    transform: translate(8.01505vw, 100vh) scale(0.4526);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.3667;
  transform: translate(13.3343vw, -10px) scale(0.8886);
  animation: fall-180 27s -29s linear infinite;
}
@keyframes fall-180 {
  63.747% {
    transform: translate(5.8663vw, 63.747vh) scale(0.8886);
  }
  to {
    transform: translate(9.6003vw, 100vh) scale(0.8886);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.0944;
  transform: translate(19.4761vw, -10px) scale(0.744);
  animation: fall-181 13s -28s linear infinite;
}
@keyframes fall-181 {
  35.804% {
    transform: translate(20.3787vw, 35.804vh) scale(0.744);
  }
  to {
    transform: translate(19.9274vw, 100vh) scale(0.744);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.5495;
  transform: translate(12.0855vw, -10px) scale(0.1803);
  animation: fall-182 12s -18s linear infinite;
}
@keyframes fall-182 {
  69.371% {
    transform: translate(6.6298vw, 69.371vh) scale(0.1803);
  }
  to {
    transform: translate(9.35765vw, 100vh) scale(0.1803);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.5882;
  transform: translate(8.1622vw, -10px) scale(0.9566);
  animation: fall-183 20s -24s linear infinite;
}
@keyframes fall-183 {
  61.149% {
    transform: translate(6.2538vw, 61.149vh) scale(0.9566);
  }
  to {
    transform: translate(7.208vw, 100vh) scale(0.9566);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.4024;
  transform: translate(85.6491vw, -10px) scale(0.6102);
  animation: fall-184 30s -10s linear infinite;
}
@keyframes fall-184 {
  45.73% {
    transform: translate(84.2517vw, 45.73vh) scale(0.6102);
  }
  to {
    transform: translate(84.9504vw, 100vh) scale(0.6102);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.9556;
  transform: translate(41.3759vw, -10px) scale(0.4839);
  animation: fall-185 19s -23s linear infinite;
}
@keyframes fall-185 {
  65.476% {
    transform: translate(39.5189vw, 65.476vh) scale(0.4839);
  }
  to {
    transform: translate(40.4474vw, 100vh) scale(0.4839);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.994;
  transform: translate(66.3369vw, -10px) scale(0.6168);
  animation: fall-186 23s -3s linear infinite;
}
@keyframes fall-186 {
  73.587% {
    transform: translate(70.6331vw, 73.587vh) scale(0.6168);
  }
  to {
    transform: translate(68.485vw, 100vh) scale(0.6168);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.0741;
  transform: translate(48.5827vw, -10px) scale(0.5767);
  animation: fall-187 14s -15s linear infinite;
}
@keyframes fall-187 {
  65.476% {
    transform: translate(58.5213vw, 65.476vh) scale(0.5767);
  }
  to {
    transform: translate(53.552vw, 100vh) scale(0.5767);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.0816;
  transform: translate(33.9903vw, -10px) scale(0.7224);
  animation: fall-188 23s -30s linear infinite;
}
@keyframes fall-188 {
  54.342% {
    transform: translate(37.6959vw, 54.342vh) scale(0.7224);
  }
  to {
    transform: translate(35.8431vw, 100vh) scale(0.7224);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.2763;
  transform: translate(44.2859vw, -10px) scale(0.2787);
  animation: fall-189 14s -17s linear infinite;
}
@keyframes fall-189 {
  67.374% {
    transform: translate(52.014vw, 67.374vh) scale(0.2787);
  }
  to {
    transform: translate(48.14995vw, 100vh) scale(0.2787);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.3738;
  transform: translate(56.8072vw, -10px) scale(0.5908);
  animation: fall-190 29s -20s linear infinite;
}
@keyframes fall-190 {
  43.463% {
    transform: translate(49.7433vw, 43.463vh) scale(0.5908);
  }
  to {
    transform: translate(53.27525vw, 100vh) scale(0.5908);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.7063;
  transform: translate(75.4619vw, -10px) scale(0.4116);
  animation: fall-191 16s -7s linear infinite;
}
@keyframes fall-191 {
  39.148% {
    transform: translate(75.9254vw, 39.148vh) scale(0.4116);
  }
  to {
    transform: translate(75.69365vw, 100vh) scale(0.4116);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.7746;
  transform: translate(95.6401vw, -10px) scale(0.9654);
  animation: fall-192 10s -14s linear infinite;
}
@keyframes fall-192 {
  65.238% {
    transform: translate(99.1401vw, 65.238vh) scale(0.9654);
  }
  to {
    transform: translate(97.3901vw, 100vh) scale(0.9654);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.4946;
  transform: translate(77.1808vw, -10px) scale(0.6616);
  animation: fall-193 13s -24s linear infinite;
}
@keyframes fall-193 {
  45.88% {
    transform: translate(76.404vw, 45.88vh) scale(0.6616);
  }
  to {
    transform: translate(76.7924vw, 100vh) scale(0.6616);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.272;
  transform: translate(89.7297vw, -10px) scale(0.6728);
  animation: fall-194 14s -3s linear infinite;
}
@keyframes fall-194 {
  75.651% {
    transform: translate(87.1074vw, 75.651vh) scale(0.6728);
  }
  to {
    transform: translate(88.41855vw, 100vh) scale(0.6728);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.2745;
  transform: translate(84.9643vw, -10px) scale(0.3787);
  animation: fall-195 25s -23s linear infinite;
}
@keyframes fall-195 {
  76.263% {
    transform: translate(78.9572vw, 76.263vh) scale(0.3787);
  }
  to {
    transform: translate(81.96075vw, 100vh) scale(0.3787);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.0683;
  transform: translate(12.8953vw, -10px) scale(0.7054);
  animation: fall-196 24s -13s linear infinite;
}
@keyframes fall-196 {
  42.627% {
    transform: translate(10.66vw, 42.627vh) scale(0.7054);
  }
  to {
    transform: translate(11.77765vw, 100vh) scale(0.7054);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.5433;
  transform: translate(14.6681vw, -10px) scale(0.1542);
  animation: fall-197 13s -8s linear infinite;
}
@keyframes fall-197 {
  42.984% {
    transform: translate(10.6654vw, 42.984vh) scale(0.1542);
  }
  to {
    transform: translate(12.66675vw, 100vh) scale(0.1542);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.7341;
  transform: translate(56.4867vw, -10px) scale(0.1622);
  animation: fall-198 17s -19s linear infinite;
}
@keyframes fall-198 {
  30.821% {
    transform: translate(46.7287vw, 30.821vh) scale(0.1622);
  }
  to {
    transform: translate(51.6077vw, 100vh) scale(0.1622);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.6204;
  transform: translate(79.6366vw, -10px) scale(0.7627);
  animation: fall-199 18s -21s linear infinite;
}
@keyframes fall-199 {
  45.109% {
    transform: translate(79.5418vw, 45.109vh) scale(0.7627);
  }
  to {
    transform: translate(79.5892vw, 100vh) scale(0.7627);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.8826;
  transform: translate(3.337vw, -10px) scale(0.9656);
  animation: fall-200 18s -13s linear infinite;
}
@keyframes fall-200 {
  43.389% {
    transform: translate(11.5881vw, 43.389vh) scale(0.9656);
  }
  to {
    transform: translate(7.46255vw, 100vh) scale(0.9656);
  }
}

.first-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.first-screen__wrapper {
  padding: 8vh 5vw 0 5vw;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper {
    padding-top: 0;
    padding-bottom: 8vh;
  }
}
.first-screen__wrapper p {
  font-size: 1.25rem;
  line-height: 1.3em;
  width: 52%;
  color: #E9E9E9;
}
@media screen and (max-width: 1440px) {
  .first-screen__wrapper p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper p {
    font-size: 1rem;
    width: 85%;
  }
}
.first-screen__wrapper h1 {
  width: 90%;
  max-width: 1200px;
  margin: 1rem 0;
}
.first-screen__wrapper .first-screen__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.55rem;
  row-gap: 0.35rem;
  width: auto;
  max-width: 100%;
  margin: 0 0 2rem 0;
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.3em;
  color: #E9E9E9;
}
@media screen and (max-width: 1440px) {
  .first-screen__wrapper .first-screen__trust {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper .first-screen__trust {
    font-size: 0.95rem;
    width: 100%;
  }
}
.first-screen__wrapper .first-screen__trust-stars {
  display: inline-flex;
  align-items: center;
  column-gap: 0.15rem;
  color: white;
}
.first-screen__wrapper .first-screen__trust-stars i {
  font-size: 0.9em;
}
.first-screen__wrapper .first-screen__trust-sep {
  opacity: 0.55;
}
.first-screen__wrapper .button-block {
  display: flex;
  column-gap: 25px;
  height: 60px;
  margin-top: 1%;
}
@media screen and (max-width: 1440px) {
  .first-screen__wrapper .button-block .single-button {
    height: 45px;
  }
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper .button-block {
    flex-direction: column;
    margin-top: 2vh;
    row-gap: 1rem;
    width: fit-content;
  }
}
.first-screen__wrapper .button-block .single-button {
  width: auto;
}
.first-screen__background {
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100vh;
}
.first-screen__background .slider-bg-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgb(0, 0, 0) 98%);
}
.first-screen__background .slider {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  filter: brightness(0.4);
}
.first-screen__background .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: slider 21s infinite;
}
.first-screen__background .slider .slide:nth-child(1) {
  background-image: url("../image/main_1_1.webp");
  animation-delay: 0s;
}
.first-screen__background .slider .slide:nth-child(2) {
  background-image: url("../image/main_1_2.webp");
  animation-delay: -7s;
}
.first-screen__background .slider .slide:nth-child(3) {
  background-image: url("../image/main_1_3.webp");
  animation-delay: -14s;
}
@keyframes slider {
  0%, 28%, 100% {
    opacity: 1;
    animation-timing-function: ease;
    z-index: 0;
  }
  33% {
    opacity: 0;
    animation-timing-function: step-end;
    z-index: 0;
  }
  95% {
    opacity: 1;
    animation-timing-function: step-end;
    z-index: -1;
  }
}

.text-blocks {
  display: grid;
  grid-template-columns: 3vw 1fr 1fr 1fr 1fr 3vw;
}
@media screen and (max-width: 768px) {
  .text-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: 0 auto auto auto auto 0;
    padding-top: 1vh;
  }
}
.text-blocks .single-block {
  display: flex;
  flex-direction: column;
  padding: 5vh 2vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .text-blocks .single-block {
    padding: 2vh 5vw;
  }
}
.text-blocks .single-block__delimiter {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4rem;
  line-height: 0.6em;
  color: black;
}
@media screen and (max-width: 768px) {
  .text-blocks .single-block__delimiter {
    position: relative;
    left: -4px;
  }
}
.text-blocks .single-block__text {
  padding-bottom: 15px;
}
.text-blocks .single-block__text a {
  color: #CC332E;
}
.text-blocks .single-block__text a:hover {
  text-decoration: underline;
  color: black;
}
.text-blocks .single-block__subtitle {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
}
@media screen and (max-width: 1440px) {
  .text-blocks .single-block__subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .text-blocks .single-block__subtitle {
    font-size: 1rem;
    padding-top: 1vh;
  }
}
.text-blocks .single-block__price {
  font-family: "Roboto Condensed", sans-serif;
  padding: 5% 0;
  font-size: 1.9rem;
  font-weight: 800;
}
.text-blocks .single-block__price .alt-price {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
}
@media screen and (max-width: 1440px) {
  .text-blocks .single-block__price {
    font-size: 1.4rem;
  }
  .text-blocks .single-block__price .alt-price {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .text-blocks .single-block__price {
    font-size: 1.5rem;
    padding: 4% 0;
  }
}
.text-blocks .accent-block {
  background-color: rgb(24, 21, 21);
  justify-content: start;
}

.block-white-text {
  background-color: black;
}
.block-white-text .single-block__title, .block-white-text .single-block__delimiter, .block-white-text .single-block__text, .block-white-text .single-block__price, .block-white-text .single-block__subtitle {
  color: #E9E9E9;
}

.photo-topic {
  width: 100%;
  display: flex;
  column-gap: 6%;
  padding: 5vh 5vw;
}
@media screen and (max-width: 1440px) {
  .photo-topic {
    height: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic {
    flex-direction: column;
    row-gap: 4vh;
  }
}
.photo-topic__block {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  row-gap: 2vh;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block {
    row-gap: 1vh;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic__block {
    row-gap: 3vh;
    width: 100%;
  }
}
.photo-topic__block h3 {
  margin-top: 15px;
}
.photo-topic__block .topic-subtitle {
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1em;
  color: #cc332e;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block .topic-subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic__block .topic-subtitle {
    font-size: 1rem;
  }
}
.photo-topic__block .topic-subtitle-2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3em;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block .topic-subtitle-2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic__block .topic-subtitle-2 {
    font-size: 1.2rem;
  }
}
.photo-topic__block .google-widget-container {
  font-family: "Roboto", sans-serif;
}
.photo-topic__block .topic-button {
  height: 60px;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block .topic-button {
    height: 35px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic__block .topic-button {
    height: 40px;
  }
}
.photo-topic__block .lazyload-container {
  width: 100%;
  aspect-ratio: 16/9;
}
.photo-topic__block .topic-contact {
  width: 100%;
  display: flex;
  column-gap: 10px;
}
.photo-topic__block .topic-contact__icon {
  height: 1.5rem;
}
.photo-topic__block .topic-contact__link {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
}
.photo-topic__block .topic-text-contact {
  font-weight: bold;
  line-height: 1.8rem;
}
.photo-topic__block .topic-text-contact i {
  margin-right: 5px;
  font-size: 1.2rem;
  color: #CC332E;
}
.photo-topic__block .topic-link-h3 h3 {
  transition: all 0.5s;
}
.photo-topic__block .topic-link-h3 h3::after {
  content: " ⧉";
  font-size: 0.6em;
}
.photo-topic__block .topic-link-h3:hover h3 {
  color: #CC332E;
  transition: all 0.5s;
}
.photo-topic__block .topic-list-row {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}
.photo-topic__block .topic-list-row .topic-list-row-icon {
  width: 2.5rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  flex-grow: 0;
}
.photo-topic__block .topic-list-row .topic-list-row-icon svg {
  width: 100%;
  fill: #CC332E;
}
.photo-topic__block .topic-list-row .topic-list-row-text h4 {
  color: #CC332E;
  line-height: 1em;
  margin-top: 0;
}
.photo-topic__block .topic-list-row .topic-list-row-text p {
  margin-top: 0.3rem;
}
.photo-topic__block .topic-card {
  position: relative;
  height: auto;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  .photo-topic__block .topic-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.photo-topic__block .topic-card .card-body {
  position: relative;
  z-index: 1;
  padding: 3rem;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block .topic-card .card-body {
    padding: 1.8rem;
  }
}
.photo-topic__block .topic-card .card-body .card-subtitle {
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-size: 1.75rem;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block .topic-card .card-body .card-subtitle {
    font-size: 1.3rem;
  }
}
.photo-topic__block .topic-card .card-body .card-price-wrapper {
  border: 1px solid white;
  padding: 0.8rem 1rem;
  width: fit-content;
  margin-bottom: 1rem;
}
.photo-topic__block .topic-card .card-body .card-price-wrapper .card-price-text {
  color: #FFFFFF;
  margin-top: 0px;
}
.photo-topic__block .topic-card .card-body .card-price-wrapper .card-price-subtext {
  font-size: 1.8rem;
  color: #a0a0a0;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  width: fit-content;
}
.photo-topic__block .topic-card .card-body .card-price-wrapper .card-price-subtext:not(.not-strikethrough)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #CC332E;
  transform: rotate(-10deg);
}
.photo-topic__block .topic-card .card-body .card-extra {
  margin: 1rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.photo-topic__block .topic-card .card-body .card-extra:hover .card-extra-icon {
  transform: scale(0.8);
}
.photo-topic__block .topic-card .card-body .card-extra .card-extra-icon {
  flex-shrink: 0;
  background-color: #FFFFFF;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}
.photo-topic__block .topic-card .card-body .card-extra .card-extra-icon svg {
  flex-shrink: 0;
  position: relative;
  right: 2px;
}
.photo-topic__block .topic-card .card-body .card-extra .card-extra-icon .icon {
  right: 0;
}
.photo-topic__block .topic-card .card-body .card-extra .card-extra-text p {
  font-size: 1.2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block .topic-card .card-body .card-extra .card-extra-text p {
    font-size: 1rem;
  }
}
.photo-topic__block .topic-card .card-bg-img {
  position: absolute;
  inset: 0;
  background-color: black;
  z-index: 0;
}
.photo-topic__block .topic-card .card-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.photo-topic .top-align {
  justify-content: start;
}

@media screen and (max-width: 768px) {
  .reversed-topic {
    flex-direction: column-reverse;
  }
}

.list-blocks {
  display: grid;
  grid-template-columns: 3vw 1fr 1fr 1fr 3vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .list-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: 0 auto auto auto auto 0;
    padding-top: 1vh;
  }
}
.list-blocks .single-list-block {
  display: flex;
  flex-direction: column;
  padding: 5vh 2vw;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .list-blocks .single-list-block {
    padding: 3vh 5vw;
  }
}
.list-blocks .single-list-block__number {
  font-family: "Din-2014-narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  line-height: 1em;
  color: black;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 6%;
  white-space: nowrap;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .list-blocks .single-list-block__number {
    padding-bottom: 2vh;
    font-size: 2rem;
  }
}
.list-blocks .single-list-block__number .single-list-block__delimiter {
  flex: 1;
  min-width: 0;
  height: 4px;
  background-color: black;
}
.list-blocks .single-list-block__title {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1em;
  color: #cc332e;
  padding-bottom: 3vh;
}
@media screen and (max-width: 1440px) {
  .list-blocks .single-list-block__title {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .list-blocks .single-list-block__title {
    font-size: 1rem;
  }
}
.list-blocks .single-list-block .lower-margin {
  padding-bottom: 0.5rem;
}
.list-blocks .single-list-block .list-button {
  margin-top: 3vh;
}

.mini-blog {
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
  padding: 5vh 5vw;
  width: 100%;
  height: auto;
}
.mini-blog .topic-subtitle {
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1em;
  color: #cc332e;
}
@media screen and (max-width: 1440px) {
  .mini-blog .topic-subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .mini-blog .topic-subtitle {
    font-size: 1rem;
  }
}
.mini-blog .topic-container {
  display: flex;
  width: 100%;
  height: auto;
  column-gap: 3vw;
  padding-top: 2vh;
}
.mini-blog .topic-container .single-topic {
  width: 25%;
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
@media screen and (max-width: 768px) {
  .mini-blog .topic-container {
    flex-direction: column;
    row-gap: 4vh;
  }
  .mini-blog .topic-container .single-topic {
    width: 100%;
  }
}

.offers-group {
  padding: 5vh 5vw;
  background: #181515;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3vh;
}
.offers-group h3 {
  color: #CC332E;
  margin-bottom: 15px;
}
.offers-group .date-offer {
  display: flex;
  column-gap: 10px;
  width: 100%;
  max-width: 1500px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .offers-group .date-offer {
    flex-direction: column;
    row-gap: 10px;
  }
}
.offers-group .date-offer .date-area {
  position: sticky;
  top: 100px;
  background: #DEDEDE;
  width: 15%;
  height: fit-content;
  padding: 25px 35px;
}
@media screen and (max-width: 1024px) {
  .offers-group .date-offer .date-area {
    width: 30%;
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .date-area {
    width: 100%;
  }
}
.offers-group .date-offer .date-area__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 0.9em;
  color: #181515;
}
.offers-group .date-offer .date-area__description {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1em;
  color: #181515;
}
.offers-group .date-offer .accent-area {
  background: #CC332E;
}
.offers-group .date-offer .accent-area .date-area__date, .offers-group .date-offer .accent-area .date-area__description {
  color: #DEDEDE;
}
.offers-group .date-offer .invisible-area {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .invisible-area {
    display: none;
  }
}
.offers-group .date-offer .offer-area {
  background: #DEDEDE;
  width: 85%;
  height: fit-content;
  padding: 25px 35px 35px 35px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .offers-group .date-offer .offer-area {
    width: 100%;
  }
}
.offers-group .date-offer .offer-area h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3em;
  font-style: italic;
  color: #181515;
}
.offers-group .date-offer .offer-area__price {
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3em;
  color: #CC332E;
  display: flex;
}
.offers-group .date-offer .offer-area .price-special {
  width: fit-content;
  padding-bottom: 1rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area .price-special {
    flex-direction: column;
  }
}
.offers-group .date-offer .offer-area .price-special-left {
  border: 2px solid #CC332E;
  margin-right: 0.5rem;
}
.offers-group .date-offer .offer-area .price-special-left .price-description {
  background: #CC332E;
  color: #fff;
}
.offers-group .date-offer .offer-area .price-special-left .price-value {
  color: #CC332E;
}
.offers-group .date-offer .offer-area .price-special .price-description {
  margin-bottom: 0;
  padding: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3em;
}
.offers-group .date-offer .offer-area .price-special .price-value {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0.5rem;
}
.offers-group .date-offer .offer-area .price-special .price-strikethrough {
  text-decoration: line-through;
  color: #575757;
  font-weight: 400;
}
.offers-group .date-offer .offer-area .price-special .price-grey {
  color: #575757;
  font-weight: 400;
}
.offers-group .date-offer .offer-area .price-special .price-regular {
  color: #CC332E;
  padding: 0;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area .price-special .price-special-wave-container {
    margin: 1.5rem 0 0 0;
    gap: 0.5rem;
  }
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave {
    gap: 0.4rem;
  }
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave p {
  margin-bottom: 0;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave .wave-sub {
  width: 80px;
  flex-shrink: 0;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave .wave-price {
  width: 130px;
}
@media screen and (max-width: 450px) {
  .offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave .wave-price {
    width: 68px;
    line-height: 1.1em;
  }
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave.wave-active {
  color: #CC332E;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave.wave-active p {
  color: #CC332E;
  font-weight: bold;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave.wave-sold {
  color: #575757;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave.wave-sold p {
  color: #575757;
  text-decoration: line-through;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave .wave-strikethrough {
  text-decoration: line-through;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave .wave-tag-grey {
  color: #ffffff !important;
  background: #575757;
  border-radius: 1rem;
  padding: 0.1rem 0.5rem;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave .wave-tag-red {
  color: #ffffff !important;
  background: #CC332E;
  border-radius: 1rem;
  padding: 0.1rem 0.5rem;
}
.offers-group .date-offer .offer-area__time {
  display: flex;
  align-items: center;
  column-gap: 0.6em;
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3em;
}
.offers-group .date-offer .offer-area__time svg {
  height: 1em;
  width: 1em;
}
.offers-group .date-offer .offer-area__timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.offers-group .date-offer .offer-area__timeline .line {
  position: absolute;
  border-bottom: 2px solid black;
  height: 25px;
  width: calc(100% - 160px);
  left: 80px;
}
.offers-group .date-offer .offer-area__timeline .icons {
  padding: 10px 0 10px 10px;
  position: relative;
  z-index: 10;
}
.offers-group .date-offer .offer-area__timeline .icons .single_icon {
  height: 30px;
  width: 30px;
  padding: 7px;
  background-color: black;
  border-radius: 50%;
  border: none;
}
.offers-group .date-offer .offer-area__timeline .descriptions {
  padding-right: 10px;
  text-align: center;
}
.offers-group .date-offer .offer-area__timeline .descriptions .single-description {
  margin: 0;
}
.offers-group .date-offer .offer-area__timeline .grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  grid-template-rows: 1fr;
  column-gap: 25px;
}
.offers-group .date-offer .offer-area__timeline .flex-4 {
  display: flex;
  justify-content: space-between;
  padding: 10px 75px 10px 65px;
}
.offers-group .date-offer .offer-area__timeline .vertical-grid-1 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area__timeline {
    flex-direction: row;
    flex-shrink: 0;
    padding-top: 10px;
  }
  .offers-group .date-offer .offer-area__timeline .flex-4 {
    display: grid;
  }
  .offers-group .date-offer .offer-area__timeline .grid-4 {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: auto;
    align-items: center;
  }
  .offers-group .date-offer .offer-area__timeline .vertical-grid-1 {
    grid-template-rows: 1fr;
  }
  .offers-group .date-offer .offer-area__timeline .line {
    border-bottom: none;
    border-right: 2px solid black;
    height: 75%;
    width: 16px;
    left: 0;
    top: 15px;
  }
  .offers-group .date-offer .offer-area__timeline .icons {
    padding: 0 10px 0 0;
    row-gap: 10px;
  }
  .offers-group .date-offer .offer-area__timeline .descriptions {
    row-gap: 10px;
    text-align: left;
  }
}
.offers-group .date-offer .offer-area__booking-block {
  display: flex;
  align-items: center;
  column-gap: 2vw;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area__booking-block {
    flex-direction: column;
    align-items: start;
    row-gap: 1.5rem;
  }
}
@media screen and (max-width: 1440px) {
  .offers-group .date-offer .offer-area__booking-block .single-button {
    height: 50px;
  }
}
.offers-group .date-offer .offer-area__booking-block .tickets-counter {
  display: flex;
  justify-content: center;
  align-items: end;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1em;
}
.offers-group .date-offer .offer-area__booking-block .tickets-counter .txt-rotate {
  width: 40px;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offers-group .date-offer .offer-area__separator {
  margin: 5vh 0;
  height: 0;
  border-bottom: 4px dashed #181515;
}

.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
@media screen and (max-width: 768px) {
  .offers {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 8vh;
  }
}

.single-offer {
  color: #181515;
}
.single-offer__counter {
  height: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #181515;
}
.single-offer__counter .counter-area {
  display: flex;
  justify-content: center;
}
.single-offer__counter .counter-area .txt-rotate {
  width: 30px;
  display: flex;
  font-weight: 800;
  justify-content: center;
}
.single-offer__top {
  background: #181515;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.single-offer__bottom {
  background: rgb(233, 233, 233);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.single-offer__title {
  color: #e9e9e9;
  padding: 10px;
}
.single-offer__date {
  font-family: "Din-2014", sans-serif;
  font-size: 1.05rem;
  color: #CC332E;
  padding: 5px 10px 20px 10px;
}
.single-offer__price {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  font-size: 6rem;
  line-height: 1em;
  display: flex;
  padding-top: 20px;
}
.single-offer__price span {
  font-size: 1.8rem;
  line-height: 2.2em;
}
.single-offer__price-alt {
  font-size: 1.4rem;
  font-weight: 300;
  padding: 0 0 4vh 0;
}
.single-offer__time {
  font-family: "Din-2014", sans-serif;
  font-size: 1.1rem;
  line-height: 1em;
  font-weight: 600;
  display: flex;
  column-gap: 10px;
  align-items: center;
  padding: 20px;
}
.single-offer .single-button {
  margin: 1vh 20px;
  height: 60px;
}
.single-offer__text {
  text-align: center;
  padding: 40px 2vw;
}
@media screen and (max-width: 768px) {
  .single-offer__counter .counter-area {
    justify-content: start;
  }
  .single-offer__price {
    font-size: 3rem;
  }
  .single-offer__price-alt {
    font-size: 1.4rem;
  }
}

.color-banner {
  padding: 3vh 5vw;
  width: 100%;
}
.color-banner__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
  background: #CC332E;
  padding: 55px 25%;
}
.color-banner__wrapper p, .color-banner__wrapper ul, .color-banner__wrapper li, .color-banner__wrapper h3, .color-banner__wrapper h4 {
  color: #FFFFFF;
}
.color-banner__wrapper h3 {
  font-style: italic;
}
.color-banner__wrapper ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding-left: 35px;
}
.color-banner__wrapper p {
  font-family: "Din-2014", sans-serif;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .color-banner__wrapper {
    padding: 30px 25px;
  }
  .color-banner__wrapper p {
    font-size: 1rem;
  }
}

.photo-gallery-new-albums-banner .color-banner__wrapper {
  padding: 35px 25%;
  row-gap: 1.5vh;
}
.photo-gallery-new-albums-banner a {
  color: #FFFFFF;
  text-decoration: none;
}
.photo-gallery-new-albums-banner a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .photo-gallery-new-albums-banner .color-banner__wrapper {
    padding: 25px 25px;
  }
}

.banner {
  width: 100%;
  padding: 3vh 5vw;
}
.banner .banner-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2vw;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../image/banner.jpg") center top;
  background-position: top;
  background-size: cover;
  padding: 9vh 4vw;
}
.banner .banner-wrapper .banner-column {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 50%;
}
.banner .banner-wrapper .banner-column .banner-subtitle {
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1em;
  color: #cc332e;
}
@media screen and (max-width: 1440px) {
  .banner .banner-wrapper .banner-column .banner-subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .banner .banner-wrapper .banner-column .banner-subtitle {
    font-size: 1rem;
  }
}
.banner .banner-wrapper .banner-column h3, .banner .banner-wrapper .banner-column .banner-text {
  color: white;
}
.banner .banner-wrapper .banner-column .tickets-counter {
  display: flex;
  justify-content: center;
  align-items: end;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1em;
  color: white;
}
.banner .banner-wrapper .banner-column .tickets-counter .txt-rotate {
  width: 40px;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .banner-wrapper .banner-wrapper__right {
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}

.default-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #181515;
}
.default-footer .text-blocks {
  background: #181515;
}
.default-footer .text-blocks .single-block {
  padding-bottom: 1vh;
}
.default-footer .text-blocks .single-block__title {
  font-size: 1.5rem;
}
.default-footer .text-blocks .single-block__text, .default-footer .text-blocks .single-block__link {
  font-family: "Din-2014", sans-serif;
  font-size: 1rem;
  line-height: 1em;
}
@media screen and (max-width: 1440px) {
  .default-footer .text-blocks .single-block__title {
    font-size: 1.3rem;
  }
  .default-footer .text-blocks .single-block__text, .default-footer .text-blocks .single-block__link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .default-footer .text-blocks {
    grid-template: "a b" auto "c d" auto/1fr 1fr;
  }
  .default-footer .text-blocks .footer-contact, .default-footer .text-blocks .footer-follow {
    grid-area: a;
  }
  .default-footer .text-blocks .footer-menu, .default-footer .text-blocks .footer-payments {
    grid-area: b;
  }
  .default-footer .text-blocks .footer-legal {
    grid-area: c;
  }
  .default-footer .text-blocks .footer-partners {
    grid-area: d;
  }
}
.default-footer .text-blocks .single-block__title {
  padding-bottom: 3vh;
}
.default-footer .text-blocks .single-block__text {
  line-height: 1.8em;
}
.default-footer .text-blocks .single-block__text a {
  color: #E9E9E9;
  text-decoration: underline;
}
.default-footer .text-blocks .single-block__text a:hover {
  color: #CC332E;
}
.default-footer .text-blocks .single-block__link {
  color: #E9E9E9;
  line-height: 1.8em;
}
.default-footer .text-blocks .single-block__link:hover {
  color: #CC332E;
}
.default-footer .text-blocks .single-block__icons {
  display: flex;
  column-gap: 15px;
}
.default-footer .text-blocks .single-block__icons .icon-link svg {
  height: 30px;
  fill: #E9E9E9;
  transition: fill 0.5s;
}
.default-footer .text-blocks .single-block__icons .icon-link svg:hover {
  fill: #CC332E;
  transition: fill 0.5s;
}
.default-footer .text-blocks .single-block__icons .footer-icon {
  height: 30px;
  fill: #E9E9E9;
}
@media screen and (max-width: 768px) {
  .default-footer .text-blocks .single-block .single-block__text, .default-footer .text-blocks .single-block .single-block__link, .default-footer .text-blocks .single-block a {
    font-size: 1rem;
  }
}
.default-footer .credits {
  display: flex;
  column-gap: 4%;
  padding: 5vh 5vw;
}
.default-footer .credits .credit_text {
  color: #E9E9E9;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (max-width: 1440px) {
  .default-footer .credits .credit_text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .default-footer .credits {
    padding-top: 0;
    margin-bottom: 20px;
    justify-content: center;
  }
}

.simple-first-screen {
  height: 75vh;
  justify-content: end;
  position: relative;
  background: #181515;
}
.simple-first-screen .first-screen__wrapper {
  padding-bottom: 5vh;
  z-index: 10;
  width: 50%;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .simple-first-screen .first-screen__wrapper {
    width: 90%;
    padding-bottom: 1vh;
  }
}
.simple-first-screen .first-screen__wrapper h1 {
  width: 100%;
  color: #CC332E;
  margin-top: 0;
}
.simple-first-screen .first-screen__wrapper p {
  width: 100%;
}
.simple-first-screen .first-screen__wrapper p a {
  font-family: inherit;
  font-size: inherit;
  color: #CC332E;
}
.simple-first-screen .first-screen__wrapper p a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.simple-first-screen__background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  opacity: 20%;
}

.checkout-first-screen {
  height: 30vh;
  background: black;
}
.checkout-first-screen .first-screen__wrapper {
  padding-bottom: 1vh;
}
.checkout-first-screen .first-screen__wrapper h1 {
  color: #FFFFFF;
  font-size: 4rem;
}

.checkout-info {
  width: 100%;
  background: black;
  padding: 1vh 5vw;
}
.checkout-info__wrapper {
  background: #FFFFFF;
  padding: 1vh 5vw;
  display: flex;
  flex-direction: column;
}
.checkout-info__wrapper .checkout-block {
  padding-bottom: 1vh;
}
.checkout-info__wrapper .checkout-block #coupon .coupon-field-row {
  display: flex;
  padding-top: 0;
  margin-bottom: 5px;
}
.checkout-info__wrapper .checkout-block #coupon .coupon-field-row input {
  margin: 0;
}
.checkout-info__wrapper .checkout-block #coupon .coupon-field-row button {
  padding: 10px 20px;
  white-space: nowrap;
}
.checkout-info__wrapper .checkout-block #coupon .coupon-error-block {
  margin-bottom: 20px;
}
.checkout-info__wrapper .checkout-block .radio-buttons-block {
  display: flex;
}
@media screen and (max-width: 768px) {
  .checkout-info__wrapper .checkout-block .radio-buttons-block {
    flex-direction: column;
  }
}
.checkout-info__wrapper .checkout-block .radio-buttons-block .form_radio_btn label {
  padding: 10px;
  margin: 0 20px 20px 0;
  border: 1px solid #a1a1a1;
  border-radius: 10px;
  background: none;
}
.checkout-info__wrapper .checkout-block .radio-buttons-block .form_radio_btn input {
  display: none;
}
.checkout-info__wrapper .checkout-block .radio-buttons-block .form_radio_btn input:checked + label {
  border: 1px solid #CC332E;
  background: rgba(204, 51, 46, 0.3);
}
.checkout-info__wrapper .checkout-block .accept-button-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area .agreement-text {
  margin: 10px 0;
}
.checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area .agreement-text a {
  color: #CC332E;
  text-decoration: underline;
}
.checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area .agreement-text a:hover {
  color: black;
}
.checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area .checkbox-input {
  height: 1.5rem;
  width: 1.5rem;
  margin-left: 10px;
}
@media screen and (max-width: 1440px) {
  .checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .checkout-info__wrapper .checkout-block .accept-button-area {
    align-items: start;
  }
  .checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area {
    flex-direction: row-reverse;
  }
  .checkout-info__wrapper .checkout-block .accept-button-area .checkbox-area .checkbox-input {
    margin-left: 0;
    margin-right: 10px;
  }
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .checkout-info__wrapper .checkout-block .checkout-buttons-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-cancel-order {
  height: auto;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 18px 32px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: 1px;
  text-align: center;
  color: #333;
  border: 1px solid #a1a1a1;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s;
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-cancel-order:hover {
  border-color: #CC332E;
  color: #CC332E;
  background: rgba(204, 51, 46, 0.05);
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-cancel-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  .checkout-info__wrapper .checkout-block .checkout-buttons-row #button-cancel-order {
    width: 100%;
    padding: 15px 20px;
    order: 2;
  }
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method {
  height: auto;
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 1.1rem;
  background-color: #CC332E;
  padding: 18px 32px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: 1px;
  text-align: center;
  color: white;
  transition: all 0.5s;
  border: none;
  text-transform: uppercase;
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method svg {
  fill: white;
  height: 0.8rem;
  position: relative;
  transition: left 0.5s;
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method:hover {
  border: none;
  background: #dc5b56;
  color: white;
  transition: all 0.5s;
}
.checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method:hover svg {
  fill: white;
  left: 7px;
  transition: left 0.5s;
}
@media screen and (max-width: 1440px) {
  .checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method {
    column-gap: 0.9rem;
  }
  .checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method:hover svg {
    left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method {
    width: 100%;
    padding: 15px 20px;
    column-gap: 1.1rem;
    order: 1;
  }
  .checkout-info__wrapper .checkout-block .checkout-buttons-row #button-payment-method:hover svg {
    left: 7px;
  }
}
.checkout-info__wrapper img {
  height: 60px;
}
.checkout-info__wrapper label {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 500;
  font-size: 1rem;
  padding-top: 25px;
}
.checkout-info__wrapper input, .checkout-info__wrapper select {
  width: 100%;
  height: 47px;
  padding: 6px 16px;
  margin: 8px 0;
  background: #fafafa;
  border-radius: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  font-size: 1rem;
}
.checkout-info__wrapper .table-text {
  font-size: 1rem;
}
.checkout-info__wrapper .table-text .product-link {
  font-size: 1.2rem;
}
.checkout-info__wrapper .table-text p {
  margin-bottom: 5px;
}
.checkout-info__wrapper .table-text__total {
  font-weight: 500;
}
.checkout-info .padding-top-bottom {
  padding: 5vh 0;
}

.swiper-section {
  padding: 0 5vw 3vh 5vw;
  position: relative;
  width: 100%;
  height: 35vh;
}
.swiper-section .swiper {
  width: 100%;
  height: 100%;
}

.photo-gallery-section {
  width: 100%;
  padding: 3vh 5vw 2vh 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  /* Модальное окно для галереи */
}
@media screen and (max-width: 1200px) {
  .photo-gallery-section {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .photo-gallery-section {
    grid-template-columns: auto;
  }
}
.photo-gallery-section__subgallery {
  position: relative;
  aspect-ratio: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.photo-gallery-section__subgallery:has(h3) {
  aspect-ratio: 1.3;
}
@media screen and (min-width: 768px) {
  .photo-gallery-section__subgallery img {
    transition: filter 0.5s;
  }
}
.photo-gallery-section__subgallery:hover h3 {
  color: #CC332E;
  transition: color 0.5s;
}
@media screen and (min-width: 768px) {
  .photo-gallery-section__subgallery:hover img {
    filter: contrast(0.75) brightness(0.75);
    transition: filter 0.5s;
  }
}
.photo-gallery-section__subtitle {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  padding: 0;
  margin: 0 0 0.5rem 0;
  transition: color 0.5s;
}
.photo-gallery-section__preview {
  background: gray;
  width: 100%;
}
.photo-gallery-section__new-sticker {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  background: #CC332E;
  color: #FFFFFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transform: rotate(-8deg);
  pointer-events: none;
}
.photo-gallery-section__photo {
  padding: 1vw 0;
}
.photo-gallery-section .gallery-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: 0.8s;
}
.photo-gallery-section .modal-open {
  overflow: hidden;
}
.photo-gallery-section .modal-header {
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-sizing: border-box;
  border: none;
}
.photo-gallery-section .modal-header .modal-counter {
  color: #FFFFFF;
}
.photo-gallery-section .modal-buttons-container {
  display: flex;
  gap: 30px;
}
.photo-gallery-section .modal-button {
  cursor: pointer;
}
.photo-gallery-section .modal-buttons-container svg {
  width: 30px;
  height: 30px;
  z-index: 100;
}
.photo-gallery-section #zoom-minus {
  display: none;
}
.photo-gallery-section #fullscreen-close {
  display: none;
}
.photo-gallery-section .gallery-swiper {
  height: 100%;
}
.photo-gallery-section .gallery-swiper .swiper-slide {
  background-color: rgba(0, 0, 0, 0.5);
}
.photo-gallery-section .gallery-swiper .swiper-slide img {
  object-fit: contain;
}
.photo-gallery-section .gallery-swiper .gallery-swiper-button-next, .photo-gallery-section .gallery-swiper .gallery-swiper-button-prev {
  color: #ffffff;
}

.photo-gallery-menu-section {
  width: 100%;
  padding: 3vh 5vw 1vh 5vw;
  display: flex;
  flex-direction: column;
}
.photo-gallery-menu-section h2 {
  font-size: 4rem;
  width: 100%;
  color: #000000;
  margin: 1rem 0 0 0;
}
.photo-gallery-menu-section .photos-total {
  color: #a0a0a0;
  margin: 0 0 2rem 0;
}
.photo-gallery-menu-section .photo-gallery-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.photo-gallery-menu-section .photo-gallery-menu__block {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .photo-gallery-menu-section .photo-gallery-menu__block {
    flex-direction: column;
  }
}
.photo-gallery-menu-section .photo-gallery-menu__item {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  color: #CC332E;
}
.photo-gallery-menu-section .photo-gallery-menu__item svg {
  height: 1.2rem;
  width: 1.2rem;
  margin-right: 0.2rem;
}
.photo-gallery-menu-section .photo-gallery-menu__item:hover {
  text-decoration: underline;
}
.photo-gallery-menu-section .photo-gallery-menu__group {
  display: flex;
}
.photo-gallery-menu-section .photo-gallery-menu__group p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.photo-gallery-menu-section .photo-gallery-menu__group a {
  color: #000000;
}
.photo-gallery-menu-section .photo-gallery-menu__group .active {
  color: #CC332E;
}
.photo-gallery-menu-section .photo-gallery-menu__pagination {
  margin-bottom: 3rem;
  display: flex;
  gap: 0.5rem;
}
.photo-gallery-menu-section .photo-gallery-menu__pagination .pagination-dots {
  border: none;
}
.photo-gallery-menu-section .photo-gallery-menu__pagination .pagination-item {
  font-size: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-gallery-menu-section .photo-gallery-menu__pagination .pagination-item.active {
  background-color: #CC332E;
  border-radius: 50%;
  color: #ffffff;
}
.photo-gallery-menu-section .lower-menu {
  margin-top: 0;
}

.new-year-banner {
  width: 100%;
}
.new-year-banner__wrapper {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.5)), url("../image/banner.jpg") 50% 100%;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
}
.new-year-banner__content {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  right: 0;
  padding: 30px 0;
  display: flex;
}
@media screen and (max-width: 640px) {
  .new-year-banner__content {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
}
.new-year-banner__content .santa {
  position: relative;
  right: -60px;
  height: 160px;
  margin-top: 5px;
  transform: translateX(100%) rotate(-50deg);
  animation-delay: 1s;
}
.new-year-banner__content .message-box {
  position: relative;
  right: -60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 300px;
}
.new-year-banner__content .message-box__button {
  align-self: flex-end;
  border-radius: 10rem;
}
.new-year-banner__content .message-box__message {
  position: relative;
  align-self: flex-end;
  max-width: 255px;
  padding: 10px 14px;
  background: #eee;
  color: #000;
  border-radius: 18px;
  border-bottom-right-radius: 0;
  word-break: break-word;
  line-height: 24px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.new-year-banner__content .message-box__message, .new-year-banner__content .message-box__button {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
}

/* Запуск анимации */
.show-animation .santa {
  animation: santaAppear 1s ease-in-out forwards;
}
.show-animation .message-box__message,
.show-animation .message-box__button {
  animation: messageAppear 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.show-animation .message-box__message:nth-child(1) {
  animation-delay: 1.5s;
}
.show-animation .message-box__message:nth-child(2) {
  animation-delay: 2.5s;
}
.show-animation .message-box__button {
  animation-delay: 3.5s;
  pointer-events: auto;
}

@keyframes santaAppear {
  from {
    transform: translateX(100%) rotate(-50deg);
  }
  to {
    transform: translateX(0%) rotate(-50deg);
  }
}
@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.small-photo-topic {
  column-gap: 20vw;
}
.small-photo-topic .photo-topic__block {
  justify-content: center;
}

.simple-title {
  width: 100%;
  padding: 3vh 5vw;
}

.simple-text {
  width: 100%;
  padding: 3vh 5vw;
}
.simple-text__button {
  margin-top: 25px;
}
.simple-text ul {
  padding-left: 30px;
}

.geo-section {
  width: 100%;
  padding: 3vh 5vw;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 10px;
}
.feedback-form .input-fields .form-group {
  margin: 10px 0;
  padding: 0;
}
.feedback-form .input-fields .form-group .form-field {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  font-size: 1rem;
  height: 40px;
  padding: 0 10px;
  border: none;
  border-bottom: 1.5px solid black;
  border-radius: 0;
}
.feedback-form .input-fields .form-group .form-field:focus {
  border-top: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  box-shadow: 0 0 3px #d0d0d0;
}
.feedback-form .input-fields .form-group .text-field {
  height: 80px;
  padding-top: 5px;
  max-width: 100%;
  min-height: 40px;
  max-height: 60vh;
}
.feedback-form .pseudo_button[type=submit] {
  background-color: #CC332E;
}

.enter-screen {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5vh;
  background: black;
}
.enter-screen .logo-img img {
  height: 35px;
}
.enter-screen .enterSwiper {
  --swiper-theme-color: #000;
  --swiper-navigation-size: 44px;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}
.enter-screen .enterSwiper .swiper-button__prev, .enter-screen .enterSwiper .swiper-button__next {
  height: 100%;
  width: 3vw;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  background: linear-gradient(-90deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.enter-screen .enterSwiper .swiper-button__prev svg, .enter-screen .enterSwiper .swiper-button__next svg {
  width: 50%;
}
.enter-screen .enterSwiper .swiper-button__prev {
  left: 0;
  transform: rotate(180deg);
}
.enter-screen .enterSwiper .swiper-button__next {
  right: 0;
}
.enter-screen .button-block {
  display: flex;
  justify-content: center;
  column-gap: 2vw;
}

#tshirt_card .swiper {
  height: 540px;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  #tshirt_card .swiper {
    height: 400px;
  }
}
#tshirt_card .swiper .swiper-slide img {
  height: 100%;
  width: auto;
  object-fit: inherit;
}
@media screen and (max-width: 1440px) {
  #tshirt_card .swiper .swiper-slide img {
    object-fit: cover;
  }
}
#tshirt_card .block-left .card-bg-img {
  height: auto;
}
#tshirt_card .card-price-text {
  margin-bottom: 0;
}
#tshirt_card .card-extra-text p {
  margin-bottom: 0;
}

.link-cards-section {
  width: 100%;
  padding: 3vh 5vw;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .link-cards-section {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .link-cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .link-cards-section {
    grid-template-columns: 1fr;
  }
}
.link-cards-section .link-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.link-cards-section .link-card:hover {
  transform: translateY(-4px);
}
.link-cards-section .link-card img {
  width: 100%;
  height: 200px;
  padding: 0.5rem;
  object-fit: contain;
  display: block;
}
.link-cards-section .link-card .card-body {
  padding: 12px;
}
.link-cards-section .link-card .card-title {
  width: 100%;
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  color: #222;
}
.link-cards-section .link-card .card-text {
  margin-top: 0.5rem;
}
.link-cards-section .link-card .card-link {
  width: 100%;
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #0077cc;
  text-decoration: none;
}
.link-cards-section .link-card .card-link:hover {
  text-decoration: underline;
}

#direct_price ul {
  list-style-position: inside;
  margin-left: 1rem;
}
#direct_price ul li a {
  color: #CC332E;
}
#direct_price ul li a:hover {
  text-decoration: underline;
  color: black;
}

.sequence-topic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6%;
  row-gap: 0;
}
@media (max-width: 1200px) {
  .sequence-topic {
    column-gap: 3%;
  }
}
@media (max-width: 768px) {
  .sequence-topic {
    grid-template-columns: repeat(1, 1fr);
  }
  .sequence-topic .sequence-map {
    display: none;
  }
}
.sequence-topic .sequence-topic__block {
  row-gap: 0;
  width: 100%;
}
.sequence-topic .sequence-topic__block h3 {
  margin: 1.5rem 0;
}
.sequence-topic .sequence-topic__block .gmap-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
}
.sequence-topic .sequence-topic__block .sequence-map-mobile {
  display: none;
}
@media (max-width: 768px) {
  .sequence-topic .sequence-topic__block .sequence-map-mobile {
    display: block;
  }
}
.sequence-topic .sequence-topic__block .sequence-area {
  position: relative;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 2rem;
}
@media (max-width: 1200px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description {
    gap: 0.5rem;
  }
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description::before, .sequence-topic .sequence-topic__block .sequence-area .sequence-description::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  transform: translateX(-50%);
  border-left: 0.8rem solid #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description::before {
  top: 0;
  bottom: 50%;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description::after {
  top: 50%;
  bottom: 0;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__block {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__block {
    flex-direction: column;
  }
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__block .sequence-description__card {
    margin: 0 0 0 1rem;
  }
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #CC332E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot i {
  color: white;
  line-height: 1;
  font-size: 1.4rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot.border-dot {
  background: white;
  border: 3px solid #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot.border-dot i {
  color: #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot.hidden-dot {
  opacity: 0;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text {
  margin-left: 3rem;
}
@media (max-width: 1200px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__text {
    margin-left: 1rem;
  }
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .topic-subtitle-2 {
  margin-bottom: 0.5rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .topic-text {
  margin-bottom: 0.4rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .topic-text i {
  margin: 0 0 0.4rem 0;
  color: #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .single-button {
  margin-top: 1rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card {
  position: relative;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px solid #CC332E;
  border-radius: 1rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link {
  display: block;
  margin-top: 0.3rem;
  font-weight: bold;
  color: #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link i {
  position: relative;
  left: 0;
  transition: left 0.5s;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link:hover {
  color: black;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link:hover i {
  left: 0.8rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-icon {
  height: 4rem;
}
@media (max-width: 768px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-icon {
    display: none;
  }
}
.sequence-topic .sequence-topic__block .sequence-area__start .sequence-description {
  align-items: start;
}
.sequence-topic .sequence-topic__block .sequence-area__start .sequence-description::before {
  margin-top: 4rem;
}
.sequence-topic .sequence-topic__block .sequence-area__end .sequence-description::after {
  display: none;
}
.sequence-topic .sequence-topic__block .sequence-area__start-dashed .sequence-description::before {
  border-left: 0.8rem dashed #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area__end-dashed .sequence-description::after {
  border-left: 0.8rem dashed #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-empty .sequence-description {
  padding: 0;
}
.sequence-topic .sequence-topic__block .sequence-padding-top .sequence-description {
  padding: 2rem 0 0 0;
}
.sequence-topic .sequence-topic__block .sequence-padding-bottom .sequence-description {
  padding: 0 0 2rem 0;
}
.sequence-topic .sequence-topic__block .sequence-no-padding .sequence-description {
  padding: 0;
}
.sequence-topic .sequence-topic__block .sequence-switch__right {
  position: relative;
  height: 10rem;
}
.sequence-topic .sequence-topic__block .sequence-switch__right::before, .sequence-topic .sequence-topic__block .sequence-switch__right::after {
  content: "";
  position: absolute;
  width: 50%;
  height: calc(50% + 0.38rem);
}
.sequence-topic .sequence-topic__block .sequence-switch__right::before {
  right: 50%;
  top: 0;
  left: 1.15rem;
  border-bottom: 0.8rem solid #CC332E;
  border-left: 0.8rem solid #CC332E;
  border-radius: 0 0 0 5rem;
}
.sequence-topic .sequence-topic__block .sequence-switch__right::after {
  left: 50%;
  bottom: 0;
  right: 1.15rem;
  border-top: 0.8rem solid #CC332E;
  border-right: 0.8rem solid #CC332E;
  border-radius: 0 5rem 0 0;
}
.sequence-topic .block-bottom {
  grid-column: 1/-1;
}

@font-face {
  font-family: "din-2014";
  src: url("https://use.typekit.net/af/35b7e6/00000000000000007735afe4/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/35b7e6/00000000000000007735afe4/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/35b7e6/00000000000000007735afe4/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}
@font-face {
  font-family: "din-2014";
  src: url("https://use.typekit.net/af/c2b6e5/00000000000000007735afee/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/c2b6e5/00000000000000007735afee/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/c2b6e5/00000000000000007735afee/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "din-2014";
  src: url("https://use.typekit.net/af/2bc98d/00000000000000007735aff1/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2"), url("https://use.typekit.net/af/2bc98d/00000000000000007735aff1/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff"), url("https://use.typekit.net/af/2bc98d/00000000000000007735aff1/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}
@font-face {
  font-family: "din-2014";
  src: url("https://use.typekit.net/af/dc88f0/00000000000000007735aff7/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff2"), url("https://use.typekit.net/af/dc88f0/00000000000000007735aff7/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff"), url("https://use.typekit.net/af/dc88f0/00000000000000007735aff7/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}
@font-face {
  font-family: "din-2014-narrow";
  src: url("https://use.typekit.net/af/2bdaca/00000000000000007735afe5/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/2bdaca/00000000000000007735afe5/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/2bdaca/00000000000000007735afe5/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

/*# sourceMappingURL=style_v3_1.css.map */
