@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.0426;
  transform: translate(21.9709vw, -10px) scale(0.5419);
  animation: fall-1 16s -18s linear infinite;
}
@keyframes fall-1 {
  52.952% {
    transform: translate(18.2654vw, 52.952vh) scale(0.5419);
  }
  to {
    transform: translate(20.11815vw, 100vh) scale(0.5419);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.6729;
  transform: translate(48.8442vw, -10px) scale(0.822);
  animation: fall-2 12s -7s linear infinite;
}
@keyframes fall-2 {
  45.893% {
    transform: translate(54.5693vw, 45.893vh) scale(0.822);
  }
  to {
    transform: translate(51.70675vw, 100vh) scale(0.822);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.4632;
  transform: translate(11.9363vw, -10px) scale(0.1974);
  animation: fall-3 17s -22s linear infinite;
}
@keyframes fall-3 {
  30.332% {
    transform: translate(4.9117vw, 30.332vh) scale(0.1974);
  }
  to {
    transform: translate(8.424vw, 100vh) scale(0.1974);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.7879;
  transform: translate(2.5995vw, -10px) scale(0.2593);
  animation: fall-4 17s -11s linear infinite;
}
@keyframes fall-4 {
  77.514% {
    transform: translate(-1.2747vw, 77.514vh) scale(0.2593);
  }
  to {
    transform: translate(0.6624vw, 100vh) scale(0.2593);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.4836;
  transform: translate(66.9667vw, -10px) scale(0.8746);
  animation: fall-5 24s -11s linear infinite;
}
@keyframes fall-5 {
  34.005% {
    transform: translate(71.7039vw, 34.005vh) scale(0.8746);
  }
  to {
    transform: translate(69.3353vw, 100vh) scale(0.8746);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.3924;
  transform: translate(38.9675vw, -10px) scale(0.2547);
  animation: fall-6 10s -18s linear infinite;
}
@keyframes fall-6 {
  68.99% {
    transform: translate(40.9703vw, 68.99vh) scale(0.2547);
  }
  to {
    transform: translate(39.9689vw, 100vh) scale(0.2547);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.8947;
  transform: translate(77.6775vw, -10px) scale(0.889);
  animation: fall-7 25s -25s linear infinite;
}
@keyframes fall-7 {
  50.484% {
    transform: translate(71.2597vw, 50.484vh) scale(0.889);
  }
  to {
    transform: translate(74.4686vw, 100vh) scale(0.889);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.623;
  transform: translate(90.202vw, -10px) scale(0.4239);
  animation: fall-8 30s -2s linear infinite;
}
@keyframes fall-8 {
  50.523% {
    transform: translate(98.658vw, 50.523vh) scale(0.4239);
  }
  to {
    transform: translate(94.43vw, 100vh) scale(0.4239);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.1248;
  transform: translate(55.9756vw, -10px) scale(0.1775);
  animation: fall-9 16s -27s linear infinite;
}
@keyframes fall-9 {
  76.56% {
    transform: translate(64.0386vw, 76.56vh) scale(0.1775);
  }
  to {
    transform: translate(60.0071vw, 100vh) scale(0.1775);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.819;
  transform: translate(10.8607vw, -10px) scale(0.2502);
  animation: fall-10 27s -13s linear infinite;
}
@keyframes fall-10 {
  76.943% {
    transform: translate(9.3804vw, 76.943vh) scale(0.2502);
  }
  to {
    transform: translate(10.12055vw, 100vh) scale(0.2502);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.3896;
  transform: translate(65.9593vw, -10px) scale(0.2813);
  animation: fall-11 27s -26s linear infinite;
}
@keyframes fall-11 {
  73.588% {
    transform: translate(55.9614vw, 73.588vh) scale(0.2813);
  }
  to {
    transform: translate(60.96035vw, 100vh) scale(0.2813);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.9744;
  transform: translate(6.7508vw, -10px) scale(0.0836);
  animation: fall-12 26s -1s linear infinite;
}
@keyframes fall-12 {
  55.686% {
    transform: translate(0.9717vw, 55.686vh) scale(0.0836);
  }
  to {
    transform: translate(3.86125vw, 100vh) scale(0.0836);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.7746;
  transform: translate(48.375vw, -10px) scale(0.6679);
  animation: fall-13 11s -6s linear infinite;
}
@keyframes fall-13 {
  76.705% {
    transform: translate(45.5234vw, 76.705vh) scale(0.6679);
  }
  to {
    transform: translate(46.9492vw, 100vh) scale(0.6679);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.6029;
  transform: translate(75.1119vw, -10px) scale(0.6923);
  animation: fall-14 30s -6s linear infinite;
}
@keyframes fall-14 {
  55.429% {
    transform: translate(80.8409vw, 55.429vh) scale(0.6923);
  }
  to {
    transform: translate(77.9764vw, 100vh) scale(0.6923);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.2578;
  transform: translate(88.2849vw, -10px) scale(0.5234);
  animation: fall-15 26s -9s linear infinite;
}
@keyframes fall-15 {
  64.326% {
    transform: translate(95.9616vw, 64.326vh) scale(0.5234);
  }
  to {
    transform: translate(92.12325vw, 100vh) scale(0.5234);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.1375;
  transform: translate(49.1348vw, -10px) scale(0.1867);
  animation: fall-16 20s -8s linear infinite;
}
@keyframes fall-16 {
  51.785% {
    transform: translate(41.4561vw, 51.785vh) scale(0.1867);
  }
  to {
    transform: translate(45.29545vw, 100vh) scale(0.1867);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.1935;
  transform: translate(41.5288vw, -10px) scale(0.8211);
  animation: fall-17 25s -30s linear infinite;
}
@keyframes fall-17 {
  32.487% {
    transform: translate(33.0669vw, 32.487vh) scale(0.8211);
  }
  to {
    transform: translate(37.29785vw, 100vh) scale(0.8211);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.1183;
  transform: translate(50.7607vw, -10px) scale(0.7332);
  animation: fall-18 21s -28s linear infinite;
}
@keyframes fall-18 {
  44.792% {
    transform: translate(53.2058vw, 44.792vh) scale(0.7332);
  }
  to {
    transform: translate(51.98325vw, 100vh) scale(0.7332);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.7318;
  transform: translate(43.5097vw, -10px) scale(0.3368);
  animation: fall-19 29s -30s linear infinite;
}
@keyframes fall-19 {
  44.899% {
    transform: translate(52.4698vw, 44.899vh) scale(0.3368);
  }
  to {
    transform: translate(47.98975vw, 100vh) scale(0.3368);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.2889;
  transform: translate(89.6861vw, -10px) scale(0.5377);
  animation: fall-20 30s -18s linear infinite;
}
@keyframes fall-20 {
  71.329% {
    transform: translate(94.9849vw, 71.329vh) scale(0.5377);
  }
  to {
    transform: translate(92.3355vw, 100vh) scale(0.5377);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.0896;
  transform: translate(34.7472vw, -10px) scale(0.5583);
  animation: fall-21 24s -27s linear infinite;
}
@keyframes fall-21 {
  52.423% {
    transform: translate(29.4506vw, 52.423vh) scale(0.5583);
  }
  to {
    transform: translate(32.0989vw, 100vh) scale(0.5583);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.2032;
  transform: translate(19.3858vw, -10px) scale(0.6751);
  animation: fall-22 11s -27s linear infinite;
}
@keyframes fall-22 {
  50.635% {
    transform: translate(26.3994vw, 50.635vh) scale(0.6751);
  }
  to {
    transform: translate(22.8926vw, 100vh) scale(0.6751);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.7862;
  transform: translate(54.8729vw, -10px) scale(0.0509);
  animation: fall-23 18s -17s linear infinite;
}
@keyframes fall-23 {
  78.843% {
    transform: translate(61.5204vw, 78.843vh) scale(0.0509);
  }
  to {
    transform: translate(58.19665vw, 100vh) scale(0.0509);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.2628;
  transform: translate(76.1355vw, -10px) scale(0.8162);
  animation: fall-24 14s -7s linear infinite;
}
@keyframes fall-24 {
  56.853% {
    transform: translate(81.3041vw, 56.853vh) scale(0.8162);
  }
  to {
    transform: translate(78.7198vw, 100vh) scale(0.8162);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.9244;
  transform: translate(8.1711vw, -10px) scale(0.4847);
  animation: fall-25 19s -9s linear infinite;
}
@keyframes fall-25 {
  55.314% {
    transform: translate(14.8983vw, 55.314vh) scale(0.4847);
  }
  to {
    transform: translate(11.5347vw, 100vh) scale(0.4847);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.4595;
  transform: translate(64.4791vw, -10px) scale(0.2518);
  animation: fall-26 18s -18s linear infinite;
}
@keyframes fall-26 {
  63.82% {
    transform: translate(72.6829vw, 63.82vh) scale(0.2518);
  }
  to {
    transform: translate(68.581vw, 100vh) scale(0.2518);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.0252;
  transform: translate(50.4635vw, -10px) scale(0.3969);
  animation: fall-27 22s -8s linear infinite;
}
@keyframes fall-27 {
  67.302% {
    transform: translate(47.3194vw, 67.302vh) scale(0.3969);
  }
  to {
    transform: translate(48.89145vw, 100vh) scale(0.3969);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.3219;
  transform: translate(89.8722vw, -10px) scale(0.1169);
  animation: fall-28 19s -6s linear infinite;
}
@keyframes fall-28 {
  30.901% {
    transform: translate(94.1244vw, 30.901vh) scale(0.1169);
  }
  to {
    transform: translate(91.9983vw, 100vh) scale(0.1169);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.7168;
  transform: translate(40.0964vw, -10px) scale(0.8179);
  animation: fall-29 25s -26s linear infinite;
}
@keyframes fall-29 {
  64.842% {
    transform: translate(34.9619vw, 64.842vh) scale(0.8179);
  }
  to {
    transform: translate(37.52915vw, 100vh) scale(0.8179);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.5228;
  transform: translate(86.264vw, -10px) scale(0.6165);
  animation: fall-30 11s -5s linear infinite;
}
@keyframes fall-30 {
  37.627% {
    transform: translate(81.6162vw, 37.627vh) scale(0.6165);
  }
  to {
    transform: translate(83.9401vw, 100vh) scale(0.6165);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.7136;
  transform: translate(98.0125vw, -10px) scale(0.8164);
  animation: fall-31 13s -1s linear infinite;
}
@keyframes fall-31 {
  58.063% {
    transform: translate(95.6328vw, 58.063vh) scale(0.8164);
  }
  to {
    transform: translate(96.82265vw, 100vh) scale(0.8164);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.7554;
  transform: translate(10.9973vw, -10px) scale(0.1756);
  animation: fall-32 15s -27s linear infinite;
}
@keyframes fall-32 {
  71.365% {
    transform: translate(2.8849vw, 71.365vh) scale(0.1756);
  }
  to {
    transform: translate(6.9411vw, 100vh) scale(0.1756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.6154;
  transform: translate(34.8618vw, -10px) scale(0.1519);
  animation: fall-33 19s -26s linear infinite;
}
@keyframes fall-33 {
  63.157% {
    transform: translate(34.6798vw, 63.157vh) scale(0.1519);
  }
  to {
    transform: translate(34.7708vw, 100vh) scale(0.1519);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.4989;
  transform: translate(21.5824vw, -10px) scale(0.0206);
  animation: fall-34 16s -1s linear infinite;
}
@keyframes fall-34 {
  56.427% {
    transform: translate(26.5611vw, 56.427vh) scale(0.0206);
  }
  to {
    transform: translate(24.07175vw, 100vh) scale(0.0206);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.9625;
  transform: translate(79.5301vw, -10px) scale(0.1147);
  animation: fall-35 14s -24s linear infinite;
}
@keyframes fall-35 {
  58.394% {
    transform: translate(80.0282vw, 58.394vh) scale(0.1147);
  }
  to {
    transform: translate(79.77915vw, 100vh) scale(0.1147);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.524;
  transform: translate(30.1213vw, -10px) scale(0.1129);
  animation: fall-36 30s -27s linear infinite;
}
@keyframes fall-36 {
  30.188% {
    transform: translate(36.3551vw, 30.188vh) scale(0.1129);
  }
  to {
    transform: translate(33.2382vw, 100vh) scale(0.1129);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.16;
  transform: translate(22.3835vw, -10px) scale(0.6295);
  animation: fall-37 20s -18s linear infinite;
}
@keyframes fall-37 {
  72.21% {
    transform: translate(20.0127vw, 72.21vh) scale(0.6295);
  }
  to {
    transform: translate(21.1981vw, 100vh) scale(0.6295);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.9868;
  transform: translate(0.8723vw, -10px) scale(0.9763);
  animation: fall-38 29s -21s linear infinite;
}
@keyframes fall-38 {
  52.544% {
    transform: translate(4.3246vw, 52.544vh) scale(0.9763);
  }
  to {
    transform: translate(2.59845vw, 100vh) scale(0.9763);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.1024;
  transform: translate(97.0509vw, -10px) scale(0.7895);
  animation: fall-39 20s -22s linear infinite;
}
@keyframes fall-39 {
  45.746% {
    transform: translate(97.5247vw, 45.746vh) scale(0.7895);
  }
  to {
    transform: translate(97.2878vw, 100vh) scale(0.7895);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.1664;
  transform: translate(80.9166vw, -10px) scale(0.8689);
  animation: fall-40 26s -28s linear infinite;
}
@keyframes fall-40 {
  64.917% {
    transform: translate(72.1081vw, 64.917vh) scale(0.8689);
  }
  to {
    transform: translate(76.51235vw, 100vh) scale(0.8689);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.7217;
  transform: translate(57.3433vw, -10px) scale(0.3506);
  animation: fall-41 29s -20s linear infinite;
}
@keyframes fall-41 {
  35.354% {
    transform: translate(65.4915vw, 35.354vh) scale(0.3506);
  }
  to {
    transform: translate(61.4174vw, 100vh) scale(0.3506);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.7299;
  transform: translate(35.9941vw, -10px) scale(0.045);
  animation: fall-42 14s -4s linear infinite;
}
@keyframes fall-42 {
  35.957% {
    transform: translate(29.8473vw, 35.957vh) scale(0.045);
  }
  to {
    transform: translate(32.9207vw, 100vh) scale(0.045);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.3238;
  transform: translate(11.2629vw, -10px) scale(0.4988);
  animation: fall-43 10s -17s linear infinite;
}
@keyframes fall-43 {
  53.8% {
    transform: translate(9.9864vw, 53.8vh) scale(0.4988);
  }
  to {
    transform: translate(10.62465vw, 100vh) scale(0.4988);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.1283;
  transform: translate(91.8455vw, -10px) scale(0.9626);
  animation: fall-44 14s -7s linear infinite;
}
@keyframes fall-44 {
  79.006% {
    transform: translate(93.0519vw, 79.006vh) scale(0.9626);
  }
  to {
    transform: translate(92.4487vw, 100vh) scale(0.9626);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.4364;
  transform: translate(62.952vw, -10px) scale(0.4152);
  animation: fall-45 21s -5s linear infinite;
}
@keyframes fall-45 {
  56.632% {
    transform: translate(65.4605vw, 56.632vh) scale(0.4152);
  }
  to {
    transform: translate(64.20625vw, 100vh) scale(0.4152);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.3256;
  transform: translate(83.8852vw, -10px) scale(0.3427);
  animation: fall-46 30s -17s linear infinite;
}
@keyframes fall-46 {
  62.021% {
    transform: translate(81.5759vw, 62.021vh) scale(0.3427);
  }
  to {
    transform: translate(82.73055vw, 100vh) scale(0.3427);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.2505;
  transform: translate(78.1147vw, -10px) scale(1);
  animation: fall-47 21s -29s linear infinite;
}
@keyframes fall-47 {
  72.617% {
    transform: translate(85.314vw, 72.617vh) scale(1);
  }
  to {
    transform: translate(81.71435vw, 100vh) scale(1);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.4254;
  transform: translate(4.5977vw, -10px) scale(0.3002);
  animation: fall-48 30s -10s linear infinite;
}
@keyframes fall-48 {
  38.986% {
    transform: translate(6.5389vw, 38.986vh) scale(0.3002);
  }
  to {
    transform: translate(5.5683vw, 100vh) scale(0.3002);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.7999;
  transform: translate(55.8223vw, -10px) scale(0.5601);
  animation: fall-49 27s -25s linear infinite;
}
@keyframes fall-49 {
  64.698% {
    transform: translate(49.9166vw, 64.698vh) scale(0.5601);
  }
  to {
    transform: translate(52.86945vw, 100vh) scale(0.5601);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.3895;
  transform: translate(51.257vw, -10px) scale(0.3648);
  animation: fall-50 11s -28s linear infinite;
}
@keyframes fall-50 {
  79.919% {
    transform: translate(41.7406vw, 79.919vh) scale(0.3648);
  }
  to {
    transform: translate(46.4988vw, 100vh) scale(0.3648);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.7512;
  transform: translate(27.0502vw, -10px) scale(0.4896);
  animation: fall-51 18s -27s linear infinite;
}
@keyframes fall-51 {
  76.175% {
    transform: translate(25.7034vw, 76.175vh) scale(0.4896);
  }
  to {
    transform: translate(26.3768vw, 100vh) scale(0.4896);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.4832;
  transform: translate(52.8671vw, -10px) scale(0.6926);
  animation: fall-52 17s -10s linear infinite;
}
@keyframes fall-52 {
  73.816% {
    transform: translate(57.2106vw, 73.816vh) scale(0.6926);
  }
  to {
    transform: translate(55.03885vw, 100vh) scale(0.6926);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.5648;
  transform: translate(74.0416vw, -10px) scale(0.0952);
  animation: fall-53 30s -22s linear infinite;
}
@keyframes fall-53 {
  75.279% {
    transform: translate(81.5262vw, 75.279vh) scale(0.0952);
  }
  to {
    transform: translate(77.7839vw, 100vh) scale(0.0952);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.852;
  transform: translate(92.7142vw, -10px) scale(0.7053);
  animation: fall-54 20s -24s linear infinite;
}
@keyframes fall-54 {
  78.671% {
    transform: translate(98.2618vw, 78.671vh) scale(0.7053);
  }
  to {
    transform: translate(95.488vw, 100vh) scale(0.7053);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.5823;
  transform: translate(76.9285vw, -10px) scale(0.8537);
  animation: fall-55 12s -16s linear infinite;
}
@keyframes fall-55 {
  33.11% {
    transform: translate(72.2382vw, 33.11vh) scale(0.8537);
  }
  to {
    transform: translate(74.58335vw, 100vh) scale(0.8537);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.3264;
  transform: translate(26.2488vw, -10px) scale(0.8522);
  animation: fall-56 10s -23s linear infinite;
}
@keyframes fall-56 {
  44.985% {
    transform: translate(23.6005vw, 44.985vh) scale(0.8522);
  }
  to {
    transform: translate(24.92465vw, 100vh) scale(0.8522);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.6565;
  transform: translate(43.9391vw, -10px) scale(0.7857);
  animation: fall-57 26s -8s linear infinite;
}
@keyframes fall-57 {
  70.014% {
    transform: translate(41.5303vw, 70.014vh) scale(0.7857);
  }
  to {
    transform: translate(42.7347vw, 100vh) scale(0.7857);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.5609;
  transform: translate(59.644vw, -10px) scale(0.6167);
  animation: fall-58 12s -7s linear infinite;
}
@keyframes fall-58 {
  71.642% {
    transform: translate(57.0906vw, 71.642vh) scale(0.6167);
  }
  to {
    transform: translate(58.3673vw, 100vh) scale(0.6167);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.5194;
  transform: translate(30.874vw, -10px) scale(0.8399);
  animation: fall-59 29s -16s linear infinite;
}
@keyframes fall-59 {
  52.584% {
    transform: translate(31.1381vw, 52.584vh) scale(0.8399);
  }
  to {
    transform: translate(31.00605vw, 100vh) scale(0.8399);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.8874;
  transform: translate(78.8082vw, -10px) scale(0.9791);
  animation: fall-60 18s -22s linear infinite;
}
@keyframes fall-60 {
  79.83% {
    transform: translate(81.7387vw, 79.83vh) scale(0.9791);
  }
  to {
    transform: translate(80.27345vw, 100vh) scale(0.9791);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.1998;
  transform: translate(32.5979vw, -10px) scale(0.5205);
  animation: fall-61 21s -5s linear infinite;
}
@keyframes fall-61 {
  67.844% {
    transform: translate(27.6656vw, 67.844vh) scale(0.5205);
  }
  to {
    transform: translate(30.13175vw, 100vh) scale(0.5205);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.9709;
  transform: translate(16.7093vw, -10px) scale(0.0358);
  animation: fall-62 25s -24s linear infinite;
}
@keyframes fall-62 {
  69.119% {
    transform: translate(18.2474vw, 69.119vh) scale(0.0358);
  }
  to {
    transform: translate(17.47835vw, 100vh) scale(0.0358);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.9237;
  transform: translate(49.7524vw, -10px) scale(0.8296);
  animation: fall-63 11s -16s linear infinite;
}
@keyframes fall-63 {
  74.57% {
    transform: translate(51.0241vw, 74.57vh) scale(0.8296);
  }
  to {
    transform: translate(50.38825vw, 100vh) scale(0.8296);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.6945;
  transform: translate(44.4708vw, -10px) scale(0.2927);
  animation: fall-64 18s -15s linear infinite;
}
@keyframes fall-64 {
  39.118% {
    transform: translate(37.1873vw, 39.118vh) scale(0.2927);
  }
  to {
    transform: translate(40.82905vw, 100vh) scale(0.2927);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.889;
  transform: translate(12.3937vw, -10px) scale(0.0428);
  animation: fall-65 21s -7s linear infinite;
}
@keyframes fall-65 {
  36.283% {
    transform: translate(11.7265vw, 36.283vh) scale(0.0428);
  }
  to {
    transform: translate(12.0601vw, 100vh) scale(0.0428);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.7109;
  transform: translate(14.6603vw, -10px) scale(0.2118);
  animation: fall-66 15s -18s linear infinite;
}
@keyframes fall-66 {
  44.471% {
    transform: translate(21.3868vw, 44.471vh) scale(0.2118);
  }
  to {
    transform: translate(18.02355vw, 100vh) scale(0.2118);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.1865;
  transform: translate(66.1481vw, -10px) scale(0.4069);
  animation: fall-67 16s -9s linear infinite;
}
@keyframes fall-67 {
  75.913% {
    transform: translate(60.465vw, 75.913vh) scale(0.4069);
  }
  to {
    transform: translate(63.30655vw, 100vh) scale(0.4069);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.4068;
  transform: translate(2.0433vw, -10px) scale(0.8276);
  animation: fall-68 25s -29s linear infinite;
}
@keyframes fall-68 {
  56.392% {
    transform: translate(-6.8683vw, 56.392vh) scale(0.8276);
  }
  to {
    transform: translate(-2.4125vw, 100vh) scale(0.8276);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.219;
  transform: translate(26.144vw, -10px) scale(0.0771);
  animation: fall-69 23s -11s linear infinite;
}
@keyframes fall-69 {
  41.599% {
    transform: translate(35.5355vw, 41.599vh) scale(0.0771);
  }
  to {
    transform: translate(30.83975vw, 100vh) scale(0.0771);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.246;
  transform: translate(70.8686vw, -10px) scale(0.5863);
  animation: fall-70 20s -28s linear infinite;
}
@keyframes fall-70 {
  54.296% {
    transform: translate(71.2535vw, 54.296vh) scale(0.5863);
  }
  to {
    transform: translate(71.06105vw, 100vh) scale(0.5863);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.9033;
  transform: translate(36.8807vw, -10px) scale(0.2609);
  animation: fall-71 30s -21s linear infinite;
}
@keyframes fall-71 {
  41.723% {
    transform: translate(40.7239vw, 41.723vh) scale(0.2609);
  }
  to {
    transform: translate(38.8023vw, 100vh) scale(0.2609);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.0678;
  transform: translate(66.8437vw, -10px) scale(0.9427);
  animation: fall-72 10s -16s linear infinite;
}
@keyframes fall-72 {
  46.211% {
    transform: translate(70.9188vw, 46.211vh) scale(0.9427);
  }
  to {
    transform: translate(68.88125vw, 100vh) scale(0.9427);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.9172;
  transform: translate(4.964vw, -10px) scale(0.1579);
  animation: fall-73 27s -14s linear infinite;
}
@keyframes fall-73 {
  62.727% {
    transform: translate(-1.9993vw, 62.727vh) scale(0.1579);
  }
  to {
    transform: translate(1.48235vw, 100vh) scale(0.1579);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.8918;
  transform: translate(80.5478vw, -10px) scale(0.3552);
  animation: fall-74 23s -14s linear infinite;
}
@keyframes fall-74 {
  75.369% {
    transform: translate(82.2329vw, 75.369vh) scale(0.3552);
  }
  to {
    transform: translate(81.39035vw, 100vh) scale(0.3552);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.5285;
  transform: translate(12.0129vw, -10px) scale(0.1087);
  animation: fall-75 17s -16s linear infinite;
}
@keyframes fall-75 {
  60.271% {
    transform: translate(20.2722vw, 60.271vh) scale(0.1087);
  }
  to {
    transform: translate(16.14255vw, 100vh) scale(0.1087);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.6281;
  transform: translate(65.8472vw, -10px) scale(0.7975);
  animation: fall-76 11s -26s linear infinite;
}
@keyframes fall-76 {
  43.59% {
    transform: translate(63.7941vw, 43.59vh) scale(0.7975);
  }
  to {
    transform: translate(64.82065vw, 100vh) scale(0.7975);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.5989;
  transform: translate(98.5342vw, -10px) scale(0.4503);
  animation: fall-77 10s -21s linear infinite;
}
@keyframes fall-77 {
  68.39% {
    transform: translate(89.8317vw, 68.39vh) scale(0.4503);
  }
  to {
    transform: translate(94.18295vw, 100vh) scale(0.4503);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.4841;
  transform: translate(34.4033vw, -10px) scale(0.2047);
  animation: fall-78 27s -30s linear infinite;
}
@keyframes fall-78 {
  75.59% {
    transform: translate(42.6611vw, 75.59vh) scale(0.2047);
  }
  to {
    transform: translate(38.5322vw, 100vh) scale(0.2047);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.2766;
  transform: translate(96.1996vw, -10px) scale(0.6485);
  animation: fall-79 19s -23s linear infinite;
}
@keyframes fall-79 {
  46.882% {
    transform: translate(98.3261vw, 46.882vh) scale(0.6485);
  }
  to {
    transform: translate(97.26285vw, 100vh) scale(0.6485);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.6688;
  transform: translate(94.8186vw, -10px) scale(0.6545);
  animation: fall-80 22s -5s linear infinite;
}
@keyframes fall-80 {
  58.271% {
    transform: translate(93.4424vw, 58.271vh) scale(0.6545);
  }
  to {
    transform: translate(94.1305vw, 100vh) scale(0.6545);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.3041;
  transform: translate(67.9179vw, -10px) scale(0.7805);
  animation: fall-81 19s -15s linear infinite;
}
@keyframes fall-81 {
  32.439% {
    transform: translate(69.3155vw, 32.439vh) scale(0.7805);
  }
  to {
    transform: translate(68.6167vw, 100vh) scale(0.7805);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.733;
  transform: translate(79.5865vw, -10px) scale(0.394);
  animation: fall-82 24s -28s linear infinite;
}
@keyframes fall-82 {
  31.707% {
    transform: translate(89.5368vw, 31.707vh) scale(0.394);
  }
  to {
    transform: translate(84.56165vw, 100vh) scale(0.394);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.4579;
  transform: translate(33.6795vw, -10px) scale(0.1708);
  animation: fall-83 15s -23s linear infinite;
}
@keyframes fall-83 {
  35.387% {
    transform: translate(36.2797vw, 35.387vh) scale(0.1708);
  }
  to {
    transform: translate(34.9796vw, 100vh) scale(0.1708);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.0761;
  transform: translate(35.3976vw, -10px) scale(0.8002);
  animation: fall-84 20s -22s linear infinite;
}
@keyframes fall-84 {
  50.19% {
    transform: translate(45.2509vw, 50.19vh) scale(0.8002);
  }
  to {
    transform: translate(40.32425vw, 100vh) scale(0.8002);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.5848;
  transform: translate(24.0783vw, -10px) scale(0.1035);
  animation: fall-85 21s -20s linear infinite;
}
@keyframes fall-85 {
  76.824% {
    transform: translate(31.9653vw, 76.824vh) scale(0.1035);
  }
  to {
    transform: translate(28.0218vw, 100vh) scale(0.1035);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.4778;
  transform: translate(49.4627vw, -10px) scale(0.5266);
  animation: fall-86 25s -26s linear infinite;
}
@keyframes fall-86 {
  73.516% {
    transform: translate(47.926vw, 73.516vh) scale(0.5266);
  }
  to {
    transform: translate(48.69435vw, 100vh) scale(0.5266);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.5105;
  transform: translate(11.3058vw, -10px) scale(0.5531);
  animation: fall-87 28s -4s linear infinite;
}
@keyframes fall-87 {
  37.398% {
    transform: translate(18.2223vw, 37.398vh) scale(0.5531);
  }
  to {
    transform: translate(14.76405vw, 100vh) scale(0.5531);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.2537;
  transform: translate(52.8839vw, -10px) scale(0.3725);
  animation: fall-88 25s -30s linear infinite;
}
@keyframes fall-88 {
  50.604% {
    transform: translate(54.6501vw, 50.604vh) scale(0.3725);
  }
  to {
    transform: translate(53.767vw, 100vh) scale(0.3725);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.7596;
  transform: translate(77.1924vw, -10px) scale(0.8074);
  animation: fall-89 11s -4s linear infinite;
}
@keyframes fall-89 {
  41.82% {
    transform: translate(69.0079vw, 41.82vh) scale(0.8074);
  }
  to {
    transform: translate(73.10015vw, 100vh) scale(0.8074);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.6928;
  transform: translate(55.9842vw, -10px) scale(0.9508);
  animation: fall-90 28s -4s linear infinite;
}
@keyframes fall-90 {
  30.943% {
    transform: translate(56.2561vw, 30.943vh) scale(0.9508);
  }
  to {
    transform: translate(56.12015vw, 100vh) scale(0.9508);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.7533;
  transform: translate(95.2815vw, -10px) scale(0.2599);
  animation: fall-91 30s -14s linear infinite;
}
@keyframes fall-91 {
  66.665% {
    transform: translate(89.2401vw, 66.665vh) scale(0.2599);
  }
  to {
    transform: translate(92.2608vw, 100vh) scale(0.2599);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.5427;
  transform: translate(89.2478vw, -10px) scale(0.7032);
  animation: fall-92 26s -13s linear infinite;
}
@keyframes fall-92 {
  76.192% {
    transform: translate(91.2132vw, 76.192vh) scale(0.7032);
  }
  to {
    transform: translate(90.2305vw, 100vh) scale(0.7032);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.6019;
  transform: translate(33.8425vw, -10px) scale(0.1377);
  animation: fall-93 16s -29s linear infinite;
}
@keyframes fall-93 {
  75.58% {
    transform: translate(25.6099vw, 75.58vh) scale(0.1377);
  }
  to {
    transform: translate(29.7262vw, 100vh) scale(0.1377);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.8561;
  transform: translate(32.9138vw, -10px) scale(0.8969);
  animation: fall-94 21s -3s linear infinite;
}
@keyframes fall-94 {
  75.43% {
    transform: translate(40.8021vw, 75.43vh) scale(0.8969);
  }
  to {
    transform: translate(36.85795vw, 100vh) scale(0.8969);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.4734;
  transform: translate(69.7288vw, -10px) scale(0.4809);
  animation: fall-95 10s -30s linear infinite;
}
@keyframes fall-95 {
  64.006% {
    transform: translate(62.4406vw, 64.006vh) scale(0.4809);
  }
  to {
    transform: translate(66.0847vw, 100vh) scale(0.4809);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.8052;
  transform: translate(52.9345vw, -10px) scale(0.1813);
  animation: fall-96 17s -11s linear infinite;
}
@keyframes fall-96 {
  68.557% {
    transform: translate(44.9359vw, 68.557vh) scale(0.1813);
  }
  to {
    transform: translate(48.9352vw, 100vh) scale(0.1813);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.0159;
  transform: translate(28.6368vw, -10px) scale(0.1765);
  animation: fall-97 29s -24s linear infinite;
}
@keyframes fall-97 {
  74.335% {
    transform: translate(36.4735vw, 74.335vh) scale(0.1765);
  }
  to {
    transform: translate(32.55515vw, 100vh) scale(0.1765);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.0156;
  transform: translate(72.8275vw, -10px) scale(0.4675);
  animation: fall-98 11s -30s linear infinite;
}
@keyframes fall-98 {
  37.633% {
    transform: translate(71.8945vw, 37.633vh) scale(0.4675);
  }
  to {
    transform: translate(72.361vw, 100vh) scale(0.4675);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.3751;
  transform: translate(91.3092vw, -10px) scale(0.1058);
  animation: fall-99 18s -8s linear infinite;
}
@keyframes fall-99 {
  60.702% {
    transform: translate(86.2786vw, 60.702vh) scale(0.1058);
  }
  to {
    transform: translate(88.7939vw, 100vh) scale(0.1058);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.5601;
  transform: translate(21.7379vw, -10px) scale(0.2463);
  animation: fall-100 12s -19s linear infinite;
}
@keyframes fall-100 {
  30.749% {
    transform: translate(18.2987vw, 30.749vh) scale(0.2463);
  }
  to {
    transform: translate(20.0183vw, 100vh) scale(0.2463);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.2686;
  transform: translate(87.7245vw, -10px) scale(0.7891);
  animation: fall-101 10s -23s linear infinite;
}
@keyframes fall-101 {
  45.885% {
    transform: translate(88.496vw, 45.885vh) scale(0.7891);
  }
  to {
    transform: translate(88.11025vw, 100vh) scale(0.7891);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.3035;
  transform: translate(23.7445vw, -10px) scale(0.556);
  animation: fall-102 30s -2s linear infinite;
}
@keyframes fall-102 {
  58.438% {
    transform: translate(26.1517vw, 58.438vh) scale(0.556);
  }
  to {
    transform: translate(24.9481vw, 100vh) scale(0.556);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.1926;
  transform: translate(17.4678vw, -10px) scale(0.882);
  animation: fall-103 18s -18s linear infinite;
}
@keyframes fall-103 {
  73.674% {
    transform: translate(17.0384vw, 73.674vh) scale(0.882);
  }
  to {
    transform: translate(17.2531vw, 100vh) scale(0.882);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.1402;
  transform: translate(74.9839vw, -10px) scale(0.929);
  animation: fall-104 23s -17s linear infinite;
}
@keyframes fall-104 {
  48.479% {
    transform: translate(76.2205vw, 48.479vh) scale(0.929);
  }
  to {
    transform: translate(75.6022vw, 100vh) scale(0.929);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.8799;
  transform: translate(25.8534vw, -10px) scale(0.5375);
  animation: fall-105 29s -10s linear infinite;
}
@keyframes fall-105 {
  39.145% {
    transform: translate(29.459vw, 39.145vh) scale(0.5375);
  }
  to {
    transform: translate(27.6562vw, 100vh) scale(0.5375);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.6499;
  transform: translate(57.451vw, -10px) scale(0.8598);
  animation: fall-106 22s -25s linear infinite;
}
@keyframes fall-106 {
  51.581% {
    transform: translate(64.8336vw, 51.581vh) scale(0.8598);
  }
  to {
    transform: translate(61.1423vw, 100vh) scale(0.8598);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.0173;
  transform: translate(13.9327vw, -10px) scale(0.1332);
  animation: fall-107 19s -12s linear infinite;
}
@keyframes fall-107 {
  44.608% {
    transform: translate(12.5042vw, 44.608vh) scale(0.1332);
  }
  to {
    transform: translate(13.21845vw, 100vh) scale(0.1332);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.6359;
  transform: translate(54.8205vw, -10px) scale(0.0539);
  animation: fall-108 17s -9s linear infinite;
}
@keyframes fall-108 {
  65.272% {
    transform: translate(55.9153vw, 65.272vh) scale(0.0539);
  }
  to {
    transform: translate(55.3679vw, 100vh) scale(0.0539);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.3831;
  transform: translate(85.3058vw, -10px) scale(0.684);
  animation: fall-109 18s -24s linear infinite;
}
@keyframes fall-109 {
  51.328% {
    transform: translate(81.067vw, 51.328vh) scale(0.684);
  }
  to {
    transform: translate(83.1864vw, 100vh) scale(0.684);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.5081;
  transform: translate(27.4623vw, -10px) scale(0.0967);
  animation: fall-110 13s -11s linear infinite;
}
@keyframes fall-110 {
  79.068% {
    transform: translate(32.4874vw, 79.068vh) scale(0.0967);
  }
  to {
    transform: translate(29.97485vw, 100vh) scale(0.0967);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.006;
  transform: translate(78.0629vw, -10px) scale(0.7269);
  animation: fall-111 30s -20s linear infinite;
}
@keyframes fall-111 {
  64.259% {
    transform: translate(70.918vw, 64.259vh) scale(0.7269);
  }
  to {
    transform: translate(74.49045vw, 100vh) scale(0.7269);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.3428;
  transform: translate(74.1304vw, -10px) scale(0.8367);
  animation: fall-112 29s -11s linear infinite;
}
@keyframes fall-112 {
  30.101% {
    transform: translate(76.4161vw, 30.101vh) scale(0.8367);
  }
  to {
    transform: translate(75.27325vw, 100vh) scale(0.8367);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.2452;
  transform: translate(68.9518vw, -10px) scale(0.2075);
  animation: fall-113 23s -29s linear infinite;
}
@keyframes fall-113 {
  39.603% {
    transform: translate(71.03vw, 39.603vh) scale(0.2075);
  }
  to {
    transform: translate(69.9909vw, 100vh) scale(0.2075);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.8868;
  transform: translate(49.248vw, -10px) scale(0.7481);
  animation: fall-114 27s -28s linear infinite;
}
@keyframes fall-114 {
  73.723% {
    transform: translate(40.5368vw, 73.723vh) scale(0.7481);
  }
  to {
    transform: translate(44.8924vw, 100vh) scale(0.7481);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.1894;
  transform: translate(86.951vw, -10px) scale(0.075);
  animation: fall-115 23s -29s linear infinite;
}
@keyframes fall-115 {
  44.197% {
    transform: translate(83.9643vw, 44.197vh) scale(0.075);
  }
  to {
    transform: translate(85.45765vw, 100vh) scale(0.075);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.7432;
  transform: translate(56.1236vw, -10px) scale(0.2836);
  animation: fall-116 30s -17s linear infinite;
}
@keyframes fall-116 {
  40.475% {
    transform: translate(61.539vw, 40.475vh) scale(0.2836);
  }
  to {
    transform: translate(58.8313vw, 100vh) scale(0.2836);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.1253;
  transform: translate(0.0244vw, -10px) scale(0.359);
  animation: fall-117 28s -25s linear infinite;
}
@keyframes fall-117 {
  76.654% {
    transform: translate(-1.5865vw, 76.654vh) scale(0.359);
  }
  to {
    transform: translate(-0.78105vw, 100vh) scale(0.359);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.1603;
  transform: translate(42.7281vw, -10px) scale(0.6759);
  animation: fall-118 24s -5s linear infinite;
}
@keyframes fall-118 {
  56.411% {
    transform: translate(49.6009vw, 56.411vh) scale(0.6759);
  }
  to {
    transform: translate(46.1645vw, 100vh) scale(0.6759);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.5798;
  transform: translate(15.0645vw, -10px) scale(0.763);
  animation: fall-119 20s -18s linear infinite;
}
@keyframes fall-119 {
  37.125% {
    transform: translate(19.9315vw, 37.125vh) scale(0.763);
  }
  to {
    transform: translate(17.498vw, 100vh) scale(0.763);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.5407;
  transform: translate(26.4157vw, -10px) scale(0.5138);
  animation: fall-120 27s -3s linear infinite;
}
@keyframes fall-120 {
  65.19% {
    transform: translate(28.4955vw, 65.19vh) scale(0.5138);
  }
  to {
    transform: translate(27.4556vw, 100vh) scale(0.5138);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.2855;
  transform: translate(18.5486vw, -10px) scale(0.944);
  animation: fall-121 30s -16s linear infinite;
}
@keyframes fall-121 {
  56.881% {
    transform: translate(28.5118vw, 56.881vh) scale(0.944);
  }
  to {
    transform: translate(23.5302vw, 100vh) scale(0.944);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.4253;
  transform: translate(50.3624vw, -10px) scale(0.8847);
  animation: fall-122 25s -29s linear infinite;
}
@keyframes fall-122 {
  68.481% {
    transform: translate(44.0214vw, 68.481vh) scale(0.8847);
  }
  to {
    transform: translate(47.1919vw, 100vh) scale(0.8847);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.9937;
  transform: translate(39.8721vw, -10px) scale(0.8826);
  animation: fall-123 20s -21s linear infinite;
}
@keyframes fall-123 {
  45.153% {
    transform: translate(43.7743vw, 45.153vh) scale(0.8826);
  }
  to {
    transform: translate(41.8232vw, 100vh) scale(0.8826);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.1702;
  transform: translate(87.5672vw, -10px) scale(0.7084);
  animation: fall-124 11s -3s linear infinite;
}
@keyframes fall-124 {
  72.608% {
    transform: translate(79.7427vw, 72.608vh) scale(0.7084);
  }
  to {
    transform: translate(83.65495vw, 100vh) scale(0.7084);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.9716;
  transform: translate(1.4017vw, -10px) scale(0.8319);
  animation: fall-125 13s -16s linear infinite;
}
@keyframes fall-125 {
  60.763% {
    transform: translate(7.7213vw, 60.763vh) scale(0.8319);
  }
  to {
    transform: translate(4.5615vw, 100vh) scale(0.8319);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.2652;
  transform: translate(11.5089vw, -10px) scale(0.0717);
  animation: fall-126 16s -17s linear infinite;
}
@keyframes fall-126 {
  70.075% {
    transform: translate(1.5411vw, 70.075vh) scale(0.0717);
  }
  to {
    transform: translate(6.525vw, 100vh) scale(0.0717);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.2224;
  transform: translate(27.5248vw, -10px) scale(0.8064);
  animation: fall-127 13s -8s linear infinite;
}
@keyframes fall-127 {
  31.365% {
    transform: translate(21.428vw, 31.365vh) scale(0.8064);
  }
  to {
    transform: translate(24.4764vw, 100vh) scale(0.8064);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.8324;
  transform: translate(92.0663vw, -10px) scale(0.4684);
  animation: fall-128 16s -10s linear infinite;
}
@keyframes fall-128 {
  31.117% {
    transform: translate(100.1672vw, 31.117vh) scale(0.4684);
  }
  to {
    transform: translate(96.11675vw, 100vh) scale(0.4684);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.2002;
  transform: translate(25.4868vw, -10px) scale(0.4681);
  animation: fall-129 21s -23s linear infinite;
}
@keyframes fall-129 {
  47.603% {
    transform: translate(32.2831vw, 47.603vh) scale(0.4681);
  }
  to {
    transform: translate(28.88495vw, 100vh) scale(0.4681);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.0564;
  transform: translate(3.0772vw, -10px) scale(0.2842);
  animation: fall-130 13s -26s linear infinite;
}
@keyframes fall-130 {
  57.833% {
    transform: translate(4.7699vw, 57.833vh) scale(0.2842);
  }
  to {
    transform: translate(3.92355vw, 100vh) scale(0.2842);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.6695;
  transform: translate(1.1414vw, -10px) scale(0.5286);
  animation: fall-131 24s -30s linear infinite;
}
@keyframes fall-131 {
  30.702% {
    transform: translate(4.1875vw, 30.702vh) scale(0.5286);
  }
  to {
    transform: translate(2.66445vw, 100vh) scale(0.5286);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.6886;
  transform: translate(41.4389vw, -10px) scale(0.2574);
  animation: fall-132 11s -16s linear infinite;
}
@keyframes fall-132 {
  76.116% {
    transform: translate(31.7846vw, 76.116vh) scale(0.2574);
  }
  to {
    transform: translate(36.61175vw, 100vh) scale(0.2574);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.5151;
  transform: translate(79.7137vw, -10px) scale(0.9357);
  animation: fall-133 22s -27s linear infinite;
}
@keyframes fall-133 {
  51.23% {
    transform: translate(83.8181vw, 51.23vh) scale(0.9357);
  }
  to {
    transform: translate(81.7659vw, 100vh) scale(0.9357);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.0559;
  transform: translate(70.8588vw, -10px) scale(0.1431);
  animation: fall-134 12s -19s linear infinite;
}
@keyframes fall-134 {
  31.594% {
    transform: translate(76.6004vw, 31.594vh) scale(0.1431);
  }
  to {
    transform: translate(73.7296vw, 100vh) scale(0.1431);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.2699;
  transform: translate(16.733vw, -10px) scale(0.4538);
  animation: fall-135 24s -21s linear infinite;
}
@keyframes fall-135 {
  76.744% {
    transform: translate(20.3187vw, 76.744vh) scale(0.4538);
  }
  to {
    transform: translate(18.52585vw, 100vh) scale(0.4538);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.9171;
  transform: translate(62.4675vw, -10px) scale(0.4665);
  animation: fall-136 18s -29s linear infinite;
}
@keyframes fall-136 {
  31.767% {
    transform: translate(58.9972vw, 31.767vh) scale(0.4665);
  }
  to {
    transform: translate(60.73235vw, 100vh) scale(0.4665);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.9524;
  transform: translate(97.1101vw, -10px) scale(0.2432);
  animation: fall-137 29s -17s linear infinite;
}
@keyframes fall-137 {
  63.857% {
    transform: translate(96.0909vw, 63.857vh) scale(0.2432);
  }
  to {
    transform: translate(96.6005vw, 100vh) scale(0.2432);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.4587;
  transform: translate(40.5004vw, -10px) scale(0.0068);
  animation: fall-138 25s -14s linear infinite;
}
@keyframes fall-138 {
  78.725% {
    transform: translate(50.3492vw, 78.725vh) scale(0.0068);
  }
  to {
    transform: translate(45.4248vw, 100vh) scale(0.0068);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.209;
  transform: translate(75.8294vw, -10px) scale(0.842);
  animation: fall-139 14s -7s linear infinite;
}
@keyframes fall-139 {
  45.622% {
    transform: translate(81.642vw, 45.622vh) scale(0.842);
  }
  to {
    transform: translate(78.7357vw, 100vh) scale(0.842);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.0086;
  transform: translate(83.8071vw, -10px) scale(0.0709);
  animation: fall-140 11s -15s linear infinite;
}
@keyframes fall-140 {
  37.033% {
    transform: translate(87.4252vw, 37.033vh) scale(0.0709);
  }
  to {
    transform: translate(85.61615vw, 100vh) scale(0.0709);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.149;
  transform: translate(31.5216vw, -10px) scale(0.5734);
  animation: fall-141 14s -15s linear infinite;
}
@keyframes fall-141 {
  34.213% {
    transform: translate(23.287vw, 34.213vh) scale(0.5734);
  }
  to {
    transform: translate(27.4043vw, 100vh) scale(0.5734);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.5454;
  transform: translate(58.553vw, -10px) scale(0.5885);
  animation: fall-142 28s -7s linear infinite;
}
@keyframes fall-142 {
  51.708% {
    transform: translate(52.0252vw, 51.708vh) scale(0.5885);
  }
  to {
    transform: translate(55.2891vw, 100vh) scale(0.5885);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.0312;
  transform: translate(2.6781vw, -10px) scale(0.3769);
  animation: fall-143 29s -4s linear infinite;
}
@keyframes fall-143 {
  55% {
    transform: translate(-2.6857vw, 55vh) scale(0.3769);
  }
  to {
    transform: translate(-0.0038vw, 100vh) scale(0.3769);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.638;
  transform: translate(24.8162vw, -10px) scale(0.4327);
  animation: fall-144 26s -10s linear infinite;
}
@keyframes fall-144 {
  62.816% {
    transform: translate(26.241vw, 62.816vh) scale(0.4327);
  }
  to {
    transform: translate(25.5286vw, 100vh) scale(0.4327);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.0987;
  transform: translate(92.8643vw, -10px) scale(0.8485);
  animation: fall-145 29s -5s linear infinite;
}
@keyframes fall-145 {
  77.549% {
    transform: translate(91.8408vw, 77.549vh) scale(0.8485);
  }
  to {
    transform: translate(92.35255vw, 100vh) scale(0.8485);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.2926;
  transform: translate(41.3826vw, -10px) scale(0.405);
  animation: fall-146 10s -9s linear infinite;
}
@keyframes fall-146 {
  48.34% {
    transform: translate(43.2651vw, 48.34vh) scale(0.405);
  }
  to {
    transform: translate(42.32385vw, 100vh) scale(0.405);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.1492;
  transform: translate(30.4142vw, -10px) scale(0.2845);
  animation: fall-147 24s -4s linear infinite;
}
@keyframes fall-147 {
  60.582% {
    transform: translate(37.1543vw, 60.582vh) scale(0.2845);
  }
  to {
    transform: translate(33.78425vw, 100vh) scale(0.2845);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.0466;
  transform: translate(94.1351vw, -10px) scale(0.7474);
  animation: fall-148 30s -3s linear infinite;
}
@keyframes fall-148 {
  72.125% {
    transform: translate(90.5224vw, 72.125vh) scale(0.7474);
  }
  to {
    transform: translate(92.32875vw, 100vh) scale(0.7474);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.7093;
  transform: translate(82.5192vw, -10px) scale(0.2452);
  animation: fall-149 19s -4s linear infinite;
}
@keyframes fall-149 {
  46.599% {
    transform: translate(90.1596vw, 46.599vh) scale(0.2452);
  }
  to {
    transform: translate(86.3394vw, 100vh) scale(0.2452);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.372;
  transform: translate(45.8964vw, -10px) scale(0.4091);
  animation: fall-150 28s -26s linear infinite;
}
@keyframes fall-150 {
  51.78% {
    transform: translate(52.318vw, 51.78vh) scale(0.4091);
  }
  to {
    transform: translate(49.1072vw, 100vh) scale(0.4091);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.4777;
  transform: translate(36.6426vw, -10px) scale(0.9982);
  animation: fall-151 27s -26s linear infinite;
}
@keyframes fall-151 {
  30.807% {
    transform: translate(44.3574vw, 30.807vh) scale(0.9982);
  }
  to {
    transform: translate(40.5vw, 100vh) scale(0.9982);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.0936;
  transform: translate(12.9015vw, -10px) scale(0.7291);
  animation: fall-152 21s -16s linear infinite;
}
@keyframes fall-152 {
  31.252% {
    transform: translate(12.1551vw, 31.252vh) scale(0.7291);
  }
  to {
    transform: translate(12.5283vw, 100vh) scale(0.7291);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.2783;
  transform: translate(84.9083vw, -10px) scale(0.9121);
  animation: fall-153 23s -18s linear infinite;
}
@keyframes fall-153 {
  72.879% {
    transform: translate(88.104vw, 72.879vh) scale(0.9121);
  }
  to {
    transform: translate(86.50615vw, 100vh) scale(0.9121);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.3652;
  transform: translate(28.2396vw, -10px) scale(0.0289);
  animation: fall-154 11s -26s linear infinite;
}
@keyframes fall-154 {
  35.457% {
    transform: translate(37.1913vw, 35.457vh) scale(0.0289);
  }
  to {
    transform: translate(32.71545vw, 100vh) scale(0.0289);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.9607;
  transform: translate(24.9559vw, -10px) scale(0.6563);
  animation: fall-155 20s -15s linear infinite;
}
@keyframes fall-155 {
  63.492% {
    transform: translate(29.2458vw, 63.492vh) scale(0.6563);
  }
  to {
    transform: translate(27.10085vw, 100vh) scale(0.6563);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.1422;
  transform: translate(34.2618vw, -10px) scale(0.8845);
  animation: fall-156 18s -26s linear infinite;
}
@keyframes fall-156 {
  79.323% {
    transform: translate(29.9652vw, 79.323vh) scale(0.8845);
  }
  to {
    transform: translate(32.1135vw, 100vh) scale(0.8845);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.855;
  transform: translate(82.5974vw, -10px) scale(0.0829);
  animation: fall-157 30s -27s linear infinite;
}
@keyframes fall-157 {
  61.912% {
    transform: translate(89.3759vw, 61.912vh) scale(0.0829);
  }
  to {
    transform: translate(85.98665vw, 100vh) scale(0.0829);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.515;
  transform: translate(92.5078vw, -10px) scale(0.2009);
  animation: fall-158 23s -19s linear infinite;
}
@keyframes fall-158 {
  75.321% {
    transform: translate(92.6878vw, 75.321vh) scale(0.2009);
  }
  to {
    transform: translate(92.5978vw, 100vh) scale(0.2009);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.956;
  transform: translate(82.0587vw, -10px) scale(0.0648);
  animation: fall-159 12s -21s linear infinite;
}
@keyframes fall-159 {
  51.849% {
    transform: translate(81.8021vw, 51.849vh) scale(0.0648);
  }
  to {
    transform: translate(81.9304vw, 100vh) scale(0.0648);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.0177;
  transform: translate(93.9034vw, -10px) scale(0.7416);
  animation: fall-160 29s -12s linear infinite;
}
@keyframes fall-160 {
  65.203% {
    transform: translate(85.0519vw, 65.203vh) scale(0.7416);
  }
  to {
    transform: translate(89.47765vw, 100vh) scale(0.7416);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.3963;
  transform: translate(1.7623vw, -10px) scale(0.0404);
  animation: fall-161 12s -17s linear infinite;
}
@keyframes fall-161 {
  44.713% {
    transform: translate(0.9531vw, 44.713vh) scale(0.0404);
  }
  to {
    transform: translate(1.3577vw, 100vh) scale(0.0404);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.527;
  transform: translate(53.1661vw, -10px) scale(0.741);
  animation: fall-162 26s -8s linear infinite;
}
@keyframes fall-162 {
  76.99% {
    transform: translate(44.8536vw, 76.99vh) scale(0.741);
  }
  to {
    transform: translate(49.00985vw, 100vh) scale(0.741);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.8288;
  transform: translate(75.2865vw, -10px) scale(0.762);
  animation: fall-163 21s -17s linear infinite;
}
@keyframes fall-163 {
  63.168% {
    transform: translate(83.5242vw, 63.168vh) scale(0.762);
  }
  to {
    transform: translate(79.40535vw, 100vh) scale(0.762);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.6888;
  transform: translate(78.8761vw, -10px) scale(0.0297);
  animation: fall-164 25s -3s linear infinite;
}
@keyframes fall-164 {
  54.585% {
    transform: translate(74.9801vw, 54.585vh) scale(0.0297);
  }
  to {
    transform: translate(76.9281vw, 100vh) scale(0.0297);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.2561;
  transform: translate(23.0582vw, -10px) scale(0.5403);
  animation: fall-165 18s -1s linear infinite;
}
@keyframes fall-165 {
  72.503% {
    transform: translate(28.3975vw, 72.503vh) scale(0.5403);
  }
  to {
    transform: translate(25.72785vw, 100vh) scale(0.5403);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.4342;
  transform: translate(29.4875vw, -10px) scale(0.7497);
  animation: fall-166 22s -6s linear infinite;
}
@keyframes fall-166 {
  49.716% {
    transform: translate(32.7998vw, 49.716vh) scale(0.7497);
  }
  to {
    transform: translate(31.14365vw, 100vh) scale(0.7497);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.2786;
  transform: translate(82.7641vw, -10px) scale(0.885);
  animation: fall-167 13s -27s linear infinite;
}
@keyframes fall-167 {
  31.574% {
    transform: translate(91.7385vw, 31.574vh) scale(0.885);
  }
  to {
    transform: translate(87.2513vw, 100vh) scale(0.885);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.0983;
  transform: translate(19.0089vw, -10px) scale(0.6646);
  animation: fall-168 29s -18s linear infinite;
}
@keyframes fall-168 {
  51.619% {
    transform: translate(22.7125vw, 51.619vh) scale(0.6646);
  }
  to {
    transform: translate(20.8607vw, 100vh) scale(0.6646);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.2704;
  transform: translate(82.3378vw, -10px) scale(0.3099);
  animation: fall-169 23s -10s linear infinite;
}
@keyframes fall-169 {
  67.798% {
    transform: translate(73.8519vw, 67.798vh) scale(0.3099);
  }
  to {
    transform: translate(78.09485vw, 100vh) scale(0.3099);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.5995;
  transform: translate(73.284vw, -10px) scale(0.1382);
  animation: fall-170 26s -8s linear infinite;
}
@keyframes fall-170 {
  60.537% {
    transform: translate(64.3932vw, 60.537vh) scale(0.1382);
  }
  to {
    transform: translate(68.8386vw, 100vh) scale(0.1382);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.1297;
  transform: translate(89.6262vw, -10px) scale(0.6314);
  animation: fall-171 14s -29s linear infinite;
}
@keyframes fall-171 {
  32.375% {
    transform: translate(94.3672vw, 32.375vh) scale(0.6314);
  }
  to {
    transform: translate(91.9967vw, 100vh) scale(0.6314);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.3803;
  transform: translate(65.7725vw, -10px) scale(0.936);
  animation: fall-172 23s -13s linear infinite;
}
@keyframes fall-172 {
  58.489% {
    transform: translate(71.765vw, 58.489vh) scale(0.936);
  }
  to {
    transform: translate(68.76875vw, 100vh) scale(0.936);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.6604;
  transform: translate(90.7533vw, -10px) scale(0.6533);
  animation: fall-173 19s -16s linear infinite;
}
@keyframes fall-173 {
  67.573% {
    transform: translate(88.4065vw, 67.573vh) scale(0.6533);
  }
  to {
    transform: translate(89.5799vw, 100vh) scale(0.6533);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.5118;
  transform: translate(69.2203vw, -10px) scale(0.3873);
  animation: fall-174 19s -12s linear infinite;
}
@keyframes fall-174 {
  38.739% {
    transform: translate(70.1155vw, 38.739vh) scale(0.3873);
  }
  to {
    transform: translate(69.6679vw, 100vh) scale(0.3873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.1764;
  transform: translate(75.6632vw, -10px) scale(0.1195);
  animation: fall-175 17s -16s linear infinite;
}
@keyframes fall-175 {
  73.632% {
    transform: translate(68.8727vw, 73.632vh) scale(0.1195);
  }
  to {
    transform: translate(72.26795vw, 100vh) scale(0.1195);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.1636;
  transform: translate(0.1208vw, -10px) scale(0.8908);
  animation: fall-176 18s -3s linear infinite;
}
@keyframes fall-176 {
  66.136% {
    transform: translate(-1.7495vw, 66.136vh) scale(0.8908);
  }
  to {
    transform: translate(-0.81435vw, 100vh) scale(0.8908);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.6783;
  transform: translate(51.0022vw, -10px) scale(0.2397);
  animation: fall-177 30s -17s linear infinite;
}
@keyframes fall-177 {
  67.284% {
    transform: translate(60.1947vw, 67.284vh) scale(0.2397);
  }
  to {
    transform: translate(55.59845vw, 100vh) scale(0.2397);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.0054;
  transform: translate(49.3759vw, -10px) scale(0.4516);
  animation: fall-178 14s -27s linear infinite;
}
@keyframes fall-178 {
  49.8% {
    transform: translate(47.801vw, 49.8vh) scale(0.4516);
  }
  to {
    transform: translate(48.58845vw, 100vh) scale(0.4516);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.2367;
  transform: translate(31.4952vw, -10px) scale(0.0793);
  animation: fall-179 22s -24s linear infinite;
}
@keyframes fall-179 {
  79.177% {
    transform: translate(38.2206vw, 79.177vh) scale(0.0793);
  }
  to {
    transform: translate(34.8579vw, 100vh) scale(0.0793);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.9721;
  transform: translate(57.3433vw, -10px) scale(0.8938);
  animation: fall-180 12s -23s linear infinite;
}
@keyframes fall-180 {
  49.945% {
    transform: translate(65.338vw, 49.945vh) scale(0.8938);
  }
  to {
    transform: translate(61.34065vw, 100vh) scale(0.8938);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.9776;
  transform: translate(18.6072vw, -10px) scale(0.8686);
  animation: fall-181 17s -11s linear infinite;
}
@keyframes fall-181 {
  69.534% {
    transform: translate(10.6199vw, 69.534vh) scale(0.8686);
  }
  to {
    transform: translate(14.61355vw, 100vh) scale(0.8686);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.6044;
  transform: translate(43.8535vw, -10px) scale(0.2622);
  animation: fall-182 15s -10s linear infinite;
}
@keyframes fall-182 {
  32.18% {
    transform: translate(50.2504vw, 32.18vh) scale(0.2622);
  }
  to {
    transform: translate(47.05195vw, 100vh) scale(0.2622);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.3001;
  transform: translate(27.085vw, -10px) scale(0.7543);
  animation: fall-183 10s -17s linear infinite;
}
@keyframes fall-183 {
  67.791% {
    transform: translate(20.8415vw, 67.791vh) scale(0.7543);
  }
  to {
    transform: translate(23.96325vw, 100vh) scale(0.7543);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.5901;
  transform: translate(51.0861vw, -10px) scale(0.3107);
  animation: fall-184 13s -14s linear infinite;
}
@keyframes fall-184 {
  70.795% {
    transform: translate(56.0883vw, 70.795vh) scale(0.3107);
  }
  to {
    transform: translate(53.5872vw, 100vh) scale(0.3107);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.7507;
  transform: translate(33.9489vw, -10px) scale(0.3823);
  animation: fall-185 26s -9s linear infinite;
}
@keyframes fall-185 {
  68.902% {
    transform: translate(30.0492vw, 68.902vh) scale(0.3823);
  }
  to {
    transform: translate(31.99905vw, 100vh) scale(0.3823);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.3726;
  transform: translate(23.9428vw, -10px) scale(0.2593);
  animation: fall-186 12s -19s linear infinite;
}
@keyframes fall-186 {
  75.022% {
    transform: translate(18.593vw, 75.022vh) scale(0.2593);
  }
  to {
    transform: translate(21.2679vw, 100vh) scale(0.2593);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.1184;
  transform: translate(97.8183vw, -10px) scale(0.6702);
  animation: fall-187 20s -7s linear infinite;
}
@keyframes fall-187 {
  74.607% {
    transform: translate(106.021vw, 74.607vh) scale(0.6702);
  }
  to {
    transform: translate(101.91965vw, 100vh) scale(0.6702);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.1256;
  transform: translate(45.3935vw, -10px) scale(0.2588);
  animation: fall-188 18s -13s linear infinite;
}
@keyframes fall-188 {
  37.011% {
    transform: translate(37.4618vw, 37.011vh) scale(0.2588);
  }
  to {
    transform: translate(41.42765vw, 100vh) scale(0.2588);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.5709;
  transform: translate(26.1853vw, -10px) scale(0.3962);
  animation: fall-189 13s -10s linear infinite;
}
@keyframes fall-189 {
  79.498% {
    transform: translate(16.9809vw, 79.498vh) scale(0.3962);
  }
  to {
    transform: translate(21.5831vw, 100vh) scale(0.3962);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.7909;
  transform: translate(18.7158vw, -10px) scale(0.9145);
  animation: fall-190 11s -21s linear infinite;
}
@keyframes fall-190 {
  76.302% {
    transform: translate(12.7758vw, 76.302vh) scale(0.9145);
  }
  to {
    transform: translate(15.7458vw, 100vh) scale(0.9145);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.1405;
  transform: translate(96.5182vw, -10px) scale(0.5144);
  animation: fall-191 20s -14s linear infinite;
}
@keyframes fall-191 {
  62.461% {
    transform: translate(104.9135vw, 62.461vh) scale(0.5144);
  }
  to {
    transform: translate(100.71585vw, 100vh) scale(0.5144);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.9372;
  transform: translate(15.4569vw, -10px) scale(0.4855);
  animation: fall-192 22s -13s linear infinite;
}
@keyframes fall-192 {
  55.628% {
    transform: translate(8.2501vw, 55.628vh) scale(0.4855);
  }
  to {
    transform: translate(11.8535vw, 100vh) scale(0.4855);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.8257;
  transform: translate(47.5525vw, -10px) scale(0.8997);
  animation: fall-193 11s -11s linear infinite;
}
@keyframes fall-193 {
  74.903% {
    transform: translate(45.5773vw, 74.903vh) scale(0.8997);
  }
  to {
    transform: translate(46.5649vw, 100vh) scale(0.8997);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.3081;
  transform: translate(76.451vw, -10px) scale(0.4678);
  animation: fall-194 15s -14s linear infinite;
}
@keyframes fall-194 {
  35.838% {
    transform: translate(82.0203vw, 35.838vh) scale(0.4678);
  }
  to {
    transform: translate(79.23565vw, 100vh) scale(0.4678);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.3281;
  transform: translate(82.1735vw, -10px) scale(0.4808);
  animation: fall-195 10s -18s linear infinite;
}
@keyframes fall-195 {
  46.953% {
    transform: translate(82.7735vw, 46.953vh) scale(0.4808);
  }
  to {
    transform: translate(82.4735vw, 100vh) scale(0.4808);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.8757;
  transform: translate(50.1767vw, -10px) scale(0.2704);
  animation: fall-196 28s -10s linear infinite;
}
@keyframes fall-196 {
  52.255% {
    transform: translate(59.3953vw, 52.255vh) scale(0.2704);
  }
  to {
    transform: translate(54.786vw, 100vh) scale(0.2704);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.1544;
  transform: translate(48.9015vw, -10px) scale(0.4255);
  animation: fall-197 10s -7s linear infinite;
}
@keyframes fall-197 {
  35.375% {
    transform: translate(50.3649vw, 35.375vh) scale(0.4255);
  }
  to {
    transform: translate(49.6332vw, 100vh) scale(0.4255);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.7414;
  transform: translate(74.2734vw, -10px) scale(0.1792);
  animation: fall-198 11s -13s linear infinite;
}
@keyframes fall-198 {
  49.336% {
    transform: translate(65.9281vw, 49.336vh) scale(0.1792);
  }
  to {
    transform: translate(70.10075vw, 100vh) scale(0.1792);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.6895;
  transform: translate(58.6008vw, -10px) scale(0.8909);
  animation: fall-199 15s -22s linear infinite;
}
@keyframes fall-199 {
  30.313% {
    transform: translate(52.6291vw, 30.313vh) scale(0.8909);
  }
  to {
    transform: translate(55.61495vw, 100vh) scale(0.8909);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.265;
  transform: translate(30.5515vw, -10px) scale(0.1454);
  animation: fall-200 18s -15s linear infinite;
}
@keyframes fall-200 {
  75.668% {
    transform: translate(27.548vw, 75.668vh) scale(0.1454);
  }
  to {
    transform: translate(29.04975vw, 100vh) scale(0.1454);
  }
}

.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-bg-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgb(0, 0, 0) 98%);
}
.first-screen__background .slider {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  filter: brightness(0.4);
}
.first-screen__background .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: slider 21s infinite;
}
.first-screen__background .slider .slide:nth-child(1) {
  background-image: url("../image/main_1_1.webp");
  animation-delay: 0s;
}
.first-screen__background .slider .slide:nth-child(2) {
  background-image: url("../image/main_1_2.webp");
  animation-delay: -7s;
}
.first-screen__background .slider .slide:nth-child(3) {
  background-image: url("../image/main_1_3.webp");
  animation-delay: -14s;
}
@keyframes slider {
  0%, 28%, 100% {
    opacity: 1;
    animation-timing-function: ease;
    z-index: 0;
  }
  33% {
    opacity: 0;
    animation-timing-function: step-end;
    z-index: 0;
  }
  95% {
    opacity: 1;
    animation-timing-function: step-end;
    z-index: -1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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