@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 {
  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 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    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;
  font-size: 14px !important;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  background: 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;
}
@media screen and (max-width: 768px) {
  .fixed-header .top-banner p {
    font-size: 1rem;
  }
}
.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 {
  width: 14rem;
  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.3569;
  transform: translate(26.7923vw, -10px) scale(0.4845);
  animation: fall-1 12s -1s linear infinite;
}
@keyframes fall-1 {
  53.312% {
    transform: translate(32.1507vw, 53.312vh) scale(0.4845);
  }
  to {
    transform: translate(29.4715vw, 100vh) scale(0.4845);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.4234;
  transform: translate(18.0296vw, -10px) scale(0.4797);
  animation: fall-2 13s -3s linear infinite;
}
@keyframes fall-2 {
  56.168% {
    transform: translate(8.5338vw, 56.168vh) scale(0.4797);
  }
  to {
    transform: translate(13.2817vw, 100vh) scale(0.4797);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.1944;
  transform: translate(77.9486vw, -10px) scale(0.2417);
  animation: fall-3 11s -27s linear infinite;
}
@keyframes fall-3 {
  38.887% {
    transform: translate(69.5013vw, 38.887vh) scale(0.2417);
  }
  to {
    transform: translate(73.72495vw, 100vh) scale(0.2417);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.4469;
  transform: translate(70.9796vw, -10px) scale(0.2287);
  animation: fall-4 17s -16s linear infinite;
}
@keyframes fall-4 {
  54.804% {
    transform: translate(66.2589vw, 54.804vh) scale(0.2287);
  }
  to {
    transform: translate(68.61925vw, 100vh) scale(0.2287);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.9821;
  transform: translate(12.1944vw, -10px) scale(0.6013);
  animation: fall-5 19s -4s linear infinite;
}
@keyframes fall-5 {
  45.743% {
    transform: translate(14.8909vw, 45.743vh) scale(0.6013);
  }
  to {
    transform: translate(13.54265vw, 100vh) scale(0.6013);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.2641;
  transform: translate(88.6865vw, -10px) scale(0.21);
  animation: fall-6 13s -3s linear infinite;
}
@keyframes fall-6 {
  48.74% {
    transform: translate(93.8057vw, 48.74vh) scale(0.21);
  }
  to {
    transform: translate(91.2461vw, 100vh) scale(0.21);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.7576;
  transform: translate(99.8001vw, -10px) scale(0.993);
  animation: fall-7 23s -17s linear infinite;
}
@keyframes fall-7 {
  67.614% {
    transform: translate(101.4874vw, 67.614vh) scale(0.993);
  }
  to {
    transform: translate(100.64375vw, 100vh) scale(0.993);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.0467;
  transform: translate(85.7152vw, -10px) scale(0.9588);
  animation: fall-8 22s -22s linear infinite;
}
@keyframes fall-8 {
  52.856% {
    transform: translate(94.4813vw, 52.856vh) scale(0.9588);
  }
  to {
    transform: translate(90.09825vw, 100vh) scale(0.9588);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.4564;
  transform: translate(76.3032vw, -10px) scale(0.2246);
  animation: fall-9 14s -24s linear infinite;
}
@keyframes fall-9 {
  72.475% {
    transform: translate(83.5757vw, 72.475vh) scale(0.2246);
  }
  to {
    transform: translate(79.93945vw, 100vh) scale(0.2246);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.8336;
  transform: translate(0.888vw, -10px) scale(0.0887);
  animation: fall-10 21s -21s linear infinite;
}
@keyframes fall-10 {
  44.426% {
    transform: translate(1.5916vw, 44.426vh) scale(0.0887);
  }
  to {
    transform: translate(1.2398vw, 100vh) scale(0.0887);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.7076;
  transform: translate(24.245vw, -10px) scale(0.1419);
  animation: fall-11 13s -2s linear infinite;
}
@keyframes fall-11 {
  40.035% {
    transform: translate(27.712vw, 40.035vh) scale(0.1419);
  }
  to {
    transform: translate(25.9785vw, 100vh) scale(0.1419);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.8707;
  transform: translate(24.1316vw, -10px) scale(0.607);
  animation: fall-12 13s -23s linear infinite;
}
@keyframes fall-12 {
  69.804% {
    transform: translate(24.9509vw, 69.804vh) scale(0.607);
  }
  to {
    transform: translate(24.54125vw, 100vh) scale(0.607);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.6162;
  transform: translate(86.5676vw, -10px) scale(0.5604);
  animation: fall-13 23s -17s linear infinite;
}
@keyframes fall-13 {
  50.852% {
    transform: translate(78.3679vw, 50.852vh) scale(0.5604);
  }
  to {
    transform: translate(82.46775vw, 100vh) scale(0.5604);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.1982;
  transform: translate(27.6554vw, -10px) scale(0.9577);
  animation: fall-14 29s -24s linear infinite;
}
@keyframes fall-14 {
  47.853% {
    transform: translate(26.521vw, 47.853vh) scale(0.9577);
  }
  to {
    transform: translate(27.0882vw, 100vh) scale(0.9577);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.1968;
  transform: translate(74.2799vw, -10px) scale(0.1579);
  animation: fall-15 12s -5s linear infinite;
}
@keyframes fall-15 {
  37.43% {
    transform: translate(65.5834vw, 37.43vh) scale(0.1579);
  }
  to {
    transform: translate(69.93165vw, 100vh) scale(0.1579);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.4714;
  transform: translate(58.932vw, -10px) scale(0.698);
  animation: fall-16 21s -15s linear infinite;
}
@keyframes fall-16 {
  35.716% {
    transform: translate(63.9594vw, 35.716vh) scale(0.698);
  }
  to {
    transform: translate(61.4457vw, 100vh) scale(0.698);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.5927;
  transform: translate(58.5486vw, -10px) scale(0.614);
  animation: fall-17 24s -27s linear infinite;
}
@keyframes fall-17 {
  54.569% {
    transform: translate(65.5234vw, 54.569vh) scale(0.614);
  }
  to {
    transform: translate(62.036vw, 100vh) scale(0.614);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.9954;
  transform: translate(14.624vw, -10px) scale(0.5137);
  animation: fall-18 22s -2s linear infinite;
}
@keyframes fall-18 {
  45.173% {
    transform: translate(16.7677vw, 45.173vh) scale(0.5137);
  }
  to {
    transform: translate(15.69585vw, 100vh) scale(0.5137);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.8137;
  transform: translate(38.433vw, -10px) scale(0.5893);
  animation: fall-19 22s -25s linear infinite;
}
@keyframes fall-19 {
  42.323% {
    transform: translate(29.5595vw, 42.323vh) scale(0.5893);
  }
  to {
    transform: translate(33.99625vw, 100vh) scale(0.5893);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.656;
  transform: translate(6.043vw, -10px) scale(0.6596);
  animation: fall-20 17s -16s linear infinite;
}
@keyframes fall-20 {
  38.371% {
    transform: translate(6.0882vw, 38.371vh) scale(0.6596);
  }
  to {
    transform: translate(6.0656vw, 100vh) scale(0.6596);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.3705;
  transform: translate(68.5267vw, -10px) scale(0.3927);
  animation: fall-21 27s -22s linear infinite;
}
@keyframes fall-21 {
  38.052% {
    transform: translate(73.592vw, 38.052vh) scale(0.3927);
  }
  to {
    transform: translate(71.05935vw, 100vh) scale(0.3927);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.5237;
  transform: translate(26.0778vw, -10px) scale(0.2014);
  animation: fall-22 17s -29s linear infinite;
}
@keyframes fall-22 {
  79.735% {
    transform: translate(24.0955vw, 79.735vh) scale(0.2014);
  }
  to {
    transform: translate(25.08665vw, 100vh) scale(0.2014);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.5853;
  transform: translate(92.2401vw, -10px) scale(0.6773);
  animation: fall-23 17s -18s linear infinite;
}
@keyframes fall-23 {
  44.158% {
    transform: translate(91.5267vw, 44.158vh) scale(0.6773);
  }
  to {
    transform: translate(91.8834vw, 100vh) scale(0.6773);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.0926;
  transform: translate(99.9521vw, -10px) scale(0.5719);
  animation: fall-24 13s -17s linear infinite;
}
@keyframes fall-24 {
  34.949% {
    transform: translate(95.7793vw, 34.949vh) scale(0.5719);
  }
  to {
    transform: translate(97.8657vw, 100vh) scale(0.5719);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.7963;
  transform: translate(37.7537vw, -10px) scale(0.9573);
  animation: fall-25 10s -11s linear infinite;
}
@keyframes fall-25 {
  39.646% {
    transform: translate(38.9591vw, 39.646vh) scale(0.9573);
  }
  to {
    transform: translate(38.3564vw, 100vh) scale(0.9573);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.8868;
  transform: translate(48.721vw, -10px) scale(0.1378);
  animation: fall-26 19s -25s linear infinite;
}
@keyframes fall-26 {
  75.545% {
    transform: translate(50.5763vw, 75.545vh) scale(0.1378);
  }
  to {
    transform: translate(49.64865vw, 100vh) scale(0.1378);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.2045;
  transform: translate(91.6802vw, -10px) scale(0.4641);
  animation: fall-27 21s -17s linear infinite;
}
@keyframes fall-27 {
  46.854% {
    transform: translate(88.521vw, 46.854vh) scale(0.4641);
  }
  to {
    transform: translate(90.1006vw, 100vh) scale(0.4641);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.6015;
  transform: translate(86.9337vw, -10px) scale(0.9354);
  animation: fall-28 12s -29s linear infinite;
}
@keyframes fall-28 {
  58.458% {
    transform: translate(87.7407vw, 58.458vh) scale(0.9354);
  }
  to {
    transform: translate(87.3372vw, 100vh) scale(0.9354);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.295;
  transform: translate(35.2082vw, -10px) scale(0.1849);
  animation: fall-29 12s -16s linear infinite;
}
@keyframes fall-29 {
  74.686% {
    transform: translate(36.0873vw, 74.686vh) scale(0.1849);
  }
  to {
    transform: translate(35.64775vw, 100vh) scale(0.1849);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.3872;
  transform: translate(4.1175vw, -10px) scale(0.1514);
  animation: fall-30 12s -18s linear infinite;
}
@keyframes fall-30 {
  45.794% {
    transform: translate(3.5158vw, 45.794vh) scale(0.1514);
  }
  to {
    transform: translate(3.81665vw, 100vh) scale(0.1514);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.0316;
  transform: translate(51.6638vw, -10px) scale(0.2152);
  animation: fall-31 25s -11s linear infinite;
}
@keyframes fall-31 {
  78.886% {
    transform: translate(46.5916vw, 78.886vh) scale(0.2152);
  }
  to {
    transform: translate(49.1277vw, 100vh) scale(0.2152);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.0811;
  transform: translate(52.3727vw, -10px) scale(0.9946);
  animation: fall-32 21s -11s linear infinite;
}
@keyframes fall-32 {
  40.553% {
    transform: translate(49.1822vw, 40.553vh) scale(0.9946);
  }
  to {
    transform: translate(50.77745vw, 100vh) scale(0.9946);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.4704;
  transform: translate(79.6297vw, -10px) scale(0.7261);
  animation: fall-33 23s -9s linear infinite;
}
@keyframes fall-33 {
  62.451% {
    transform: translate(83.6846vw, 62.451vh) scale(0.7261);
  }
  to {
    transform: translate(81.65715vw, 100vh) scale(0.7261);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.9575;
  transform: translate(79.3374vw, -10px) scale(0.6779);
  animation: fall-34 21s -23s linear infinite;
}
@keyframes fall-34 {
  59.107% {
    transform: translate(76.4998vw, 59.107vh) scale(0.6779);
  }
  to {
    transform: translate(77.9186vw, 100vh) scale(0.6779);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.4643;
  transform: translate(59.028vw, -10px) scale(0.6518);
  animation: fall-35 18s -17s linear infinite;
}
@keyframes fall-35 {
  71.752% {
    transform: translate(60.1072vw, 71.752vh) scale(0.6518);
  }
  to {
    transform: translate(59.5676vw, 100vh) scale(0.6518);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.7049;
  transform: translate(22.3329vw, -10px) scale(0.9039);
  animation: fall-36 10s -29s linear infinite;
}
@keyframes fall-36 {
  54.736% {
    transform: translate(30.9487vw, 54.736vh) scale(0.9039);
  }
  to {
    transform: translate(26.6408vw, 100vh) scale(0.9039);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.6876;
  transform: translate(32.0924vw, -10px) scale(0.4942);
  animation: fall-37 28s -16s linear infinite;
}
@keyframes fall-37 {
  46.073% {
    transform: translate(25.5573vw, 46.073vh) scale(0.4942);
  }
  to {
    transform: translate(28.82485vw, 100vh) scale(0.4942);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.2354;
  transform: translate(43.2481vw, -10px) scale(0.698);
  animation: fall-38 23s -27s linear infinite;
}
@keyframes fall-38 {
  55.837% {
    transform: translate(42.8128vw, 55.837vh) scale(0.698);
  }
  to {
    transform: translate(43.03045vw, 100vh) scale(0.698);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.1777;
  transform: translate(81.9327vw, -10px) scale(0.9695);
  animation: fall-39 15s -17s linear infinite;
}
@keyframes fall-39 {
  40.184% {
    transform: translate(91.573vw, 40.184vh) scale(0.9695);
  }
  to {
    transform: translate(86.75285vw, 100vh) scale(0.9695);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.1999;
  transform: translate(57.9605vw, -10px) scale(0.4639);
  animation: fall-40 21s -25s linear infinite;
}
@keyframes fall-40 {
  38.059% {
    transform: translate(62.8733vw, 38.059vh) scale(0.4639);
  }
  to {
    transform: translate(60.4169vw, 100vh) scale(0.4639);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.2357;
  transform: translate(11.0552vw, -10px) scale(0.081);
  animation: fall-41 20s -5s linear infinite;
}
@keyframes fall-41 {
  37.79% {
    transform: translate(4.9251vw, 37.79vh) scale(0.081);
  }
  to {
    transform: translate(7.99015vw, 100vh) scale(0.081);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.0985;
  transform: translate(95.3492vw, -10px) scale(0.8906);
  animation: fall-42 10s -5s linear infinite;
}
@keyframes fall-42 {
  56.758% {
    transform: translate(90.0125vw, 56.758vh) scale(0.8906);
  }
  to {
    transform: translate(92.68085vw, 100vh) scale(0.8906);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.9839;
  transform: translate(54.8485vw, -10px) scale(0.6891);
  animation: fall-43 25s -2s linear infinite;
}
@keyframes fall-43 {
  70.851% {
    transform: translate(52.1091vw, 70.851vh) scale(0.6891);
  }
  to {
    transform: translate(53.4788vw, 100vh) scale(0.6891);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.3775;
  transform: translate(30.2629vw, -10px) scale(0.5847);
  animation: fall-44 14s -20s linear infinite;
}
@keyframes fall-44 {
  40.74% {
    transform: translate(30.5388vw, 40.74vh) scale(0.5847);
  }
  to {
    transform: translate(30.40085vw, 100vh) scale(0.5847);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.6878;
  transform: translate(34.6639vw, -10px) scale(0.0765);
  animation: fall-45 13s -13s linear infinite;
}
@keyframes fall-45 {
  62.448% {
    transform: translate(44.0729vw, 62.448vh) scale(0.0765);
  }
  to {
    transform: translate(39.3684vw, 100vh) scale(0.0765);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.755;
  transform: translate(83.0851vw, -10px) scale(0.5912);
  animation: fall-46 14s -15s linear infinite;
}
@keyframes fall-46 {
  64.622% {
    transform: translate(75.1653vw, 64.622vh) scale(0.5912);
  }
  to {
    transform: translate(79.1252vw, 100vh) scale(0.5912);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.1292;
  transform: translate(99.5919vw, -10px) scale(0.3535);
  animation: fall-47 16s -11s linear infinite;
}
@keyframes fall-47 {
  67.824% {
    transform: translate(105.5489vw, 67.824vh) scale(0.3535);
  }
  to {
    transform: translate(102.5704vw, 100vh) scale(0.3535);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.2592;
  transform: translate(81.1358vw, -10px) scale(0.5933);
  animation: fall-48 27s -20s linear infinite;
}
@keyframes fall-48 {
  53.543% {
    transform: translate(74.3896vw, 53.543vh) scale(0.5933);
  }
  to {
    transform: translate(77.7627vw, 100vh) scale(0.5933);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.1345;
  transform: translate(41.5439vw, -10px) scale(0.3065);
  animation: fall-49 15s -20s linear infinite;
}
@keyframes fall-49 {
  66.407% {
    transform: translate(49.3191vw, 66.407vh) scale(0.3065);
  }
  to {
    transform: translate(45.4315vw, 100vh) scale(0.3065);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.5744;
  transform: translate(30.0142vw, -10px) scale(0.1612);
  animation: fall-50 17s -21s linear infinite;
}
@keyframes fall-50 {
  62.174% {
    transform: translate(24.2654vw, 62.174vh) scale(0.1612);
  }
  to {
    transform: translate(27.1398vw, 100vh) scale(0.1612);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.7248;
  transform: translate(42.4951vw, -10px) scale(0.4588);
  animation: fall-51 27s -1s linear infinite;
}
@keyframes fall-51 {
  55.077% {
    transform: translate(48.8834vw, 55.077vh) scale(0.4588);
  }
  to {
    transform: translate(45.68925vw, 100vh) scale(0.4588);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.6236;
  transform: translate(8.0894vw, -10px) scale(0.9441);
  animation: fall-52 29s -14s linear infinite;
}
@keyframes fall-52 {
  61.641% {
    transform: translate(11.2914vw, 61.641vh) scale(0.9441);
  }
  to {
    transform: translate(9.6904vw, 100vh) scale(0.9441);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.4408;
  transform: translate(8.8634vw, -10px) scale(0.0045);
  animation: fall-53 24s -10s linear infinite;
}
@keyframes fall-53 {
  49.296% {
    transform: translate(12.9191vw, 49.296vh) scale(0.0045);
  }
  to {
    transform: translate(10.89125vw, 100vh) scale(0.0045);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.1701;
  transform: translate(83.0948vw, -10px) scale(0.6965);
  animation: fall-54 21s -16s linear infinite;
}
@keyframes fall-54 {
  30.301% {
    transform: translate(89.5786vw, 30.301vh) scale(0.6965);
  }
  to {
    transform: translate(86.3367vw, 100vh) scale(0.6965);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.8921;
  transform: translate(23.2238vw, -10px) scale(0.9136);
  animation: fall-55 10s -15s linear infinite;
}
@keyframes fall-55 {
  57.875% {
    transform: translate(18.7026vw, 57.875vh) scale(0.9136);
  }
  to {
    transform: translate(20.9632vw, 100vh) scale(0.9136);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.1964;
  transform: translate(79.0494vw, -10px) scale(0.9894);
  animation: fall-56 16s -11s linear infinite;
}
@keyframes fall-56 {
  73.463% {
    transform: translate(85.6628vw, 73.463vh) scale(0.9894);
  }
  to {
    transform: translate(82.3561vw, 100vh) scale(0.9894);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.2766;
  transform: translate(85.2187vw, -10px) scale(0.8058);
  animation: fall-57 14s -29s linear infinite;
}
@keyframes fall-57 {
  37.737% {
    transform: translate(81.7337vw, 37.737vh) scale(0.8058);
  }
  to {
    transform: translate(83.4762vw, 100vh) scale(0.8058);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.5506;
  transform: translate(31.4757vw, -10px) scale(0.3213);
  animation: fall-58 28s -6s linear infinite;
}
@keyframes fall-58 {
  63.929% {
    transform: translate(22.712vw, 63.929vh) scale(0.3213);
  }
  to {
    transform: translate(27.09385vw, 100vh) scale(0.3213);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.8972;
  transform: translate(67.0218vw, -10px) scale(0.2311);
  animation: fall-59 21s -13s linear infinite;
}
@keyframes fall-59 {
  60.529% {
    transform: translate(70.4832vw, 60.529vh) scale(0.2311);
  }
  to {
    transform: translate(68.7525vw, 100vh) scale(0.2311);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.0007;
  transform: translate(56.8239vw, -10px) scale(0.8921);
  animation: fall-60 20s -12s linear infinite;
}
@keyframes fall-60 {
  31.904% {
    transform: translate(59.4413vw, 31.904vh) scale(0.8921);
  }
  to {
    transform: translate(58.1326vw, 100vh) scale(0.8921);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.0656;
  transform: translate(24.8115vw, -10px) scale(0.3612);
  animation: fall-61 11s -14s linear infinite;
}
@keyframes fall-61 {
  54.555% {
    transform: translate(29.091vw, 54.555vh) scale(0.3612);
  }
  to {
    transform: translate(26.95125vw, 100vh) scale(0.3612);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.7086;
  transform: translate(55.3257vw, -10px) scale(0.2162);
  animation: fall-62 29s -17s linear infinite;
}
@keyframes fall-62 {
  41.876% {
    transform: translate(52.9131vw, 41.876vh) scale(0.2162);
  }
  to {
    transform: translate(54.1194vw, 100vh) scale(0.2162);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.3028;
  transform: translate(50.5219vw, -10px) scale(0.7185);
  animation: fall-63 19s -10s linear infinite;
}
@keyframes fall-63 {
  53.589% {
    transform: translate(54.8165vw, 53.589vh) scale(0.7185);
  }
  to {
    transform: translate(52.6692vw, 100vh) scale(0.7185);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.0648;
  transform: translate(83.787vw, -10px) scale(0.8876);
  animation: fall-64 28s -27s linear infinite;
}
@keyframes fall-64 {
  39.62% {
    transform: translate(80.3151vw, 39.62vh) scale(0.8876);
  }
  to {
    transform: translate(82.05105vw, 100vh) scale(0.8876);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.8797;
  transform: translate(20.6509vw, -10px) scale(0.717);
  animation: fall-65 16s -23s linear infinite;
}
@keyframes fall-65 {
  54.032% {
    transform: translate(16.8897vw, 54.032vh) scale(0.717);
  }
  to {
    transform: translate(18.7703vw, 100vh) scale(0.717);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.4414;
  transform: translate(96.6787vw, -10px) scale(0.176);
  animation: fall-66 25s -22s linear infinite;
}
@keyframes fall-66 {
  41.908% {
    transform: translate(90.7906vw, 41.908vh) scale(0.176);
  }
  to {
    transform: translate(93.73465vw, 100vh) scale(0.176);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.8115;
  transform: translate(62.6521vw, -10px) scale(0.6932);
  animation: fall-67 10s -19s linear infinite;
}
@keyframes fall-67 {
  77.256% {
    transform: translate(59.3439vw, 77.256vh) scale(0.6932);
  }
  to {
    transform: translate(60.998vw, 100vh) scale(0.6932);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.5483;
  transform: translate(93.8294vw, -10px) scale(0.9466);
  animation: fall-68 18s -16s linear infinite;
}
@keyframes fall-68 {
  71.827% {
    transform: translate(98.4093vw, 71.827vh) scale(0.9466);
  }
  to {
    transform: translate(96.11935vw, 100vh) scale(0.9466);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.0384;
  transform: translate(14.1701vw, -10px) scale(0.7148);
  animation: fall-69 18s -29s linear infinite;
}
@keyframes fall-69 {
  74.189% {
    transform: translate(6.8807vw, 74.189vh) scale(0.7148);
  }
  to {
    transform: translate(10.5254vw, 100vh) scale(0.7148);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.5954;
  transform: translate(74.2217vw, -10px) scale(0.8183);
  animation: fall-70 17s -30s linear infinite;
}
@keyframes fall-70 {
  39.147% {
    transform: translate(67.708vw, 39.147vh) scale(0.8183);
  }
  to {
    transform: translate(70.96485vw, 100vh) scale(0.8183);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.1187;
  transform: translate(74.1996vw, -10px) scale(0.6424);
  animation: fall-71 10s -30s linear infinite;
}
@keyframes fall-71 {
  40.69% {
    transform: translate(79.8689vw, 40.69vh) scale(0.6424);
  }
  to {
    transform: translate(77.03425vw, 100vh) scale(0.6424);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.2994;
  transform: translate(12.1334vw, -10px) scale(0.3723);
  animation: fall-72 27s -26s linear infinite;
}
@keyframes fall-72 {
  44.555% {
    transform: translate(3.1842vw, 44.555vh) scale(0.3723);
  }
  to {
    transform: translate(7.6588vw, 100vh) scale(0.3723);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.3096;
  transform: translate(22.4315vw, -10px) scale(0.5328);
  animation: fall-73 27s -28s linear infinite;
}
@keyframes fall-73 {
  48.898% {
    transform: translate(31.7832vw, 48.898vh) scale(0.5328);
  }
  to {
    transform: translate(27.10735vw, 100vh) scale(0.5328);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.5037;
  transform: translate(76.7385vw, -10px) scale(0.6192);
  animation: fall-74 21s -16s linear infinite;
}
@keyframes fall-74 {
  48.618% {
    transform: translate(69.7914vw, 48.618vh) scale(0.6192);
  }
  to {
    transform: translate(73.26495vw, 100vh) scale(0.6192);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.0313;
  transform: translate(60.7511vw, -10px) scale(0.6623);
  animation: fall-75 10s -4s linear infinite;
}
@keyframes fall-75 {
  36.641% {
    transform: translate(59.8834vw, 36.641vh) scale(0.6623);
  }
  to {
    transform: translate(60.31725vw, 100vh) scale(0.6623);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.6621;
  transform: translate(5.1128vw, -10px) scale(0.2462);
  animation: fall-76 21s -12s linear infinite;
}
@keyframes fall-76 {
  55.307% {
    transform: translate(8.5387vw, 55.307vh) scale(0.2462);
  }
  to {
    transform: translate(6.82575vw, 100vh) scale(0.2462);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.2943;
  transform: translate(43.6754vw, -10px) scale(0.2407);
  animation: fall-77 28s -6s linear infinite;
}
@keyframes fall-77 {
  60.989% {
    transform: translate(47.4907vw, 60.989vh) scale(0.2407);
  }
  to {
    transform: translate(45.58305vw, 100vh) scale(0.2407);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.3213;
  transform: translate(65.9064vw, -10px) scale(0.2405);
  animation: fall-78 13s -7s linear infinite;
}
@keyframes fall-78 {
  37.702% {
    transform: translate(67.9194vw, 37.702vh) scale(0.2405);
  }
  to {
    transform: translate(66.9129vw, 100vh) scale(0.2405);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.1406;
  transform: translate(95.6161vw, -10px) scale(0.3912);
  animation: fall-79 10s -17s linear infinite;
}
@keyframes fall-79 {
  66.758% {
    transform: translate(102.0723vw, 66.758vh) scale(0.3912);
  }
  to {
    transform: translate(98.8442vw, 100vh) scale(0.3912);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.3972;
  transform: translate(38.0602vw, -10px) scale(0.8049);
  animation: fall-80 13s -28s linear infinite;
}
@keyframes fall-80 {
  59.947% {
    transform: translate(34.1127vw, 59.947vh) scale(0.8049);
  }
  to {
    transform: translate(36.08645vw, 100vh) scale(0.8049);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.6206;
  transform: translate(22.4274vw, -10px) scale(0.8836);
  animation: fall-81 24s -13s linear infinite;
}
@keyframes fall-81 {
  62.221% {
    transform: translate(23.984vw, 62.221vh) scale(0.8836);
  }
  to {
    transform: translate(23.2057vw, 100vh) scale(0.8836);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.3491;
  transform: translate(37.9042vw, -10px) scale(0.7923);
  animation: fall-82 27s -19s linear infinite;
}
@keyframes fall-82 {
  51.561% {
    transform: translate(38.1942vw, 51.561vh) scale(0.7923);
  }
  to {
    transform: translate(38.0492vw, 100vh) scale(0.7923);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.9651;
  transform: translate(31.0125vw, -10px) scale(0.9623);
  animation: fall-83 27s -27s linear infinite;
}
@keyframes fall-83 {
  30.498% {
    transform: translate(25.5336vw, 30.498vh) scale(0.9623);
  }
  to {
    transform: translate(28.27305vw, 100vh) scale(0.9623);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.4518;
  transform: translate(12.491vw, -10px) scale(0.9471);
  animation: fall-84 24s -6s linear infinite;
}
@keyframes fall-84 {
  55.203% {
    transform: translate(14.9052vw, 55.203vh) scale(0.9471);
  }
  to {
    transform: translate(13.6981vw, 100vh) scale(0.9471);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.7028;
  transform: translate(52.2956vw, -10px) scale(0.9942);
  animation: fall-85 30s -1s linear infinite;
}
@keyframes fall-85 {
  78.445% {
    transform: translate(59.6952vw, 78.445vh) scale(0.9942);
  }
  to {
    transform: translate(55.9954vw, 100vh) scale(0.9942);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.1257;
  transform: translate(63.1451vw, -10px) scale(0.7878);
  animation: fall-86 24s -26s linear infinite;
}
@keyframes fall-86 {
  34.56% {
    transform: translate(53.7459vw, 34.56vh) scale(0.7878);
  }
  to {
    transform: translate(58.4455vw, 100vh) scale(0.7878);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.227;
  transform: translate(73.6169vw, -10px) scale(0.0233);
  animation: fall-87 14s -16s linear infinite;
}
@keyframes fall-87 {
  39.447% {
    transform: translate(82.1557vw, 39.447vh) scale(0.0233);
  }
  to {
    transform: translate(77.8863vw, 100vh) scale(0.0233);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.6389;
  transform: translate(27.246vw, -10px) scale(0.9418);
  animation: fall-88 11s -23s linear infinite;
}
@keyframes fall-88 {
  31.675% {
    transform: translate(17.3024vw, 31.675vh) scale(0.9418);
  }
  to {
    transform: translate(22.2742vw, 100vh) scale(0.9418);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.7108;
  transform: translate(77.5846vw, -10px) scale(0.2179);
  animation: fall-89 23s -25s linear infinite;
}
@keyframes fall-89 {
  69.886% {
    transform: translate(82.5694vw, 69.886vh) scale(0.2179);
  }
  to {
    transform: translate(80.077vw, 100vh) scale(0.2179);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.8367;
  transform: translate(38.0329vw, -10px) scale(0.5802);
  animation: fall-90 26s -10s linear infinite;
}
@keyframes fall-90 {
  37.424% {
    transform: translate(31.5652vw, 37.424vh) scale(0.5802);
  }
  to {
    transform: translate(34.79905vw, 100vh) scale(0.5802);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.8776;
  transform: translate(68.501vw, -10px) scale(0.0319);
  animation: fall-91 15s -6s linear infinite;
}
@keyframes fall-91 {
  40.601% {
    transform: translate(78.3101vw, 40.601vh) scale(0.0319);
  }
  to {
    transform: translate(73.40555vw, 100vh) scale(0.0319);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.3674;
  transform: translate(58.082vw, -10px) scale(0.5092);
  animation: fall-92 11s -3s linear infinite;
}
@keyframes fall-92 {
  75.727% {
    transform: translate(63.9113vw, 75.727vh) scale(0.5092);
  }
  to {
    transform: translate(60.99665vw, 100vh) scale(0.5092);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.6722;
  transform: translate(18.5711vw, -10px) scale(0.7099);
  animation: fall-93 22s -19s linear infinite;
}
@keyframes fall-93 {
  42.852% {
    transform: translate(12.5988vw, 42.852vh) scale(0.7099);
  }
  to {
    transform: translate(15.58495vw, 100vh) scale(0.7099);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.3243;
  transform: translate(81.7421vw, -10px) scale(0.5951);
  animation: fall-94 10s -16s linear infinite;
}
@keyframes fall-94 {
  66.291% {
    transform: translate(79.9854vw, 66.291vh) scale(0.5951);
  }
  to {
    transform: translate(80.86375vw, 100vh) scale(0.5951);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.514;
  transform: translate(90.7954vw, -10px) scale(0.5731);
  animation: fall-95 14s -13s linear infinite;
}
@keyframes fall-95 {
  68.291% {
    transform: translate(87.6731vw, 68.291vh) scale(0.5731);
  }
  to {
    transform: translate(89.23425vw, 100vh) scale(0.5731);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.583;
  transform: translate(55.85vw, -10px) scale(0.8571);
  animation: fall-96 19s -30s linear infinite;
}
@keyframes fall-96 {
  71.132% {
    transform: translate(56.266vw, 71.132vh) scale(0.8571);
  }
  to {
    transform: translate(56.058vw, 100vh) scale(0.8571);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.4952;
  transform: translate(33.6765vw, -10px) scale(0.5142);
  animation: fall-97 15s -13s linear infinite;
}
@keyframes fall-97 {
  63.493% {
    transform: translate(24.4078vw, 63.493vh) scale(0.5142);
  }
  to {
    transform: translate(29.04215vw, 100vh) scale(0.5142);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.7505;
  transform: translate(36.7vw, -10px) scale(0.2078);
  animation: fall-98 30s -14s linear infinite;
}
@keyframes fall-98 {
  57.432% {
    transform: translate(33.4199vw, 57.432vh) scale(0.2078);
  }
  to {
    transform: translate(35.05995vw, 100vh) scale(0.2078);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.7401;
  transform: translate(53.2466vw, -10px) scale(0.3607);
  animation: fall-99 22s -30s linear infinite;
}
@keyframes fall-99 {
  48.756% {
    transform: translate(54.4387vw, 48.756vh) scale(0.3607);
  }
  to {
    transform: translate(53.84265vw, 100vh) scale(0.3607);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.07;
  transform: translate(14.203vw, -10px) scale(0.5362);
  animation: fall-100 14s -27s linear infinite;
}
@keyframes fall-100 {
  33.842% {
    transform: translate(15.4463vw, 33.842vh) scale(0.5362);
  }
  to {
    transform: translate(14.82465vw, 100vh) scale(0.5362);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.6829;
  transform: translate(51.8957vw, -10px) scale(0.7873);
  animation: fall-101 19s -23s linear infinite;
}
@keyframes fall-101 {
  73.225% {
    transform: translate(53.6165vw, 73.225vh) scale(0.7873);
  }
  to {
    transform: translate(52.7561vw, 100vh) scale(0.7873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.8812;
  transform: translate(76.0985vw, -10px) scale(0.8054);
  animation: fall-102 10s -29s linear infinite;
}
@keyframes fall-102 {
  70.779% {
    transform: translate(84.0231vw, 70.779vh) scale(0.8054);
  }
  to {
    transform: translate(80.0608vw, 100vh) scale(0.8054);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.9334;
  transform: translate(82.5783vw, -10px) scale(0.1996);
  animation: fall-103 27s -26s linear infinite;
}
@keyframes fall-103 {
  49.436% {
    transform: translate(91.8086vw, 49.436vh) scale(0.1996);
  }
  to {
    transform: translate(87.19345vw, 100vh) scale(0.1996);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.0993;
  transform: translate(34.2354vw, -10px) scale(0.2094);
  animation: fall-104 28s -23s linear infinite;
}
@keyframes fall-104 {
  67.065% {
    transform: translate(41.5398vw, 67.065vh) scale(0.2094);
  }
  to {
    transform: translate(37.8876vw, 100vh) scale(0.2094);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.0287;
  transform: translate(59.3863vw, -10px) scale(0.7814);
  animation: fall-105 20s -9s linear infinite;
}
@keyframes fall-105 {
  39.716% {
    transform: translate(63.6081vw, 39.716vh) scale(0.7814);
  }
  to {
    transform: translate(61.4972vw, 100vh) scale(0.7814);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.0892;
  transform: translate(86.6174vw, -10px) scale(0.6664);
  animation: fall-106 14s -23s linear infinite;
}
@keyframes fall-106 {
  39.045% {
    transform: translate(78.2877vw, 39.045vh) scale(0.6664);
  }
  to {
    transform: translate(82.45255vw, 100vh) scale(0.6664);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.2761;
  transform: translate(89.4913vw, -10px) scale(0.4465);
  animation: fall-107 15s -9s linear infinite;
}
@keyframes fall-107 {
  45.368% {
    transform: translate(80.2141vw, 45.368vh) scale(0.4465);
  }
  to {
    transform: translate(84.8527vw, 100vh) scale(0.4465);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.7471;
  transform: translate(15.7633vw, -10px) scale(0.5245);
  animation: fall-108 19s -27s linear infinite;
}
@keyframes fall-108 {
  44.342% {
    transform: translate(9.6834vw, 44.342vh) scale(0.5245);
  }
  to {
    transform: translate(12.72335vw, 100vh) scale(0.5245);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.2577;
  transform: translate(47.0995vw, -10px) scale(0.2835);
  animation: fall-109 12s -17s linear infinite;
}
@keyframes fall-109 {
  30.142% {
    transform: translate(46.3408vw, 30.142vh) scale(0.2835);
  }
  to {
    transform: translate(46.72015vw, 100vh) scale(0.2835);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.6746;
  transform: translate(47.8059vw, -10px) scale(0.9202);
  animation: fall-110 10s -21s linear infinite;
}
@keyframes fall-110 {
  33.446% {
    transform: translate(50.8155vw, 33.446vh) scale(0.9202);
  }
  to {
    transform: translate(49.3107vw, 100vh) scale(0.9202);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.9864;
  transform: translate(21.0973vw, -10px) scale(0.1079);
  animation: fall-111 23s -3s linear infinite;
}
@keyframes fall-111 {
  61.382% {
    transform: translate(22.6723vw, 61.382vh) scale(0.1079);
  }
  to {
    transform: translate(21.8848vw, 100vh) scale(0.1079);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.0639;
  transform: translate(49.4241vw, -10px) scale(0.2873);
  animation: fall-112 13s -18s linear infinite;
}
@keyframes fall-112 {
  59.57% {
    transform: translate(49.1605vw, 59.57vh) scale(0.2873);
  }
  to {
    transform: translate(49.2923vw, 100vh) scale(0.2873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.5807;
  transform: translate(56.7046vw, -10px) scale(0.1748);
  animation: fall-113 11s -24s linear infinite;
}
@keyframes fall-113 {
  67.055% {
    transform: translate(65.1791vw, 67.055vh) scale(0.1748);
  }
  to {
    transform: translate(60.94185vw, 100vh) scale(0.1748);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.4769;
  transform: translate(61.4715vw, -10px) scale(0.0343);
  animation: fall-114 21s -22s linear infinite;
}
@keyframes fall-114 {
  64.973% {
    transform: translate(69.4689vw, 64.973vh) scale(0.0343);
  }
  to {
    transform: translate(65.4702vw, 100vh) scale(0.0343);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.0585;
  transform: translate(12.5709vw, -10px) scale(0.2199);
  animation: fall-115 16s -11s linear infinite;
}
@keyframes fall-115 {
  41.098% {
    transform: translate(19.2605vw, 41.098vh) scale(0.2199);
  }
  to {
    transform: translate(15.9157vw, 100vh) scale(0.2199);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.3201;
  transform: translate(11.8366vw, -10px) scale(0.6411);
  animation: fall-116 30s -25s linear infinite;
}
@keyframes fall-116 {
  54.169% {
    transform: translate(4.8398vw, 54.169vh) scale(0.6411);
  }
  to {
    transform: translate(8.3382vw, 100vh) scale(0.6411);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.5832;
  transform: translate(50.6293vw, -10px) scale(0.963);
  animation: fall-117 18s -29s linear infinite;
}
@keyframes fall-117 {
  69.088% {
    transform: translate(52.4727vw, 69.088vh) scale(0.963);
  }
  to {
    transform: translate(51.551vw, 100vh) scale(0.963);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.9834;
  transform: translate(54.364vw, -10px) scale(0.518);
  animation: fall-118 29s -7s linear infinite;
}
@keyframes fall-118 {
  49.952% {
    transform: translate(60.0601vw, 49.952vh) scale(0.518);
  }
  to {
    transform: translate(57.21205vw, 100vh) scale(0.518);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.5351;
  transform: translate(63.093vw, -10px) scale(0.952);
  animation: fall-119 17s -1s linear infinite;
}
@keyframes fall-119 {
  67.322% {
    transform: translate(62.6714vw, 67.322vh) scale(0.952);
  }
  to {
    transform: translate(62.8822vw, 100vh) scale(0.952);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.4279;
  transform: translate(46.0641vw, -10px) scale(0.6782);
  animation: fall-120 23s -10s linear infinite;
}
@keyframes fall-120 {
  44.691% {
    transform: translate(41.4409vw, 44.691vh) scale(0.6782);
  }
  to {
    transform: translate(43.7525vw, 100vh) scale(0.6782);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.9995;
  transform: translate(23.8649vw, -10px) scale(0.9393);
  animation: fall-121 26s -10s linear infinite;
}
@keyframes fall-121 {
  33.613% {
    transform: translate(28.8869vw, 33.613vh) scale(0.9393);
  }
  to {
    transform: translate(26.3759vw, 100vh) scale(0.9393);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.9545;
  transform: translate(58.8516vw, -10px) scale(0.787);
  animation: fall-122 26s -8s linear infinite;
}
@keyframes fall-122 {
  72.376% {
    transform: translate(49.2889vw, 72.376vh) scale(0.787);
  }
  to {
    transform: translate(54.07025vw, 100vh) scale(0.787);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.8067;
  transform: translate(66.2083vw, -10px) scale(0.1286);
  animation: fall-123 29s -22s linear infinite;
}
@keyframes fall-123 {
  50.612% {
    transform: translate(70.3208vw, 50.612vh) scale(0.1286);
  }
  to {
    transform: translate(68.26455vw, 100vh) scale(0.1286);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.231;
  transform: translate(87.7385vw, -10px) scale(0.1816);
  animation: fall-124 21s -9s linear infinite;
}
@keyframes fall-124 {
  54.23% {
    transform: translate(78.8879vw, 54.23vh) scale(0.1816);
  }
  to {
    transform: translate(83.3132vw, 100vh) scale(0.1816);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.2978;
  transform: translate(40.3615vw, -10px) scale(0.3284);
  animation: fall-125 27s -25s linear infinite;
}
@keyframes fall-125 {
  41.312% {
    transform: translate(44.8964vw, 41.312vh) scale(0.3284);
  }
  to {
    transform: translate(42.62895vw, 100vh) scale(0.3284);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.7793;
  transform: translate(98.2733vw, -10px) scale(0.6671);
  animation: fall-126 23s -9s linear infinite;
}
@keyframes fall-126 {
  39.87% {
    transform: translate(108.1301vw, 39.87vh) scale(0.6671);
  }
  to {
    transform: translate(103.2017vw, 100vh) scale(0.6671);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.8552;
  transform: translate(86.9232vw, -10px) scale(0.8658);
  animation: fall-127 12s -17s linear infinite;
}
@keyframes fall-127 {
  72.997% {
    transform: translate(80.2582vw, 72.997vh) scale(0.8658);
  }
  to {
    transform: translate(83.5907vw, 100vh) scale(0.8658);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.0041;
  transform: translate(9.9398vw, -10px) scale(0.6289);
  animation: fall-128 13s -28s linear infinite;
}
@keyframes fall-128 {
  75.765% {
    transform: translate(16.4425vw, 75.765vh) scale(0.6289);
  }
  to {
    transform: translate(13.19115vw, 100vh) scale(0.6289);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.4889;
  transform: translate(88.0946vw, -10px) scale(0.1185);
  animation: fall-129 18s -16s linear infinite;
}
@keyframes fall-129 {
  49.559% {
    transform: translate(81.4926vw, 49.559vh) scale(0.1185);
  }
  to {
    transform: translate(84.7936vw, 100vh) scale(0.1185);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.0045;
  transform: translate(13.1791vw, -10px) scale(0.3161);
  animation: fall-130 28s -15s linear infinite;
}
@keyframes fall-130 {
  53.801% {
    transform: translate(20.8844vw, 53.801vh) scale(0.3161);
  }
  to {
    transform: translate(17.03175vw, 100vh) scale(0.3161);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.0761;
  transform: translate(48.7787vw, -10px) scale(0.8509);
  animation: fall-131 18s -11s linear infinite;
}
@keyframes fall-131 {
  37.83% {
    transform: translate(56.6015vw, 37.83vh) scale(0.8509);
  }
  to {
    transform: translate(52.6901vw, 100vh) scale(0.8509);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.1796;
  transform: translate(20.8769vw, -10px) scale(0.0328);
  animation: fall-132 14s -28s linear infinite;
}
@keyframes fall-132 {
  69.488% {
    transform: translate(25.6023vw, 69.488vh) scale(0.0328);
  }
  to {
    transform: translate(23.2396vw, 100vh) scale(0.0328);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.3145;
  transform: translate(57.1404vw, -10px) scale(0.526);
  animation: fall-133 27s -2s linear infinite;
}
@keyframes fall-133 {
  44.141% {
    transform: translate(57.3818vw, 44.141vh) scale(0.526);
  }
  to {
    transform: translate(57.2611vw, 100vh) scale(0.526);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.8912;
  transform: translate(80.166vw, -10px) scale(0.0762);
  animation: fall-134 28s -14s linear infinite;
}
@keyframes fall-134 {
  77.282% {
    transform: translate(82.0118vw, 77.282vh) scale(0.0762);
  }
  to {
    transform: translate(81.0889vw, 100vh) scale(0.0762);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.1476;
  transform: translate(54.2262vw, -10px) scale(0.7456);
  animation: fall-135 13s -6s linear infinite;
}
@keyframes fall-135 {
  34.977% {
    transform: translate(61.6618vw, 34.977vh) scale(0.7456);
  }
  to {
    transform: translate(57.944vw, 100vh) scale(0.7456);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.5905;
  transform: translate(59.0106vw, -10px) scale(0.0918);
  animation: fall-136 14s -19s linear infinite;
}
@keyframes fall-136 {
  34.006% {
    transform: translate(59.9479vw, 34.006vh) scale(0.0918);
  }
  to {
    transform: translate(59.47925vw, 100vh) scale(0.0918);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.2894;
  transform: translate(16.6947vw, -10px) scale(0.0673);
  animation: fall-137 12s -24s linear infinite;
}
@keyframes fall-137 {
  44.415% {
    transform: translate(25.335vw, 44.415vh) scale(0.0673);
  }
  to {
    transform: translate(21.01485vw, 100vh) scale(0.0673);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.0952;
  transform: translate(9.8808vw, -10px) scale(0.6119);
  animation: fall-138 23s -6s linear infinite;
}
@keyframes fall-138 {
  79.367% {
    transform: translate(19.3582vw, 79.367vh) scale(0.6119);
  }
  to {
    transform: translate(14.6195vw, 100vh) scale(0.6119);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.7982;
  transform: translate(23.6165vw, -10px) scale(0.7137);
  animation: fall-139 15s -2s linear infinite;
}
@keyframes fall-139 {
  52.739% {
    transform: translate(18.9424vw, 52.739vh) scale(0.7137);
  }
  to {
    transform: translate(21.27945vw, 100vh) scale(0.7137);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.9314;
  transform: translate(15.0995vw, -10px) scale(0.8607);
  animation: fall-140 22s -1s linear infinite;
}
@keyframes fall-140 {
  53.795% {
    transform: translate(9.7253vw, 53.795vh) scale(0.8607);
  }
  to {
    transform: translate(12.4124vw, 100vh) scale(0.8607);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.2054;
  transform: translate(13.8733vw, -10px) scale(0.624);
  animation: fall-141 22s -21s linear infinite;
}
@keyframes fall-141 {
  35.526% {
    transform: translate(16.7279vw, 35.526vh) scale(0.624);
  }
  to {
    transform: translate(15.3006vw, 100vh) scale(0.624);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.5383;
  transform: translate(30.885vw, -10px) scale(0.9725);
  animation: fall-142 24s -26s linear infinite;
}
@keyframes fall-142 {
  77.377% {
    transform: translate(25.7065vw, 77.377vh) scale(0.9725);
  }
  to {
    transform: translate(28.29575vw, 100vh) scale(0.9725);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.0165;
  transform: translate(9.0615vw, -10px) scale(0.5555);
  animation: fall-143 28s -2s linear infinite;
}
@keyframes fall-143 {
  63.883% {
    transform: translate(0.9666vw, 63.883vh) scale(0.5555);
  }
  to {
    transform: translate(5.01405vw, 100vh) scale(0.5555);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.5615;
  transform: translate(70.9858vw, -10px) scale(0.5505);
  animation: fall-144 17s -23s linear infinite;
}
@keyframes fall-144 {
  78.435% {
    transform: translate(72.7168vw, 78.435vh) scale(0.5505);
  }
  to {
    transform: translate(71.8513vw, 100vh) scale(0.5505);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.4065;
  transform: translate(99.471vw, -10px) scale(0.6239);
  animation: fall-145 21s -25s linear infinite;
}
@keyframes fall-145 {
  40.001% {
    transform: translate(104.5868vw, 40.001vh) scale(0.6239);
  }
  to {
    transform: translate(102.0289vw, 100vh) scale(0.6239);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.4251;
  transform: translate(58.688vw, -10px) scale(0.5282);
  animation: fall-146 20s -9s linear infinite;
}
@keyframes fall-146 {
  72.882% {
    transform: translate(52.3763vw, 72.882vh) scale(0.5282);
  }
  to {
    transform: translate(55.53215vw, 100vh) scale(0.5282);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.5612;
  transform: translate(94.799vw, -10px) scale(0.0749);
  animation: fall-147 16s -27s linear infinite;
}
@keyframes fall-147 {
  66.015% {
    transform: translate(87.1738vw, 66.015vh) scale(0.0749);
  }
  to {
    transform: translate(90.9864vw, 100vh) scale(0.0749);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.8371;
  transform: translate(5.2913vw, -10px) scale(0.3048);
  animation: fall-148 24s -6s linear infinite;
}
@keyframes fall-148 {
  79.792% {
    transform: translate(3.6246vw, 79.792vh) scale(0.3048);
  }
  to {
    transform: translate(4.45795vw, 100vh) scale(0.3048);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.9538;
  transform: translate(65.8296vw, -10px) scale(0.0732);
  animation: fall-149 10s -17s linear infinite;
}
@keyframes fall-149 {
  38.326% {
    transform: translate(64.5229vw, 38.326vh) scale(0.0732);
  }
  to {
    transform: translate(65.17625vw, 100vh) scale(0.0732);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.8075;
  transform: translate(2.829vw, -10px) scale(0.2149);
  animation: fall-150 16s -30s linear infinite;
}
@keyframes fall-150 {
  34.367% {
    transform: translate(10.4761vw, 34.367vh) scale(0.2149);
  }
  to {
    transform: translate(6.65255vw, 100vh) scale(0.2149);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.796;
  transform: translate(40.9233vw, -10px) scale(0.2445);
  animation: fall-151 22s -5s linear infinite;
}
@keyframes fall-151 {
  32.093% {
    transform: translate(36.0946vw, 32.093vh) scale(0.2445);
  }
  to {
    transform: translate(38.50895vw, 100vh) scale(0.2445);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.6754;
  transform: translate(10.4194vw, -10px) scale(0.9809);
  animation: fall-152 22s -7s linear infinite;
}
@keyframes fall-152 {
  75.639% {
    transform: translate(12.8544vw, 75.639vh) scale(0.9809);
  }
  to {
    transform: translate(11.6369vw, 100vh) scale(0.9809);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.0217;
  transform: translate(10.3479vw, -10px) scale(0.4992);
  animation: fall-153 17s -27s linear infinite;
}
@keyframes fall-153 {
  55.423% {
    transform: translate(0.5798vw, 55.423vh) scale(0.4992);
  }
  to {
    transform: translate(5.46385vw, 100vh) scale(0.4992);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.868;
  transform: translate(51.0783vw, -10px) scale(0.8629);
  animation: fall-154 17s -18s linear infinite;
}
@keyframes fall-154 {
  61.884% {
    transform: translate(55.7558vw, 61.884vh) scale(0.8629);
  }
  to {
    transform: translate(53.41705vw, 100vh) scale(0.8629);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.7637;
  transform: translate(47.1438vw, -10px) scale(0.4715);
  animation: fall-155 19s -16s linear infinite;
}
@keyframes fall-155 {
  53.868% {
    transform: translate(51.4125vw, 53.868vh) scale(0.4715);
  }
  to {
    transform: translate(49.27815vw, 100vh) scale(0.4715);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.6555;
  transform: translate(0.9595vw, -10px) scale(0.0672);
  animation: fall-156 26s -30s linear infinite;
}
@keyframes fall-156 {
  63.578% {
    transform: translate(6.3718vw, 63.578vh) scale(0.0672);
  }
  to {
    transform: translate(3.66565vw, 100vh) scale(0.0672);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.6274;
  transform: translate(47.2492vw, -10px) scale(0.338);
  animation: fall-157 22s -2s linear infinite;
}
@keyframes fall-157 {
  31.497% {
    transform: translate(42.2781vw, 31.497vh) scale(0.338);
  }
  to {
    transform: translate(44.76365vw, 100vh) scale(0.338);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.9387;
  transform: translate(40.6232vw, -10px) scale(0.8445);
  animation: fall-158 10s -18s linear infinite;
}
@keyframes fall-158 {
  75.789% {
    transform: translate(37.4524vw, 75.789vh) scale(0.8445);
  }
  to {
    transform: translate(39.0378vw, 100vh) scale(0.8445);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.8219;
  transform: translate(92.6955vw, -10px) scale(0.2952);
  animation: fall-159 13s -27s linear infinite;
}
@keyframes fall-159 {
  38.656% {
    transform: translate(101.7121vw, 38.656vh) scale(0.2952);
  }
  to {
    transform: translate(97.2038vw, 100vh) scale(0.2952);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.5098;
  transform: translate(80.3553vw, -10px) scale(0.4145);
  animation: fall-160 16s -13s linear infinite;
}
@keyframes fall-160 {
  47.719% {
    transform: translate(70.6087vw, 47.719vh) scale(0.4145);
  }
  to {
    transform: translate(75.482vw, 100vh) scale(0.4145);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.513;
  transform: translate(74.0725vw, -10px) scale(0.0624);
  animation: fall-161 26s -3s linear infinite;
}
@keyframes fall-161 {
  58.025% {
    transform: translate(64.482vw, 58.025vh) scale(0.0624);
  }
  to {
    transform: translate(69.27725vw, 100vh) scale(0.0624);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.6867;
  transform: translate(50.6824vw, -10px) scale(0.6036);
  animation: fall-162 27s -8s linear infinite;
}
@keyframes fall-162 {
  60.019% {
    transform: translate(45.4056vw, 60.019vh) scale(0.6036);
  }
  to {
    transform: translate(48.044vw, 100vh) scale(0.6036);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.7326;
  transform: translate(46.035vw, -10px) scale(0.9967);
  animation: fall-163 20s -16s linear infinite;
}
@keyframes fall-163 {
  51.978% {
    transform: translate(38.8847vw, 51.978vh) scale(0.9967);
  }
  to {
    transform: translate(42.45985vw, 100vh) scale(0.9967);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.3783;
  transform: translate(98.2416vw, -10px) scale(0.6878);
  animation: fall-164 22s -8s linear infinite;
}
@keyframes fall-164 {
  54.33% {
    transform: translate(89.8182vw, 54.33vh) scale(0.6878);
  }
  to {
    transform: translate(94.0299vw, 100vh) scale(0.6878);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.9314;
  transform: translate(15.0719vw, -10px) scale(0.3012);
  animation: fall-165 22s -15s linear infinite;
}
@keyframes fall-165 {
  39.652% {
    transform: translate(8.1378vw, 39.652vh) scale(0.3012);
  }
  to {
    transform: translate(11.60485vw, 100vh) scale(0.3012);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.4804;
  transform: translate(94.4761vw, -10px) scale(0.8536);
  animation: fall-166 19s -26s linear infinite;
}
@keyframes fall-166 {
  37.387% {
    transform: translate(91.6338vw, 37.387vh) scale(0.8536);
  }
  to {
    transform: translate(93.05495vw, 100vh) scale(0.8536);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.3089;
  transform: translate(66.4101vw, -10px) scale(0.9124);
  animation: fall-167 19s -6s linear infinite;
}
@keyframes fall-167 {
  40.002% {
    transform: translate(71.1292vw, 40.002vh) scale(0.9124);
  }
  to {
    transform: translate(68.76965vw, 100vh) scale(0.9124);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.1686;
  transform: translate(23.7382vw, -10px) scale(0.3823);
  animation: fall-168 21s -30s linear infinite;
}
@keyframes fall-168 {
  41.689% {
    transform: translate(19.9525vw, 41.689vh) scale(0.3823);
  }
  to {
    transform: translate(21.84535vw, 100vh) scale(0.3823);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.2087;
  transform: translate(76.2275vw, -10px) scale(0.6907);
  animation: fall-169 26s -18s linear infinite;
}
@keyframes fall-169 {
  32.41% {
    transform: translate(68.4256vw, 32.41vh) scale(0.6907);
  }
  to {
    transform: translate(72.32655vw, 100vh) scale(0.6907);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.9292;
  transform: translate(75.3782vw, -10px) scale(0.3338);
  animation: fall-170 21s -28s linear infinite;
}
@keyframes fall-170 {
  30.785% {
    transform: translate(84.9991vw, 30.785vh) scale(0.3338);
  }
  to {
    transform: translate(80.18865vw, 100vh) scale(0.3338);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.0526;
  transform: translate(56.0168vw, -10px) scale(0.7999);
  animation: fall-171 30s -3s linear infinite;
}
@keyframes fall-171 {
  55.526% {
    transform: translate(56.4717vw, 55.526vh) scale(0.7999);
  }
  to {
    transform: translate(56.24425vw, 100vh) scale(0.7999);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.3998;
  transform: translate(10.8759vw, -10px) scale(0.1796);
  animation: fall-172 25s -28s linear infinite;
}
@keyframes fall-172 {
  39.291% {
    transform: translate(11.039vw, 39.291vh) scale(0.1796);
  }
  to {
    transform: translate(10.95745vw, 100vh) scale(0.1796);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.9273;
  transform: translate(74.0621vw, -10px) scale(0.8253);
  animation: fall-173 21s -23s linear infinite;
}
@keyframes fall-173 {
  74.088% {
    transform: translate(78.8475vw, 74.088vh) scale(0.8253);
  }
  to {
    transform: translate(76.4548vw, 100vh) scale(0.8253);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.137;
  transform: translate(15.0832vw, -10px) scale(0.5282);
  animation: fall-174 28s -12s linear infinite;
}
@keyframes fall-174 {
  64.411% {
    transform: translate(11.0962vw, 64.411vh) scale(0.5282);
  }
  to {
    transform: translate(13.0897vw, 100vh) scale(0.5282);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.8336;
  transform: translate(64.7551vw, -10px) scale(0.4657);
  animation: fall-175 16s -20s linear infinite;
}
@keyframes fall-175 {
  52.269% {
    transform: translate(73.2049vw, 52.269vh) scale(0.4657);
  }
  to {
    transform: translate(68.98vw, 100vh) scale(0.4657);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.78;
  transform: translate(2.4935vw, -10px) scale(0.5189);
  animation: fall-176 18s -3s linear infinite;
}
@keyframes fall-176 {
  44.771% {
    transform: translate(3.6126vw, 44.771vh) scale(0.5189);
  }
  to {
    transform: translate(3.05305vw, 100vh) scale(0.5189);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.1644;
  transform: translate(23.804vw, -10px) scale(0.8449);
  animation: fall-177 26s -20s linear infinite;
}
@keyframes fall-177 {
  62.977% {
    transform: translate(31.2842vw, 62.977vh) scale(0.8449);
  }
  to {
    transform: translate(27.5441vw, 100vh) scale(0.8449);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.7047;
  transform: translate(99.1728vw, -10px) scale(0.214);
  animation: fall-178 24s -7s linear infinite;
}
@keyframes fall-178 {
  63.333% {
    transform: translate(102.7218vw, 63.333vh) scale(0.214);
  }
  to {
    transform: translate(100.9473vw, 100vh) scale(0.214);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.4788;
  transform: translate(42.7968vw, -10px) scale(0.3209);
  animation: fall-179 16s -14s linear infinite;
}
@keyframes fall-179 {
  64.645% {
    transform: translate(39.1093vw, 64.645vh) scale(0.3209);
  }
  to {
    transform: translate(40.95305vw, 100vh) scale(0.3209);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.2891;
  transform: translate(99.6583vw, -10px) scale(0.1472);
  animation: fall-180 17s -1s linear infinite;
}
@keyframes fall-180 {
  73.042% {
    transform: translate(95.281vw, 73.042vh) scale(0.1472);
  }
  to {
    transform: translate(97.46965vw, 100vh) scale(0.1472);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.8862;
  transform: translate(26.3668vw, -10px) scale(0.9889);
  animation: fall-181 19s -5s linear infinite;
}
@keyframes fall-181 {
  47.811% {
    transform: translate(27.7743vw, 47.811vh) scale(0.9889);
  }
  to {
    transform: translate(27.07055vw, 100vh) scale(0.9889);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.6776;
  transform: translate(11.3462vw, -10px) scale(0.0531);
  animation: fall-182 10s -18s linear infinite;
}
@keyframes fall-182 {
  37.633% {
    transform: translate(18.5731vw, 37.633vh) scale(0.0531);
  }
  to {
    transform: translate(14.95965vw, 100vh) scale(0.0531);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.1519;
  transform: translate(5.5087vw, -10px) scale(0.0164);
  animation: fall-183 19s -29s linear infinite;
}
@keyframes fall-183 {
  42.307% {
    transform: translate(14.03vw, 42.307vh) scale(0.0164);
  }
  to {
    transform: translate(9.76935vw, 100vh) scale(0.0164);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.0197;
  transform: translate(39.9504vw, -10px) scale(0.8922);
  animation: fall-184 27s -2s linear infinite;
}
@keyframes fall-184 {
  48.635% {
    transform: translate(40.1788vw, 48.635vh) scale(0.8922);
  }
  to {
    transform: translate(40.0646vw, 100vh) scale(0.8922);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.9926;
  transform: translate(2.1633vw, -10px) scale(0.8374);
  animation: fall-185 14s -5s linear infinite;
}
@keyframes fall-185 {
  75.672% {
    transform: translate(-4.9911vw, 75.672vh) scale(0.8374);
  }
  to {
    transform: translate(-1.4139vw, 100vh) scale(0.8374);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.7877;
  transform: translate(16.2622vw, -10px) scale(0.0315);
  animation: fall-186 21s -23s linear infinite;
}
@keyframes fall-186 {
  36.304% {
    transform: translate(10.031vw, 36.304vh) scale(0.0315);
  }
  to {
    transform: translate(13.1466vw, 100vh) scale(0.0315);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.2779;
  transform: translate(59.369vw, -10px) scale(0.8088);
  animation: fall-187 29s -24s linear infinite;
}
@keyframes fall-187 {
  36.004% {
    transform: translate(49.5137vw, 36.004vh) scale(0.8088);
  }
  to {
    transform: translate(54.44135vw, 100vh) scale(0.8088);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.5745;
  transform: translate(92.542vw, -10px) scale(0.7651);
  animation: fall-188 10s -28s linear infinite;
}
@keyframes fall-188 {
  75.157% {
    transform: translate(100.5687vw, 75.157vh) scale(0.7651);
  }
  to {
    transform: translate(96.55535vw, 100vh) scale(0.7651);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.509;
  transform: translate(35.0764vw, -10px) scale(0.7873);
  animation: fall-189 15s -12s linear infinite;
}
@keyframes fall-189 {
  66.276% {
    transform: translate(43.1012vw, 66.276vh) scale(0.7873);
  }
  to {
    transform: translate(39.0888vw, 100vh) scale(0.7873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.5895;
  transform: translate(9.6935vw, -10px) scale(0.5708);
  animation: fall-190 29s -11s linear infinite;
}
@keyframes fall-190 {
  52.086% {
    transform: translate(5.2561vw, 52.086vh) scale(0.5708);
  }
  to {
    transform: translate(7.4748vw, 100vh) scale(0.5708);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.7055;
  transform: translate(81.465vw, -10px) scale(0.5856);
  animation: fall-191 26s -20s linear infinite;
}
@keyframes fall-191 {
  67.906% {
    transform: translate(77.1198vw, 67.906vh) scale(0.5856);
  }
  to {
    transform: translate(79.2924vw, 100vh) scale(0.5856);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.6739;
  transform: translate(37.8374vw, -10px) scale(0.1164);
  animation: fall-192 14s -27s linear infinite;
}
@keyframes fall-192 {
  60.722% {
    transform: translate(42.1284vw, 60.722vh) scale(0.1164);
  }
  to {
    transform: translate(39.9829vw, 100vh) scale(0.1164);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.8775;
  transform: translate(13.909vw, -10px) scale(0.9364);
  animation: fall-193 11s -9s linear infinite;
}
@keyframes fall-193 {
  49.131% {
    transform: translate(10.1348vw, 49.131vh) scale(0.9364);
  }
  to {
    transform: translate(12.0219vw, 100vh) scale(0.9364);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.8637;
  transform: translate(8.647vw, -10px) scale(0.5456);
  animation: fall-194 28s -22s linear infinite;
}
@keyframes fall-194 {
  56.204% {
    transform: translate(16.0223vw, 56.204vh) scale(0.5456);
  }
  to {
    transform: translate(12.33465vw, 100vh) scale(0.5456);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.6519;
  transform: translate(19.1739vw, -10px) scale(0.7912);
  animation: fall-195 16s -30s linear infinite;
}
@keyframes fall-195 {
  43.2% {
    transform: translate(27.0174vw, 43.2vh) scale(0.7912);
  }
  to {
    transform: translate(23.09565vw, 100vh) scale(0.7912);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.5161;
  transform: translate(41.4407vw, -10px) scale(0.7044);
  animation: fall-196 25s -11s linear infinite;
}
@keyframes fall-196 {
  61.17% {
    transform: translate(40.8875vw, 61.17vh) scale(0.7044);
  }
  to {
    transform: translate(41.1641vw, 100vh) scale(0.7044);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.4747;
  transform: translate(6.4782vw, -10px) scale(0.6972);
  animation: fall-197 17s -7s linear infinite;
}
@keyframes fall-197 {
  66.971% {
    transform: translate(10.1128vw, 66.971vh) scale(0.6972);
  }
  to {
    transform: translate(8.2955vw, 100vh) scale(0.6972);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.7733;
  transform: translate(25.4537vw, -10px) scale(0.9227);
  animation: fall-198 28s -19s linear infinite;
}
@keyframes fall-198 {
  30.09% {
    transform: translate(31.8115vw, 30.09vh) scale(0.9227);
  }
  to {
    transform: translate(28.6326vw, 100vh) scale(0.9227);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.1203;
  transform: translate(70.2383vw, -10px) scale(0.5507);
  animation: fall-199 26s -26s linear infinite;
}
@keyframes fall-199 {
  45.751% {
    transform: translate(76.5626vw, 45.751vh) scale(0.5507);
  }
  to {
    transform: translate(73.40045vw, 100vh) scale(0.5507);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.2688;
  transform: translate(62.839vw, -10px) scale(0.8127);
  animation: fall-200 30s -7s linear infinite;
}
@keyframes fall-200 {
  67.963% {
    transform: translate(58.587vw, 67.963vh) scale(0.8127);
  }
  to {
    transform: translate(60.713vw, 100vh) scale(0.8127);
  }
}

.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;
  row-gap: 2vh;
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper {
    padding-bottom: 1vh;
    padding-top: 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;
}
.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 {
    margin-top: 2vh;
    height: 45px;
  }
}
.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 {
  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 .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) {
  .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-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: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .photo-topic__block .topic-card {
    min-height: 350px;
  }
}
.photo-topic__block .topic-card .card-body {
  position: absolute;
  left: 0;
  bottom: 0;
  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::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 .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;
}
.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 {
  background-color: black;
  width: 100%;
  height: 100%;
  min-height: 410px;
}
.photo-topic__block .topic-card .card-bg-img img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  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;
}
@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;
}
@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;
}
@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 {
  height: 4px;
  background-color: black;
  width: 100%;
}
.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 .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: 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;
  }
}

.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 .accept-button-area #button-payment-method {
  height: auto;
  margin: 10px 0;
  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 .accept-button-area #button-payment-method svg {
  fill: white;
  height: 0.8rem;
  position: relative;
  transition: left 0.5s;
}
.checkout-info__wrapper .checkout-block .accept-button-area #button-payment-method:hover {
  border: none;
  background: #dc5b56;
  color: white;
  transition: all 0.5s;
}
.checkout-info__wrapper .checkout-block .accept-button-area #button-payment-method:hover svg {
  fill: white;
  left: 7px;
  transition: left 0.5s;
}
@media screen and (max-width: 1440px) {
  .checkout-info__wrapper .checkout-block .accept-button-area #button-payment-method {
    column-gap: 0.9rem;
  }
  .checkout-info__wrapper .checkout-block .accept-button-area #button-payment-method:hover svg {
    left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .checkout-info__wrapper .checkout-block .accept-button-area #button-payment-method {
    padding: 15px 20px;
    column-gap: 1.1rem;
  }
  .checkout-info__wrapper .checkout-block .accept-button-area #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 6vh 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5vw;
  row-gap: 2vh;
  /* Модальное окно для галереи */
}
@media screen and (max-width: 768px) {
  .photo-gallery-section {
    grid-template-columns: auto;
  }
}
.photo-gallery-section__subgallery {
  aspect-ratio: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.photo-gallery-section__subgallery:hover h3 {
  color: #CC332E;
  transition: color 0.5s;
}
.photo-gallery-section__subtitle {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  padding: 35px 0 5px 0;
  transition: color 0.5s;
}
.photo-gallery-section__preview {
  background: gray;
  width: 100%;
}
.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;
}

.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;
}

@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_v2_16.css.map */
