@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: 300px;
  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: 0.85rem;
  }
}
.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;
}
.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: 1.75rem;
  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: 1rem;
  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: 0.9rem;
  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: 1rem;
  paddingp: 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: 36px;
  padding: 6px 16px;
  margin: 4px 0 0 0;
  background: #dedede;
  font-size: 1rem;
}
.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-right: 0 !important;
  margin-top: 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: 36px;
  margin: 0;
  padding: 4px 6px;
}
@media screen and (max-width: 1440px) {
  .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: 11rem;
  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: 1440px) {
  .medium-modal-dialog__wrapper {
    width: 400px;
  }
  .medium-modal-dialog__wrapper .close_modal {
    top: 10px;
    right: 10px;
    height: 25px;
    width: 25px;
  }
  .medium-modal-dialog__wrapper .booking-form {
    padding: 20px;
  }
  .medium-modal-dialog__wrapper .booking-form__title {
    font-size: 1.1rem;
    padding-bottom: 5px;
  }
  .medium-modal-dialog__wrapper .booking-form__subtitle {
    font-size: 1rem;
    padding-bottom: 0;
  }
  .medium-modal-dialog__wrapper .booking-form__validation {
    font-size: 1rem;
  }
  .medium-modal-dialog__wrapper .booking-form__validation .validation-cross {
    font-size: 1.2em;
  }
  .medium-modal-dialog__wrapper .booking-form__button {
    margin: 5px 0 4px 0;
    font-size: 1rem;
  }
  .medium-modal-dialog__wrapper .booking-form label {
    font-size: 1rem;
    padding-top: 15px;
    height: 4.5rem;
  }
  .medium-modal-dialog__wrapper .booking-form .form-field {
    height: 30px;
    padding: 4px 8px;
    margin: 0;
    font-size: 1rem;
  }
  .medium-modal-dialog__wrapper .booking-form .booking_extra {
    padding: 15px 0 0 0;
  }
}
@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.2rem;
    padding-bottom: 10px;
  }
  .medium-modal-dialog__wrapper .booking-form__subtitle {
    padding-bottom: 10px;
  }
  .medium-modal-dialog__wrapper .booking-form__validation {
    font-size: 0.9rem;
  }
  .medium-modal-dialog__wrapper .booking-form__button {
    margin: 5px 0 4px auto;
    font-size: 1rem;
  }
  .medium-modal-dialog__wrapper .booking-form label {
    font-size: 0.9rem;
    padding-top: 5px;
  }
  .medium-modal-dialog__wrapper .booking-form .form-field {
    height: 30px;
    padding: 4px 8px;
    margin: 4px 0;
    font-size: 0.9rem;
  }
}

