@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.2216;
  transform: translate(5.9987vw, -10px) scale(0.4463);
  animation: fall-1 23s -1s linear infinite;
}
@keyframes fall-1 {
  64.012% {
    transform: translate(-3.4694vw, 64.012vh) scale(0.4463);
  }
  to {
    transform: translate(1.26465vw, 100vh) scale(0.4463);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.8466;
  transform: translate(51.4953vw, -10px) scale(0.4948);
  animation: fall-2 21s -25s linear infinite;
}
@keyframes fall-2 {
  34.885% {
    transform: translate(43.1616vw, 34.885vh) scale(0.4948);
  }
  to {
    transform: translate(47.32845vw, 100vh) scale(0.4948);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.567;
  transform: translate(85.6049vw, -10px) scale(0.6648);
  animation: fall-3 13s -5s linear infinite;
}
@keyframes fall-3 {
  42.024% {
    transform: translate(75.6265vw, 42.024vh) scale(0.6648);
  }
  to {
    transform: translate(80.6157vw, 100vh) scale(0.6648);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.8937;
  transform: translate(13.3314vw, -10px) scale(0.3117);
  animation: fall-4 24s -4s linear infinite;
}
@keyframes fall-4 {
  50.838% {
    transform: translate(22.2529vw, 50.838vh) scale(0.3117);
  }
  to {
    transform: translate(17.79215vw, 100vh) scale(0.3117);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.5819;
  transform: translate(65.284vw, -10px) scale(0.0951);
  animation: fall-5 15s -8s linear infinite;
}
@keyframes fall-5 {
  56.299% {
    transform: translate(64.3867vw, 56.299vh) scale(0.0951);
  }
  to {
    transform: translate(64.83535vw, 100vh) scale(0.0951);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.1439;
  transform: translate(59.7806vw, -10px) scale(0.2832);
  animation: fall-6 12s -22s linear infinite;
}
@keyframes fall-6 {
  61.071% {
    transform: translate(56.5214vw, 61.071vh) scale(0.2832);
  }
  to {
    transform: translate(58.151vw, 100vh) scale(0.2832);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.3245;
  transform: translate(72.9281vw, -10px) scale(0.061);
  animation: fall-7 23s -13s linear infinite;
}
@keyframes fall-7 {
  79.141% {
    transform: translate(71.1999vw, 79.141vh) scale(0.061);
  }
  to {
    transform: translate(72.064vw, 100vh) scale(0.061);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.7983;
  transform: translate(50.6734vw, -10px) scale(0.3042);
  animation: fall-8 13s -26s linear infinite;
}
@keyframes fall-8 {
  78.794% {
    transform: translate(55.8151vw, 78.794vh) scale(0.3042);
  }
  to {
    transform: translate(53.24425vw, 100vh) scale(0.3042);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.7911;
  transform: translate(2.9303vw, -10px) scale(0.3178);
  animation: fall-9 27s -13s linear infinite;
}
@keyframes fall-9 {
  51.701% {
    transform: translate(-5.1158vw, 51.701vh) scale(0.3178);
  }
  to {
    transform: translate(-1.09275vw, 100vh) scale(0.3178);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.8658;
  transform: translate(19.7133vw, -10px) scale(0.9078);
  animation: fall-10 19s -11s linear infinite;
}
@keyframes fall-10 {
  55.934% {
    transform: translate(28.5456vw, 55.934vh) scale(0.9078);
  }
  to {
    transform: translate(24.12945vw, 100vh) scale(0.9078);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.3821;
  transform: translate(70.3964vw, -10px) scale(0.2116);
  animation: fall-11 17s -23s linear infinite;
}
@keyframes fall-11 {
  79.541% {
    transform: translate(67.0948vw, 79.541vh) scale(0.2116);
  }
  to {
    transform: translate(68.7456vw, 100vh) scale(0.2116);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.7144;
  transform: translate(67.4036vw, -10px) scale(0.057);
  animation: fall-12 21s -6s linear infinite;
}
@keyframes fall-12 {
  32.759% {
    transform: translate(59.649vw, 32.759vh) scale(0.057);
  }
  to {
    transform: translate(63.5263vw, 100vh) scale(0.057);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.0012;
  transform: translate(32.7844vw, -10px) scale(0.8011);
  animation: fall-13 30s -24s linear infinite;
}
@keyframes fall-13 {
  70.643% {
    transform: translate(36.3484vw, 70.643vh) scale(0.8011);
  }
  to {
    transform: translate(34.5664vw, 100vh) scale(0.8011);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.9908;
  transform: translate(77.0615vw, -10px) scale(0.5689);
  animation: fall-14 18s -25s linear infinite;
}
@keyframes fall-14 {
  41.863% {
    transform: translate(75.6289vw, 41.863vh) scale(0.5689);
  }
  to {
    transform: translate(76.3452vw, 100vh) scale(0.5689);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.4744;
  transform: translate(16.3228vw, -10px) scale(0.0814);
  animation: fall-15 25s -24s linear infinite;
}
@keyframes fall-15 {
  63.263% {
    transform: translate(22.5585vw, 63.263vh) scale(0.0814);
  }
  to {
    transform: translate(19.44065vw, 100vh) scale(0.0814);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.4036;
  transform: translate(85.7184vw, -10px) scale(0.1109);
  animation: fall-16 29s -11s linear infinite;
}
@keyframes fall-16 {
  68.056% {
    transform: translate(89.5808vw, 68.056vh) scale(0.1109);
  }
  to {
    transform: translate(87.6496vw, 100vh) scale(0.1109);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.9632;
  transform: translate(63.6137vw, -10px) scale(0.7153);
  animation: fall-17 19s -4s linear infinite;
}
@keyframes fall-17 {
  57.378% {
    transform: translate(67.8242vw, 57.378vh) scale(0.7153);
  }
  to {
    transform: translate(65.71895vw, 100vh) scale(0.7153);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.5443;
  transform: translate(20.4846vw, -10px) scale(0.2943);
  animation: fall-18 19s -20s linear infinite;
}
@keyframes fall-18 {
  36.991% {
    transform: translate(23.8754vw, 36.991vh) scale(0.2943);
  }
  to {
    transform: translate(22.18vw, 100vh) scale(0.2943);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.0928;
  transform: translate(58.2956vw, -10px) scale(0.8579);
  animation: fall-19 24s -29s linear infinite;
}
@keyframes fall-19 {
  76.952% {
    transform: translate(53.6717vw, 76.952vh) scale(0.8579);
  }
  to {
    transform: translate(55.98365vw, 100vh) scale(0.8579);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.2423;
  transform: translate(48.7686vw, -10px) scale(0.1173);
  animation: fall-20 21s -7s linear infinite;
}
@keyframes fall-20 {
  32.727% {
    transform: translate(47.0234vw, 32.727vh) scale(0.1173);
  }
  to {
    transform: translate(47.896vw, 100vh) scale(0.1173);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.302;
  transform: translate(89.8943vw, -10px) scale(0.2039);
  animation: fall-21 27s -14s linear infinite;
}
@keyframes fall-21 {
  63.333% {
    transform: translate(96.4413vw, 63.333vh) scale(0.2039);
  }
  to {
    transform: translate(93.1678vw, 100vh) scale(0.2039);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.0725;
  transform: translate(30.9613vw, -10px) scale(0.2355);
  animation: fall-22 11s -16s linear infinite;
}
@keyframes fall-22 {
  73.449% {
    transform: translate(38.7734vw, 73.449vh) scale(0.2355);
  }
  to {
    transform: translate(34.86735vw, 100vh) scale(0.2355);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.7299;
  transform: translate(77.6542vw, -10px) scale(0.6097);
  animation: fall-23 22s -5s linear infinite;
}
@keyframes fall-23 {
  41.762% {
    transform: translate(71.9829vw, 41.762vh) scale(0.6097);
  }
  to {
    transform: translate(74.81855vw, 100vh) scale(0.6097);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.526;
  transform: translate(54.9242vw, -10px) scale(0.3141);
  animation: fall-24 18s -26s linear infinite;
}
@keyframes fall-24 {
  73.567% {
    transform: translate(46.1319vw, 73.567vh) scale(0.3141);
  }
  to {
    transform: translate(50.52805vw, 100vh) scale(0.3141);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.9846;
  transform: translate(99.3277vw, -10px) scale(0.9943);
  animation: fall-25 29s -25s linear infinite;
}
@keyframes fall-25 {
  45.742% {
    transform: translate(93.6157vw, 45.742vh) scale(0.9943);
  }
  to {
    transform: translate(96.4717vw, 100vh) scale(0.9943);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.0862;
  transform: translate(32.0076vw, -10px) scale(0.9195);
  animation: fall-26 14s -20s linear infinite;
}
@keyframes fall-26 {
  54.083% {
    transform: translate(22.1166vw, 54.083vh) scale(0.9195);
  }
  to {
    transform: translate(27.0621vw, 100vh) scale(0.9195);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.4942;
  transform: translate(51.2366vw, -10px) scale(0.0394);
  animation: fall-27 23s -19s linear infinite;
}
@keyframes fall-27 {
  42.717% {
    transform: translate(58.9755vw, 42.717vh) scale(0.0394);
  }
  to {
    transform: translate(55.10605vw, 100vh) scale(0.0394);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.8729;
  transform: translate(86.0988vw, -10px) scale(0.5557);
  animation: fall-28 29s -25s linear infinite;
}
@keyframes fall-28 {
  36.706% {
    transform: translate(83.3775vw, 36.706vh) scale(0.5557);
  }
  to {
    transform: translate(84.73815vw, 100vh) scale(0.5557);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.953;
  transform: translate(97.4231vw, -10px) scale(0.0712);
  animation: fall-29 25s -23s linear infinite;
}
@keyframes fall-29 {
  61.615% {
    transform: translate(97.3282vw, 61.615vh) scale(0.0712);
  }
  to {
    transform: translate(97.37565vw, 100vh) scale(0.0712);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.3233;
  transform: translate(42.3496vw, -10px) scale(0.0644);
  animation: fall-30 26s -4s linear infinite;
}
@keyframes fall-30 {
  44.309% {
    transform: translate(41.8363vw, 44.309vh) scale(0.0644);
  }
  to {
    transform: translate(42.09295vw, 100vh) scale(0.0644);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.2065;
  transform: translate(87.221vw, -10px) scale(0.1901);
  animation: fall-31 28s -15s linear infinite;
}
@keyframes fall-31 {
  73.254% {
    transform: translate(83.8902vw, 73.254vh) scale(0.1901);
  }
  to {
    transform: translate(85.5556vw, 100vh) scale(0.1901);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.7472;
  transform: translate(59.4026vw, -10px) scale(0.8807);
  animation: fall-32 19s -3s linear infinite;
}
@keyframes fall-32 {
  67.302% {
    transform: translate(52.3139vw, 67.302vh) scale(0.8807);
  }
  to {
    transform: translate(55.85825vw, 100vh) scale(0.8807);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.1396;
  transform: translate(81.9315vw, -10px) scale(0.8557);
  animation: fall-33 25s -5s linear infinite;
}
@keyframes fall-33 {
  41.635% {
    transform: translate(83.7889vw, 41.635vh) scale(0.8557);
  }
  to {
    transform: translate(82.8602vw, 100vh) scale(0.8557);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.0355;
  transform: translate(59.7994vw, -10px) scale(0.5212);
  animation: fall-34 14s -24s linear infinite;
}
@keyframes fall-34 {
  33.427% {
    transform: translate(64.304vw, 33.427vh) scale(0.5212);
  }
  to {
    transform: translate(62.0517vw, 100vh) scale(0.5212);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.9309;
  transform: translate(78.0262vw, -10px) scale(0.4497);
  animation: fall-35 27s -6s linear infinite;
}
@keyframes fall-35 {
  68.009% {
    transform: translate(74.0284vw, 68.009vh) scale(0.4497);
  }
  to {
    transform: translate(76.0273vw, 100vh) scale(0.4497);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.5178;
  transform: translate(32.2548vw, -10px) scale(0.8204);
  animation: fall-36 14s -16s linear infinite;
}
@keyframes fall-36 {
  71.561% {
    transform: translate(30.7784vw, 71.561vh) scale(0.8204);
  }
  to {
    transform: translate(31.5166vw, 100vh) scale(0.8204);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.2367;
  transform: translate(62.9882vw, -10px) scale(0.1973);
  animation: fall-37 16s -29s linear infinite;
}
@keyframes fall-37 {
  62.577% {
    transform: translate(59.6148vw, 62.577vh) scale(0.1973);
  }
  to {
    transform: translate(61.3015vw, 100vh) scale(0.1973);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.3247;
  transform: translate(94.0568vw, -10px) scale(0.7481);
  animation: fall-38 10s -23s linear infinite;
}
@keyframes fall-38 {
  54.004% {
    transform: translate(100.6011vw, 54.004vh) scale(0.7481);
  }
  to {
    transform: translate(97.32895vw, 100vh) scale(0.7481);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.4721;
  transform: translate(81.5852vw, -10px) scale(0.3359);
  animation: fall-39 12s -25s linear infinite;
}
@keyframes fall-39 {
  40.937% {
    transform: translate(87.1605vw, 40.937vh) scale(0.3359);
  }
  to {
    transform: translate(84.37285vw, 100vh) scale(0.3359);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.4582;
  transform: translate(83.6663vw, -10px) scale(0.8521);
  animation: fall-40 27s -15s linear infinite;
}
@keyframes fall-40 {
  55.771% {
    transform: translate(91.927vw, 55.771vh) scale(0.8521);
  }
  to {
    transform: translate(87.79665vw, 100vh) scale(0.8521);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.745;
  transform: translate(93.0711vw, -10px) scale(0.8421);
  animation: fall-41 11s -29s linear infinite;
}
@keyframes fall-41 {
  59.19% {
    transform: translate(90.4014vw, 59.19vh) scale(0.8421);
  }
  to {
    transform: translate(91.73625vw, 100vh) scale(0.8421);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.0612;
  transform: translate(68.7683vw, -10px) scale(0.8596);
  animation: fall-42 23s -3s linear infinite;
}
@keyframes fall-42 {
  79.315% {
    transform: translate(64.8099vw, 79.315vh) scale(0.8596);
  }
  to {
    transform: translate(66.7891vw, 100vh) scale(0.8596);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.5495;
  transform: translate(42.0422vw, -10px) scale(0.1951);
  animation: fall-43 28s -6s linear infinite;
}
@keyframes fall-43 {
  70.114% {
    transform: translate(36.8098vw, 70.114vh) scale(0.1951);
  }
  to {
    transform: translate(39.426vw, 100vh) scale(0.1951);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.9428;
  transform: translate(85.0624vw, -10px) scale(0.763);
  animation: fall-44 18s -16s linear infinite;
}
@keyframes fall-44 {
  48.694% {
    transform: translate(89.3848vw, 48.694vh) scale(0.763);
  }
  to {
    transform: translate(87.2236vw, 100vh) scale(0.763);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.8566;
  transform: translate(1.261vw, -10px) scale(0.8058);
  animation: fall-45 18s -22s linear infinite;
}
@keyframes fall-45 {
  46.747% {
    transform: translate(9.0759vw, 46.747vh) scale(0.8058);
  }
  to {
    transform: translate(5.16845vw, 100vh) scale(0.8058);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.2543;
  transform: translate(22.3678vw, -10px) scale(0.0935);
  animation: fall-46 25s -16s linear infinite;
}
@keyframes fall-46 {
  57.306% {
    transform: translate(27.1846vw, 57.306vh) scale(0.0935);
  }
  to {
    transform: translate(24.7762vw, 100vh) scale(0.0935);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.3834;
  transform: translate(47.3308vw, -10px) scale(0.4054);
  animation: fall-47 26s -4s linear infinite;
}
@keyframes fall-47 {
  78.015% {
    transform: translate(42.1022vw, 78.015vh) scale(0.4054);
  }
  to {
    transform: translate(44.7165vw, 100vh) scale(0.4054);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.7635;
  transform: translate(14.762vw, -10px) scale(0.8374);
  animation: fall-48 15s -16s linear infinite;
}
@keyframes fall-48 {
  36.506% {
    transform: translate(13.228vw, 36.506vh) scale(0.8374);
  }
  to {
    transform: translate(13.995vw, 100vh) scale(0.8374);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.0962;
  transform: translate(85.0443vw, -10px) scale(0.092);
  animation: fall-49 27s -23s linear infinite;
}
@keyframes fall-49 {
  55.306% {
    transform: translate(88.0394vw, 55.306vh) scale(0.092);
  }
  to {
    transform: translate(86.54185vw, 100vh) scale(0.092);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.8787;
  transform: translate(35.0675vw, -10px) scale(0.4845);
  animation: fall-50 26s -21s linear infinite;
}
@keyframes fall-50 {
  63.042% {
    transform: translate(26.6936vw, 63.042vh) scale(0.4845);
  }
  to {
    transform: translate(30.88055vw, 100vh) scale(0.4845);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.4205;
  transform: translate(95.1413vw, -10px) scale(0.3443);
  animation: fall-51 29s -15s linear infinite;
}
@keyframes fall-51 {
  66.362% {
    transform: translate(90.8927vw, 66.362vh) scale(0.3443);
  }
  to {
    transform: translate(93.017vw, 100vh) scale(0.3443);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.3867;
  transform: translate(63.8031vw, -10px) scale(0.3838);
  animation: fall-52 10s -19s linear infinite;
}
@keyframes fall-52 {
  67.898% {
    transform: translate(53.9023vw, 67.898vh) scale(0.3838);
  }
  to {
    transform: translate(58.8527vw, 100vh) scale(0.3838);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.6987;
  transform: translate(71.7378vw, -10px) scale(0.3136);
  animation: fall-53 22s -5s linear infinite;
}
@keyframes fall-53 {
  58.849% {
    transform: translate(62.2889vw, 58.849vh) scale(0.3136);
  }
  to {
    transform: translate(67.01335vw, 100vh) scale(0.3136);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.5453;
  transform: translate(2.9716vw, -10px) scale(0.6426);
  animation: fall-54 11s -10s linear infinite;
}
@keyframes fall-54 {
  34.513% {
    transform: translate(10.5065vw, 34.513vh) scale(0.6426);
  }
  to {
    transform: translate(6.73905vw, 100vh) scale(0.6426);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.353;
  transform: translate(74.6922vw, -10px) scale(0.3214);
  animation: fall-55 26s -6s linear infinite;
}
@keyframes fall-55 {
  43.717% {
    transform: translate(66.3588vw, 43.717vh) scale(0.3214);
  }
  to {
    transform: translate(70.5255vw, 100vh) scale(0.3214);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.8064;
  transform: translate(89.9307vw, -10px) scale(0.1187);
  animation: fall-56 10s -24s linear infinite;
}
@keyframes fall-56 {
  55.283% {
    transform: translate(81.4113vw, 55.283vh) scale(0.1187);
  }
  to {
    transform: translate(85.671vw, 100vh) scale(0.1187);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.7515;
  transform: translate(24.7823vw, -10px) scale(0.2968);
  animation: fall-57 14s -12s linear infinite;
}
@keyframes fall-57 {
  74.821% {
    transform: translate(32.7155vw, 74.821vh) scale(0.2968);
  }
  to {
    transform: translate(28.7489vw, 100vh) scale(0.2968);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.4847;
  transform: translate(7.8102vw, -10px) scale(0.8001);
  animation: fall-58 21s -30s linear infinite;
}
@keyframes fall-58 {
  64.789% {
    transform: translate(-1.6055vw, 64.789vh) scale(0.8001);
  }
  to {
    transform: translate(3.10235vw, 100vh) scale(0.8001);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.8552;
  transform: translate(65.622vw, -10px) scale(0.0712);
  animation: fall-59 26s -23s linear infinite;
}
@keyframes fall-59 {
  65.67% {
    transform: translate(70.6807vw, 65.67vh) scale(0.0712);
  }
  to {
    transform: translate(68.15135vw, 100vh) scale(0.0712);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.4612;
  transform: translate(28.0409vw, -10px) scale(0.2615);
  animation: fall-60 14s -2s linear infinite;
}
@keyframes fall-60 {
  75.061% {
    transform: translate(19.0232vw, 75.061vh) scale(0.2615);
  }
  to {
    transform: translate(23.53205vw, 100vh) scale(0.2615);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.3957;
  transform: translate(60.9961vw, -10px) scale(0.8387);
  animation: fall-61 24s -18s linear infinite;
}
@keyframes fall-61 {
  68.081% {
    transform: translate(63.7124vw, 68.081vh) scale(0.8387);
  }
  to {
    transform: translate(62.35425vw, 100vh) scale(0.8387);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.9648;
  transform: translate(76.9991vw, -10px) scale(0.0622);
  animation: fall-62 10s -17s linear infinite;
}
@keyframes fall-62 {
  74.773% {
    transform: translate(81.4121vw, 74.773vh) scale(0.0622);
  }
  to {
    transform: translate(79.2056vw, 100vh) scale(0.0622);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.5289;
  transform: translate(29.6814vw, -10px) scale(0.5028);
  animation: fall-63 28s -19s linear infinite;
}
@keyframes fall-63 {
  35.713% {
    transform: translate(34.5526vw, 35.713vh) scale(0.5028);
  }
  to {
    transform: translate(32.117vw, 100vh) scale(0.5028);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.8513;
  transform: translate(65.2897vw, -10px) scale(0.4901);
  animation: fall-64 17s -24s linear infinite;
}
@keyframes fall-64 {
  49.865% {
    transform: translate(72.1953vw, 49.865vh) scale(0.4901);
  }
  to {
    transform: translate(68.7425vw, 100vh) scale(0.4901);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.326;
  transform: translate(86.9882vw, -10px) scale(0.7365);
  animation: fall-65 16s -15s linear infinite;
}
@keyframes fall-65 {
  60.788% {
    transform: translate(96.4478vw, 60.788vh) scale(0.7365);
  }
  to {
    transform: translate(91.718vw, 100vh) scale(0.7365);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.3062;
  transform: translate(58.4673vw, -10px) scale(0.4631);
  animation: fall-66 29s -1s linear infinite;
}
@keyframes fall-66 {
  77.131% {
    transform: translate(59.3178vw, 77.131vh) scale(0.4631);
  }
  to {
    transform: translate(58.89255vw, 100vh) scale(0.4631);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.4289;
  transform: translate(7.6988vw, -10px) scale(0.653);
  animation: fall-67 12s -21s linear infinite;
}
@keyframes fall-67 {
  39.341% {
    transform: translate(16.472vw, 39.341vh) scale(0.653);
  }
  to {
    transform: translate(12.0854vw, 100vh) scale(0.653);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.722;
  transform: translate(29.4314vw, -10px) scale(0.347);
  animation: fall-68 21s -30s linear infinite;
}
@keyframes fall-68 {
  54.771% {
    transform: translate(36.8369vw, 54.771vh) scale(0.347);
  }
  to {
    transform: translate(33.13415vw, 100vh) scale(0.347);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.9808;
  transform: translate(93.3813vw, -10px) scale(0.115);
  animation: fall-69 25s -12s linear infinite;
}
@keyframes fall-69 {
  46.577% {
    transform: translate(97.8313vw, 46.577vh) scale(0.115);
  }
  to {
    transform: translate(95.6063vw, 100vh) scale(0.115);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.5015;
  transform: translate(8.2837vw, -10px) scale(0.2873);
  animation: fall-70 27s -6s linear infinite;
}
@keyframes fall-70 {
  52.909% {
    transform: translate(1.7329vw, 52.909vh) scale(0.2873);
  }
  to {
    transform: translate(5.0083vw, 100vh) scale(0.2873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.4461;
  transform: translate(62.1324vw, -10px) scale(0.4557);
  animation: fall-71 10s -15s linear infinite;
}
@keyframes fall-71 {
  59.85% {
    transform: translate(59.8438vw, 59.85vh) scale(0.4557);
  }
  to {
    transform: translate(60.9881vw, 100vh) scale(0.4557);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.7459;
  transform: translate(58.6353vw, -10px) scale(0.8388);
  animation: fall-72 23s -29s linear infinite;
}
@keyframes fall-72 {
  56.239% {
    transform: translate(52.4622vw, 56.239vh) scale(0.8388);
  }
  to {
    transform: translate(55.54875vw, 100vh) scale(0.8388);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.511;
  transform: translate(16.9489vw, -10px) scale(0.9986);
  animation: fall-73 13s -17s linear infinite;
}
@keyframes fall-73 {
  36.921% {
    transform: translate(20.4782vw, 36.921vh) scale(0.9986);
  }
  to {
    transform: translate(18.71355vw, 100vh) scale(0.9986);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.6861;
  transform: translate(35.2531vw, -10px) scale(0.0813);
  animation: fall-74 20s -9s linear infinite;
}
@keyframes fall-74 {
  35.496% {
    transform: translate(25.7235vw, 35.496vh) scale(0.0813);
  }
  to {
    transform: translate(30.4883vw, 100vh) scale(0.0813);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.6051;
  transform: translate(58.5031vw, -10px) scale(0.9004);
  animation: fall-75 22s -16s linear infinite;
}
@keyframes fall-75 {
  54.823% {
    transform: translate(59.1908vw, 54.823vh) scale(0.9004);
  }
  to {
    transform: translate(58.84695vw, 100vh) scale(0.9004);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.2748;
  transform: translate(15.5294vw, -10px) scale(0.0286);
  animation: fall-76 10s -19s linear infinite;
}
@keyframes fall-76 {
  32.447% {
    transform: translate(18.1092vw, 32.447vh) scale(0.0286);
  }
  to {
    transform: translate(16.8193vw, 100vh) scale(0.0286);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.3353;
  transform: translate(0.4842vw, -10px) scale(0.7386);
  animation: fall-77 23s -3s linear infinite;
}
@keyframes fall-77 {
  64.75% {
    transform: translate(-2.6526vw, 64.75vh) scale(0.7386);
  }
  to {
    transform: translate(-1.0842vw, 100vh) scale(0.7386);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.5189;
  transform: translate(79.63vw, -10px) scale(0.6594);
  animation: fall-78 13s -25s linear infinite;
}
@keyframes fall-78 {
  50.289% {
    transform: translate(86.5925vw, 50.289vh) scale(0.6594);
  }
  to {
    transform: translate(83.11125vw, 100vh) scale(0.6594);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.0632;
  transform: translate(6.5185vw, -10px) scale(0.138);
  animation: fall-79 25s -1s linear infinite;
}
@keyframes fall-79 {
  65.676% {
    transform: translate(3.1041vw, 65.676vh) scale(0.138);
  }
  to {
    transform: translate(4.8113vw, 100vh) scale(0.138);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.5805;
  transform: translate(57.5929vw, -10px) scale(0.7924);
  animation: fall-80 28s -21s linear infinite;
}
@keyframes fall-80 {
  79.73% {
    transform: translate(66.9557vw, 79.73vh) scale(0.7924);
  }
  to {
    transform: translate(62.2743vw, 100vh) scale(0.7924);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.689;
  transform: translate(85.0921vw, -10px) scale(0.6527);
  animation: fall-81 15s -13s linear infinite;
}
@keyframes fall-81 {
  60.32% {
    transform: translate(88.0513vw, 60.32vh) scale(0.6527);
  }
  to {
    transform: translate(86.5717vw, 100vh) scale(0.6527);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.5549;
  transform: translate(51.3882vw, -10px) scale(0.9451);
  animation: fall-82 16s -30s linear infinite;
}
@keyframes fall-82 {
  65.321% {
    transform: translate(44.3988vw, 65.321vh) scale(0.9451);
  }
  to {
    transform: translate(47.8935vw, 100vh) scale(0.9451);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.5059;
  transform: translate(25.7135vw, -10px) scale(0.8239);
  animation: fall-83 25s -27s linear infinite;
}
@keyframes fall-83 {
  36.333% {
    transform: translate(35.1375vw, 36.333vh) scale(0.8239);
  }
  to {
    transform: translate(30.4255vw, 100vh) scale(0.8239);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.6328;
  transform: translate(87.1651vw, -10px) scale(0.8953);
  animation: fall-84 29s -7s linear infinite;
}
@keyframes fall-84 {
  62.794% {
    transform: translate(94.7724vw, 62.794vh) scale(0.8953);
  }
  to {
    transform: translate(90.96875vw, 100vh) scale(0.8953);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.2364;
  transform: translate(11.5304vw, -10px) scale(0.7043);
  animation: fall-85 16s -24s linear infinite;
}
@keyframes fall-85 {
  31.687% {
    transform: translate(6.2296vw, 31.687vh) scale(0.7043);
  }
  to {
    transform: translate(8.88vw, 100vh) scale(0.7043);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.3765;
  transform: translate(1.5771vw, -10px) scale(0.571);
  animation: fall-86 22s -23s linear infinite;
}
@keyframes fall-86 {
  52.711% {
    transform: translate(-3.6483vw, 52.711vh) scale(0.571);
  }
  to {
    transform: translate(-1.0356vw, 100vh) scale(0.571);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.5123;
  transform: translate(14.1161vw, -10px) scale(0.1159);
  animation: fall-87 16s -4s linear infinite;
}
@keyframes fall-87 {
  44.656% {
    transform: translate(5.7975vw, 44.656vh) scale(0.1159);
  }
  to {
    transform: translate(9.9568vw, 100vh) scale(0.1159);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.0004;
  transform: translate(26.3521vw, -10px) scale(0.4586);
  animation: fall-88 17s -24s linear infinite;
}
@keyframes fall-88 {
  73.569% {
    transform: translate(19.4167vw, 73.569vh) scale(0.4586);
  }
  to {
    transform: translate(22.8844vw, 100vh) scale(0.4586);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.8996;
  transform: translate(90.3414vw, -10px) scale(0.8179);
  animation: fall-89 10s -7s linear infinite;
}
@keyframes fall-89 {
  38.689% {
    transform: translate(99.0068vw, 38.689vh) scale(0.8179);
  }
  to {
    transform: translate(94.6741vw, 100vh) scale(0.8179);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.2812;
  transform: translate(14.7218vw, -10px) scale(0.6426);
  animation: fall-90 19s -11s linear infinite;
}
@keyframes fall-90 {
  77.801% {
    transform: translate(16.9265vw, 77.801vh) scale(0.6426);
  }
  to {
    transform: translate(15.82415vw, 100vh) scale(0.6426);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.8859;
  transform: translate(65.3323vw, -10px) scale(0.2276);
  animation: fall-91 25s -26s linear infinite;
}
@keyframes fall-91 {
  41.341% {
    transform: translate(69.0004vw, 41.341vh) scale(0.2276);
  }
  to {
    transform: translate(67.16635vw, 100vh) scale(0.2276);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.0583;
  transform: translate(52.3567vw, -10px) scale(0.6697);
  animation: fall-92 17s -1s linear infinite;
}
@keyframes fall-92 {
  70.491% {
    transform: translate(44.5903vw, 70.491vh) scale(0.6697);
  }
  to {
    transform: translate(48.4735vw, 100vh) scale(0.6697);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.7376;
  transform: translate(74.7933vw, -10px) scale(0.6968);
  animation: fall-93 21s -17s linear infinite;
}
@keyframes fall-93 {
  43.172% {
    transform: translate(67.0833vw, 43.172vh) scale(0.6968);
  }
  to {
    transform: translate(70.9383vw, 100vh) scale(0.6968);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.5587;
  transform: translate(41.2044vw, -10px) scale(0.2892);
  animation: fall-94 21s -29s linear infinite;
}
@keyframes fall-94 {
  72.565% {
    transform: translate(36.7483vw, 72.565vh) scale(0.2892);
  }
  to {
    transform: translate(38.97635vw, 100vh) scale(0.2892);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.0417;
  transform: translate(85.0766vw, -10px) scale(0.1237);
  animation: fall-95 28s -4s linear infinite;
}
@keyframes fall-95 {
  32.106% {
    transform: translate(82.3071vw, 32.106vh) scale(0.1237);
  }
  to {
    transform: translate(83.69185vw, 100vh) scale(0.1237);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.6874;
  transform: translate(96.1519vw, -10px) scale(0.7473);
  animation: fall-96 28s -19s linear infinite;
}
@keyframes fall-96 {
  31.268% {
    transform: translate(101.0108vw, 31.268vh) scale(0.7473);
  }
  to {
    transform: translate(98.58135vw, 100vh) scale(0.7473);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.2318;
  transform: translate(8.383vw, -10px) scale(0.8624);
  animation: fall-97 10s -12s linear infinite;
}
@keyframes fall-97 {
  66.248% {
    transform: translate(4.9355vw, 66.248vh) scale(0.8624);
  }
  to {
    transform: translate(6.65925vw, 100vh) scale(0.8624);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.84;
  transform: translate(14.929vw, -10px) scale(0.0299);
  animation: fall-98 23s -10s linear infinite;
}
@keyframes fall-98 {
  75.224% {
    transform: translate(22.999vw, 75.224vh) scale(0.0299);
  }
  to {
    transform: translate(18.964vw, 100vh) scale(0.0299);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.4531;
  transform: translate(42.8998vw, -10px) scale(0.3769);
  animation: fall-99 10s -24s linear infinite;
}
@keyframes fall-99 {
  43.737% {
    transform: translate(37.265vw, 43.737vh) scale(0.3769);
  }
  to {
    transform: translate(40.0824vw, 100vh) scale(0.3769);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.9601;
  transform: translate(20.9752vw, -10px) scale(0.4405);
  animation: fall-100 30s -2s linear infinite;
}
@keyframes fall-100 {
  47.015% {
    transform: translate(16.8964vw, 47.015vh) scale(0.4405);
  }
  to {
    transform: translate(18.9358vw, 100vh) scale(0.4405);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.5898;
  transform: translate(86.2751vw, -10px) scale(0.7745);
  animation: fall-101 16s -14s linear infinite;
}
@keyframes fall-101 {
  37.201% {
    transform: translate(79.5467vw, 37.201vh) scale(0.7745);
  }
  to {
    transform: translate(82.9109vw, 100vh) scale(0.7745);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.9395;
  transform: translate(46.364vw, -10px) scale(0.0981);
  animation: fall-102 29s -11s linear infinite;
}
@keyframes fall-102 {
  46.936% {
    transform: translate(46.8891vw, 46.936vh) scale(0.0981);
  }
  to {
    transform: translate(46.62655vw, 100vh) scale(0.0981);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.8772;
  transform: translate(3.455vw, -10px) scale(0.1249);
  animation: fall-103 14s -14s linear infinite;
}
@keyframes fall-103 {
  37.167% {
    transform: translate(3.2438vw, 37.167vh) scale(0.1249);
  }
  to {
    transform: translate(3.3494vw, 100vh) scale(0.1249);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.4184;
  transform: translate(19.0727vw, -10px) scale(0.5757);
  animation: fall-104 11s -1s linear infinite;
}
@keyframes fall-104 {
  40.077% {
    transform: translate(26.7989vw, 40.077vh) scale(0.5757);
  }
  to {
    transform: translate(22.9358vw, 100vh) scale(0.5757);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.6429;
  transform: translate(23.9757vw, -10px) scale(0.1381);
  animation: fall-105 17s -21s linear infinite;
}
@keyframes fall-105 {
  63.727% {
    transform: translate(24.6559vw, 63.727vh) scale(0.1381);
  }
  to {
    transform: translate(24.3158vw, 100vh) scale(0.1381);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.1464;
  transform: translate(63.3233vw, -10px) scale(0.3794);
  animation: fall-106 29s -16s linear infinite;
}
@keyframes fall-106 {
  43.165% {
    transform: translate(70.6365vw, 43.165vh) scale(0.3794);
  }
  to {
    transform: translate(66.9799vw, 100vh) scale(0.3794);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.9826;
  transform: translate(40.3847vw, -10px) scale(0.5005);
  animation: fall-107 17s -5s linear infinite;
}
@keyframes fall-107 {
  40.906% {
    transform: translate(41.27vw, 40.906vh) scale(0.5005);
  }
  to {
    transform: translate(40.82735vw, 100vh) scale(0.5005);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.5944;
  transform: translate(19.4204vw, -10px) scale(0.6352);
  animation: fall-108 18s -19s linear infinite;
}
@keyframes fall-108 {
  40.604% {
    transform: translate(14.4749vw, 40.604vh) scale(0.6352);
  }
  to {
    transform: translate(16.94765vw, 100vh) scale(0.6352);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.5193;
  transform: translate(81.2219vw, -10px) scale(0.933);
  animation: fall-109 19s -20s linear infinite;
}
@keyframes fall-109 {
  31.351% {
    transform: translate(82.2441vw, 31.351vh) scale(0.933);
  }
  to {
    transform: translate(81.733vw, 100vh) scale(0.933);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.8519;
  transform: translate(46.9202vw, -10px) scale(0.9116);
  animation: fall-110 16s -29s linear infinite;
}
@keyframes fall-110 {
  46.726% {
    transform: translate(53.3432vw, 46.726vh) scale(0.9116);
  }
  to {
    transform: translate(50.1317vw, 100vh) scale(0.9116);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.4986;
  transform: translate(59.5381vw, -10px) scale(0.958);
  animation: fall-111 16s -1s linear infinite;
}
@keyframes fall-111 {
  45.977% {
    transform: translate(61.6831vw, 45.977vh) scale(0.958);
  }
  to {
    transform: translate(60.6106vw, 100vh) scale(0.958);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.2341;
  transform: translate(96.5913vw, -10px) scale(0.1463);
  animation: fall-112 23s -15s linear infinite;
}
@keyframes fall-112 {
  52.196% {
    transform: translate(88.4862vw, 52.196vh) scale(0.1463);
  }
  to {
    transform: translate(92.53875vw, 100vh) scale(0.1463);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.7724;
  transform: translate(15.525vw, -10px) scale(0.1884);
  animation: fall-113 21s -28s linear infinite;
}
@keyframes fall-113 {
  64.783% {
    transform: translate(25.2114vw, 64.783vh) scale(0.1884);
  }
  to {
    transform: translate(20.3682vw, 100vh) scale(0.1884);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.8076;
  transform: translate(32.1645vw, -10px) scale(0.0609);
  animation: fall-114 19s -27s linear infinite;
}
@keyframes fall-114 {
  34.819% {
    transform: translate(25.3804vw, 34.819vh) scale(0.0609);
  }
  to {
    transform: translate(28.77245vw, 100vh) scale(0.0609);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.1248;
  transform: translate(21.0171vw, -10px) scale(0.0822);
  animation: fall-115 30s -5s linear infinite;
}
@keyframes fall-115 {
  74.443% {
    transform: translate(25.0646vw, 74.443vh) scale(0.0822);
  }
  to {
    transform: translate(23.04085vw, 100vh) scale(0.0822);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.9264;
  transform: translate(31.7986vw, -10px) scale(0.5414);
  animation: fall-116 12s -24s linear infinite;
}
@keyframes fall-116 {
  44.726% {
    transform: translate(40.9648vw, 44.726vh) scale(0.5414);
  }
  to {
    transform: translate(36.3817vw, 100vh) scale(0.5414);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.3786;
  transform: translate(99.6355vw, -10px) scale(0.0059);
  animation: fall-117 18s -13s linear infinite;
}
@keyframes fall-117 {
  72.999% {
    transform: translate(94.8779vw, 72.999vh) scale(0.0059);
  }
  to {
    transform: translate(97.2567vw, 100vh) scale(0.0059);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.7652;
  transform: translate(2.987vw, -10px) scale(0.946);
  animation: fall-118 27s -19s linear infinite;
}
@keyframes fall-118 {
  40.019% {
    transform: translate(11.7347vw, 40.019vh) scale(0.946);
  }
  to {
    transform: translate(7.36085vw, 100vh) scale(0.946);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.7686;
  transform: translate(79.549vw, -10px) scale(0.903);
  animation: fall-119 25s -4s linear infinite;
}
@keyframes fall-119 {
  48.234% {
    transform: translate(78.0888vw, 48.234vh) scale(0.903);
  }
  to {
    transform: translate(78.8189vw, 100vh) scale(0.903);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.1917;
  transform: translate(31.5645vw, -10px) scale(0.252);
  animation: fall-120 30s -13s linear infinite;
}
@keyframes fall-120 {
  45.763% {
    transform: translate(37.0957vw, 45.763vh) scale(0.252);
  }
  to {
    transform: translate(34.3301vw, 100vh) scale(0.252);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.4821;
  transform: translate(68.2185vw, -10px) scale(0.4492);
  animation: fall-121 23s -19s linear infinite;
}
@keyframes fall-121 {
  60.208% {
    transform: translate(64.0599vw, 60.208vh) scale(0.4492);
  }
  to {
    transform: translate(66.1392vw, 100vh) scale(0.4492);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.4305;
  transform: translate(98.2608vw, -10px) scale(0.756);
  animation: fall-122 21s -17s linear infinite;
}
@keyframes fall-122 {
  65.484% {
    transform: translate(94.7881vw, 65.484vh) scale(0.756);
  }
  to {
    transform: translate(96.52445vw, 100vh) scale(0.756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.9583;
  transform: translate(54.9122vw, -10px) scale(0.8942);
  animation: fall-123 20s -24s linear infinite;
}
@keyframes fall-123 {
  59.61% {
    transform: translate(63.2036vw, 59.61vh) scale(0.8942);
  }
  to {
    transform: translate(59.0579vw, 100vh) scale(0.8942);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.2837;
  transform: translate(66.893vw, -10px) scale(0.5382);
  animation: fall-124 15s -12s linear infinite;
}
@keyframes fall-124 {
  74.356% {
    transform: translate(61.3338vw, 74.356vh) scale(0.5382);
  }
  to {
    transform: translate(64.1134vw, 100vh) scale(0.5382);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.3473;
  transform: translate(59.3202vw, -10px) scale(0.2798);
  animation: fall-125 18s -5s linear infinite;
}
@keyframes fall-125 {
  51.728% {
    transform: translate(50.0558vw, 51.728vh) scale(0.2798);
  }
  to {
    transform: translate(54.688vw, 100vh) scale(0.2798);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.1998;
  transform: translate(6.6455vw, -10px) scale(0.3535);
  animation: fall-126 15s -30s linear infinite;
}
@keyframes fall-126 {
  36.529% {
    transform: translate(0.7743vw, 36.529vh) scale(0.3535);
  }
  to {
    transform: translate(3.7099vw, 100vh) scale(0.3535);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.0046;
  transform: translate(95.3258vw, -10px) scale(0.8482);
  animation: fall-127 11s -19s linear infinite;
}
@keyframes fall-127 {
  59.461% {
    transform: translate(87.8843vw, 59.461vh) scale(0.8482);
  }
  to {
    transform: translate(91.60505vw, 100vh) scale(0.8482);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.196;
  transform: translate(80.5081vw, -10px) scale(0.9536);
  animation: fall-128 11s -19s linear infinite;
}
@keyframes fall-128 {
  32.151% {
    transform: translate(86.0198vw, 32.151vh) scale(0.9536);
  }
  to {
    transform: translate(83.26395vw, 100vh) scale(0.9536);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.1153;
  transform: translate(57.6218vw, -10px) scale(0.9225);
  animation: fall-129 24s -11s linear infinite;
}
@keyframes fall-129 {
  40.024% {
    transform: translate(62.3069vw, 40.024vh) scale(0.9225);
  }
  to {
    transform: translate(59.96435vw, 100vh) scale(0.9225);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.8531;
  transform: translate(42.9004vw, -10px) scale(0.3794);
  animation: fall-130 17s -26s linear infinite;
}
@keyframes fall-130 {
  69.499% {
    transform: translate(46.8031vw, 69.499vh) scale(0.3794);
  }
  to {
    transform: translate(44.85175vw, 100vh) scale(0.3794);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.2843;
  transform: translate(28.7798vw, -10px) scale(0.3438);
  animation: fall-131 28s -26s linear infinite;
}
@keyframes fall-131 {
  42.722% {
    transform: translate(29.3893vw, 42.722vh) scale(0.3438);
  }
  to {
    transform: translate(29.08455vw, 100vh) scale(0.3438);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.1411;
  transform: translate(15.1116vw, -10px) scale(0.0148);
  animation: fall-132 21s -30s linear infinite;
}
@keyframes fall-132 {
  54.714% {
    transform: translate(10.6042vw, 54.714vh) scale(0.0148);
  }
  to {
    transform: translate(12.8579vw, 100vh) scale(0.0148);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.081;
  transform: translate(80.2382vw, -10px) scale(0.645);
  animation: fall-133 21s -26s linear infinite;
}
@keyframes fall-133 {
  63.447% {
    transform: translate(79.24vw, 63.447vh) scale(0.645);
  }
  to {
    transform: translate(79.7391vw, 100vh) scale(0.645);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.0496;
  transform: translate(48.926vw, -10px) scale(0.2383);
  animation: fall-134 24s -3s linear infinite;
}
@keyframes fall-134 {
  68.82% {
    transform: translate(57.2128vw, 68.82vh) scale(0.2383);
  }
  to {
    transform: translate(53.0694vw, 100vh) scale(0.2383);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.6403;
  transform: translate(81.0354vw, -10px) scale(0.7182);
  animation: fall-135 30s -17s linear infinite;
}
@keyframes fall-135 {
  46.544% {
    transform: translate(83.1998vw, 46.544vh) scale(0.7182);
  }
  to {
    transform: translate(82.1176vw, 100vh) scale(0.7182);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.5226;
  transform: translate(70.2513vw, -10px) scale(0.2517);
  animation: fall-136 15s -6s linear infinite;
}
@keyframes fall-136 {
  61.892% {
    transform: translate(71.4669vw, 61.892vh) scale(0.2517);
  }
  to {
    transform: translate(70.8591vw, 100vh) scale(0.2517);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.2749;
  transform: translate(46.6355vw, -10px) scale(0.0391);
  animation: fall-137 22s -11s linear infinite;
}
@keyframes fall-137 {
  61.446% {
    transform: translate(42.5427vw, 61.446vh) scale(0.0391);
  }
  to {
    transform: translate(44.5891vw, 100vh) scale(0.0391);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.2719;
  transform: translate(36.8576vw, -10px) scale(0.061);
  animation: fall-138 11s -10s linear infinite;
}
@keyframes fall-138 {
  31.871% {
    transform: translate(29.762vw, 31.871vh) scale(0.061);
  }
  to {
    transform: translate(33.3098vw, 100vh) scale(0.061);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.2933;
  transform: translate(82.9505vw, -10px) scale(0.117);
  animation: fall-139 24s -13s linear infinite;
}
@keyframes fall-139 {
  60.169% {
    transform: translate(77.6843vw, 60.169vh) scale(0.117);
  }
  to {
    transform: translate(80.3174vw, 100vh) scale(0.117);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.3093;
  transform: translate(42.1755vw, -10px) scale(0.2544);
  animation: fall-140 15s -26s linear infinite;
}
@keyframes fall-140 {
  54.74% {
    transform: translate(49.9786vw, 54.74vh) scale(0.2544);
  }
  to {
    transform: translate(46.07705vw, 100vh) scale(0.2544);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.3322;
  transform: translate(14.4477vw, -10px) scale(0.7538);
  animation: fall-141 11s -22s linear infinite;
}
@keyframes fall-141 {
  76.235% {
    transform: translate(9.1081vw, 76.235vh) scale(0.7538);
  }
  to {
    transform: translate(11.7779vw, 100vh) scale(0.7538);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.3893;
  transform: translate(66.0783vw, -10px) scale(0.8197);
  animation: fall-142 27s -14s linear infinite;
}
@keyframes fall-142 {
  53.972% {
    transform: translate(74.734vw, 53.972vh) scale(0.8197);
  }
  to {
    transform: translate(70.40615vw, 100vh) scale(0.8197);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.3682;
  transform: translate(96.4626vw, -10px) scale(0.5334);
  animation: fall-143 26s -8s linear infinite;
}
@keyframes fall-143 {
  35.626% {
    transform: translate(88.0656vw, 35.626vh) scale(0.5334);
  }
  to {
    transform: translate(92.2641vw, 100vh) scale(0.5334);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.1262;
  transform: translate(14.5979vw, -10px) scale(0.9906);
  animation: fall-144 19s -22s linear infinite;
}
@keyframes fall-144 {
  75.126% {
    transform: translate(9.8311vw, 75.126vh) scale(0.9906);
  }
  to {
    transform: translate(12.2145vw, 100vh) scale(0.9906);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.6353;
  transform: translate(32.6421vw, -10px) scale(0.0873);
  animation: fall-145 18s -12s linear infinite;
}
@keyframes fall-145 {
  37.078% {
    transform: translate(25.5243vw, 37.078vh) scale(0.0873);
  }
  to {
    transform: translate(29.0832vw, 100vh) scale(0.0873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.9128;
  transform: translate(86.3027vw, -10px) scale(0.761);
  animation: fall-146 21s -9s linear infinite;
}
@keyframes fall-146 {
  68.538% {
    transform: translate(85.0049vw, 68.538vh) scale(0.761);
  }
  to {
    transform: translate(85.6538vw, 100vh) scale(0.761);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.716;
  transform: translate(77.2678vw, -10px) scale(0.7239);
  animation: fall-147 25s -10s linear infinite;
}
@keyframes fall-147 {
  64.698% {
    transform: translate(68.788vw, 64.698vh) scale(0.7239);
  }
  to {
    transform: translate(73.0279vw, 100vh) scale(0.7239);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.867;
  transform: translate(67.8182vw, -10px) scale(0.9302);
  animation: fall-148 29s -16s linear infinite;
}
@keyframes fall-148 {
  55.488% {
    transform: translate(64.1721vw, 55.488vh) scale(0.9302);
  }
  to {
    transform: translate(65.99515vw, 100vh) scale(0.9302);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.9119;
  transform: translate(38.9478vw, -10px) scale(0.91);
  animation: fall-149 28s -9s linear infinite;
}
@keyframes fall-149 {
  40.087% {
    transform: translate(46.3703vw, 40.087vh) scale(0.91);
  }
  to {
    transform: translate(42.65905vw, 100vh) scale(0.91);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.0036;
  transform: translate(74.8542vw, -10px) scale(0.1881);
  animation: fall-150 30s -17s linear infinite;
}
@keyframes fall-150 {
  73.36% {
    transform: translate(70.6567vw, 73.36vh) scale(0.1881);
  }
  to {
    transform: translate(72.75545vw, 100vh) scale(0.1881);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.3696;
  transform: translate(17.4345vw, -10px) scale(0.8409);
  animation: fall-151 20s -7s linear infinite;
}
@keyframes fall-151 {
  60.597% {
    transform: translate(13.3191vw, 60.597vh) scale(0.8409);
  }
  to {
    transform: translate(15.3768vw, 100vh) scale(0.8409);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.8405;
  transform: translate(78.4437vw, -10px) scale(0.4382);
  animation: fall-152 25s -16s linear infinite;
}
@keyframes fall-152 {
  70.4% {
    transform: translate(82.9811vw, 70.4vh) scale(0.4382);
  }
  to {
    transform: translate(80.7124vw, 100vh) scale(0.4382);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.172;
  transform: translate(80.2778vw, -10px) scale(0.5235);
  animation: fall-153 30s -29s linear infinite;
}
@keyframes fall-153 {
  47.97% {
    transform: translate(87.3554vw, 47.97vh) scale(0.5235);
  }
  to {
    transform: translate(83.8166vw, 100vh) scale(0.5235);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.8661;
  transform: translate(47.509vw, -10px) scale(0.1615);
  animation: fall-154 30s -28s linear infinite;
}
@keyframes fall-154 {
  34.486% {
    transform: translate(41.7885vw, 34.486vh) scale(0.1615);
  }
  to {
    transform: translate(44.64875vw, 100vh) scale(0.1615);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.7178;
  transform: translate(5.9478vw, -10px) scale(0.1871);
  animation: fall-155 21s -9s linear infinite;
}
@keyframes fall-155 {
  51.914% {
    transform: translate(10.7747vw, 51.914vh) scale(0.1871);
  }
  to {
    transform: translate(8.36125vw, 100vh) scale(0.1871);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.7571;
  transform: translate(68.2463vw, -10px) scale(0.1115);
  animation: fall-156 24s -22s linear infinite;
}
@keyframes fall-156 {
  31.998% {
    transform: translate(65.0476vw, 31.998vh) scale(0.1115);
  }
  to {
    transform: translate(66.64695vw, 100vh) scale(0.1115);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.9292;
  transform: translate(17.1104vw, -10px) scale(0.3317);
  animation: fall-157 10s -30s linear infinite;
}
@keyframes fall-157 {
  34.066% {
    transform: translate(20.3055vw, 34.066vh) scale(0.3317);
  }
  to {
    transform: translate(18.70795vw, 100vh) scale(0.3317);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.5985;
  transform: translate(35.9215vw, -10px) scale(0.4196);
  animation: fall-158 17s -2s linear infinite;
}
@keyframes fall-158 {
  74.159% {
    transform: translate(43.149vw, 74.159vh) scale(0.4196);
  }
  to {
    transform: translate(39.53525vw, 100vh) scale(0.4196);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.0752;
  transform: translate(55.2345vw, -10px) scale(0.3301);
  animation: fall-159 27s -1s linear infinite;
}
@keyframes fall-159 {
  60.19% {
    transform: translate(48.5152vw, 60.19vh) scale(0.3301);
  }
  to {
    transform: translate(51.87485vw, 100vh) scale(0.3301);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.2398;
  transform: translate(72.096vw, -10px) scale(0.2011);
  animation: fall-160 14s -9s linear infinite;
}
@keyframes fall-160 {
  64.459% {
    transform: translate(78.6778vw, 64.459vh) scale(0.2011);
  }
  to {
    transform: translate(75.3869vw, 100vh) scale(0.2011);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.4325;
  transform: translate(83.3712vw, -10px) scale(0.3345);
  animation: fall-161 21s -2s linear infinite;
}
@keyframes fall-161 {
  48.204% {
    transform: translate(79.9131vw, 48.204vh) scale(0.3345);
  }
  to {
    transform: translate(81.64215vw, 100vh) scale(0.3345);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.2688;
  transform: translate(24.2724vw, -10px) scale(0.5134);
  animation: fall-162 22s -11s linear infinite;
}
@keyframes fall-162 {
  45.792% {
    transform: translate(32.0878vw, 45.792vh) scale(0.5134);
  }
  to {
    transform: translate(28.1801vw, 100vh) scale(0.5134);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.4262;
  transform: translate(0.3511vw, -10px) scale(0.4889);
  animation: fall-163 15s -18s linear infinite;
}
@keyframes fall-163 {
  50.819% {
    transform: translate(2.7243vw, 50.819vh) scale(0.4889);
  }
  to {
    transform: translate(1.5377vw, 100vh) scale(0.4889);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.683;
  transform: translate(34.7157vw, -10px) scale(0.9047);
  animation: fall-164 28s -13s linear infinite;
}
@keyframes fall-164 {
  77.649% {
    transform: translate(30.4772vw, 77.649vh) scale(0.9047);
  }
  to {
    transform: translate(32.59645vw, 100vh) scale(0.9047);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.3436;
  transform: translate(85.8218vw, -10px) scale(0.9265);
  animation: fall-165 30s -17s linear infinite;
}
@keyframes fall-165 {
  51.919% {
    transform: translate(94.0852vw, 51.919vh) scale(0.9265);
  }
  to {
    transform: translate(89.9535vw, 100vh) scale(0.9265);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.3647;
  transform: translate(46.1879vw, -10px) scale(0.575);
  animation: fall-166 21s -27s linear infinite;
}
@keyframes fall-166 {
  58.117% {
    transform: translate(50.0936vw, 58.117vh) scale(0.575);
  }
  to {
    transform: translate(48.14075vw, 100vh) scale(0.575);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.9127;
  transform: translate(60.6708vw, -10px) scale(0.7382);
  animation: fall-167 29s -27s linear infinite;
}
@keyframes fall-167 {
  69.83% {
    transform: translate(59.3044vw, 69.83vh) scale(0.7382);
  }
  to {
    transform: translate(59.9876vw, 100vh) scale(0.7382);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.561;
  transform: translate(63.7682vw, -10px) scale(0.1734);
  animation: fall-168 18s -4s linear infinite;
}
@keyframes fall-168 {
  78.499% {
    transform: translate(68.5408vw, 78.499vh) scale(0.1734);
  }
  to {
    transform: translate(66.1545vw, 100vh) scale(0.1734);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.3675;
  transform: translate(97.1841vw, -10px) scale(0.5459);
  animation: fall-169 20s -22s linear infinite;
}
@keyframes fall-169 {
  49.662% {
    transform: translate(100.1091vw, 49.662vh) scale(0.5459);
  }
  to {
    transform: translate(98.6466vw, 100vh) scale(0.5459);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.781;
  transform: translate(14.5873vw, -10px) scale(0.7775);
  animation: fall-170 14s -23s linear infinite;
}
@keyframes fall-170 {
  39.284% {
    transform: translate(23.8293vw, 39.284vh) scale(0.7775);
  }
  to {
    transform: translate(19.2083vw, 100vh) scale(0.7775);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.9692;
  transform: translate(62.3228vw, -10px) scale(0.1713);
  animation: fall-171 20s -20s linear infinite;
}
@keyframes fall-171 {
  33.108% {
    transform: translate(68.8334vw, 33.108vh) scale(0.1713);
  }
  to {
    transform: translate(65.5781vw, 100vh) scale(0.1713);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.8004;
  transform: translate(35.3833vw, -10px) scale(0.7504);
  animation: fall-172 23s -12s linear infinite;
}
@keyframes fall-172 {
  70.64% {
    transform: translate(41.2316vw, 70.64vh) scale(0.7504);
  }
  to {
    transform: translate(38.30745vw, 100vh) scale(0.7504);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.2725;
  transform: translate(29.5838vw, -10px) scale(0.683);
  animation: fall-173 18s -8s linear infinite;
}
@keyframes fall-173 {
  72.003% {
    transform: translate(31.7153vw, 72.003vh) scale(0.683);
  }
  to {
    transform: translate(30.64955vw, 100vh) scale(0.683);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.4437;
  transform: translate(19.1817vw, -10px) scale(0.508);
  animation: fall-174 29s -7s linear infinite;
}
@keyframes fall-174 {
  39.507% {
    transform: translate(16.8771vw, 39.507vh) scale(0.508);
  }
  to {
    transform: translate(18.0294vw, 100vh) scale(0.508);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.678;
  transform: translate(80.2479vw, -10px) scale(0.0738);
  animation: fall-175 19s -2s linear infinite;
}
@keyframes fall-175 {
  55.73% {
    transform: translate(84.3938vw, 55.73vh) scale(0.0738);
  }
  to {
    transform: translate(82.32085vw, 100vh) scale(0.0738);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.1196;
  transform: translate(94.6442vw, -10px) scale(0.4967);
  animation: fall-176 20s -1s linear infinite;
}
@keyframes fall-176 {
  47.771% {
    transform: translate(98.0893vw, 47.771vh) scale(0.4967);
  }
  to {
    transform: translate(96.36675vw, 100vh) scale(0.4967);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.647;
  transform: translate(13.4367vw, -10px) scale(0.7373);
  animation: fall-177 23s -14s linear infinite;
}
@keyframes fall-177 {
  67.352% {
    transform: translate(20.8734vw, 67.352vh) scale(0.7373);
  }
  to {
    transform: translate(17.15505vw, 100vh) scale(0.7373);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.8008;
  transform: translate(41.5366vw, -10px) scale(0.7979);
  animation: fall-178 27s -21s linear infinite;
}
@keyframes fall-178 {
  50.135% {
    transform: translate(34.6456vw, 50.135vh) scale(0.7979);
  }
  to {
    transform: translate(38.0911vw, 100vh) scale(0.7979);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.5044;
  transform: translate(30.9242vw, -10px) scale(0.3097);
  animation: fall-179 19s -17s linear infinite;
}
@keyframes fall-179 {
  31.801% {
    transform: translate(30.5596vw, 31.801vh) scale(0.3097);
  }
  to {
    transform: translate(30.7419vw, 100vh) scale(0.3097);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.6544;
  transform: translate(25.7785vw, -10px) scale(0.1182);
  animation: fall-180 12s -30s linear infinite;
}
@keyframes fall-180 {
  55.401% {
    transform: translate(30.5312vw, 55.401vh) scale(0.1182);
  }
  to {
    transform: translate(28.15485vw, 100vh) scale(0.1182);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.9326;
  transform: translate(45.9137vw, -10px) scale(0.325);
  animation: fall-181 24s -7s linear infinite;
}
@keyframes fall-181 {
  43.808% {
    transform: translate(40.515vw, 43.808vh) scale(0.325);
  }
  to {
    transform: translate(43.21435vw, 100vh) scale(0.325);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.208;
  transform: translate(24.0396vw, -10px) scale(0.2425);
  animation: fall-182 23s -28s linear infinite;
}
@keyframes fall-182 {
  37.357% {
    transform: translate(14.4208vw, 37.357vh) scale(0.2425);
  }
  to {
    transform: translate(19.2302vw, 100vh) scale(0.2425);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.7757;
  transform: translate(66.0174vw, -10px) scale(0.8407);
  animation: fall-183 28s -15s linear infinite;
}
@keyframes fall-183 {
  32.955% {
    transform: translate(56.2927vw, 32.955vh) scale(0.8407);
  }
  to {
    transform: translate(61.15505vw, 100vh) scale(0.8407);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.2333;
  transform: translate(28.7113vw, -10px) scale(0.4047);
  animation: fall-184 24s -2s linear infinite;
}
@keyframes fall-184 {
  43.121% {
    transform: translate(36.7598vw, 43.121vh) scale(0.4047);
  }
  to {
    transform: translate(32.73555vw, 100vh) scale(0.4047);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.2411;
  transform: translate(96.0005vw, -10px) scale(0.1827);
  animation: fall-185 23s -17s linear infinite;
}
@keyframes fall-185 {
  51.986% {
    transform: translate(94.3294vw, 51.986vh) scale(0.1827);
  }
  to {
    transform: translate(95.16495vw, 100vh) scale(0.1827);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.3764;
  transform: translate(33.1355vw, -10px) scale(0.1324);
  animation: fall-186 14s -1s linear infinite;
}
@keyframes fall-186 {
  52.11% {
    transform: translate(25.602vw, 52.11vh) scale(0.1324);
  }
  to {
    transform: translate(29.36875vw, 100vh) scale(0.1324);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.2884;
  transform: translate(46.6145vw, -10px) scale(0.4305);
  animation: fall-187 22s -28s linear infinite;
}
@keyframes fall-187 {
  57.027% {
    transform: translate(44.2202vw, 57.027vh) scale(0.4305);
  }
  to {
    transform: translate(45.41735vw, 100vh) scale(0.4305);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.3105;
  transform: translate(89.1957vw, -10px) scale(0.4951);
  animation: fall-188 23s -19s linear infinite;
}
@keyframes fall-188 {
  55.694% {
    transform: translate(87.1792vw, 55.694vh) scale(0.4951);
  }
  to {
    transform: translate(88.18745vw, 100vh) scale(0.4951);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.7325;
  transform: translate(49.0911vw, -10px) scale(0.6564);
  animation: fall-189 12s -2s linear infinite;
}
@keyframes fall-189 {
  60.186% {
    transform: translate(45.1782vw, 60.186vh) scale(0.6564);
  }
  to {
    transform: translate(47.13465vw, 100vh) scale(0.6564);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.0609;
  transform: translate(43.2734vw, -10px) scale(0.6236);
  animation: fall-190 23s -18s linear infinite;
}
@keyframes fall-190 {
  53.729% {
    transform: translate(51.8497vw, 53.729vh) scale(0.6236);
  }
  to {
    transform: translate(47.56155vw, 100vh) scale(0.6236);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.5997;
  transform: translate(89.0305vw, -10px) scale(0.6184);
  animation: fall-191 22s -10s linear infinite;
}
@keyframes fall-191 {
  34.851% {
    transform: translate(83.5729vw, 34.851vh) scale(0.6184);
  }
  to {
    transform: translate(86.3017vw, 100vh) scale(0.6184);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.1126;
  transform: translate(66.6255vw, -10px) scale(0.2516);
  animation: fall-192 26s -14s linear infinite;
}
@keyframes fall-192 {
  61.876% {
    transform: translate(71.0168vw, 61.876vh) scale(0.2516);
  }
  to {
    transform: translate(68.82115vw, 100vh) scale(0.2516);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.4239;
  transform: translate(98.867vw, -10px) scale(0.2893);
  animation: fall-193 11s -27s linear infinite;
}
@keyframes fall-193 {
  76.309% {
    transform: translate(91.5012vw, 76.309vh) scale(0.2893);
  }
  to {
    transform: translate(95.1841vw, 100vh) scale(0.2893);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.2146;
  transform: translate(36.3847vw, -10px) scale(0.2521);
  animation: fall-194 15s -14s linear infinite;
}
@keyframes fall-194 {
  42.341% {
    transform: translate(35.3292vw, 42.341vh) scale(0.2521);
  }
  to {
    transform: translate(35.85695vw, 100vh) scale(0.2521);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.9875;
  transform: translate(33.6057vw, -10px) scale(0.1727);
  animation: fall-195 21s -4s linear infinite;
}
@keyframes fall-195 {
  74.168% {
    transform: translate(25.1865vw, 74.168vh) scale(0.1727);
  }
  to {
    transform: translate(29.3961vw, 100vh) scale(0.1727);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.7233;
  transform: translate(81.6851vw, -10px) scale(0.8024);
  animation: fall-196 10s -23s linear infinite;
}
@keyframes fall-196 {
  45.89% {
    transform: translate(85.3502vw, 45.89vh) scale(0.8024);
  }
  to {
    transform: translate(83.51765vw, 100vh) scale(0.8024);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.5781;
  transform: translate(12.3588vw, -10px) scale(0.5294);
  animation: fall-197 19s -20s linear infinite;
}
@keyframes fall-197 {
  40.81% {
    transform: translate(4.3991vw, 40.81vh) scale(0.5294);
  }
  to {
    transform: translate(8.37895vw, 100vh) scale(0.5294);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.5776;
  transform: translate(30.1469vw, -10px) scale(0.0308);
  animation: fall-198 17s -19s linear infinite;
}
@keyframes fall-198 {
  45.961% {
    transform: translate(24.7926vw, 45.961vh) scale(0.0308);
  }
  to {
    transform: translate(27.46975vw, 100vh) scale(0.0308);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.2368;
  transform: translate(58.7449vw, -10px) scale(0.5457);
  animation: fall-199 22s -20s linear infinite;
}
@keyframes fall-199 {
  54.063% {
    transform: translate(55.6201vw, 54.063vh) scale(0.5457);
  }
  to {
    transform: translate(57.1825vw, 100vh) scale(0.5457);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.2972;
  transform: translate(84.3098vw, -10px) scale(0.6313);
  animation: fall-200 24s -30s linear infinite;
}
@keyframes fall-200 {
  74.197% {
    transform: translate(84.0197vw, 74.197vh) scale(0.6313);
  }
  to {
    transform: translate(84.16475vw, 100vh) scale(0.6313);
  }
}

.first-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.first-screen__wrapper {
  padding: 8vh 5vw 0 5vw;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper {
    padding-bottom: 1vh;
    padding-top: 8vh;
  }
}
.first-screen__wrapper p {
  font-size: 1.25rem;
  line-height: 1.3em;
  width: 52%;
  color: #E9E9E9;
}
@media screen and (max-width: 1440px) {
  .first-screen__wrapper p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper p {
    font-size: 1rem;
    width: 85%;
  }
}
.first-screen__wrapper h1 {
  width: 90%;
  max-width: 1200px;
}
.first-screen__wrapper .button-block {
  display: flex;
  column-gap: 25px;
  height: 60px;
  margin-top: 1%;
}
@media screen and (max-width: 1440px) {
  .first-screen__wrapper .button-block .single-button {
    height: 45px;
  }
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper .button-block {
    margin-top: 2vh;
    height: 45px;
  }
}
.first-screen__wrapper .button-block .single-button {
  width: auto;
}
.first-screen__background {
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100vh;
}
.first-screen__background .slider {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  filter: brightness(0.4);
}
.first-screen__background .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: slider 21s infinite;
}
.first-screen__background .slider .slide:nth-child(1) {
  background-image: url("../image/main_1_1.webp");
  animation-delay: 0s;
}
.first-screen__background .slider .slide:nth-child(2) {
  background-image: url("../image/main_1_2.webp");
  animation-delay: -7s;
}
.first-screen__background .slider .slide:nth-child(3) {
  background-image: url("../image/main_1_3.webp");
  animation-delay: -14s;
}
@keyframes slider {
  0%, 28%, 100% {
    opacity: 1;
    animation-timing-function: ease;
    z-index: 0;
  }
  33% {
    opacity: 0;
    animation-timing-function: step-end;
    z-index: 0;
  }
  95% {
    opacity: 1;
    animation-timing-function: step-end;
    z-index: -1;
  }
}

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

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

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

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

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

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

.offers-group {
  padding: 5vh 5vw;
  background: #181515;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3vh;
}
.offers-group h3 {
  color: #CC332E;
  margin-bottom: 15px;
}
.offers-group .date-offer {
  display: flex;
  column-gap: 10px;
  width: 100%;
  max-width: 1500px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .offers-group .date-offer {
    flex-direction: column;
    row-gap: 10px;
  }
}
.offers-group .date-offer .date-area {
  position: sticky;
  top: 100px;
  background: #DEDEDE;
  width: 15%;
  height: fit-content;
  padding: 25px 35px;
}
@media screen and (max-width: 1024px) {
  .offers-group .date-offer .date-area {
    width: 30%;
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .date-area {
    width: 100%;
  }
}
.offers-group .date-offer .date-area__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 0.9em;
  color: #181515;
}
.offers-group .date-offer .date-area__description {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1em;
  color: #181515;
}
.offers-group .date-offer .accent-area {
  background: #CC332E;
}
.offers-group .date-offer .accent-area .date-area__date, .offers-group .date-offer .accent-area .date-area__description {
  color: #DEDEDE;
}
.offers-group .date-offer .invisible-area {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .invisible-area {
    display: none;
  }
}
.offers-group .date-offer .offer-area {
  background: #DEDEDE;
  width: 85%;
  height: fit-content;
  padding: 25px 35px 35px 35px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .offers-group .date-offer .offer-area {
    width: 100%;
  }
}
.offers-group .date-offer .offer-area h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3em;
  font-style: italic;
  color: #181515;
}
.offers-group .date-offer .offer-area__price {
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3em;
  color: #CC332E;
  display: flex;
}
.offers-group .date-offer .offer-area .price-special {
  width: fit-content;
  padding-bottom: 1rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area .price-special {
    flex-direction: column;
  }
}
.offers-group .date-offer .offer-area .price-special-left {
  border: 2px solid #CC332E;
  margin-right: 0.5rem;
}
.offers-group .date-offer .offer-area .price-special-left .price-description {
  background: #CC332E;
  color: #fff;
}
.offers-group .date-offer .offer-area .price-special-left .price-value {
  color: #CC332E;
}
.offers-group .date-offer .offer-area .price-special .price-description {
  margin-bottom: 0;
  padding: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3em;
}
.offers-group .date-offer .offer-area .price-special .price-value {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0.5rem;
}
.offers-group .date-offer .offer-area .price-special .price-strikethrough {
  text-decoration: line-through;
  color: #575757;
  font-weight: 400;
}
.offers-group .date-offer .offer-area .price-special .price-grey {
  color: #575757;
  font-weight: 400;
}
.offers-group .date-offer .offer-area .price-special .price-regular {
  color: #CC332E;
  padding: 0;
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area .price-special .price-special-wave-container {
    margin: 1.5rem 0 0 0;
    gap: 0.5rem;
  }
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 768px) {
  .offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave {
    gap: 0.4rem;
  }
}
.offers-group .date-offer .offer-area .price-special .price-special-wave-container .price-special-wave 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;
  }
}

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

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

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

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

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

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

.photo-gallery-section {
  width: 100%;
  padding: 3vh 5vw 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 {
  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__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;
}

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