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

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

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

a:hover {
  text-decoration: none;
}

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

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

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

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

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

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

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

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

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  scroll-behavior: smooth;
  font-size: 14px !important;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  background: none;
}

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

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

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

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

.new-year-style .medium-modal-dialog__wrapper {
  overflow: hidden;
}
.new-year-style .medium-modal-dialog__wrapper .santa {
  display: block;
  position: absolute;
  height: 150px;
  right: -30px;
  bottom: -35px;
  transform: rotate(-10deg);
  animation: ease-out 1s santa;
}
@keyframes santa {
  from {
    right: -100px;
    bottom: -100px;
  }
  to {
    right: -30px;
    bottom: -35px;
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow {
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(1) {
  opacity: 0.2891;
  transform: translate(26.5488vw, -10px) scale(0.4992);
  animation: fall-1 14s -16s linear infinite;
}
@keyframes fall-1 {
  58.064% {
    transform: translate(27.1632vw, 58.064vh) scale(0.4992);
  }
  to {
    transform: translate(26.856vw, 100vh) scale(0.4992);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.1227;
  transform: translate(87.5778vw, -10px) scale(0.2653);
  animation: fall-2 26s -9s linear infinite;
}
@keyframes fall-2 {
  55.518% {
    transform: translate(87.0438vw, 55.518vh) scale(0.2653);
  }
  to {
    transform: translate(87.3108vw, 100vh) scale(0.2653);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.4281;
  transform: translate(5.1159vw, -10px) scale(0.4396);
  animation: fall-3 12s -16s linear infinite;
}
@keyframes fall-3 {
  64.394% {
    transform: translate(14.5225vw, 64.394vh) scale(0.4396);
  }
  to {
    transform: translate(9.8192vw, 100vh) scale(0.4396);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.024;
  transform: translate(12.7724vw, -10px) scale(0.1793);
  animation: fall-4 13s -27s linear infinite;
}
@keyframes fall-4 {
  74.024% {
    transform: translate(4.9284vw, 74.024vh) scale(0.1793);
  }
  to {
    transform: translate(8.8504vw, 100vh) scale(0.1793);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.2673;
  transform: translate(90.1855vw, -10px) scale(0.4047);
  animation: fall-5 30s -29s linear infinite;
}
@keyframes fall-5 {
  39.735% {
    transform: translate(95.3773vw, 39.735vh) scale(0.4047);
  }
  to {
    transform: translate(92.7814vw, 100vh) scale(0.4047);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.5954;
  transform: translate(63.6655vw, -10px) scale(0.2286);
  animation: fall-6 25s -8s linear infinite;
}
@keyframes fall-6 {
  59.976% {
    transform: translate(61.6572vw, 59.976vh) scale(0.2286);
  }
  to {
    transform: translate(62.66135vw, 100vh) scale(0.2286);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.8658;
  transform: translate(69.613vw, -10px) scale(0.3545);
  animation: fall-7 28s -1s linear infinite;
}
@keyframes fall-7 {
  58.68% {
    transform: translate(72.9464vw, 58.68vh) scale(0.3545);
  }
  to {
    transform: translate(71.2797vw, 100vh) scale(0.3545);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.4732;
  transform: translate(27.8575vw, -10px) scale(0.0505);
  animation: fall-8 22s -3s linear infinite;
}
@keyframes fall-8 {
  39.799% {
    transform: translate(31.0353vw, 39.799vh) scale(0.0505);
  }
  to {
    transform: translate(29.4464vw, 100vh) scale(0.0505);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.2533;
  transform: translate(42.323vw, -10px) scale(0.312);
  animation: fall-9 26s -3s linear infinite;
}
@keyframes fall-9 {
  46.178% {
    transform: translate(47.79vw, 46.178vh) scale(0.312);
  }
  to {
    transform: translate(45.0565vw, 100vh) scale(0.312);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.323;
  transform: translate(23.5299vw, -10px) scale(0.8604);
  animation: fall-10 29s -15s linear infinite;
}
@keyframes fall-10 {
  52.559% {
    transform: translate(25.091vw, 52.559vh) scale(0.8604);
  }
  to {
    transform: translate(24.31045vw, 100vh) scale(0.8604);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.6434;
  transform: translate(38.0611vw, -10px) scale(0.5564);
  animation: fall-11 30s -20s linear infinite;
}
@keyframes fall-11 {
  58.337% {
    transform: translate(45.9888vw, 58.337vh) scale(0.5564);
  }
  to {
    transform: translate(42.02495vw, 100vh) scale(0.5564);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.5326;
  transform: translate(21.0644vw, -10px) scale(0.6964);
  animation: fall-12 20s -16s linear infinite;
}
@keyframes fall-12 {
  69.763% {
    transform: translate(24.6777vw, 69.763vh) scale(0.6964);
  }
  to {
    transform: translate(22.87105vw, 100vh) scale(0.6964);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.0561;
  transform: translate(96.2343vw, -10px) scale(0.8042);
  animation: fall-13 12s -3s linear infinite;
}
@keyframes fall-13 {
  67.298% {
    transform: translate(90.2145vw, 67.298vh) scale(0.8042);
  }
  to {
    transform: translate(93.2244vw, 100vh) scale(0.8042);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.9445;
  transform: translate(69.1664vw, -10px) scale(0.6352);
  animation: fall-14 30s -17s linear infinite;
}
@keyframes fall-14 {
  55.955% {
    transform: translate(76.8438vw, 55.955vh) scale(0.6352);
  }
  to {
    transform: translate(73.0051vw, 100vh) scale(0.6352);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.3289;
  transform: translate(1.6468vw, -10px) scale(0.2278);
  animation: fall-15 11s -20s linear infinite;
}
@keyframes fall-15 {
  43.102% {
    transform: translate(-4.9814vw, 43.102vh) scale(0.2278);
  }
  to {
    transform: translate(-1.6673vw, 100vh) scale(0.2278);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.6614;
  transform: translate(50.3205vw, -10px) scale(0.1594);
  animation: fall-16 22s -10s linear infinite;
}
@keyframes fall-16 {
  44.801% {
    transform: translate(58.6238vw, 44.801vh) scale(0.1594);
  }
  to {
    transform: translate(54.47215vw, 100vh) scale(0.1594);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.7965;
  transform: translate(99.2022vw, -10px) scale(0.1043);
  animation: fall-17 28s -26s linear infinite;
}
@keyframes fall-17 {
  32.893% {
    transform: translate(105.3223vw, 32.893vh) scale(0.1043);
  }
  to {
    transform: translate(102.26225vw, 100vh) scale(0.1043);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.879;
  transform: translate(47.2977vw, -10px) scale(0.718);
  animation: fall-18 18s -17s linear infinite;
}
@keyframes fall-18 {
  65.353% {
    transform: translate(56.0707vw, 65.353vh) scale(0.718);
  }
  to {
    transform: translate(51.6842vw, 100vh) scale(0.718);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.9843;
  transform: translate(43.6924vw, -10px) scale(0.0843);
  animation: fall-19 18s -9s linear infinite;
}
@keyframes fall-19 {
  32.078% {
    transform: translate(39.225vw, 32.078vh) scale(0.0843);
  }
  to {
    transform: translate(41.4587vw, 100vh) scale(0.0843);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.2628;
  transform: translate(9.3637vw, -10px) scale(0.658);
  animation: fall-20 23s -24s linear infinite;
}
@keyframes fall-20 {
  42.42% {
    transform: translate(3.2659vw, 42.42vh) scale(0.658);
  }
  to {
    transform: translate(6.3148vw, 100vh) scale(0.658);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.0432;
  transform: translate(85.3934vw, -10px) scale(0.5929);
  animation: fall-21 27s -2s linear infinite;
}
@keyframes fall-21 {
  41.623% {
    transform: translate(82.9293vw, 41.623vh) scale(0.5929);
  }
  to {
    transform: translate(84.16135vw, 100vh) scale(0.5929);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.0377;
  transform: translate(66.2527vw, -10px) scale(0.7115);
  animation: fall-22 30s -27s linear infinite;
}
@keyframes fall-22 {
  66.914% {
    transform: translate(71.4443vw, 66.914vh) scale(0.7115);
  }
  to {
    transform: translate(68.8485vw, 100vh) scale(0.7115);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.8042;
  transform: translate(73.356vw, -10px) scale(0.0303);
  animation: fall-23 27s -10s linear infinite;
}
@keyframes fall-23 {
  77.01% {
    transform: translate(72.4632vw, 77.01vh) scale(0.0303);
  }
  to {
    transform: translate(72.9096vw, 100vh) scale(0.0303);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.4691;
  transform: translate(62.2795vw, -10px) scale(0.6122);
  animation: fall-24 29s -22s linear infinite;
}
@keyframes fall-24 {
  41.223% {
    transform: translate(68.2727vw, 41.223vh) scale(0.6122);
  }
  to {
    transform: translate(65.2761vw, 100vh) scale(0.6122);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.7378;
  transform: translate(24.4133vw, -10px) scale(0.5848);
  animation: fall-25 25s -16s linear infinite;
}
@keyframes fall-25 {
  69.765% {
    transform: translate(32.9229vw, 69.765vh) scale(0.5848);
  }
  to {
    transform: translate(28.6681vw, 100vh) scale(0.5848);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.9872;
  transform: translate(36.4574vw, -10px) scale(0.249);
  animation: fall-26 26s -29s linear infinite;
}
@keyframes fall-26 {
  65.489% {
    transform: translate(37.2703vw, 65.489vh) scale(0.249);
  }
  to {
    transform: translate(36.86385vw, 100vh) scale(0.249);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.7068;
  transform: translate(11.2163vw, -10px) scale(0.4703);
  animation: fall-27 23s -8s linear infinite;
}
@keyframes fall-27 {
  39.421% {
    transform: translate(2.0913vw, 39.421vh) scale(0.4703);
  }
  to {
    transform: translate(6.6538vw, 100vh) scale(0.4703);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.2058;
  transform: translate(63.1632vw, -10px) scale(0.301);
  animation: fall-28 12s -5s linear infinite;
}
@keyframes fall-28 {
  53.319% {
    transform: translate(68.7498vw, 53.319vh) scale(0.301);
  }
  to {
    transform: translate(65.9565vw, 100vh) scale(0.301);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.2314;
  transform: translate(3.798vw, -10px) scale(0.8789);
  animation: fall-29 16s -26s linear infinite;
}
@keyframes fall-29 {
  36.15% {
    transform: translate(10.2456vw, 36.15vh) scale(0.8789);
  }
  to {
    transform: translate(7.0218vw, 100vh) scale(0.8789);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.5741;
  transform: translate(39.88vw, -10px) scale(0.486);
  animation: fall-30 30s -29s linear infinite;
}
@keyframes fall-30 {
  37.317% {
    transform: translate(42.8156vw, 37.317vh) scale(0.486);
  }
  to {
    transform: translate(41.3478vw, 100vh) scale(0.486);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.2545;
  transform: translate(29.2574vw, -10px) scale(0.3764);
  animation: fall-31 20s -3s linear infinite;
}
@keyframes fall-31 {
  60.852% {
    transform: translate(38.8766vw, 60.852vh) scale(0.3764);
  }
  to {
    transform: translate(34.067vw, 100vh) scale(0.3764);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.1054;
  transform: translate(59.2334vw, -10px) scale(0.3709);
  animation: fall-32 12s -28s linear infinite;
}
@keyframes fall-32 {
  48.998% {
    transform: translate(59.6544vw, 48.998vh) scale(0.3709);
  }
  to {
    transform: translate(59.4439vw, 100vh) scale(0.3709);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.786;
  transform: translate(71.2781vw, -10px) scale(0.5017);
  animation: fall-33 29s -22s linear infinite;
}
@keyframes fall-33 {
  47.622% {
    transform: translate(63.4527vw, 47.622vh) scale(0.5017);
  }
  to {
    transform: translate(67.3654vw, 100vh) scale(0.5017);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.5776;
  transform: translate(33.6416vw, -10px) scale(0.9635);
  animation: fall-34 15s -3s linear infinite;
}
@keyframes fall-34 {
  35.594% {
    transform: translate(29.6744vw, 35.594vh) scale(0.9635);
  }
  to {
    transform: translate(31.658vw, 100vh) scale(0.9635);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.3811;
  transform: translate(34.7vw, -10px) scale(0.5865);
  animation: fall-35 14s -18s linear infinite;
}
@keyframes fall-35 {
  46.42% {
    transform: translate(25.4581vw, 46.42vh) scale(0.5865);
  }
  to {
    transform: translate(30.07905vw, 100vh) scale(0.5865);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.7755;
  transform: translate(70.5077vw, -10px) scale(0.7038);
  animation: fall-36 26s -14s linear infinite;
}
@keyframes fall-36 {
  74.585% {
    transform: translate(72.2167vw, 74.585vh) scale(0.7038);
  }
  to {
    transform: translate(71.3622vw, 100vh) scale(0.7038);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.0368;
  transform: translate(48.3417vw, -10px) scale(0.8411);
  animation: fall-37 22s -26s linear infinite;
}
@keyframes fall-37 {
  38.299% {
    transform: translate(55.4012vw, 38.299vh) scale(0.8411);
  }
  to {
    transform: translate(51.87145vw, 100vh) scale(0.8411);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.5473;
  transform: translate(60.7935vw, -10px) scale(0.7419);
  animation: fall-38 15s -12s linear infinite;
}
@keyframes fall-38 {
  45.113% {
    transform: translate(58.198vw, 45.113vh) scale(0.7419);
  }
  to {
    transform: translate(59.49575vw, 100vh) scale(0.7419);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.1011;
  transform: translate(25.4981vw, -10px) scale(0.2087);
  animation: fall-39 15s -16s linear infinite;
}
@keyframes fall-39 {
  79.241% {
    transform: translate(20.6106vw, 79.241vh) scale(0.2087);
  }
  to {
    transform: translate(23.05435vw, 100vh) scale(0.2087);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.3462;
  transform: translate(21.9055vw, -10px) scale(0.0473);
  animation: fall-40 25s -23s linear infinite;
}
@keyframes fall-40 {
  51.875% {
    transform: translate(26.5111vw, 51.875vh) scale(0.0473);
  }
  to {
    transform: translate(24.2083vw, 100vh) scale(0.0473);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.4818;
  transform: translate(66.421vw, -10px) scale(0.5524);
  animation: fall-41 17s -21s linear infinite;
}
@keyframes fall-41 {
  76.441% {
    transform: translate(58.7828vw, 76.441vh) scale(0.5524);
  }
  to {
    transform: translate(62.6019vw, 100vh) scale(0.5524);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.6803;
  transform: translate(12.4891vw, -10px) scale(0.0233);
  animation: fall-42 14s -23s linear infinite;
}
@keyframes fall-42 {
  31.327% {
    transform: translate(10.8633vw, 31.327vh) scale(0.0233);
  }
  to {
    transform: translate(11.6762vw, 100vh) scale(0.0233);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.3516;
  transform: translate(17.8743vw, -10px) scale(0.4152);
  animation: fall-43 11s -5s linear infinite;
}
@keyframes fall-43 {
  78.505% {
    transform: translate(25.4283vw, 78.505vh) scale(0.4152);
  }
  to {
    transform: translate(21.6513vw, 100vh) scale(0.4152);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.1877;
  transform: translate(20.396vw, -10px) scale(0.0502);
  animation: fall-44 30s -23s linear infinite;
}
@keyframes fall-44 {
  64.914% {
    transform: translate(14.5973vw, 64.914vh) scale(0.0502);
  }
  to {
    transform: translate(17.49665vw, 100vh) scale(0.0502);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.8065;
  transform: translate(0.6257vw, -10px) scale(0.0906);
  animation: fall-45 11s -26s linear infinite;
}
@keyframes fall-45 {
  46.723% {
    transform: translate(-4.5012vw, 46.723vh) scale(0.0906);
  }
  to {
    transform: translate(-1.93775vw, 100vh) scale(0.0906);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.5799;
  transform: translate(37.6218vw, -10px) scale(0.7632);
  animation: fall-46 14s -9s linear infinite;
}
@keyframes fall-46 {
  59.238% {
    transform: translate(45.1719vw, 59.238vh) scale(0.7632);
  }
  to {
    transform: translate(41.39685vw, 100vh) scale(0.7632);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.4322;
  transform: translate(91.65vw, -10px) scale(0.9421);
  animation: fall-47 25s -30s linear infinite;
}
@keyframes fall-47 {
  37.312% {
    transform: translate(96.7927vw, 37.312vh) scale(0.9421);
  }
  to {
    transform: translate(94.22135vw, 100vh) scale(0.9421);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.6294;
  transform: translate(44.17vw, -10px) scale(0.9693);
  animation: fall-48 20s -24s linear infinite;
}
@keyframes fall-48 {
  52.495% {
    transform: translate(51.448vw, 52.495vh) scale(0.9693);
  }
  to {
    transform: translate(47.809vw, 100vh) scale(0.9693);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.1224;
  transform: translate(18.9059vw, -10px) scale(0.6533);
  animation: fall-49 16s -29s linear infinite;
}
@keyframes fall-49 {
  77.091% {
    transform: translate(11.5135vw, 77.091vh) scale(0.6533);
  }
  to {
    transform: translate(15.2097vw, 100vh) scale(0.6533);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.6671;
  transform: translate(26.1289vw, -10px) scale(0.1525);
  animation: fall-50 28s -26s linear infinite;
}
@keyframes fall-50 {
  56.012% {
    transform: translate(29.906vw, 56.012vh) scale(0.1525);
  }
  to {
    transform: translate(28.01745vw, 100vh) scale(0.1525);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.8422;
  transform: translate(11.1911vw, -10px) scale(0.4946);
  animation: fall-51 21s -20s linear infinite;
}
@keyframes fall-51 {
  35.633% {
    transform: translate(20.4917vw, 35.633vh) scale(0.4946);
  }
  to {
    transform: translate(15.8414vw, 100vh) scale(0.4946);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.6967;
  transform: translate(61.2842vw, -10px) scale(0.0576);
  animation: fall-52 10s -4s linear infinite;
}
@keyframes fall-52 {
  68.681% {
    transform: translate(68.9976vw, 68.681vh) scale(0.0576);
  }
  to {
    transform: translate(65.1409vw, 100vh) scale(0.0576);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.4991;
  transform: translate(43.5605vw, -10px) scale(0.338);
  animation: fall-53 26s -6s linear infinite;
}
@keyframes fall-53 {
  78.111% {
    transform: translate(36.322vw, 78.111vh) scale(0.338);
  }
  to {
    transform: translate(39.94125vw, 100vh) scale(0.338);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.2594;
  transform: translate(72.6038vw, -10px) scale(0.6949);
  animation: fall-54 20s -18s linear infinite;
}
@keyframes fall-54 {
  30.153% {
    transform: translate(65.9016vw, 30.153vh) scale(0.6949);
  }
  to {
    transform: translate(69.2527vw, 100vh) scale(0.6949);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.3791;
  transform: translate(27.2425vw, -10px) scale(0.1422);
  animation: fall-55 29s -30s linear infinite;
}
@keyframes fall-55 {
  31.777% {
    transform: translate(22.1125vw, 31.777vh) scale(0.1422);
  }
  to {
    transform: translate(24.6775vw, 100vh) scale(0.1422);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.0542;
  transform: translate(89.2467vw, -10px) scale(0.0913);
  animation: fall-56 21s -11s linear infinite;
}
@keyframes fall-56 {
  54.556% {
    transform: translate(97.1983vw, 54.556vh) scale(0.0913);
  }
  to {
    transform: translate(93.2225vw, 100vh) scale(0.0913);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.6612;
  transform: translate(84.5307vw, -10px) scale(0.4518);
  animation: fall-57 14s -16s linear infinite;
}
@keyframes fall-57 {
  52.387% {
    transform: translate(94.1087vw, 52.387vh) scale(0.4518);
  }
  to {
    transform: translate(89.3197vw, 100vh) scale(0.4518);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.4987;
  transform: translate(58.5175vw, -10px) scale(0.4045);
  animation: fall-58 23s -3s linear infinite;
}
@keyframes fall-58 {
  44.047% {
    transform: translate(54.8066vw, 44.047vh) scale(0.4045);
  }
  to {
    transform: translate(56.66205vw, 100vh) scale(0.4045);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.4142;
  transform: translate(39.7866vw, -10px) scale(0.2474);
  animation: fall-59 19s -2s linear infinite;
}
@keyframes fall-59 {
  72.988% {
    transform: translate(49.3982vw, 72.988vh) scale(0.2474);
  }
  to {
    transform: translate(44.5924vw, 100vh) scale(0.2474);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.4948;
  transform: translate(55.7484vw, -10px) scale(0.2738);
  animation: fall-60 16s -13s linear infinite;
}
@keyframes fall-60 {
  50.13% {
    transform: translate(62.3591vw, 50.13vh) scale(0.2738);
  }
  to {
    transform: translate(59.05375vw, 100vh) scale(0.2738);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.6984;
  transform: translate(57.4134vw, -10px) scale(0.2782);
  animation: fall-61 18s -28s linear infinite;
}
@keyframes fall-61 {
  44.159% {
    transform: translate(47.7656vw, 44.159vh) scale(0.2782);
  }
  to {
    transform: translate(52.5895vw, 100vh) scale(0.2782);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.2484;
  transform: translate(42.0301vw, -10px) scale(0.9805);
  animation: fall-62 24s -13s linear infinite;
}
@keyframes fall-62 {
  76.404% {
    transform: translate(50.3916vw, 76.404vh) scale(0.9805);
  }
  to {
    transform: translate(46.21085vw, 100vh) scale(0.9805);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.098;
  transform: translate(60.1271vw, -10px) scale(0.0552);
  animation: fall-63 10s -2s linear infinite;
}
@keyframes fall-63 {
  58.131% {
    transform: translate(68.1445vw, 58.131vh) scale(0.0552);
  }
  to {
    transform: translate(64.1358vw, 100vh) scale(0.0552);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.6764;
  transform: translate(79.2103vw, -10px) scale(0.4206);
  animation: fall-64 17s -19s linear infinite;
}
@keyframes fall-64 {
  43.668% {
    transform: translate(85.6977vw, 43.668vh) scale(0.4206);
  }
  to {
    transform: translate(82.454vw, 100vh) scale(0.4206);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.8415;
  transform: translate(5.737vw, -10px) scale(0.9821);
  animation: fall-65 10s -26s linear infinite;
}
@keyframes fall-65 {
  36.108% {
    transform: translate(13.0807vw, 36.108vh) scale(0.9821);
  }
  to {
    transform: translate(9.40885vw, 100vh) scale(0.9821);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.625;
  transform: translate(2.0466vw, -10px) scale(0.1818);
  animation: fall-66 10s -15s linear infinite;
}
@keyframes fall-66 {
  57.022% {
    transform: translate(-7.9284vw, 57.022vh) scale(0.1818);
  }
  to {
    transform: translate(-2.9409vw, 100vh) scale(0.1818);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.765;
  transform: translate(75.982vw, -10px) scale(0.322);
  animation: fall-67 22s -6s linear infinite;
}
@keyframes fall-67 {
  55.232% {
    transform: translate(84.7739vw, 55.232vh) scale(0.322);
  }
  to {
    transform: translate(80.37795vw, 100vh) scale(0.322);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.7682;
  transform: translate(68.5053vw, -10px) scale(0.2498);
  animation: fall-68 16s -18s linear infinite;
}
@keyframes fall-68 {
  41.799% {
    transform: translate(73.9337vw, 41.799vh) scale(0.2498);
  }
  to {
    transform: translate(71.2195vw, 100vh) scale(0.2498);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.4589;
  transform: translate(94.4841vw, -10px) scale(0.6563);
  animation: fall-69 18s -20s linear infinite;
}
@keyframes fall-69 {
  39.597% {
    transform: translate(87.4557vw, 39.597vh) scale(0.6563);
  }
  to {
    transform: translate(90.9699vw, 100vh) scale(0.6563);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.4762;
  transform: translate(74.1404vw, -10px) scale(0.3899);
  animation: fall-70 27s -22s linear infinite;
}
@keyframes fall-70 {
  35.933% {
    transform: translate(83.7432vw, 35.933vh) scale(0.3899);
  }
  to {
    transform: translate(78.9418vw, 100vh) scale(0.3899);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.8144;
  transform: translate(89.8512vw, -10px) scale(0.3796);
  animation: fall-71 11s -19s linear infinite;
}
@keyframes fall-71 {
  68.856% {
    transform: translate(94.3744vw, 68.856vh) scale(0.3796);
  }
  to {
    transform: translate(92.1128vw, 100vh) scale(0.3796);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.3504;
  transform: translate(59.1003vw, -10px) scale(0.0703);
  animation: fall-72 27s -15s linear infinite;
}
@keyframes fall-72 {
  48.444% {
    transform: translate(51.4275vw, 48.444vh) scale(0.0703);
  }
  to {
    transform: translate(55.2639vw, 100vh) scale(0.0703);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.0975;
  transform: translate(60.6109vw, -10px) scale(0.2967);
  animation: fall-73 22s -2s linear infinite;
}
@keyframes fall-73 {
  69.149% {
    transform: translate(63.3899vw, 69.149vh) scale(0.2967);
  }
  to {
    transform: translate(62.0004vw, 100vh) scale(0.2967);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.3143;
  transform: translate(51.2435vw, -10px) scale(0.3432);
  animation: fall-74 26s -28s linear infinite;
}
@keyframes fall-74 {
  52.578% {
    transform: translate(55.913vw, 52.578vh) scale(0.3432);
  }
  to {
    transform: translate(53.57825vw, 100vh) scale(0.3432);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.5605;
  transform: translate(17.2412vw, -10px) scale(0.0028);
  animation: fall-75 16s -16s linear infinite;
}
@keyframes fall-75 {
  52.444% {
    transform: translate(9.4231vw, 52.444vh) scale(0.0028);
  }
  to {
    transform: translate(13.33215vw, 100vh) scale(0.0028);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.0435;
  transform: translate(53.9502vw, -10px) scale(0.8873);
  animation: fall-76 24s -9s linear infinite;
}
@keyframes fall-76 {
  72.171% {
    transform: translate(44.6946vw, 72.171vh) scale(0.8873);
  }
  to {
    transform: translate(49.3224vw, 100vh) scale(0.8873);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.7965;
  transform: translate(1.3414vw, -10px) scale(0.1204);
  animation: fall-77 10s -21s linear infinite;
}
@keyframes fall-77 {
  49.633% {
    transform: translate(2.4954vw, 49.633vh) scale(0.1204);
  }
  to {
    transform: translate(1.9184vw, 100vh) scale(0.1204);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.1929;
  transform: translate(60.6471vw, -10px) scale(0.4069);
  animation: fall-78 14s -15s linear infinite;
}
@keyframes fall-78 {
  55.758% {
    transform: translate(52.6957vw, 55.758vh) scale(0.4069);
  }
  to {
    transform: translate(56.6714vw, 100vh) scale(0.4069);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.085;
  transform: translate(8.6765vw, -10px) scale(0.1617);
  animation: fall-79 13s -5s linear infinite;
}
@keyframes fall-79 {
  74.497% {
    transform: translate(5.0036vw, 74.497vh) scale(0.1617);
  }
  to {
    transform: translate(6.84005vw, 100vh) scale(0.1617);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.1512;
  transform: translate(82.7597vw, -10px) scale(0.081);
  animation: fall-80 10s -2s linear infinite;
}
@keyframes fall-80 {
  41.094% {
    transform: translate(75.9995vw, 41.094vh) scale(0.081);
  }
  to {
    transform: translate(79.3796vw, 100vh) scale(0.081);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.2989;
  transform: translate(94.4055vw, -10px) scale(0.4422);
  animation: fall-81 12s -14s linear infinite;
}
@keyframes fall-81 {
  44.956% {
    transform: translate(92.3654vw, 44.956vh) scale(0.4422);
  }
  to {
    transform: translate(93.38545vw, 100vh) scale(0.4422);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.2365;
  transform: translate(48.3745vw, -10px) scale(0.9834);
  animation: fall-82 19s -24s linear infinite;
}
@keyframes fall-82 {
  35.204% {
    transform: translate(45.687vw, 35.204vh) scale(0.9834);
  }
  to {
    transform: translate(47.03075vw, 100vh) scale(0.9834);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.2728;
  transform: translate(81.0519vw, -10px) scale(0.5255);
  animation: fall-83 26s -5s linear infinite;
}
@keyframes fall-83 {
  58.017% {
    transform: translate(75.5436vw, 58.017vh) scale(0.5255);
  }
  to {
    transform: translate(78.29775vw, 100vh) scale(0.5255);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.4439;
  transform: translate(5.2916vw, -10px) scale(0.3206);
  animation: fall-84 11s -10s linear infinite;
}
@keyframes fall-84 {
  37.903% {
    transform: translate(12.7167vw, 37.903vh) scale(0.3206);
  }
  to {
    transform: translate(9.00415vw, 100vh) scale(0.3206);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.3214;
  transform: translate(82.243vw, -10px) scale(0.9546);
  animation: fall-85 28s -16s linear infinite;
}
@keyframes fall-85 {
  38.725% {
    transform: translate(81.2636vw, 38.725vh) scale(0.9546);
  }
  to {
    transform: translate(81.7533vw, 100vh) scale(0.9546);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.9953;
  transform: translate(47.0394vw, -10px) scale(0.6072);
  animation: fall-86 17s -21s linear infinite;
}
@keyframes fall-86 {
  46.623% {
    transform: translate(42.0979vw, 46.623vh) scale(0.6072);
  }
  to {
    transform: translate(44.56865vw, 100vh) scale(0.6072);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.4075;
  transform: translate(43.3645vw, -10px) scale(0.0859);
  animation: fall-87 11s -24s linear infinite;
}
@keyframes fall-87 {
  59.155% {
    transform: translate(52.9473vw, 59.155vh) scale(0.0859);
  }
  to {
    transform: translate(48.1559vw, 100vh) scale(0.0859);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.3188;
  transform: translate(50.9008vw, -10px) scale(0.4686);
  animation: fall-88 29s -17s linear infinite;
}
@keyframes fall-88 {
  49.456% {
    transform: translate(49.0942vw, 49.456vh) scale(0.4686);
  }
  to {
    transform: translate(49.9975vw, 100vh) scale(0.4686);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.6893;
  transform: translate(66.1825vw, -10px) scale(0.9086);
  animation: fall-89 13s -1s linear infinite;
}
@keyframes fall-89 {
  79.093% {
    transform: translate(66.8726vw, 79.093vh) scale(0.9086);
  }
  to {
    transform: translate(66.52755vw, 100vh) scale(0.9086);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.4166;
  transform: translate(87.0017vw, -10px) scale(0.4115);
  animation: fall-90 18s -2s linear infinite;
}
@keyframes fall-90 {
  52.411% {
    transform: translate(93.7205vw, 52.411vh) scale(0.4115);
  }
  to {
    transform: translate(90.3611vw, 100vh) scale(0.4115);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.3473;
  transform: translate(43.0325vw, -10px) scale(0.9704);
  animation: fall-91 24s -30s linear infinite;
}
@keyframes fall-91 {
  54.103% {
    transform: translate(49.5844vw, 54.103vh) scale(0.9704);
  }
  to {
    transform: translate(46.30845vw, 100vh) scale(0.9704);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.7078;
  transform: translate(30.2532vw, -10px) scale(0.7504);
  animation: fall-92 22s -24s linear infinite;
}
@keyframes fall-92 {
  40.181% {
    transform: translate(32.0187vw, 40.181vh) scale(0.7504);
  }
  to {
    transform: translate(31.13595vw, 100vh) scale(0.7504);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.9592;
  transform: translate(52.298vw, -10px) scale(0.268);
  animation: fall-93 22s -5s linear infinite;
}
@keyframes fall-93 {
  47.672% {
    transform: translate(59.8823vw, 47.672vh) scale(0.268);
  }
  to {
    transform: translate(56.09015vw, 100vh) scale(0.268);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.2354;
  transform: translate(92.7228vw, -10px) scale(0.0627);
  animation: fall-94 25s -9s linear infinite;
}
@keyframes fall-94 {
  67.59% {
    transform: translate(99.9332vw, 67.59vh) scale(0.0627);
  }
  to {
    transform: translate(96.328vw, 100vh) scale(0.0627);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.4154;
  transform: translate(95.7788vw, -10px) scale(0.2456);
  animation: fall-95 29s -28s linear infinite;
}
@keyframes fall-95 {
  60.034% {
    transform: translate(91.0998vw, 60.034vh) scale(0.2456);
  }
  to {
    transform: translate(93.4393vw, 100vh) scale(0.2456);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.9337;
  transform: translate(92.2887vw, -10px) scale(0.5494);
  animation: fall-96 18s -25s linear infinite;
}
@keyframes fall-96 {
  57.086% {
    transform: translate(89.8496vw, 57.086vh) scale(0.5494);
  }
  to {
    transform: translate(91.06915vw, 100vh) scale(0.5494);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.769;
  transform: translate(28.4182vw, -10px) scale(0.9434);
  animation: fall-97 25s -29s linear infinite;
}
@keyframes fall-97 {
  47.343% {
    transform: translate(30.2904vw, 47.343vh) scale(0.9434);
  }
  to {
    transform: translate(29.3543vw, 100vh) scale(0.9434);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.4682;
  transform: translate(62.4412vw, -10px) scale(0.7537);
  animation: fall-98 10s -21s linear infinite;
}
@keyframes fall-98 {
  46.72% {
    transform: translate(63.843vw, 46.72vh) scale(0.7537);
  }
  to {
    transform: translate(63.1421vw, 100vh) scale(0.7537);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.5353;
  transform: translate(9.7375vw, -10px) scale(0.8372);
  animation: fall-99 28s -29s linear infinite;
}
@keyframes fall-99 {
  76.668% {
    transform: translate(11.5893vw, 76.668vh) scale(0.8372);
  }
  to {
    transform: translate(10.6634vw, 100vh) scale(0.8372);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.1486;
  transform: translate(81.6445vw, -10px) scale(0.4885);
  animation: fall-100 28s -16s linear infinite;
}
@keyframes fall-100 {
  65.959% {
    transform: translate(76.029vw, 65.959vh) scale(0.4885);
  }
  to {
    transform: translate(78.83675vw, 100vh) scale(0.4885);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.1909;
  transform: translate(82.539vw, -10px) scale(0.0412);
  animation: fall-101 29s -25s linear infinite;
}
@keyframes fall-101 {
  30.953% {
    transform: translate(86.2937vw, 30.953vh) scale(0.0412);
  }
  to {
    transform: translate(84.41635vw, 100vh) scale(0.0412);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.8646;
  transform: translate(82.5057vw, -10px) scale(0.963);
  animation: fall-102 29s -27s linear infinite;
}
@keyframes fall-102 {
  70.544% {
    transform: translate(90.072vw, 70.544vh) scale(0.963);
  }
  to {
    transform: translate(86.28885vw, 100vh) scale(0.963);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.5638;
  transform: translate(47.9489vw, -10px) scale(0.5625);
  animation: fall-103 21s -13s linear infinite;
}
@keyframes fall-103 {
  64.79% {
    transform: translate(56.7128vw, 64.79vh) scale(0.5625);
  }
  to {
    transform: translate(52.33085vw, 100vh) scale(0.5625);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.5429;
  transform: translate(12.4289vw, -10px) scale(0.6119);
  animation: fall-104 16s -24s linear infinite;
}
@keyframes fall-104 {
  44.079% {
    transform: translate(19.0495vw, 44.079vh) scale(0.6119);
  }
  to {
    transform: translate(15.7392vw, 100vh) scale(0.6119);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.9654;
  transform: translate(82.2177vw, -10px) scale(0.6531);
  animation: fall-105 19s -18s linear infinite;
}
@keyframes fall-105 {
  44.739% {
    transform: translate(77.3892vw, 44.739vh) scale(0.6531);
  }
  to {
    transform: translate(79.80345vw, 100vh) scale(0.6531);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.1253;
  transform: translate(64.1899vw, -10px) scale(0.2491);
  animation: fall-106 11s -9s linear infinite;
}
@keyframes fall-106 {
  70.964% {
    transform: translate(60.918vw, 70.964vh) scale(0.2491);
  }
  to {
    transform: translate(62.55395vw, 100vh) scale(0.2491);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.3973;
  transform: translate(70.4908vw, -10px) scale(0.1541);
  animation: fall-107 15s -7s linear infinite;
}
@keyframes fall-107 {
  66.153% {
    transform: translate(68.6993vw, 66.153vh) scale(0.1541);
  }
  to {
    transform: translate(69.59505vw, 100vh) scale(0.1541);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.7699;
  transform: translate(53.2962vw, -10px) scale(0.0842);
  animation: fall-108 21s -12s linear infinite;
}
@keyframes fall-108 {
  74.035% {
    transform: translate(58.5769vw, 74.035vh) scale(0.0842);
  }
  to {
    transform: translate(55.93655vw, 100vh) scale(0.0842);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.5253;
  transform: translate(73.3056vw, -10px) scale(0.844);
  animation: fall-109 13s -7s linear infinite;
}
@keyframes fall-109 {
  45.863% {
    transform: translate(80.5851vw, 45.863vh) scale(0.844);
  }
  to {
    transform: translate(76.94535vw, 100vh) scale(0.844);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.4506;
  transform: translate(98.2152vw, -10px) scale(0.0531);
  animation: fall-110 20s -26s linear infinite;
}
@keyframes fall-110 {
  62.455% {
    transform: translate(102.2686vw, 62.455vh) scale(0.0531);
  }
  to {
    transform: translate(100.2419vw, 100vh) scale(0.0531);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.4073;
  transform: translate(88.2949vw, -10px) scale(0.7369);
  animation: fall-111 25s -15s linear infinite;
}
@keyframes fall-111 {
  54.75% {
    transform: translate(95.1877vw, 54.75vh) scale(0.7369);
  }
  to {
    transform: translate(91.7413vw, 100vh) scale(0.7369);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.7843;
  transform: translate(34.4146vw, -10px) scale(0.6661);
  animation: fall-112 24s -30s linear infinite;
}
@keyframes fall-112 {
  49.29% {
    transform: translate(28.1814vw, 49.29vh) scale(0.6661);
  }
  to {
    transform: translate(31.298vw, 100vh) scale(0.6661);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.2542;
  transform: translate(94.2197vw, -10px) scale(0.4734);
  animation: fall-113 19s -9s linear infinite;
}
@keyframes fall-113 {
  73.348% {
    transform: translate(89.636vw, 73.348vh) scale(0.4734);
  }
  to {
    transform: translate(91.92785vw, 100vh) scale(0.4734);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.6791;
  transform: translate(29.4772vw, -10px) scale(0.7401);
  animation: fall-114 29s -7s linear infinite;
}
@keyframes fall-114 {
  75.524% {
    transform: translate(35.0275vw, 75.524vh) scale(0.7401);
  }
  to {
    transform: translate(32.25235vw, 100vh) scale(0.7401);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.4989;
  transform: translate(51.0855vw, -10px) scale(0.8756);
  animation: fall-115 23s -4s linear infinite;
}
@keyframes fall-115 {
  41.804% {
    transform: translate(44.4463vw, 41.804vh) scale(0.8756);
  }
  to {
    transform: translate(47.7659vw, 100vh) scale(0.8756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.7678;
  transform: translate(67.8929vw, -10px) scale(0.1493);
  animation: fall-116 10s -21s linear infinite;
}
@keyframes fall-116 {
  67.568% {
    transform: translate(59.1904vw, 67.568vh) scale(0.1493);
  }
  to {
    transform: translate(63.54165vw, 100vh) scale(0.1493);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.4712;
  transform: translate(54.6869vw, -10px) scale(0.432);
  animation: fall-117 25s -7s linear infinite;
}
@keyframes fall-117 {
  72.362% {
    transform: translate(46.4808vw, 72.362vh) scale(0.432);
  }
  to {
    transform: translate(50.58385vw, 100vh) scale(0.432);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.7161;
  transform: translate(19.9239vw, -10px) scale(0.8526);
  animation: fall-118 18s -11s linear infinite;
}
@keyframes fall-118 {
  74.975% {
    transform: translate(23.735vw, 74.975vh) scale(0.8526);
  }
  to {
    transform: translate(21.82945vw, 100vh) scale(0.8526);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.431;
  transform: translate(47.0091vw, -10px) scale(0.2797);
  animation: fall-119 17s -23s linear infinite;
}
@keyframes fall-119 {
  70.185% {
    transform: translate(54.1906vw, 70.185vh) scale(0.2797);
  }
  to {
    transform: translate(50.59985vw, 100vh) scale(0.2797);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.6647;
  transform: translate(91.293vw, -10px) scale(0.269);
  animation: fall-120 11s -10s linear infinite;
}
@keyframes fall-120 {
  39.392% {
    transform: translate(83.9878vw, 39.392vh) scale(0.269);
  }
  to {
    transform: translate(87.6404vw, 100vh) scale(0.269);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.0771;
  transform: translate(48.9888vw, -10px) scale(0.5448);
  animation: fall-121 19s -24s linear infinite;
}
@keyframes fall-121 {
  45.394% {
    transform: translate(40.8516vw, 45.394vh) scale(0.5448);
  }
  to {
    transform: translate(44.9202vw, 100vh) scale(0.5448);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.6892;
  transform: translate(19.8314vw, -10px) scale(0.7907);
  animation: fall-122 26s -15s linear infinite;
}
@keyframes fall-122 {
  53.814% {
    transform: translate(20.6989vw, 53.814vh) scale(0.7907);
  }
  to {
    transform: translate(20.26515vw, 100vh) scale(0.7907);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.8989;
  transform: translate(11.3122vw, -10px) scale(0.4982);
  animation: fall-123 21s -17s linear infinite;
}
@keyframes fall-123 {
  65.647% {
    transform: translate(6.6338vw, 65.647vh) scale(0.4982);
  }
  to {
    transform: translate(8.973vw, 100vh) scale(0.4982);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.3138;
  transform: translate(95.7689vw, -10px) scale(0.3681);
  animation: fall-124 27s -19s linear infinite;
}
@keyframes fall-124 {
  48.098% {
    transform: translate(97.3053vw, 48.098vh) scale(0.3681);
  }
  to {
    transform: translate(96.5371vw, 100vh) scale(0.3681);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.729;
  transform: translate(34.8406vw, -10px) scale(0.3323);
  animation: fall-125 20s -1s linear infinite;
}
@keyframes fall-125 {
  78.821% {
    transform: translate(28.6441vw, 78.821vh) scale(0.3323);
  }
  to {
    transform: translate(31.74235vw, 100vh) scale(0.3323);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.1624;
  transform: translate(98.5352vw, -10px) scale(0.7993);
  animation: fall-126 11s -12s linear infinite;
}
@keyframes fall-126 {
  44.735% {
    transform: translate(100.7153vw, 44.735vh) scale(0.7993);
  }
  to {
    transform: translate(99.62525vw, 100vh) scale(0.7993);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.2304;
  transform: translate(96.2399vw, -10px) scale(0.2771);
  animation: fall-127 11s -3s linear infinite;
}
@keyframes fall-127 {
  30.212% {
    transform: translate(96.4802vw, 30.212vh) scale(0.2771);
  }
  to {
    transform: translate(96.36005vw, 100vh) scale(0.2771);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.0168;
  transform: translate(45.3736vw, -10px) scale(0.385);
  animation: fall-128 29s -4s linear infinite;
}
@keyframes fall-128 {
  50.876% {
    transform: translate(52.0863vw, 50.876vh) scale(0.385);
  }
  to {
    transform: translate(48.72995vw, 100vh) scale(0.385);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.6329;
  transform: translate(87.3192vw, -10px) scale(0.5144);
  animation: fall-129 12s -29s linear infinite;
}
@keyframes fall-129 {
  73.772% {
    transform: translate(84.1446vw, 73.772vh) scale(0.5144);
  }
  to {
    transform: translate(85.7319vw, 100vh) scale(0.5144);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.9546;
  transform: translate(1.4848vw, -10px) scale(0.6062);
  animation: fall-130 18s -12s linear infinite;
}
@keyframes fall-130 {
  64.393% {
    transform: translate(2.9903vw, 64.393vh) scale(0.6062);
  }
  to {
    transform: translate(2.23755vw, 100vh) scale(0.6062);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.577;
  transform: translate(96.6572vw, -10px) scale(0.0499);
  animation: fall-131 17s -16s linear infinite;
}
@keyframes fall-131 {
  31.258% {
    transform: translate(96.8864vw, 31.258vh) scale(0.0499);
  }
  to {
    transform: translate(96.7718vw, 100vh) scale(0.0499);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.1668;
  transform: translate(19.7276vw, -10px) scale(0.7363);
  animation: fall-132 24s -12s linear infinite;
}
@keyframes fall-132 {
  58.516% {
    transform: translate(18.8111vw, 58.516vh) scale(0.7363);
  }
  to {
    transform: translate(19.26935vw, 100vh) scale(0.7363);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.1264;
  transform: translate(56.7306vw, -10px) scale(0.1072);
  animation: fall-133 12s -9s linear infinite;
}
@keyframes fall-133 {
  59.907% {
    transform: translate(50.2249vw, 59.907vh) scale(0.1072);
  }
  to {
    transform: translate(53.47775vw, 100vh) scale(0.1072);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.5898;
  transform: translate(40.5449vw, -10px) scale(0.946);
  animation: fall-134 30s -7s linear infinite;
}
@keyframes fall-134 {
  31.722% {
    transform: translate(30.5994vw, 31.722vh) scale(0.946);
  }
  to {
    transform: translate(35.57215vw, 100vh) scale(0.946);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.8635;
  transform: translate(75.171vw, -10px) scale(0.3237);
  animation: fall-135 17s -26s linear infinite;
}
@keyframes fall-135 {
  59.333% {
    transform: translate(80.7686vw, 59.333vh) scale(0.3237);
  }
  to {
    transform: translate(77.9698vw, 100vh) scale(0.3237);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.5686;
  transform: translate(45.7266vw, -10px) scale(0.1318);
  animation: fall-136 18s -28s linear infinite;
}
@keyframes fall-136 {
  34.192% {
    transform: translate(52.379vw, 34.192vh) scale(0.1318);
  }
  to {
    transform: translate(49.0528vw, 100vh) scale(0.1318);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.582;
  transform: translate(94.8075vw, -10px) scale(0.4234);
  animation: fall-137 13s -3s linear infinite;
}
@keyframes fall-137 {
  64.058% {
    transform: translate(103.7159vw, 64.058vh) scale(0.4234);
  }
  to {
    transform: translate(99.2617vw, 100vh) scale(0.4234);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.811;
  transform: translate(15.1289vw, -10px) scale(0.6168);
  animation: fall-138 19s -16s linear infinite;
}
@keyframes fall-138 {
  55.237% {
    transform: translate(12.9121vw, 55.237vh) scale(0.6168);
  }
  to {
    transform: translate(14.0205vw, 100vh) scale(0.6168);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.0571;
  transform: translate(66.2302vw, -10px) scale(0.3412);
  animation: fall-139 15s -14s linear infinite;
}
@keyframes fall-139 {
  38.924% {
    transform: translate(71.002vw, 38.924vh) scale(0.3412);
  }
  to {
    transform: translate(68.6161vw, 100vh) scale(0.3412);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.1738;
  transform: translate(83.02vw, -10px) scale(0.3064);
  animation: fall-140 18s -24s linear infinite;
}
@keyframes fall-140 {
  71.403% {
    transform: translate(74.519vw, 71.403vh) scale(0.3064);
  }
  to {
    transform: translate(78.7695vw, 100vh) scale(0.3064);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.8994;
  transform: translate(38.8135vw, -10px) scale(0.9986);
  animation: fall-141 22s -14s linear infinite;
}
@keyframes fall-141 {
  72.219% {
    transform: translate(29.6488vw, 72.219vh) scale(0.9986);
  }
  to {
    transform: translate(34.23115vw, 100vh) scale(0.9986);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.161;
  transform: translate(77.0649vw, -10px) scale(0.2735);
  animation: fall-142 12s -10s linear infinite;
}
@keyframes fall-142 {
  75.763% {
    transform: translate(85.2417vw, 75.763vh) scale(0.2735);
  }
  to {
    transform: translate(81.1533vw, 100vh) scale(0.2735);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.4953;
  transform: translate(75.3983vw, -10px) scale(0.8776);
  animation: fall-143 23s -25s linear infinite;
}
@keyframes fall-143 {
  55.771% {
    transform: translate(69.5637vw, 55.771vh) scale(0.8776);
  }
  to {
    transform: translate(72.481vw, 100vh) scale(0.8776);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.1691;
  transform: translate(34.9228vw, -10px) scale(0.3967);
  animation: fall-144 11s -16s linear infinite;
}
@keyframes fall-144 {
  34.843% {
    transform: translate(31.809vw, 34.843vh) scale(0.3967);
  }
  to {
    transform: translate(33.3659vw, 100vh) scale(0.3967);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.7494;
  transform: translate(68.1365vw, -10px) scale(0.7181);
  animation: fall-145 26s -12s linear infinite;
}
@keyframes fall-145 {
  52.931% {
    transform: translate(73.373vw, 52.931vh) scale(0.7181);
  }
  to {
    transform: translate(70.75475vw, 100vh) scale(0.7181);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.1017;
  transform: translate(30.8524vw, -10px) scale(0.1996);
  animation: fall-146 20s -20s linear infinite;
}
@keyframes fall-146 {
  62.005% {
    transform: translate(28.7154vw, 62.005vh) scale(0.1996);
  }
  to {
    transform: translate(29.7839vw, 100vh) scale(0.1996);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.6272;
  transform: translate(78.7366vw, -10px) scale(0.9092);
  animation: fall-147 16s -4s linear infinite;
}
@keyframes fall-147 {
  49.76% {
    transform: translate(78.4475vw, 49.76vh) scale(0.9092);
  }
  to {
    transform: translate(78.59205vw, 100vh) scale(0.9092);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.8916;
  transform: translate(17.0288vw, -10px) scale(0.2086);
  animation: fall-148 23s -28s linear infinite;
}
@keyframes fall-148 {
  53.32% {
    transform: translate(8.1297vw, 53.32vh) scale(0.2086);
  }
  to {
    transform: translate(12.57925vw, 100vh) scale(0.2086);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.7755;
  transform: translate(78.2835vw, -10px) scale(0.4947);
  animation: fall-149 14s -28s linear infinite;
}
@keyframes fall-149 {
  65.047% {
    transform: translate(75.7349vw, 65.047vh) scale(0.4947);
  }
  to {
    transform: translate(77.0092vw, 100vh) scale(0.4947);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.2392;
  transform: translate(45.4972vw, -10px) scale(0.8805);
  animation: fall-150 29s -28s linear infinite;
}
@keyframes fall-150 {
  78.03% {
    transform: translate(48.2571vw, 78.03vh) scale(0.8805);
  }
  to {
    transform: translate(46.87715vw, 100vh) scale(0.8805);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.4537;
  transform: translate(28.4133vw, -10px) scale(0.231);
  animation: fall-151 12s -30s linear infinite;
}
@keyframes fall-151 {
  45.574% {
    transform: translate(19.2485vw, 45.574vh) scale(0.231);
  }
  to {
    transform: translate(23.8309vw, 100vh) scale(0.231);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.5472;
  transform: translate(88.9861vw, -10px) scale(0.4234);
  animation: fall-152 20s -20s linear infinite;
}
@keyframes fall-152 {
  61.406% {
    transform: translate(97.0547vw, 61.406vh) scale(0.4234);
  }
  to {
    transform: translate(93.0204vw, 100vh) scale(0.4234);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.169;
  transform: translate(71.4814vw, -10px) scale(0.7117);
  animation: fall-153 10s -5s linear infinite;
}
@keyframes fall-153 {
  70.921% {
    transform: translate(75.2149vw, 70.921vh) scale(0.7117);
  }
  to {
    transform: translate(73.34815vw, 100vh) scale(0.7117);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.1738;
  transform: translate(32.7998vw, -10px) scale(0.9744);
  animation: fall-154 15s -1s linear infinite;
}
@keyframes fall-154 {
  45.954% {
    transform: translate(40.5124vw, 45.954vh) scale(0.9744);
  }
  to {
    transform: translate(36.6561vw, 100vh) scale(0.9744);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.7638;
  transform: translate(66.9586vw, -10px) scale(0.0055);
  animation: fall-155 17s -23s linear infinite;
}
@keyframes fall-155 {
  30.611% {
    transform: translate(65.1548vw, 30.611vh) scale(0.0055);
  }
  to {
    transform: translate(66.0567vw, 100vh) scale(0.0055);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.5417;
  transform: translate(47.2051vw, -10px) scale(0.7589);
  animation: fall-156 11s -30s linear infinite;
}
@keyframes fall-156 {
  34.522% {
    transform: translate(54.1565vw, 34.522vh) scale(0.7589);
  }
  to {
    transform: translate(50.6808vw, 100vh) scale(0.7589);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.9576;
  transform: translate(67.0769vw, -10px) scale(0.1826);
  animation: fall-157 27s -11s linear infinite;
}
@keyframes fall-157 {
  51.911% {
    transform: translate(73.7161vw, 51.911vh) scale(0.1826);
  }
  to {
    transform: translate(70.3965vw, 100vh) scale(0.1826);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.8095;
  transform: translate(77.8447vw, -10px) scale(0.5192);
  animation: fall-158 24s -14s linear infinite;
}
@keyframes fall-158 {
  41.193% {
    transform: translate(76.4798vw, 41.193vh) scale(0.5192);
  }
  to {
    transform: translate(77.16225vw, 100vh) scale(0.5192);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.8073;
  transform: translate(13.1898vw, -10px) scale(0.9112);
  animation: fall-159 28s -4s linear infinite;
}
@keyframes fall-159 {
  40.254% {
    transform: translate(17.0106vw, 40.254vh) scale(0.9112);
  }
  to {
    transform: translate(15.1002vw, 100vh) scale(0.9112);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.2508;
  transform: translate(97.7855vw, -10px) scale(0.1229);
  animation: fall-160 13s -7s linear infinite;
}
@keyframes fall-160 {
  39.967% {
    transform: translate(106.9968vw, 39.967vh) scale(0.1229);
  }
  to {
    transform: translate(102.39115vw, 100vh) scale(0.1229);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.8227;
  transform: translate(91.8999vw, -10px) scale(0.3712);
  animation: fall-161 11s -12s linear infinite;
}
@keyframes fall-161 {
  47.448% {
    transform: translate(91.7332vw, 47.448vh) scale(0.3712);
  }
  to {
    transform: translate(91.81655vw, 100vh) scale(0.3712);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.1067;
  transform: translate(62.5314vw, -10px) scale(0.8683);
  animation: fall-162 23s -1s linear infinite;
}
@keyframes fall-162 {
  36.474% {
    transform: translate(67.5839vw, 36.474vh) scale(0.8683);
  }
  to {
    transform: translate(65.05765vw, 100vh) scale(0.8683);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.5111;
  transform: translate(32.8329vw, -10px) scale(0.9608);
  animation: fall-163 10s -7s linear infinite;
}
@keyframes fall-163 {
  35.2% {
    transform: translate(33.7322vw, 35.2vh) scale(0.9608);
  }
  to {
    transform: translate(33.28255vw, 100vh) scale(0.9608);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.4516;
  transform: translate(91.102vw, -10px) scale(0.7784);
  animation: fall-164 27s -20s linear infinite;
}
@keyframes fall-164 {
  37.998% {
    transform: translate(89.3359vw, 37.998vh) scale(0.7784);
  }
  to {
    transform: translate(90.21895vw, 100vh) scale(0.7784);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.6283;
  transform: translate(83.8532vw, -10px) scale(0.9372);
  animation: fall-165 11s -30s linear infinite;
}
@keyframes fall-165 {
  71.499% {
    transform: translate(84.7547vw, 71.499vh) scale(0.9372);
  }
  to {
    transform: translate(84.30395vw, 100vh) scale(0.9372);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.2055;
  transform: translate(30.561vw, -10px) scale(0.0114);
  animation: fall-166 12s -16s linear infinite;
}
@keyframes fall-166 {
  33.754% {
    transform: translate(35.2273vw, 33.754vh) scale(0.0114);
  }
  to {
    transform: translate(32.89415vw, 100vh) scale(0.0114);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.8237;
  transform: translate(4.2373vw, -10px) scale(0.284);
  animation: fall-167 28s -16s linear infinite;
}
@keyframes fall-167 {
  43.458% {
    transform: translate(10.4347vw, 43.458vh) scale(0.284);
  }
  to {
    transform: translate(7.336vw, 100vh) scale(0.284);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.6484;
  transform: translate(60.66vw, -10px) scale(0.0298);
  animation: fall-168 20s -30s linear infinite;
}
@keyframes fall-168 {
  67.545% {
    transform: translate(70.1109vw, 67.545vh) scale(0.0298);
  }
  to {
    transform: translate(65.38545vw, 100vh) scale(0.0298);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.978;
  transform: translate(49.3901vw, -10px) scale(0.1943);
  animation: fall-169 22s -8s linear infinite;
}
@keyframes fall-169 {
  59.175% {
    transform: translate(51.4322vw, 59.175vh) scale(0.1943);
  }
  to {
    transform: translate(50.41115vw, 100vh) scale(0.1943);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.0007;
  transform: translate(83.5474vw, -10px) scale(0.6058);
  animation: fall-170 10s -8s linear infinite;
}
@keyframes fall-170 {
  32.949% {
    transform: translate(91.165vw, 32.949vh) scale(0.6058);
  }
  to {
    transform: translate(87.3562vw, 100vh) scale(0.6058);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.5437;
  transform: translate(48.7977vw, -10px) scale(0.2951);
  animation: fall-171 18s -15s linear infinite;
}
@keyframes fall-171 {
  31.95% {
    transform: translate(52.3341vw, 31.95vh) scale(0.2951);
  }
  to {
    transform: translate(50.5659vw, 100vh) scale(0.2951);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.8705;
  transform: translate(28.037vw, -10px) scale(0.2542);
  animation: fall-172 30s -29s linear infinite;
}
@keyframes fall-172 {
  57.867% {
    transform: translate(35.7502vw, 57.867vh) scale(0.2542);
  }
  to {
    transform: translate(31.8936vw, 100vh) scale(0.2542);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.5892;
  transform: translate(30.6517vw, -10px) scale(0.8767);
  animation: fall-173 29s -24s linear infinite;
}
@keyframes fall-173 {
  35.823% {
    transform: translate(33.3626vw, 35.823vh) scale(0.8767);
  }
  to {
    transform: translate(32.00715vw, 100vh) scale(0.8767);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.9018;
  transform: translate(36.4017vw, -10px) scale(0.0722);
  animation: fall-174 25s -27s linear infinite;
}
@keyframes fall-174 {
  58.377% {
    transform: translate(29.5979vw, 58.377vh) scale(0.0722);
  }
  to {
    transform: translate(32.9998vw, 100vh) scale(0.0722);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.1086;
  transform: translate(47.6027vw, -10px) scale(0.1566);
  animation: fall-175 29s -3s linear infinite;
}
@keyframes fall-175 {
  79.972% {
    transform: translate(45.1773vw, 79.972vh) scale(0.1566);
  }
  to {
    transform: translate(46.39vw, 100vh) scale(0.1566);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.0131;
  transform: translate(58.2309vw, -10px) scale(0.9732);
  animation: fall-176 20s -4s linear infinite;
}
@keyframes fall-176 {
  34.288% {
    transform: translate(51.7619vw, 34.288vh) scale(0.9732);
  }
  to {
    transform: translate(54.9964vw, 100vh) scale(0.9732);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.7884;
  transform: translate(11.7539vw, -10px) scale(0.3374);
  animation: fall-177 26s -3s linear infinite;
}
@keyframes fall-177 {
  70.721% {
    transform: translate(11.0898vw, 70.721vh) scale(0.3374);
  }
  to {
    transform: translate(11.42185vw, 100vh) scale(0.3374);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.666;
  transform: translate(73.9558vw, -10px) scale(0.6388);
  animation: fall-178 10s -13s linear infinite;
}
@keyframes fall-178 {
  76.099% {
    transform: translate(71.2922vw, 76.099vh) scale(0.6388);
  }
  to {
    transform: translate(72.624vw, 100vh) scale(0.6388);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.8921;
  transform: translate(50.9808vw, -10px) scale(0.4333);
  animation: fall-179 23s -5s linear infinite;
}
@keyframes fall-179 {
  74.674% {
    transform: translate(55.0781vw, 74.674vh) scale(0.4333);
  }
  to {
    transform: translate(53.02945vw, 100vh) scale(0.4333);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.3424;
  transform: translate(95.3387vw, -10px) scale(0.1126);
  animation: fall-180 14s -13s linear infinite;
}
@keyframes fall-180 {
  71.626% {
    transform: translate(97.3679vw, 71.626vh) scale(0.1126);
  }
  to {
    transform: translate(96.3533vw, 100vh) scale(0.1126);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.6847;
  transform: translate(54.923vw, -10px) scale(0.6549);
  animation: fall-181 23s -29s linear infinite;
}
@keyframes fall-181 {
  70.088% {
    transform: translate(56.7772vw, 70.088vh) scale(0.6549);
  }
  to {
    transform: translate(55.8501vw, 100vh) scale(0.6549);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.4406;
  transform: translate(18.7712vw, -10px) scale(0.4141);
  animation: fall-182 23s -6s linear infinite;
}
@keyframes fall-182 {
  65.15% {
    transform: translate(13.1738vw, 65.15vh) scale(0.4141);
  }
  to {
    transform: translate(15.9725vw, 100vh) scale(0.4141);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.9003;
  transform: translate(82.083vw, -10px) scale(0.2647);
  animation: fall-183 17s -6s linear infinite;
}
@keyframes fall-183 {
  68.852% {
    transform: translate(76.0232vw, 68.852vh) scale(0.2647);
  }
  to {
    transform: translate(79.0531vw, 100vh) scale(0.2647);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.0985;
  transform: translate(77.8002vw, -10px) scale(0.7457);
  animation: fall-184 11s -29s linear infinite;
}
@keyframes fall-184 {
  39.218% {
    transform: translate(77.7513vw, 39.218vh) scale(0.7457);
  }
  to {
    transform: translate(77.77575vw, 100vh) scale(0.7457);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.5161;
  transform: translate(96.7693vw, -10px) scale(0.8378);
  animation: fall-185 23s -16s linear infinite;
}
@keyframes fall-185 {
  33.566% {
    transform: translate(96.5671vw, 33.566vh) scale(0.8378);
  }
  to {
    transform: translate(96.6682vw, 100vh) scale(0.8378);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.9003;
  transform: translate(20.1189vw, -10px) scale(0.6069);
  animation: fall-186 16s -5s linear infinite;
}
@keyframes fall-186 {
  66.776% {
    transform: translate(22.2475vw, 66.776vh) scale(0.6069);
  }
  to {
    transform: translate(21.1832vw, 100vh) scale(0.6069);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.8698;
  transform: translate(11.5596vw, -10px) scale(0.4131);
  animation: fall-187 28s -7s linear infinite;
}
@keyframes fall-187 {
  65.334% {
    transform: translate(5.3335vw, 65.334vh) scale(0.4131);
  }
  to {
    transform: translate(8.44655vw, 100vh) scale(0.4131);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.539;
  transform: translate(64.1532vw, -10px) scale(0.0416);
  animation: fall-188 19s -9s linear infinite;
}
@keyframes fall-188 {
  73.661% {
    transform: translate(71.7054vw, 73.661vh) scale(0.0416);
  }
  to {
    transform: translate(67.9293vw, 100vh) scale(0.0416);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.5698;
  transform: translate(66.6527vw, -10px) scale(0.9368);
  animation: fall-189 11s -5s linear infinite;
}
@keyframes fall-189 {
  38.124% {
    transform: translate(65.4251vw, 38.124vh) scale(0.9368);
  }
  to {
    transform: translate(66.0389vw, 100vh) scale(0.9368);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.0576;
  transform: translate(55.5405vw, -10px) scale(0.4756);
  animation: fall-190 17s -3s linear infinite;
}
@keyframes fall-190 {
  74.093% {
    transform: translate(45.6727vw, 74.093vh) scale(0.4756);
  }
  to {
    transform: translate(50.6066vw, 100vh) scale(0.4756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.7576;
  transform: translate(73.8228vw, -10px) scale(0.7744);
  animation: fall-191 20s -13s linear infinite;
}
@keyframes fall-191 {
  33.767% {
    transform: translate(77.7901vw, 33.767vh) scale(0.7744);
  }
  to {
    transform: translate(75.80645vw, 100vh) scale(0.7744);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.536;
  transform: translate(67.0413vw, -10px) scale(0.5576);
  animation: fall-192 21s -26s linear infinite;
}
@keyframes fall-192 {
  36.965% {
    transform: translate(60.9764vw, 36.965vh) scale(0.5576);
  }
  to {
    transform: translate(64.00885vw, 100vh) scale(0.5576);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.7068;
  transform: translate(31.7949vw, -10px) scale(0.39);
  animation: fall-193 20s -15s linear infinite;
}
@keyframes fall-193 {
  77.869% {
    transform: translate(26.3328vw, 77.869vh) scale(0.39);
  }
  to {
    transform: translate(29.06385vw, 100vh) scale(0.39);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.1768;
  transform: translate(69.2671vw, -10px) scale(0.375);
  animation: fall-194 30s -25s linear infinite;
}
@keyframes fall-194 {
  40.946% {
    transform: translate(59.4572vw, 40.946vh) scale(0.375);
  }
  to {
    transform: translate(64.36215vw, 100vh) scale(0.375);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.8466;
  transform: translate(55.8047vw, -10px) scale(0.0093);
  animation: fall-195 14s -25s linear infinite;
}
@keyframes fall-195 {
  34.128% {
    transform: translate(47.0754vw, 34.128vh) scale(0.0093);
  }
  to {
    transform: translate(51.44005vw, 100vh) scale(0.0093);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.5244;
  transform: translate(89.8931vw, -10px) scale(0.2445);
  animation: fall-196 24s -4s linear infinite;
}
@keyframes fall-196 {
  51.194% {
    transform: translate(92.8691vw, 51.194vh) scale(0.2445);
  }
  to {
    transform: translate(91.3811vw, 100vh) scale(0.2445);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.857;
  transform: translate(34.2198vw, -10px) scale(0.6916);
  animation: fall-197 13s -10s linear infinite;
}
@keyframes fall-197 {
  38.564% {
    transform: translate(33.9947vw, 38.564vh) scale(0.6916);
  }
  to {
    transform: translate(34.10725vw, 100vh) scale(0.6916);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.6849;
  transform: translate(67.0192vw, -10px) scale(0.9754);
  animation: fall-198 14s -3s linear infinite;
}
@keyframes fall-198 {
  44.535% {
    transform: translate(70.1465vw, 44.535vh) scale(0.9754);
  }
  to {
    transform: translate(68.58285vw, 100vh) scale(0.9754);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.984;
  transform: translate(89.4842vw, -10px) scale(0.863);
  animation: fall-199 27s -2s linear infinite;
}
@keyframes fall-199 {
  66.249% {
    transform: translate(98.1464vw, 66.249vh) scale(0.863);
  }
  to {
    transform: translate(93.8153vw, 100vh) scale(0.863);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.3693;
  transform: translate(23.9029vw, -10px) scale(0.9354);
  animation: fall-200 12s -21s linear infinite;
}
@keyframes fall-200 {
  64.757% {
    transform: translate(29.0375vw, 64.757vh) scale(0.9354);
  }
  to {
    transform: translate(26.4702vw, 100vh) scale(0.9354);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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