.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.8527;
  transform: translate(59.9395vw, -10px) scale(0.5051);
  animation: fall-1 12s -6s linear infinite;
}
@keyframes fall-1 {
  45.551% {
    transform: translate(58.5995vw, 45.551vh) scale(0.5051);
  }
  to {
    transform: translate(59.2695vw, 100vh) scale(0.5051);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.0882;
  transform: translate(92.9662vw, -10px) scale(0.0381);
  animation: fall-2 16s -16s linear infinite;
}
@keyframes fall-2 {
  53.37% {
    transform: translate(97.8238vw, 53.37vh) scale(0.0381);
  }
  to {
    transform: translate(95.395vw, 100vh) scale(0.0381);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.2503;
  transform: translate(92.8303vw, -10px) scale(0.6254);
  animation: fall-3 17s -12s linear infinite;
}
@keyframes fall-3 {
  74.284% {
    transform: translate(102.5027vw, 74.284vh) scale(0.6254);
  }
  to {
    transform: translate(97.6665vw, 100vh) scale(0.6254);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.9706;
  transform: translate(97.588vw, -10px) scale(0.8145);
  animation: fall-4 23s -24s linear infinite;
}
@keyframes fall-4 {
  41.303% {
    transform: translate(107.3684vw, 41.303vh) scale(0.8145);
  }
  to {
    transform: translate(102.4782vw, 100vh) scale(0.8145);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.2272;
  transform: translate(70.6714vw, -10px) scale(0.3472);
  animation: fall-5 21s -11s linear infinite;
}
@keyframes fall-5 {
  52.849% {
    transform: translate(66.3927vw, 52.849vh) scale(0.3472);
  }
  to {
    transform: translate(68.53205vw, 100vh) scale(0.3472);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.9071;
  transform: translate(16.4064vw, -10px) scale(0.5002);
  animation: fall-6 12s -5s linear infinite;
}
@keyframes fall-6 {
  79.676% {
    transform: translate(24.0073vw, 79.676vh) scale(0.5002);
  }
  to {
    transform: translate(20.20685vw, 100vh) scale(0.5002);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.5826;
  transform: translate(38.9467vw, -10px) scale(0.8539);
  animation: fall-7 19s -30s linear infinite;
}
@keyframes fall-7 {
  65.119% {
    transform: translate(34.8804vw, 65.119vh) scale(0.8539);
  }
  to {
    transform: translate(36.91355vw, 100vh) scale(0.8539);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.9005;
  transform: translate(42.0577vw, -10px) scale(0.1812);
  animation: fall-8 16s -6s linear infinite;
}
@keyframes fall-8 {
  62.294% {
    transform: translate(48.0086vw, 62.294vh) scale(0.1812);
  }
  to {
    transform: translate(45.03315vw, 100vh) scale(0.1812);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.5918;
  transform: translate(73.72vw, -10px) scale(0.4752);
  animation: fall-9 24s -13s linear infinite;
}
@keyframes fall-9 {
  73.25% {
    transform: translate(77.7139vw, 73.25vh) scale(0.4752);
  }
  to {
    transform: translate(75.71695vw, 100vh) scale(0.4752);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.4759;
  transform: translate(79.602vw, -10px) scale(0.6348);
  animation: fall-10 30s -8s linear infinite;
}
@keyframes fall-10 {
  79.885% {
    transform: translate(70.4094vw, 79.885vh) scale(0.6348);
  }
  to {
    transform: translate(75.0057vw, 100vh) scale(0.6348);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.3043;
  transform: translate(95.4119vw, -10px) scale(0.8491);
  animation: fall-11 10s -17s linear infinite;
}
@keyframes fall-11 {
  34.121% {
    transform: translate(90.8116vw, 34.121vh) scale(0.8491);
  }
  to {
    transform: translate(93.11175vw, 100vh) scale(0.8491);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.8358;
  transform: translate(48.8065vw, -10px) scale(0.1788);
  animation: fall-12 11s -29s linear infinite;
}
@keyframes fall-12 {
  46.094% {
    transform: translate(50.1478vw, 46.094vh) scale(0.1788);
  }
  to {
    transform: translate(49.47715vw, 100vh) scale(0.1788);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.4904;
  transform: translate(38.3677vw, -10px) scale(0.427);
  animation: fall-13 15s -10s linear infinite;
}
@keyframes fall-13 {
  60.27% {
    transform: translate(44.908vw, 60.27vh) scale(0.427);
  }
  to {
    transform: translate(41.63785vw, 100vh) scale(0.427);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.4945;
  transform: translate(96.0926vw, -10px) scale(0.5759);
  animation: fall-14 26s -8s linear infinite;
}
@keyframes fall-14 {
  69.542% {
    transform: translate(92.0927vw, 69.542vh) scale(0.5759);
  }
  to {
    transform: translate(94.09265vw, 100vh) scale(0.5759);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.3128;
  transform: translate(35.0327vw, -10px) scale(0.3973);
  animation: fall-15 25s -20s linear infinite;
}
@keyframes fall-15 {
  74.816% {
    transform: translate(28.584vw, 74.816vh) scale(0.3973);
  }
  to {
    transform: translate(31.80835vw, 100vh) scale(0.3973);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.3045;
  transform: translate(46.2554vw, -10px) scale(0.6453);
  animation: fall-16 10s -22s linear infinite;
}
@keyframes fall-16 {
  71.129% {
    transform: translate(42.6387vw, 71.129vh) scale(0.6453);
  }
  to {
    transform: translate(44.44705vw, 100vh) scale(0.6453);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.8857;
  transform: translate(4.7989vw, -10px) scale(0.8894);
  animation: fall-17 22s -8s linear infinite;
}
@keyframes fall-17 {
  59.826% {
    transform: translate(-4.509vw, 59.826vh) scale(0.8894);
  }
  to {
    transform: translate(0.14495vw, 100vh) scale(0.8894);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.9682;
  transform: translate(99.6162vw, -10px) scale(0.4708);
  animation: fall-18 10s -11s linear infinite;
}
@keyframes fall-18 {
  47.402% {
    transform: translate(100.845vw, 47.402vh) scale(0.4708);
  }
  to {
    transform: translate(100.2306vw, 100vh) scale(0.4708);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.445;
  transform: translate(91.442vw, -10px) scale(0.0254);
  animation: fall-19 27s -14s linear infinite;
}
@keyframes fall-19 {
  37.162% {
    transform: translate(98.1058vw, 37.162vh) scale(0.0254);
  }
  to {
    transform: translate(94.7739vw, 100vh) scale(0.0254);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.7401;
  transform: translate(60.4249vw, -10px) scale(0.9078);
  animation: fall-20 19s -25s linear infinite;
}
@keyframes fall-20 {
  74.673% {
    transform: translate(59.7935vw, 74.673vh) scale(0.9078);
  }
  to {
    transform: translate(60.1092vw, 100vh) scale(0.9078);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.421;
  transform: translate(33.6893vw, -10px) scale(0.1403);
  animation: fall-21 12s -25s linear infinite;
}
@keyframes fall-21 {
  55.7% {
    transform: translate(39.5781vw, 55.7vh) scale(0.1403);
  }
  to {
    transform: translate(36.6337vw, 100vh) scale(0.1403);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.4383;
  transform: translate(5.3041vw, -10px) scale(0.8531);
  animation: fall-22 26s -28s linear infinite;
}
@keyframes fall-22 {
  38.973% {
    transform: translate(13.1925vw, 38.973vh) scale(0.8531);
  }
  to {
    transform: translate(9.2483vw, 100vh) scale(0.8531);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.8169;
  transform: translate(77.8114vw, -10px) scale(0.109);
  animation: fall-23 20s -29s linear infinite;
}
@keyframes fall-23 {
  53.122% {
    transform: translate(81.5987vw, 53.122vh) scale(0.109);
  }
  to {
    transform: translate(79.70505vw, 100vh) scale(0.109);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.4735;
  transform: translate(37.9137vw, -10px) scale(0.9769);
  animation: fall-24 15s -4s linear infinite;
}
@keyframes fall-24 {
  53.227% {
    transform: translate(34.9368vw, 53.227vh) scale(0.9769);
  }
  to {
    transform: translate(36.42525vw, 100vh) scale(0.9769);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.6035;
  transform: translate(21.915vw, -10px) scale(0.7687);
  animation: fall-25 20s -17s linear infinite;
}
@keyframes fall-25 {
  77.985% {
    transform: translate(18.3312vw, 77.985vh) scale(0.7687);
  }
  to {
    transform: translate(20.1231vw, 100vh) scale(0.7687);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.7442;
  transform: translate(2.0713vw, -10px) scale(0.8468);
  animation: fall-26 19s -15s linear infinite;
}
@keyframes fall-26 {
  32.919% {
    transform: translate(9.1715vw, 32.919vh) scale(0.8468);
  }
  to {
    transform: translate(5.6214vw, 100vh) scale(0.8468);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.4888;
  transform: translate(57.0063vw, -10px) scale(0.7306);
  animation: fall-27 11s -21s linear infinite;
}
@keyframes fall-27 {
  34.562% {
    transform: translate(57.5536vw, 34.562vh) scale(0.7306);
  }
  to {
    transform: translate(57.27995vw, 100vh) scale(0.7306);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.4355;
  transform: translate(15.7161vw, -10px) scale(0.4263);
  animation: fall-28 11s -29s linear infinite;
}
@keyframes fall-28 {
  44.568% {
    transform: translate(13.0555vw, 44.568vh) scale(0.4263);
  }
  to {
    transform: translate(14.3858vw, 100vh) scale(0.4263);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.5003;
  transform: translate(2.4111vw, -10px) scale(0.4156);
  animation: fall-29 26s -19s linear infinite;
}
@keyframes fall-29 {
  70.117% {
    transform: translate(3.9836vw, 70.117vh) scale(0.4156);
  }
  to {
    transform: translate(3.19735vw, 100vh) scale(0.4156);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.9371;
  transform: translate(27.0104vw, -10px) scale(0.0755);
  animation: fall-30 28s -22s linear infinite;
}
@keyframes fall-30 {
  49.91% {
    transform: translate(22.3593vw, 49.91vh) scale(0.0755);
  }
  to {
    transform: translate(24.68485vw, 100vh) scale(0.0755);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.3875;
  transform: translate(0.5716vw, -10px) scale(0.9653);
  animation: fall-31 29s -29s linear infinite;
}
@keyframes fall-31 {
  50.392% {
    transform: translate(7.1334vw, 50.392vh) scale(0.9653);
  }
  to {
    transform: translate(3.8525vw, 100vh) scale(0.9653);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.0726;
  transform: translate(69.8713vw, -10px) scale(0.5958);
  animation: fall-32 19s -7s linear infinite;
}
@keyframes fall-32 {
  32.17% {
    transform: translate(60.8333vw, 32.17vh) scale(0.5958);
  }
  to {
    transform: translate(65.3523vw, 100vh) scale(0.5958);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.3555;
  transform: translate(75.1008vw, -10px) scale(0.1265);
  animation: fall-33 10s -30s linear infinite;
}
@keyframes fall-33 {
  60.078% {
    transform: translate(81.4127vw, 60.078vh) scale(0.1265);
  }
  to {
    transform: translate(78.25675vw, 100vh) scale(0.1265);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.0058;
  transform: translate(89.6432vw, -10px) scale(0.7149);
  animation: fall-34 24s -30s linear infinite;
}
@keyframes fall-34 {
  62.648% {
    transform: translate(80.0492vw, 62.648vh) scale(0.7149);
  }
  to {
    transform: translate(84.8462vw, 100vh) scale(0.7149);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.7634;
  transform: translate(10.3869vw, -10px) scale(0.146);
  animation: fall-35 27s -20s linear infinite;
}
@keyframes fall-35 {
  77.142% {
    transform: translate(15.9671vw, 77.142vh) scale(0.146);
  }
  to {
    transform: translate(13.177vw, 100vh) scale(0.146);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.1645;
  transform: translate(52.6511vw, -10px) scale(0.5604);
  animation: fall-36 19s -26s linear infinite;
}
@keyframes fall-36 {
  47.601% {
    transform: translate(53.1841vw, 47.601vh) scale(0.5604);
  }
  to {
    transform: translate(52.9176vw, 100vh) scale(0.5604);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.633;
  transform: translate(8.9607vw, -10px) scale(0.2706);
  animation: fall-37 22s -7s linear infinite;
}
@keyframes fall-37 {
  48.797% {
    transform: translate(0.5152vw, 48.797vh) scale(0.2706);
  }
  to {
    transform: translate(4.73795vw, 100vh) scale(0.2706);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.9556;
  transform: translate(88.8177vw, -10px) scale(0.0052);
  animation: fall-38 24s -14s linear infinite;
}
@keyframes fall-38 {
  66.26% {
    transform: translate(93.1127vw, 66.26vh) scale(0.0052);
  }
  to {
    transform: translate(90.9652vw, 100vh) scale(0.0052);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.6214;
  transform: translate(47.239vw, -10px) scale(0.7098);
  animation: fall-39 14s -2s linear infinite;
}
@keyframes fall-39 {
  75.429% {
    transform: translate(39.7774vw, 75.429vh) scale(0.7098);
  }
  to {
    transform: translate(43.5082vw, 100vh) scale(0.7098);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.0129;
  transform: translate(95.8881vw, -10px) scale(0.8407);
  animation: fall-40 29s -29s linear infinite;
}
@keyframes fall-40 {
  71.839% {
    transform: translate(101.4713vw, 71.839vh) scale(0.8407);
  }
  to {
    transform: translate(98.6797vw, 100vh) scale(0.8407);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.0308;
  transform: translate(43.3721vw, -10px) scale(0.2779);
  animation: fall-41 18s -14s linear infinite;
}
@keyframes fall-41 {
  61.453% {
    transform: translate(37.4312vw, 61.453vh) scale(0.2779);
  }
  to {
    transform: translate(40.40165vw, 100vh) scale(0.2779);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.2022;
  transform: translate(89.1883vw, -10px) scale(0.5225);
  animation: fall-42 21s -13s linear infinite;
}
@keyframes fall-42 {
  54.934% {
    transform: translate(97.147vw, 54.934vh) scale(0.5225);
  }
  to {
    transform: translate(93.16765vw, 100vh) scale(0.5225);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.9533;
  transform: translate(56.483vw, -10px) scale(0.0426);
  animation: fall-43 19s -10s linear infinite;
}
@keyframes fall-43 {
  50.274% {
    transform: translate(48.2278vw, 50.274vh) scale(0.0426);
  }
  to {
    transform: translate(52.3554vw, 100vh) scale(0.0426);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.4724;
  transform: translate(95.3102vw, -10px) scale(0.2928);
  animation: fall-44 29s -28s linear infinite;
}
@keyframes fall-44 {
  40.777% {
    transform: translate(99.2952vw, 40.777vh) scale(0.2928);
  }
  to {
    transform: translate(97.3027vw, 100vh) scale(0.2928);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.3091;
  transform: translate(64.961vw, -10px) scale(0.1521);
  animation: fall-45 12s -2s linear infinite;
}
@keyframes fall-45 {
  65.657% {
    transform: translate(63.5149vw, 65.657vh) scale(0.1521);
  }
  to {
    transform: translate(64.23795vw, 100vh) scale(0.1521);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.1989;
  transform: translate(71.4398vw, -10px) scale(0.8996);
  animation: fall-46 13s -30s linear infinite;
}
@keyframes fall-46 {
  51.755% {
    transform: translate(77.6857vw, 51.755vh) scale(0.8996);
  }
  to {
    transform: translate(74.56275vw, 100vh) scale(0.8996);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.5414;
  transform: translate(99.8091vw, -10px) scale(0.8568);
  animation: fall-47 27s -30s linear infinite;
}
@keyframes fall-47 {
  43% {
    transform: translate(102.9115vw, 43vh) scale(0.8568);
  }
  to {
    transform: translate(101.3603vw, 100vh) scale(0.8568);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.6304;
  transform: translate(78.1718vw, -10px) scale(0.8428);
  animation: fall-48 27s -5s linear infinite;
}
@keyframes fall-48 {
  34.879% {
    transform: translate(70.215vw, 34.879vh) scale(0.8428);
  }
  to {
    transform: translate(74.1934vw, 100vh) scale(0.8428);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.0601;
  transform: translate(31.4018vw, -10px) scale(0.1448);
  animation: fall-49 16s -5s linear infinite;
}
@keyframes fall-49 {
  63.763% {
    transform: translate(38.2261vw, 63.763vh) scale(0.1448);
  }
  to {
    transform: translate(34.81395vw, 100vh) scale(0.1448);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.3463;
  transform: translate(0.6046vw, -10px) scale(0.0866);
  animation: fall-50 18s -13s linear infinite;
}
@keyframes fall-50 {
  40.591% {
    transform: translate(9.5707vw, 40.591vh) scale(0.0866);
  }
  to {
    transform: translate(5.08765vw, 100vh) scale(0.0866);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.6841;
  transform: translate(48.3248vw, -10px) scale(0.8191);
  animation: fall-51 24s -9s linear infinite;
}
@keyframes fall-51 {
  35.324% {
    transform: translate(46.2845vw, 35.324vh) scale(0.8191);
  }
  to {
    transform: translate(47.30465vw, 100vh) scale(0.8191);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.6007;
  transform: translate(27.7189vw, -10px) scale(0.0298);
  animation: fall-52 15s -14s linear infinite;
}
@keyframes fall-52 {
  72.639% {
    transform: translate(32.1761vw, 72.639vh) scale(0.0298);
  }
  to {
    transform: translate(29.9475vw, 100vh) scale(0.0298);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.8081;
  transform: translate(34.2455vw, -10px) scale(0.7943);
  animation: fall-53 19s -8s linear infinite;
}
@keyframes fall-53 {
  76.599% {
    transform: translate(33.4864vw, 76.599vh) scale(0.7943);
  }
  to {
    transform: translate(33.86595vw, 100vh) scale(0.7943);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.8616;
  transform: translate(93.9575vw, -10px) scale(0.7705);
  animation: fall-54 24s -25s linear infinite;
}
@keyframes fall-54 {
  62.452% {
    transform: translate(91.5979vw, 62.452vh) scale(0.7705);
  }
  to {
    transform: translate(92.7777vw, 100vh) scale(0.7705);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.5981;
  transform: translate(64.1782vw, -10px) scale(0.4671);
  animation: fall-55 16s -24s linear infinite;
}
@keyframes fall-55 {
  49.291% {
    transform: translate(70.4546vw, 49.291vh) scale(0.4671);
  }
  to {
    transform: translate(67.3164vw, 100vh) scale(0.4671);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.2616;
  transform: translate(93.4099vw, -10px) scale(0.5432);
  animation: fall-56 25s -15s linear infinite;
}
@keyframes fall-56 {
  54.517% {
    transform: translate(91.7344vw, 54.517vh) scale(0.5432);
  }
  to {
    transform: translate(92.57215vw, 100vh) scale(0.5432);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.6248;
  transform: translate(56.3011vw, -10px) scale(0.6713);
  animation: fall-57 19s -2s linear infinite;
}
@keyframes fall-57 {
  75.834% {
    transform: translate(50.579vw, 75.834vh) scale(0.6713);
  }
  to {
    transform: translate(53.44005vw, 100vh) scale(0.6713);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.2277;
  transform: translate(66.7189vw, -10px) scale(0.8195);
  animation: fall-58 27s -21s linear infinite;
}
@keyframes fall-58 {
  57.282% {
    transform: translate(57.0029vw, 57.282vh) scale(0.8195);
  }
  to {
    transform: translate(61.8609vw, 100vh) scale(0.8195);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.0796;
  transform: translate(66.864vw, -10px) scale(0.3155);
  animation: fall-59 18s -11s linear infinite;
}
@keyframes fall-59 {
  35.879% {
    transform: translate(68.3403vw, 35.879vh) scale(0.3155);
  }
  to {
    transform: translate(67.60215vw, 100vh) scale(0.3155);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.6;
  transform: translate(40.3925vw, -10px) scale(0.075);
  animation: fall-60 27s -25s linear infinite;
}
@keyframes fall-60 {
  61.084% {
    transform: translate(36.9665vw, 61.084vh) scale(0.075);
  }
  to {
    transform: translate(38.6795vw, 100vh) scale(0.075);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.2444;
  transform: translate(21.4771vw, -10px) scale(0.5857);
  animation: fall-61 18s -22s linear infinite;
}
@keyframes fall-61 {
  53.125% {
    transform: translate(26.1441vw, 53.125vh) scale(0.5857);
  }
  to {
    transform: translate(23.8106vw, 100vh) scale(0.5857);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.8786;
  transform: translate(38.2035vw, -10px) scale(0.6574);
  animation: fall-62 22s -10s linear infinite;
}
@keyframes fall-62 {
  53.618% {
    transform: translate(41.7161vw, 53.618vh) scale(0.6574);
  }
  to {
    transform: translate(39.9598vw, 100vh) scale(0.6574);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.3829;
  transform: translate(60.8571vw, -10px) scale(0.9909);
  animation: fall-63 17s -23s linear infinite;
}
@keyframes fall-63 {
  37.523% {
    transform: translate(62.0682vw, 37.523vh) scale(0.9909);
  }
  to {
    transform: translate(61.46265vw, 100vh) scale(0.9909);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.0943;
  transform: translate(50.8716vw, -10px) scale(0.7853);
  animation: fall-64 28s -19s linear infinite;
}
@keyframes fall-64 {
  34.744% {
    transform: translate(40.9929vw, 34.744vh) scale(0.7853);
  }
  to {
    transform: translate(45.93225vw, 100vh) scale(0.7853);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.8917;
  transform: translate(43.8446vw, -10px) scale(0.9227);
  animation: fall-65 24s -11s linear infinite;
}
@keyframes fall-65 {
  35.221% {
    transform: translate(47.5927vw, 35.221vh) scale(0.9227);
  }
  to {
    transform: translate(45.71865vw, 100vh) scale(0.9227);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.8578;
  transform: translate(25.2693vw, -10px) scale(0.8964);
  animation: fall-66 24s -15s linear infinite;
}
@keyframes fall-66 {
  50.748% {
    transform: translate(18.8348vw, 50.748vh) scale(0.8964);
  }
  to {
    transform: translate(22.05205vw, 100vh) scale(0.8964);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.6581;
  transform: translate(60.5725vw, -10px) scale(0.1241);
  animation: fall-67 19s -11s linear infinite;
}
@keyframes fall-67 {
  46.868% {
    transform: translate(58.3666vw, 46.868vh) scale(0.1241);
  }
  to {
    transform: translate(59.46955vw, 100vh) scale(0.1241);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.2687;
  transform: translate(30.2222vw, -10px) scale(0.3935);
  animation: fall-68 13s -21s linear infinite;
}
@keyframes fall-68 {
  57.076% {
    transform: translate(31.9005vw, 57.076vh) scale(0.3935);
  }
  to {
    transform: translate(31.06135vw, 100vh) scale(0.3935);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.4125;
  transform: translate(94.7675vw, -10px) scale(0.3344);
  animation: fall-69 28s -29s linear infinite;
}
@keyframes fall-69 {
  79.985% {
    transform: translate(98.5338vw, 79.985vh) scale(0.3344);
  }
  to {
    transform: translate(96.65065vw, 100vh) scale(0.3344);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.7768;
  transform: translate(0.0323vw, -10px) scale(0.92);
  animation: fall-70 25s -1s linear infinite;
}
@keyframes fall-70 {
  56.088% {
    transform: translate(-9.2856vw, 56.088vh) scale(0.92);
  }
  to {
    transform: translate(-4.62665vw, 100vh) scale(0.92);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.638;
  transform: translate(59.7921vw, -10px) scale(0.4361);
  animation: fall-71 16s -7s linear infinite;
}
@keyframes fall-71 {
  41.657% {
    transform: translate(64.851vw, 41.657vh) scale(0.4361);
  }
  to {
    transform: translate(62.32155vw, 100vh) scale(0.4361);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.7825;
  transform: translate(35.8548vw, -10px) scale(0.0665);
  animation: fall-72 21s -18s linear infinite;
}
@keyframes fall-72 {
  58.483% {
    transform: translate(29.8797vw, 58.483vh) scale(0.0665);
  }
  to {
    transform: translate(32.86725vw, 100vh) scale(0.0665);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.6093;
  transform: translate(13.7055vw, -10px) scale(0.6299);
  animation: fall-73 21s -21s linear infinite;
}
@keyframes fall-73 {
  75.108% {
    transform: translate(8.9156vw, 75.108vh) scale(0.6299);
  }
  to {
    transform: translate(11.31055vw, 100vh) scale(0.6299);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.9924;
  transform: translate(7.5504vw, -10px) scale(0.7233);
  animation: fall-74 10s -20s linear infinite;
}
@keyframes fall-74 {
  72.089% {
    transform: translate(9.5317vw, 72.089vh) scale(0.7233);
  }
  to {
    transform: translate(8.54105vw, 100vh) scale(0.7233);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.6424;
  transform: translate(25.676vw, -10px) scale(0.5151);
  animation: fall-75 18s -8s linear infinite;
}
@keyframes fall-75 {
  57.379% {
    transform: translate(34.1834vw, 57.379vh) scale(0.5151);
  }
  to {
    transform: translate(29.9297vw, 100vh) scale(0.5151);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.8876;
  transform: translate(33.5236vw, -10px) scale(0.1423);
  animation: fall-76 16s -29s linear infinite;
}
@keyframes fall-76 {
  39.558% {
    transform: translate(29.2306vw, 39.558vh) scale(0.1423);
  }
  to {
    transform: translate(31.3771vw, 100vh) scale(0.1423);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.2407;
  transform: translate(42.3536vw, -10px) scale(0.75);
  animation: fall-77 25s -29s linear infinite;
}
@keyframes fall-77 {
  38.875% {
    transform: translate(43.6317vw, 38.875vh) scale(0.75);
  }
  to {
    transform: translate(42.99265vw, 100vh) scale(0.75);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.0769;
  transform: translate(18.5029vw, -10px) scale(0.2514);
  animation: fall-78 19s -20s linear infinite;
}
@keyframes fall-78 {
  44.982% {
    transform: translate(19.6486vw, 44.982vh) scale(0.2514);
  }
  to {
    transform: translate(19.07575vw, 100vh) scale(0.2514);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.5143;
  transform: translate(15.2027vw, -10px) scale(0.6249);
  animation: fall-79 27s -22s linear infinite;
}
@keyframes fall-79 {
  32.462% {
    transform: translate(20.6437vw, 32.462vh) scale(0.6249);
  }
  to {
    transform: translate(17.9232vw, 100vh) scale(0.6249);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.3619;
  transform: translate(38.334vw, -10px) scale(0.4804);
  animation: fall-80 25s -30s linear infinite;
}
@keyframes fall-80 {
  61.29% {
    transform: translate(35.58vw, 61.29vh) scale(0.4804);
  }
  to {
    transform: translate(36.957vw, 100vh) scale(0.4804);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.2846;
  transform: translate(26.0799vw, -10px) scale(0.2212);
  animation: fall-81 19s -16s linear infinite;
}
@keyframes fall-81 {
  56.14% {
    transform: translate(21.3693vw, 56.14vh) scale(0.2212);
  }
  to {
    transform: translate(23.7246vw, 100vh) scale(0.2212);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.8282;
  transform: translate(87.6345vw, -10px) scale(0.1315);
  animation: fall-82 30s -24s linear infinite;
}
@keyframes fall-82 {
  30.487% {
    transform: translate(96.0545vw, 30.487vh) scale(0.1315);
  }
  to {
    transform: translate(91.8445vw, 100vh) scale(0.1315);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.1441;
  transform: translate(89.7588vw, -10px) scale(0.0498);
  animation: fall-83 18s -19s linear infinite;
}
@keyframes fall-83 {
  44.431% {
    transform: translate(84.6044vw, 44.431vh) scale(0.0498);
  }
  to {
    transform: translate(87.1816vw, 100vh) scale(0.0498);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.5618;
  transform: translate(94.1663vw, -10px) scale(0.1629);
  animation: fall-84 14s -21s linear infinite;
}
@keyframes fall-84 {
  63.445% {
    transform: translate(93.1955vw, 63.445vh) scale(0.1629);
  }
  to {
    transform: translate(93.6809vw, 100vh) scale(0.1629);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.6519;
  transform: translate(6.0306vw, -10px) scale(0.2142);
  animation: fall-85 26s -16s linear infinite;
}
@keyframes fall-85 {
  63.001% {
    transform: translate(9.1711vw, 63.001vh) scale(0.2142);
  }
  to {
    transform: translate(7.60085vw, 100vh) scale(0.2142);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.443;
  transform: translate(18.7056vw, -10px) scale(0.4597);
  animation: fall-86 12s -13s linear infinite;
}
@keyframes fall-86 {
  65.207% {
    transform: translate(22.3457vw, 65.207vh) scale(0.4597);
  }
  to {
    transform: translate(20.52565vw, 100vh) scale(0.4597);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.2;
  transform: translate(61.5357vw, -10px) scale(0.8451);
  animation: fall-87 24s -15s linear infinite;
}
@keyframes fall-87 {
  57.879% {
    transform: translate(53.9391vw, 57.879vh) scale(0.8451);
  }
  to {
    transform: translate(57.7374vw, 100vh) scale(0.8451);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.4037;
  transform: translate(74.5877vw, -10px) scale(0.3355);
  animation: fall-88 15s -7s linear infinite;
}
@keyframes fall-88 {
  30.979% {
    transform: translate(73.0838vw, 30.979vh) scale(0.3355);
  }
  to {
    transform: translate(73.83575vw, 100vh) scale(0.3355);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.8198;
  transform: translate(27.2883vw, -10px) scale(0.0104);
  animation: fall-89 23s -19s linear infinite;
}
@keyframes fall-89 {
  38.552% {
    transform: translate(26.7783vw, 38.552vh) scale(0.0104);
  }
  to {
    transform: translate(27.0333vw, 100vh) scale(0.0104);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.6435;
  transform: translate(80.1733vw, -10px) scale(0.1573);
  animation: fall-90 13s -7s linear infinite;
}
@keyframes fall-90 {
  54.393% {
    transform: translate(72.115vw, 54.393vh) scale(0.1573);
  }
  to {
    transform: translate(76.14415vw, 100vh) scale(0.1573);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.7788;
  transform: translate(8.9508vw, -10px) scale(0.7542);
  animation: fall-91 22s -11s linear infinite;
}
@keyframes fall-91 {
  70.988% {
    transform: translate(7.0934vw, 70.988vh) scale(0.7542);
  }
  to {
    transform: translate(8.0221vw, 100vh) scale(0.7542);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.0076;
  transform: translate(11.7608vw, -10px) scale(0.5177);
  animation: fall-92 17s -27s linear infinite;
}
@keyframes fall-92 {
  76.861% {
    transform: translate(11.3742vw, 76.861vh) scale(0.5177);
  }
  to {
    transform: translate(11.5675vw, 100vh) scale(0.5177);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.9584;
  transform: translate(5.6975vw, -10px) scale(0.37);
  animation: fall-93 27s -11s linear infinite;
}
@keyframes fall-93 {
  72.371% {
    transform: translate(7.3262vw, 72.371vh) scale(0.37);
  }
  to {
    transform: translate(6.51185vw, 100vh) scale(0.37);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.2715;
  transform: translate(12.187vw, -10px) scale(0.3149);
  animation: fall-94 10s -19s linear infinite;
}
@keyframes fall-94 {
  68.288% {
    transform: translate(19.1931vw, 68.288vh) scale(0.3149);
  }
  to {
    transform: translate(15.69005vw, 100vh) scale(0.3149);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.4937;
  transform: translate(7.0053vw, -10px) scale(0.6859);
  animation: fall-95 28s -17s linear infinite;
}
@keyframes fall-95 {
  34.435% {
    transform: translate(16.2673vw, 34.435vh) scale(0.6859);
  }
  to {
    transform: translate(11.6363vw, 100vh) scale(0.6859);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.9026;
  transform: translate(36.0703vw, -10px) scale(0.6765);
  animation: fall-96 20s -15s linear infinite;
}
@keyframes fall-96 {
  57.035% {
    transform: translate(37.2682vw, 57.035vh) scale(0.6765);
  }
  to {
    transform: translate(36.66925vw, 100vh) scale(0.6765);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.2435;
  transform: translate(29.4963vw, -10px) scale(0.1543);
  animation: fall-97 11s -22s linear infinite;
}
@keyframes fall-97 {
  42.076% {
    transform: translate(28.4608vw, 42.076vh) scale(0.1543);
  }
  to {
    transform: translate(28.97855vw, 100vh) scale(0.1543);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.0826;
  transform: translate(33.6479vw, -10px) scale(0.2163);
  animation: fall-98 23s -28s linear infinite;
}
@keyframes fall-98 {
  41.357% {
    transform: translate(27.485vw, 41.357vh) scale(0.2163);
  }
  to {
    transform: translate(30.56645vw, 100vh) scale(0.2163);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.3975;
  transform: translate(30.8915vw, -10px) scale(0.2761);
  animation: fall-99 10s -24s linear infinite;
}
@keyframes fall-99 {
  51.166% {
    transform: translate(34.2009vw, 51.166vh) scale(0.2761);
  }
  to {
    transform: translate(32.5462vw, 100vh) scale(0.2761);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.9691;
  transform: translate(12.4794vw, -10px) scale(0.6069);
  animation: fall-100 15s -4s linear infinite;
}
@keyframes fall-100 {
  60.409% {
    transform: translate(7.6675vw, 60.409vh) scale(0.6069);
  }
  to {
    transform: translate(10.07345vw, 100vh) scale(0.6069);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.1115;
  transform: translate(62.9961vw, -10px) scale(0.0621);
  animation: fall-101 29s -30s linear infinite;
}
@keyframes fall-101 {
  75.425% {
    transform: translate(71.1109vw, 75.425vh) scale(0.0621);
  }
  to {
    transform: translate(67.0535vw, 100vh) scale(0.0621);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.8205;
  transform: translate(43.9935vw, -10px) scale(0.6795);
  animation: fall-102 10s -3s linear infinite;
}
@keyframes fall-102 {
  51.488% {
    transform: translate(38.4963vw, 51.488vh) scale(0.6795);
  }
  to {
    transform: translate(41.2449vw, 100vh) scale(0.6795);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.196;
  transform: translate(38.2565vw, -10px) scale(0.5087);
  animation: fall-103 17s -5s linear infinite;
}
@keyframes fall-103 {
  61.524% {
    transform: translate(38.6564vw, 61.524vh) scale(0.5087);
  }
  to {
    transform: translate(38.45645vw, 100vh) scale(0.5087);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.7624;
  transform: translate(44.025vw, -10px) scale(0.0451);
  animation: fall-104 19s -21s linear infinite;
}
@keyframes fall-104 {
  45.029% {
    transform: translate(39.3045vw, 45.029vh) scale(0.0451);
  }
  to {
    transform: translate(41.66475vw, 100vh) scale(0.0451);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.8785;
  transform: translate(66.8077vw, -10px) scale(0.4077);
  animation: fall-105 16s -9s linear infinite;
}
@keyframes fall-105 {
  50.852% {
    transform: translate(74.9369vw, 50.852vh) scale(0.4077);
  }
  to {
    transform: translate(70.8723vw, 100vh) scale(0.4077);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.8776;
  transform: translate(8.4923vw, -10px) scale(0.1967);
  animation: fall-106 24s -25s linear infinite;
}
@keyframes fall-106 {
  34.07% {
    transform: translate(11.9876vw, 34.07vh) scale(0.1967);
  }
  to {
    transform: translate(10.23995vw, 100vh) scale(0.1967);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.182;
  transform: translate(77.6438vw, -10px) scale(0.1993);
  animation: fall-107 19s -20s linear infinite;
}
@keyframes fall-107 {
  69.022% {
    transform: translate(81.8201vw, 69.022vh) scale(0.1993);
  }
  to {
    transform: translate(79.73195vw, 100vh) scale(0.1993);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.3482;
  transform: translate(70.0838vw, -10px) scale(0.7273);
  animation: fall-108 22s -2s linear infinite;
}
@keyframes fall-108 {
  59.315% {
    transform: translate(67.7636vw, 59.315vh) scale(0.7273);
  }
  to {
    transform: translate(68.9237vw, 100vh) scale(0.7273);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.891;
  transform: translate(29.9923vw, -10px) scale(0.6039);
  animation: fall-109 23s -10s linear infinite;
}
@keyframes fall-109 {
  70.522% {
    transform: translate(24.9814vw, 70.522vh) scale(0.6039);
  }
  to {
    transform: translate(27.48685vw, 100vh) scale(0.6039);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.7031;
  transform: translate(10.8309vw, -10px) scale(0.9766);
  animation: fall-110 20s -18s linear infinite;
}
@keyframes fall-110 {
  54.678% {
    transform: translate(19.0856vw, 54.678vh) scale(0.9766);
  }
  to {
    transform: translate(14.95825vw, 100vh) scale(0.9766);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.8216;
  transform: translate(98.57vw, -10px) scale(0.6564);
  animation: fall-111 25s -2s linear infinite;
}
@keyframes fall-111 {
  47.735% {
    transform: translate(106.9932vw, 47.735vh) scale(0.6564);
  }
  to {
    transform: translate(102.7816vw, 100vh) scale(0.6564);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.8692;
  transform: translate(22.3423vw, -10px) scale(0.452);
  animation: fall-112 12s -15s linear infinite;
}
@keyframes fall-112 {
  44.594% {
    transform: translate(30.0856vw, 44.594vh) scale(0.452);
  }
  to {
    transform: translate(26.21395vw, 100vh) scale(0.452);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.3598;
  transform: translate(29.0263vw, -10px) scale(0.2985);
  animation: fall-113 26s -1s linear infinite;
}
@keyframes fall-113 {
  52.969% {
    transform: translate(30.7031vw, 52.969vh) scale(0.2985);
  }
  to {
    transform: translate(29.8647vw, 100vh) scale(0.2985);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.0599;
  transform: translate(98.3139vw, -10px) scale(0.4759);
  animation: fall-114 11s -13s linear infinite;
}
@keyframes fall-114 {
  40.387% {
    transform: translate(107.4599vw, 40.387vh) scale(0.4759);
  }
  to {
    transform: translate(102.8869vw, 100vh) scale(0.4759);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.507;
  transform: translate(98.0138vw, -10px) scale(0.5315);
  animation: fall-115 10s -12s linear infinite;
}
@keyframes fall-115 {
  69.226% {
    transform: translate(88.2018vw, 69.226vh) scale(0.5315);
  }
  to {
    transform: translate(93.1078vw, 100vh) scale(0.5315);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.8895;
  transform: translate(27.2855vw, -10px) scale(0.1494);
  animation: fall-116 18s -16s linear infinite;
}
@keyframes fall-116 {
  54.22% {
    transform: translate(36.302vw, 54.22vh) scale(0.1494);
  }
  to {
    transform: translate(31.79375vw, 100vh) scale(0.1494);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.9664;
  transform: translate(53.4622vw, -10px) scale(0.2822);
  animation: fall-117 24s -1s linear infinite;
}
@keyframes fall-117 {
  41.211% {
    transform: translate(50.014vw, 41.211vh) scale(0.2822);
  }
  to {
    transform: translate(51.7381vw, 100vh) scale(0.2822);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.059;
  transform: translate(4.3903vw, -10px) scale(0.3514);
  animation: fall-118 14s -8s linear infinite;
}
@keyframes fall-118 {
  31.296% {
    transform: translate(-1.7261vw, 31.296vh) scale(0.3514);
  }
  to {
    transform: translate(1.3321vw, 100vh) scale(0.3514);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.2058;
  transform: translate(53.9434vw, -10px) scale(0.8252);
  animation: fall-119 12s -21s linear infinite;
}
@keyframes fall-119 {
  61.535% {
    transform: translate(48.9933vw, 61.535vh) scale(0.8252);
  }
  to {
    transform: translate(51.46835vw, 100vh) scale(0.8252);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.0981;
  transform: translate(15.0306vw, -10px) scale(0.0607);
  animation: fall-120 21s -22s linear infinite;
}
@keyframes fall-120 {
  41.18% {
    transform: translate(10.9014vw, 41.18vh) scale(0.0607);
  }
  to {
    transform: translate(12.966vw, 100vh) scale(0.0607);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.8165;
  transform: translate(90.25vw, -10px) scale(0.7091);
  animation: fall-121 15s -5s linear infinite;
}
@keyframes fall-121 {
  73.132% {
    transform: translate(88.6298vw, 73.132vh) scale(0.7091);
  }
  to {
    transform: translate(89.4399vw, 100vh) scale(0.7091);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.2453;
  transform: translate(1.2936vw, -10px) scale(0.3283);
  animation: fall-122 26s -20s linear infinite;
}
@keyframes fall-122 {
  71.646% {
    transform: translate(0.172vw, 71.646vh) scale(0.3283);
  }
  to {
    transform: translate(0.7328vw, 100vh) scale(0.3283);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.5268;
  transform: translate(35.1169vw, -10px) scale(0.1896);
  animation: fall-123 26s -29s linear infinite;
}
@keyframes fall-123 {
  48.127% {
    transform: translate(34.3632vw, 48.127vh) scale(0.1896);
  }
  to {
    transform: translate(34.74005vw, 100vh) scale(0.1896);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.4929;
  transform: translate(51.6201vw, -10px) scale(0.0518);
  animation: fall-124 12s -28s linear infinite;
}
@keyframes fall-124 {
  65.091% {
    transform: translate(60.5931vw, 65.091vh) scale(0.0518);
  }
  to {
    transform: translate(56.1066vw, 100vh) scale(0.0518);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.5946;
  transform: translate(29.7241vw, -10px) scale(0.9128);
  animation: fall-125 10s -24s linear infinite;
}
@keyframes fall-125 {
  55.744% {
    transform: translate(23.8069vw, 55.744vh) scale(0.9128);
  }
  to {
    transform: translate(26.7655vw, 100vh) scale(0.9128);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.982;
  transform: translate(43.6796vw, -10px) scale(0.7745);
  animation: fall-126 30s -6s linear infinite;
}
@keyframes fall-126 {
  78.82% {
    transform: translate(47.4329vw, 78.82vh) scale(0.7745);
  }
  to {
    transform: translate(45.55625vw, 100vh) scale(0.7745);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.1028;
  transform: translate(35.8006vw, -10px) scale(0.1455);
  animation: fall-127 22s -14s linear infinite;
}
@keyframes fall-127 {
  35.616% {
    transform: translate(40.8839vw, 35.616vh) scale(0.1455);
  }
  to {
    transform: translate(38.34225vw, 100vh) scale(0.1455);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.2469;
  transform: translate(97.8718vw, -10px) scale(0.783);
  animation: fall-128 21s -12s linear infinite;
}
@keyframes fall-128 {
  31.521% {
    transform: translate(107.1328vw, 31.521vh) scale(0.783);
  }
  to {
    transform: translate(102.5023vw, 100vh) scale(0.783);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.4829;
  transform: translate(93.9933vw, -10px) scale(0.27);
  animation: fall-129 18s -1s linear infinite;
}
@keyframes fall-129 {
  42.128% {
    transform: translate(85.8617vw, 42.128vh) scale(0.27);
  }
  to {
    transform: translate(89.9275vw, 100vh) scale(0.27);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.5278;
  transform: translate(42.4065vw, -10px) scale(0.9107);
  animation: fall-130 21s -6s linear infinite;
}
@keyframes fall-130 {
  34.911% {
    transform: translate(36.4631vw, 34.911vh) scale(0.9107);
  }
  to {
    transform: translate(39.4348vw, 100vh) scale(0.9107);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.2644;
  transform: translate(41.0394vw, -10px) scale(0.0436);
  animation: fall-131 11s -9s linear infinite;
}
@keyframes fall-131 {
  78.829% {
    transform: translate(45.1103vw, 78.829vh) scale(0.0436);
  }
  to {
    transform: translate(43.07485vw, 100vh) scale(0.0436);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.2868;
  transform: translate(40.5681vw, -10px) scale(0.8971);
  animation: fall-132 28s -13s linear infinite;
}
@keyframes fall-132 {
  74.29% {
    transform: translate(50.2776vw, 74.29vh) scale(0.8971);
  }
  to {
    transform: translate(45.42285vw, 100vh) scale(0.8971);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.0995;
  transform: translate(97.2095vw, -10px) scale(0.5667);
  animation: fall-133 25s -4s linear infinite;
}
@keyframes fall-133 {
  76.155% {
    transform: translate(95.2279vw, 76.155vh) scale(0.5667);
  }
  to {
    transform: translate(96.2187vw, 100vh) scale(0.5667);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.1375;
  transform: translate(95.7222vw, -10px) scale(0.5752);
  animation: fall-134 23s -29s linear infinite;
}
@keyframes fall-134 {
  58.349% {
    transform: translate(95.522vw, 58.349vh) scale(0.5752);
  }
  to {
    transform: translate(95.6221vw, 100vh) scale(0.5752);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.7301;
  transform: translate(77.5372vw, -10px) scale(0.6623);
  animation: fall-135 14s -1s linear infinite;
}
@keyframes fall-135 {
  71.325% {
    transform: translate(78.8963vw, 71.325vh) scale(0.6623);
  }
  to {
    transform: translate(78.21675vw, 100vh) scale(0.6623);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.3111;
  transform: translate(43.7446vw, -10px) scale(0.3669);
  animation: fall-136 20s -24s linear infinite;
}
@keyframes fall-136 {
  78.873% {
    transform: translate(44.0903vw, 78.873vh) scale(0.3669);
  }
  to {
    transform: translate(43.91745vw, 100vh) scale(0.3669);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.6778;
  transform: translate(34.6799vw, -10px) scale(0.9612);
  animation: fall-137 12s -29s linear infinite;
}
@keyframes fall-137 {
  46.792% {
    transform: translate(39.7717vw, 46.792vh) scale(0.9612);
  }
  to {
    transform: translate(37.2258vw, 100vh) scale(0.9612);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.225;
  transform: translate(1.6433vw, -10px) scale(0.2314);
  animation: fall-138 28s -15s linear infinite;
}
@keyframes fall-138 {
  72.426% {
    transform: translate(-2.6541vw, 72.426vh) scale(0.2314);
  }
  to {
    transform: translate(-0.5054vw, 100vh) scale(0.2314);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.7116;
  transform: translate(10.8239vw, -10px) scale(0.5821);
  animation: fall-139 29s -7s linear infinite;
}
@keyframes fall-139 {
  72.012% {
    transform: translate(16.1614vw, 72.012vh) scale(0.5821);
  }
  to {
    transform: translate(13.49265vw, 100vh) scale(0.5821);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.9313;
  transform: translate(19.9282vw, -10px) scale(0.927);
  animation: fall-140 16s -24s linear infinite;
}
@keyframes fall-140 {
  47.528% {
    transform: translate(16.5684vw, 47.528vh) scale(0.927);
  }
  to {
    transform: translate(18.2483vw, 100vh) scale(0.927);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.2084;
  transform: translate(57.0587vw, -10px) scale(0.3292);
  animation: fall-141 23s -2s linear infinite;
}
@keyframes fall-141 {
  53.876% {
    transform: translate(47.7288vw, 53.876vh) scale(0.3292);
  }
  to {
    transform: translate(52.39375vw, 100vh) scale(0.3292);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.9936;
  transform: translate(23.2296vw, -10px) scale(0.728);
  animation: fall-142 21s -27s linear infinite;
}
@keyframes fall-142 {
  32.683% {
    transform: translate(31.4305vw, 32.683vh) scale(0.728);
  }
  to {
    transform: translate(27.33005vw, 100vh) scale(0.728);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.7915;
  transform: translate(11.8325vw, -10px) scale(0.6552);
  animation: fall-143 23s -10s linear infinite;
}
@keyframes fall-143 {
  54.912% {
    transform: translate(3.8104vw, 54.912vh) scale(0.6552);
  }
  to {
    transform: translate(7.82145vw, 100vh) scale(0.6552);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.0269;
  transform: translate(93.1544vw, -10px) scale(0.1334);
  animation: fall-144 20s -19s linear infinite;
}
@keyframes fall-144 {
  58.636% {
    transform: translate(90.9889vw, 58.636vh) scale(0.1334);
  }
  to {
    transform: translate(92.07165vw, 100vh) scale(0.1334);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.594;
  transform: translate(22.4535vw, -10px) scale(0.1568);
  animation: fall-145 27s -9s linear infinite;
}
@keyframes fall-145 {
  40.666% {
    transform: translate(20.089vw, 40.666vh) scale(0.1568);
  }
  to {
    transform: translate(21.27125vw, 100vh) scale(0.1568);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.754;
  transform: translate(91.5581vw, -10px) scale(0.4795);
  animation: fall-146 21s -4s linear infinite;
}
@keyframes fall-146 {
  46.971% {
    transform: translate(94.7908vw, 46.971vh) scale(0.4795);
  }
  to {
    transform: translate(93.17445vw, 100vh) scale(0.4795);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.3737;
  transform: translate(12.82vw, -10px) scale(0.3575);
  animation: fall-147 26s -15s linear infinite;
}
@keyframes fall-147 {
  30.461% {
    transform: translate(10.5381vw, 30.461vh) scale(0.3575);
  }
  to {
    transform: translate(11.67905vw, 100vh) scale(0.3575);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.3442;
  transform: translate(98.8786vw, -10px) scale(0.6527);
  animation: fall-148 11s -6s linear infinite;
}
@keyframes fall-148 {
  32.036% {
    transform: translate(98.1548vw, 32.036vh) scale(0.6527);
  }
  to {
    transform: translate(98.5167vw, 100vh) scale(0.6527);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.3506;
  transform: translate(72.5197vw, -10px) scale(0.5175);
  animation: fall-149 25s -14s linear infinite;
}
@keyframes fall-149 {
  36.604% {
    transform: translate(67.3879vw, 36.604vh) scale(0.5175);
  }
  to {
    transform: translate(69.9538vw, 100vh) scale(0.5175);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.16;
  transform: translate(0.3633vw, -10px) scale(0.8806);
  animation: fall-150 27s -11s linear infinite;
}
@keyframes fall-150 {
  61.448% {
    transform: translate(5.971vw, 61.448vh) scale(0.8806);
  }
  to {
    transform: translate(3.16715vw, 100vh) scale(0.8806);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.4202;
  transform: translate(83.9266vw, -10px) scale(0.1888);
  animation: fall-151 29s -19s linear infinite;
}
@keyframes fall-151 {
  50.21% {
    transform: translate(76.8541vw, 50.21vh) scale(0.1888);
  }
  to {
    transform: translate(80.39035vw, 100vh) scale(0.1888);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.1167;
  transform: translate(38.7804vw, -10px) scale(0.2927);
  animation: fall-152 13s -29s linear infinite;
}
@keyframes fall-152 {
  38.919% {
    transform: translate(39.0867vw, 38.919vh) scale(0.2927);
  }
  to {
    transform: translate(38.93355vw, 100vh) scale(0.2927);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.1378;
  transform: translate(67.7908vw, -10px) scale(0.0741);
  animation: fall-153 23s -4s linear infinite;
}
@keyframes fall-153 {
  75.166% {
    transform: translate(77.4817vw, 75.166vh) scale(0.0741);
  }
  to {
    transform: translate(72.63625vw, 100vh) scale(0.0741);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.184;
  transform: translate(63.618vw, -10px) scale(0.3233);
  animation: fall-154 26s -29s linear infinite;
}
@keyframes fall-154 {
  62.108% {
    transform: translate(67.539vw, 62.108vh) scale(0.3233);
  }
  to {
    transform: translate(65.5785vw, 100vh) scale(0.3233);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.9441;
  transform: translate(6.0295vw, -10px) scale(0.3397);
  animation: fall-155 24s -12s linear infinite;
}
@keyframes fall-155 {
  55.66% {
    transform: translate(0.6665vw, 55.66vh) scale(0.3397);
  }
  to {
    transform: translate(3.348vw, 100vh) scale(0.3397);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.4192;
  transform: translate(5.5948vw, -10px) scale(0.3364);
  animation: fall-156 22s -25s linear infinite;
}
@keyframes fall-156 {
  30.117% {
    transform: translate(5.4119vw, 30.117vh) scale(0.3364);
  }
  to {
    transform: translate(5.50335vw, 100vh) scale(0.3364);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.5071;
  transform: translate(24.4365vw, -10px) scale(0.6981);
  animation: fall-157 14s -18s linear infinite;
}
@keyframes fall-157 {
  71.361% {
    transform: translate(17.9044vw, 71.361vh) scale(0.6981);
  }
  to {
    transform: translate(21.17045vw, 100vh) scale(0.6981);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.1261;
  transform: translate(73.3633vw, -10px) scale(0.5365);
  animation: fall-158 21s -12s linear infinite;
}
@keyframes fall-158 {
  51.956% {
    transform: translate(78.5219vw, 51.956vh) scale(0.5365);
  }
  to {
    transform: translate(75.9426vw, 100vh) scale(0.5365);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.1284;
  transform: translate(17.6998vw, -10px) scale(0.3478);
  animation: fall-159 26s -26s linear infinite;
}
@keyframes fall-159 {
  40.032% {
    transform: translate(23.5495vw, 40.032vh) scale(0.3478);
  }
  to {
    transform: translate(20.62465vw, 100vh) scale(0.3478);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.3482;
  transform: translate(17.4163vw, -10px) scale(0.7871);
  animation: fall-160 24s -12s linear infinite;
}
@keyframes fall-160 {
  38.99% {
    transform: translate(10.2868vw, 38.99vh) scale(0.7871);
  }
  to {
    transform: translate(13.85155vw, 100vh) scale(0.7871);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.6266;
  transform: translate(52.3834vw, -10px) scale(0.9056);
  animation: fall-161 29s -30s linear infinite;
}
@keyframes fall-161 {
  68.002% {
    transform: translate(52.6719vw, 68.002vh) scale(0.9056);
  }
  to {
    transform: translate(52.52765vw, 100vh) scale(0.9056);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.8108;
  transform: translate(92.6041vw, -10px) scale(0.298);
  animation: fall-162 30s -6s linear infinite;
}
@keyframes fall-162 {
  52.824% {
    transform: translate(100.9447vw, 52.824vh) scale(0.298);
  }
  to {
    transform: translate(96.7744vw, 100vh) scale(0.298);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.5753;
  transform: translate(16.2973vw, -10px) scale(0.3197);
  animation: fall-163 27s -14s linear infinite;
}
@keyframes fall-163 {
  77.13% {
    transform: translate(13.0213vw, 77.13vh) scale(0.3197);
  }
  to {
    transform: translate(14.6593vw, 100vh) scale(0.3197);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.1531;
  transform: translate(36.2598vw, -10px) scale(0.4747);
  animation: fall-164 13s -9s linear infinite;
}
@keyframes fall-164 {
  48.775% {
    transform: translate(36.1504vw, 48.775vh) scale(0.4747);
  }
  to {
    transform: translate(36.2051vw, 100vh) scale(0.4747);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.1347;
  transform: translate(91.2821vw, -10px) scale(0.9387);
  animation: fall-165 26s -9s linear infinite;
}
@keyframes fall-165 {
  56.75% {
    transform: translate(97.0222vw, 56.75vh) scale(0.9387);
  }
  to {
    transform: translate(94.15215vw, 100vh) scale(0.9387);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.8094;
  transform: translate(70.0959vw, -10px) scale(0.9372);
  animation: fall-166 15s -25s linear infinite;
}
@keyframes fall-166 {
  73.221% {
    transform: translate(71.0835vw, 73.221vh) scale(0.9372);
  }
  to {
    transform: translate(70.5897vw, 100vh) scale(0.9372);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.4686;
  transform: translate(23.5649vw, -10px) scale(0.0955);
  animation: fall-167 10s -19s linear infinite;
}
@keyframes fall-167 {
  65.269% {
    transform: translate(19.2132vw, 65.269vh) scale(0.0955);
  }
  to {
    transform: translate(21.38905vw, 100vh) scale(0.0955);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.9936;
  transform: translate(44.1275vw, -10px) scale(0.5458);
  animation: fall-168 10s -4s linear infinite;
}
@keyframes fall-168 {
  46.702% {
    transform: translate(44.7141vw, 46.702vh) scale(0.5458);
  }
  to {
    transform: translate(44.4208vw, 100vh) scale(0.5458);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.6534;
  transform: translate(57.0994vw, -10px) scale(0.0041);
  animation: fall-169 23s -24s linear infinite;
}
@keyframes fall-169 {
  33.939% {
    transform: translate(51.6508vw, 33.939vh) scale(0.0041);
  }
  to {
    transform: translate(54.3751vw, 100vh) scale(0.0041);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.8986;
  transform: translate(8.1289vw, -10px) scale(0.4813);
  animation: fall-170 16s -1s linear infinite;
}
@keyframes fall-170 {
  78.699% {
    transform: translate(4.0651vw, 78.699vh) scale(0.4813);
  }
  to {
    transform: translate(6.097vw, 100vh) scale(0.4813);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.9655;
  transform: translate(56.3758vw, -10px) scale(0.1351);
  animation: fall-171 11s -12s linear infinite;
}
@keyframes fall-171 {
  45.01% {
    transform: translate(63.6671vw, 45.01vh) scale(0.1351);
  }
  to {
    transform: translate(60.02145vw, 100vh) scale(0.1351);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.1086;
  transform: translate(19.742vw, -10px) scale(0.0581);
  animation: fall-172 19s -16s linear infinite;
}
@keyframes fall-172 {
  69.76% {
    transform: translate(12.9758vw, 69.76vh) scale(0.0581);
  }
  to {
    transform: translate(16.3589vw, 100vh) scale(0.0581);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.1442;
  transform: translate(35.2659vw, -10px) scale(0.0109);
  animation: fall-173 29s -19s linear infinite;
}
@keyframes fall-173 {
  71.098% {
    transform: translate(31.402vw, 71.098vh) scale(0.0109);
  }
  to {
    transform: translate(33.33395vw, 100vh) scale(0.0109);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.7166;
  transform: translate(75.4085vw, -10px) scale(0.9559);
  animation: fall-174 11s -24s linear infinite;
}
@keyframes fall-174 {
  61.601% {
    transform: translate(71.6281vw, 61.601vh) scale(0.9559);
  }
  to {
    transform: translate(73.5183vw, 100vh) scale(0.9559);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.5939;
  transform: translate(40.5356vw, -10px) scale(0.7942);
  animation: fall-175 25s -4s linear infinite;
}
@keyframes fall-175 {
  39.711% {
    transform: translate(31.2461vw, 39.711vh) scale(0.7942);
  }
  to {
    transform: translate(35.89085vw, 100vh) scale(0.7942);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.3364;
  transform: translate(0.3329vw, -10px) scale(0.9347);
  animation: fall-176 25s -8s linear infinite;
}
@keyframes fall-176 {
  63.144% {
    transform: translate(9.2722vw, 63.144vh) scale(0.9347);
  }
  to {
    transform: translate(4.80255vw, 100vh) scale(0.9347);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.071;
  transform: translate(32.3305vw, -10px) scale(0.5063);
  animation: fall-177 18s -20s linear infinite;
}
@keyframes fall-177 {
  34.239% {
    transform: translate(30.2629vw, 34.239vh) scale(0.5063);
  }
  to {
    transform: translate(31.2967vw, 100vh) scale(0.5063);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.9131;
  transform: translate(70.7321vw, -10px) scale(0.0569);
  animation: fall-178 24s -20s linear infinite;
}
@keyframes fall-178 {
  53.987% {
    transform: translate(79.2498vw, 53.987vh) scale(0.0569);
  }
  to {
    transform: translate(74.99095vw, 100vh) scale(0.0569);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.5849;
  transform: translate(46.8198vw, -10px) scale(0.9324);
  animation: fall-179 18s -17s linear infinite;
}
@keyframes fall-179 {
  79.435% {
    transform: translate(53.6636vw, 79.435vh) scale(0.9324);
  }
  to {
    transform: translate(50.2417vw, 100vh) scale(0.9324);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.6482;
  transform: translate(5.2565vw, -10px) scale(0.1498);
  animation: fall-180 29s -26s linear infinite;
}
@keyframes fall-180 {
  50.068% {
    transform: translate(5.0432vw, 50.068vh) scale(0.1498);
  }
  to {
    transform: translate(5.14985vw, 100vh) scale(0.1498);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.5695;
  transform: translate(64.6094vw, -10px) scale(0.511);
  animation: fall-181 27s -23s linear infinite;
}
@keyframes fall-181 {
  55.727% {
    transform: translate(70.2427vw, 55.727vh) scale(0.511);
  }
  to {
    transform: translate(67.42605vw, 100vh) scale(0.511);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.8386;
  transform: translate(91.2768vw, -10px) scale(0.9936);
  animation: fall-182 22s -13s linear infinite;
}
@keyframes fall-182 {
  74.132% {
    transform: translate(88.123vw, 74.132vh) scale(0.9936);
  }
  to {
    transform: translate(89.6999vw, 100vh) scale(0.9936);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.9198;
  transform: translate(15.0474vw, -10px) scale(0.2239);
  animation: fall-183 24s -8s linear infinite;
}
@keyframes fall-183 {
  44.37% {
    transform: translate(5.7275vw, 44.37vh) scale(0.2239);
  }
  to {
    transform: translate(10.38745vw, 100vh) scale(0.2239);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.6936;
  transform: translate(63.8714vw, -10px) scale(0.7076);
  animation: fall-184 17s -18s linear infinite;
}
@keyframes fall-184 {
  38.467% {
    transform: translate(63.7082vw, 38.467vh) scale(0.7076);
  }
  to {
    transform: translate(63.7898vw, 100vh) scale(0.7076);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.2206;
  transform: translate(5.6452vw, -10px) scale(0.0231);
  animation: fall-185 22s -17s linear infinite;
}
@keyframes fall-185 {
  34.886% {
    transform: translate(1.8105vw, 34.886vh) scale(0.0231);
  }
  to {
    transform: translate(3.72785vw, 100vh) scale(0.0231);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.9322;
  transform: translate(32.9136vw, -10px) scale(0.5154);
  animation: fall-186 19s -15s linear infinite;
}
@keyframes fall-186 {
  34.277% {
    transform: translate(35.7392vw, 34.277vh) scale(0.5154);
  }
  to {
    transform: translate(34.3264vw, 100vh) scale(0.5154);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.0278;
  transform: translate(42.2841vw, -10px) scale(0.1895);
  animation: fall-187 12s -6s linear infinite;
}
@keyframes fall-187 {
  60.511% {
    transform: translate(41.481vw, 60.511vh) scale(0.1895);
  }
  to {
    transform: translate(41.88255vw, 100vh) scale(0.1895);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.7385;
  transform: translate(63.4811vw, -10px) scale(0.007);
  animation: fall-188 19s -28s linear infinite;
}
@keyframes fall-188 {
  35.818% {
    transform: translate(59.6808vw, 35.818vh) scale(0.007);
  }
  to {
    transform: translate(61.58095vw, 100vh) scale(0.007);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.2833;
  transform: translate(53.4155vw, -10px) scale(0.9997);
  animation: fall-189 22s -10s linear infinite;
}
@keyframes fall-189 {
  61.697% {
    transform: translate(63.2371vw, 61.697vh) scale(0.9997);
  }
  to {
    transform: translate(58.3263vw, 100vh) scale(0.9997);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.5374;
  transform: translate(52.141vw, -10px) scale(0.0325);
  animation: fall-190 18s -17s linear infinite;
}
@keyframes fall-190 {
  60.833% {
    transform: translate(45.4348vw, 60.833vh) scale(0.0325);
  }
  to {
    transform: translate(48.7879vw, 100vh) scale(0.0325);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.6795;
  transform: translate(61.3222vw, -10px) scale(0.5669);
  animation: fall-191 10s -13s linear infinite;
}
@keyframes fall-191 {
  58.271% {
    transform: translate(71.2975vw, 58.271vh) scale(0.5669);
  }
  to {
    transform: translate(66.30985vw, 100vh) scale(0.5669);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.2539;
  transform: translate(79.263vw, -10px) scale(0.3701);
  animation: fall-192 23s -17s linear infinite;
}
@keyframes fall-192 {
  36.692% {
    transform: translate(77.9554vw, 36.692vh) scale(0.3701);
  }
  to {
    transform: translate(78.6092vw, 100vh) scale(0.3701);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.768;
  transform: translate(95.6301vw, -10px) scale(0.186);
  animation: fall-193 23s -9s linear infinite;
}
@keyframes fall-193 {
  73.421% {
    transform: translate(94.4698vw, 73.421vh) scale(0.186);
  }
  to {
    transform: translate(95.04995vw, 100vh) scale(0.186);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.4441;
  transform: translate(66.0702vw, -10px) scale(0.842);
  animation: fall-194 29s -20s linear infinite;
}
@keyframes fall-194 {
  68.384% {
    transform: translate(61.2766vw, 68.384vh) scale(0.842);
  }
  to {
    transform: translate(63.6734vw, 100vh) scale(0.842);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.6256;
  transform: translate(5.6703vw, -10px) scale(0.9015);
  animation: fall-195 11s -15s linear infinite;
}
@keyframes fall-195 {
  32.142% {
    transform: translate(-1.0647vw, 32.142vh) scale(0.9015);
  }
  to {
    transform: translate(2.3028vw, 100vh) scale(0.9015);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.9791;
  transform: translate(64.3042vw, -10px) scale(0.5418);
  animation: fall-196 11s -24s linear infinite;
}
@keyframes fall-196 {
  45.365% {
    transform: translate(71.398vw, 45.365vh) scale(0.5418);
  }
  to {
    transform: translate(67.8511vw, 100vh) scale(0.5418);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.6008;
  transform: translate(58.728vw, -10px) scale(0.3321);
  animation: fall-197 10s -18s linear infinite;
}
@keyframes fall-197 {
  70.302% {
    transform: translate(64.5862vw, 70.302vh) scale(0.3321);
  }
  to {
    transform: translate(61.6571vw, 100vh) scale(0.3321);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.6211;
  transform: translate(69.109vw, -10px) scale(0.2714);
  animation: fall-198 22s -19s linear infinite;
}
@keyframes fall-198 {
  55.809% {
    transform: translate(73.3683vw, 55.809vh) scale(0.2714);
  }
  to {
    transform: translate(71.23865vw, 100vh) scale(0.2714);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.7791;
  transform: translate(38.1031vw, -10px) scale(0.3906);
  animation: fall-199 23s -15s linear infinite;
}
@keyframes fall-199 {
  71.319% {
    transform: translate(30.7491vw, 71.319vh) scale(0.3906);
  }
  to {
    transform: translate(34.4261vw, 100vh) scale(0.3906);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.3812;
  transform: translate(1.773vw, -10px) scale(0.5555);
  animation: fall-200 10s -14s linear infinite;
}
@keyframes fall-200 {
  49.531% {
    transform: translate(3.061vw, 49.531vh) scale(0.5555);
  }
  to {
    transform: translate(2.417vw, 100vh) scale(0.5555);
  }
}

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

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

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

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

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

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

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

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

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

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

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

.small-photo-topic {
  column-gap: 20vw;
}
.small-photo-topic .photo-topic__block {
  justify-content: center;
}

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

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

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

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

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

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

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