@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, .eyebrow {
  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, .eyebrow {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  h2, .eyebrow {
    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: 16px !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;
}
.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 {
  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.352;
  transform: translate(21.0908vw, -10px) scale(0.8279);
  animation: fall-1 27s -30s linear infinite;
}
@keyframes fall-1 {
  73.347% {
    transform: translate(20.0987vw, 73.347vh) scale(0.8279);
  }
  to {
    transform: translate(20.59475vw, 100vh) scale(0.8279);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(2) {
  opacity: 0.8551;
  transform: translate(59.0678vw, -10px) scale(0.7258);
  animation: fall-2 21s -9s linear infinite;
}
@keyframes fall-2 {
  49.565% {
    transform: translate(59.2856vw, 49.565vh) scale(0.7258);
  }
  to {
    transform: translate(59.1767vw, 100vh) scale(0.7258);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(3) {
  opacity: 0.3081;
  transform: translate(40.3358vw, -10px) scale(0.4547);
  animation: fall-3 18s -16s linear infinite;
}
@keyframes fall-3 {
  33.071% {
    transform: translate(46.2691vw, 33.071vh) scale(0.4547);
  }
  to {
    transform: translate(43.30245vw, 100vh) scale(0.4547);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(4) {
  opacity: 0.2604;
  transform: translate(56.3861vw, -10px) scale(0.8584);
  animation: fall-4 17s -24s linear infinite;
}
@keyframes fall-4 {
  60.524% {
    transform: translate(58.0264vw, 60.524vh) scale(0.8584);
  }
  to {
    transform: translate(57.20625vw, 100vh) scale(0.8584);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(5) {
  opacity: 0.8402;
  transform: translate(72.0611vw, -10px) scale(0.9111);
  animation: fall-5 25s -22s linear infinite;
}
@keyframes fall-5 {
  33.997% {
    transform: translate(62.3361vw, 33.997vh) scale(0.9111);
  }
  to {
    transform: translate(67.1986vw, 100vh) scale(0.9111);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(6) {
  opacity: 0.3023;
  transform: translate(50.3828vw, -10px) scale(0.2787);
  animation: fall-6 21s -23s linear infinite;
}
@keyframes fall-6 {
  64.008% {
    transform: translate(46.5458vw, 64.008vh) scale(0.2787);
  }
  to {
    transform: translate(48.4643vw, 100vh) scale(0.2787);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(7) {
  opacity: 0.721;
  transform: translate(80.2699vw, -10px) scale(0.3004);
  animation: fall-7 28s -19s linear infinite;
}
@keyframes fall-7 {
  34.962% {
    transform: translate(76.7302vw, 34.962vh) scale(0.3004);
  }
  to {
    transform: translate(78.50005vw, 100vh) scale(0.3004);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(8) {
  opacity: 0.258;
  transform: translate(57.6226vw, -10px) scale(0.7914);
  animation: fall-8 24s -12s linear infinite;
}
@keyframes fall-8 {
  61.921% {
    transform: translate(47.9397vw, 61.921vh) scale(0.7914);
  }
  to {
    transform: translate(52.78115vw, 100vh) scale(0.7914);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(9) {
  opacity: 0.1122;
  transform: translate(89.9301vw, -10px) scale(0.1594);
  animation: fall-9 29s -30s linear infinite;
}
@keyframes fall-9 {
  43.455% {
    transform: translate(89.5155vw, 43.455vh) scale(0.1594);
  }
  to {
    transform: translate(89.7228vw, 100vh) scale(0.1594);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(10) {
  opacity: 0.828;
  transform: translate(93.9971vw, -10px) scale(0.9269);
  animation: fall-10 30s -28s linear infinite;
}
@keyframes fall-10 {
  39.618% {
    transform: translate(86.952vw, 39.618vh) scale(0.9269);
  }
  to {
    transform: translate(90.47455vw, 100vh) scale(0.9269);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(11) {
  opacity: 0.8194;
  transform: translate(58.8461vw, -10px) scale(0.0114);
  animation: fall-11 10s -14s linear infinite;
}
@keyframes fall-11 {
  75.449% {
    transform: translate(64.8277vw, 75.449vh) scale(0.0114);
  }
  to {
    transform: translate(61.8369vw, 100vh) scale(0.0114);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(12) {
  opacity: 0.0607;
  transform: translate(10.0785vw, -10px) scale(0.0167);
  animation: fall-12 23s -7s linear infinite;
}
@keyframes fall-12 {
  45.97% {
    transform: translate(10.4143vw, 45.97vh) scale(0.0167);
  }
  to {
    transform: translate(10.2464vw, 100vh) scale(0.0167);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(13) {
  opacity: 0.7119;
  transform: translate(95.2876vw, -10px) scale(0.3713);
  animation: fall-13 11s -9s linear infinite;
}
@keyframes fall-13 {
  44.934% {
    transform: translate(87.949vw, 44.934vh) scale(0.3713);
  }
  to {
    transform: translate(91.6183vw, 100vh) scale(0.3713);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(14) {
  opacity: 0.944;
  transform: translate(8.4734vw, -10px) scale(0.8522);
  animation: fall-14 24s -1s linear infinite;
}
@keyframes fall-14 {
  44.497% {
    transform: translate(11.6576vw, 44.497vh) scale(0.8522);
  }
  to {
    transform: translate(10.0655vw, 100vh) scale(0.8522);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(15) {
  opacity: 0.3304;
  transform: translate(95.4397vw, -10px) scale(0.247);
  animation: fall-15 30s -4s linear infinite;
}
@keyframes fall-15 {
  71.97% {
    transform: translate(85.7608vw, 71.97vh) scale(0.247);
  }
  to {
    transform: translate(90.60025vw, 100vh) scale(0.247);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(16) {
  opacity: 0.6733;
  transform: translate(5.2678vw, -10px) scale(0.5191);
  animation: fall-16 12s -21s linear infinite;
}
@keyframes fall-16 {
  69.934% {
    transform: translate(3.3118vw, 69.934vh) scale(0.5191);
  }
  to {
    transform: translate(4.2898vw, 100vh) scale(0.5191);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(17) {
  opacity: 0.925;
  transform: translate(19.2987vw, -10px) scale(0.0867);
  animation: fall-17 18s -21s linear infinite;
}
@keyframes fall-17 {
  32.971% {
    transform: translate(20.484vw, 32.971vh) scale(0.0867);
  }
  to {
    transform: translate(19.89135vw, 100vh) scale(0.0867);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(18) {
  opacity: 0.1123;
  transform: translate(94.046vw, -10px) scale(0.9471);
  animation: fall-18 16s -28s linear infinite;
}
@keyframes fall-18 {
  68.03% {
    transform: translate(100.1077vw, 68.03vh) scale(0.9471);
  }
  to {
    transform: translate(97.07685vw, 100vh) scale(0.9471);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(19) {
  opacity: 0.1372;
  transform: translate(21.8973vw, -10px) scale(0.5672);
  animation: fall-19 26s -9s linear infinite;
}
@keyframes fall-19 {
  42.798% {
    transform: translate(27.6034vw, 42.798vh) scale(0.5672);
  }
  to {
    transform: translate(24.75035vw, 100vh) scale(0.5672);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(20) {
  opacity: 0.6815;
  transform: translate(80.4267vw, -10px) scale(0.0813);
  animation: fall-20 21s -20s linear infinite;
}
@keyframes fall-20 {
  58.429% {
    transform: translate(81.4068vw, 58.429vh) scale(0.0813);
  }
  to {
    transform: translate(80.91675vw, 100vh) scale(0.0813);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(21) {
  opacity: 0.041;
  transform: translate(59.7556vw, -10px) scale(0.0389);
  animation: fall-21 23s -12s linear infinite;
}
@keyframes fall-21 {
  59.169% {
    transform: translate(63.6912vw, 59.169vh) scale(0.0389);
  }
  to {
    transform: translate(61.7234vw, 100vh) scale(0.0389);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(22) {
  opacity: 0.0756;
  transform: translate(33.3646vw, -10px) scale(0.0445);
  animation: fall-22 15s -19s linear infinite;
}
@keyframes fall-22 {
  66.628% {
    transform: translate(28.3671vw, 66.628vh) scale(0.0445);
  }
  to {
    transform: translate(30.86585vw, 100vh) scale(0.0445);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(23) {
  opacity: 0.7865;
  transform: translate(30.7154vw, -10px) scale(0.328);
  animation: fall-23 23s -14s linear infinite;
}
@keyframes fall-23 {
  39.026% {
    transform: translate(37.1495vw, 39.026vh) scale(0.328);
  }
  to {
    transform: translate(33.93245vw, 100vh) scale(0.328);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(24) {
  opacity: 0.2568;
  transform: translate(91.4311vw, -10px) scale(0.5226);
  animation: fall-24 14s -30s linear infinite;
}
@keyframes fall-24 {
  68.988% {
    transform: translate(93.2726vw, 68.988vh) scale(0.5226);
  }
  to {
    transform: translate(92.35185vw, 100vh) scale(0.5226);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(25) {
  opacity: 0.072;
  transform: translate(16.8429vw, -10px) scale(0.2139);
  animation: fall-25 15s -21s linear infinite;
}
@keyframes fall-25 {
  52.161% {
    transform: translate(19.8324vw, 52.161vh) scale(0.2139);
  }
  to {
    transform: translate(18.33765vw, 100vh) scale(0.2139);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(26) {
  opacity: 0.1954;
  transform: translate(61.3877vw, -10px) scale(0.622);
  animation: fall-26 24s -3s linear infinite;
}
@keyframes fall-26 {
  45.007% {
    transform: translate(53.9762vw, 45.007vh) scale(0.622);
  }
  to {
    transform: translate(57.68195vw, 100vh) scale(0.622);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(27) {
  opacity: 0.4272;
  transform: translate(45.1252vw, -10px) scale(0.6346);
  animation: fall-27 17s -6s linear infinite;
}
@keyframes fall-27 {
  63.763% {
    transform: translate(49.4517vw, 63.763vh) scale(0.6346);
  }
  to {
    transform: translate(47.28845vw, 100vh) scale(0.6346);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(28) {
  opacity: 0.8325;
  transform: translate(18.3923vw, -10px) scale(0.2307);
  animation: fall-28 19s -8s linear infinite;
}
@keyframes fall-28 {
  68.581% {
    transform: translate(25.3662vw, 68.581vh) scale(0.2307);
  }
  to {
    transform: translate(21.87925vw, 100vh) scale(0.2307);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(29) {
  opacity: 0.3113;
  transform: translate(53.1022vw, -10px) scale(0.7544);
  animation: fall-29 20s -7s linear infinite;
}
@keyframes fall-29 {
  44.679% {
    transform: translate(47.4364vw, 44.679vh) scale(0.7544);
  }
  to {
    transform: translate(50.2693vw, 100vh) scale(0.7544);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(30) {
  opacity: 0.3577;
  transform: translate(62.3557vw, -10px) scale(0.304);
  animation: fall-30 15s -15s linear infinite;
}
@keyframes fall-30 {
  49.856% {
    transform: translate(58.8734vw, 49.856vh) scale(0.304);
  }
  to {
    transform: translate(60.61455vw, 100vh) scale(0.304);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(31) {
  opacity: 0.1859;
  transform: translate(45.143vw, -10px) scale(0.5684);
  animation: fall-31 26s -1s linear infinite;
}
@keyframes fall-31 {
  61.22% {
    transform: translate(47.5584vw, 61.22vh) scale(0.5684);
  }
  to {
    transform: translate(46.3507vw, 100vh) scale(0.5684);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(32) {
  opacity: 0.7438;
  transform: translate(40.2226vw, -10px) scale(0.841);
  animation: fall-32 14s -23s linear infinite;
}
@keyframes fall-32 {
  68.748% {
    transform: translate(39.2567vw, 68.748vh) scale(0.841);
  }
  to {
    transform: translate(39.73965vw, 100vh) scale(0.841);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(33) {
  opacity: 0.1768;
  transform: translate(24.595vw, -10px) scale(0.8167);
  animation: fall-33 21s -17s linear infinite;
}
@keyframes fall-33 {
  58.347% {
    transform: translate(25.0269vw, 58.347vh) scale(0.8167);
  }
  to {
    transform: translate(24.81095vw, 100vh) scale(0.8167);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(34) {
  opacity: 0.1481;
  transform: translate(92.9627vw, -10px) scale(0.0906);
  animation: fall-34 12s -14s linear infinite;
}
@keyframes fall-34 {
  73.107% {
    transform: translate(97.7676vw, 73.107vh) scale(0.0906);
  }
  to {
    transform: translate(95.36515vw, 100vh) scale(0.0906);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(35) {
  opacity: 0.9905;
  transform: translate(13.6225vw, -10px) scale(0.6551);
  animation: fall-35 20s -9s linear infinite;
}
@keyframes fall-35 {
  75.276% {
    transform: translate(4.1586vw, 75.276vh) scale(0.6551);
  }
  to {
    transform: translate(8.89055vw, 100vh) scale(0.6551);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(36) {
  opacity: 0.6658;
  transform: translate(37.2857vw, -10px) scale(0.8466);
  animation: fall-36 21s -8s linear infinite;
}
@keyframes fall-36 {
  35.263% {
    transform: translate(37.7409vw, 35.263vh) scale(0.8466);
  }
  to {
    transform: translate(37.5133vw, 100vh) scale(0.8466);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(37) {
  opacity: 0.2395;
  transform: translate(13.9092vw, -10px) scale(0.7463);
  animation: fall-37 15s -29s linear infinite;
}
@keyframes fall-37 {
  79.634% {
    transform: translate(15.4107vw, 79.634vh) scale(0.7463);
  }
  to {
    transform: translate(14.65995vw, 100vh) scale(0.7463);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(38) {
  opacity: 0.8627;
  transform: translate(79.3607vw, -10px) scale(0.0628);
  animation: fall-38 24s -26s linear infinite;
}
@keyframes fall-38 {
  40.727% {
    transform: translate(71.8552vw, 40.727vh) scale(0.0628);
  }
  to {
    transform: translate(75.60795vw, 100vh) scale(0.0628);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(39) {
  opacity: 0.4503;
  transform: translate(53.9379vw, -10px) scale(0.3596);
  animation: fall-39 22s -1s linear infinite;
}
@keyframes fall-39 {
  68.39% {
    transform: translate(61.5176vw, 68.39vh) scale(0.3596);
  }
  to {
    transform: translate(57.72775vw, 100vh) scale(0.3596);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(40) {
  opacity: 0.174;
  transform: translate(97.8162vw, -10px) scale(0.1362);
  animation: fall-40 17s -11s linear infinite;
}
@keyframes fall-40 {
  30.298% {
    transform: translate(104.5421vw, 30.298vh) scale(0.1362);
  }
  to {
    transform: translate(101.17915vw, 100vh) scale(0.1362);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(41) {
  opacity: 0.6355;
  transform: translate(54.9572vw, -10px) scale(0.4108);
  animation: fall-41 19s -16s linear infinite;
}
@keyframes fall-41 {
  42.979% {
    transform: translate(49.2882vw, 42.979vh) scale(0.4108);
  }
  to {
    transform: translate(52.1227vw, 100vh) scale(0.4108);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(42) {
  opacity: 0.9173;
  transform: translate(20.9827vw, -10px) scale(0.2979);
  animation: fall-42 11s -26s linear infinite;
}
@keyframes fall-42 {
  78.973% {
    transform: translate(19.9439vw, 78.973vh) scale(0.2979);
  }
  to {
    transform: translate(20.4633vw, 100vh) scale(0.2979);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(43) {
  opacity: 0.3861;
  transform: translate(38.7905vw, -10px) scale(0.073);
  animation: fall-43 17s -30s linear infinite;
}
@keyframes fall-43 {
  70.307% {
    transform: translate(47.0395vw, 70.307vh) scale(0.073);
  }
  to {
    transform: translate(42.915vw, 100vh) scale(0.073);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(44) {
  opacity: 0.8732;
  transform: translate(31.6813vw, -10px) scale(0.6185);
  animation: fall-44 27s -30s linear infinite;
}
@keyframes fall-44 {
  38.703% {
    transform: translate(28.2383vw, 38.703vh) scale(0.6185);
  }
  to {
    transform: translate(29.9598vw, 100vh) scale(0.6185);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(45) {
  opacity: 0.8761;
  transform: translate(94.6683vw, -10px) scale(0.5493);
  animation: fall-45 12s -25s linear infinite;
}
@keyframes fall-45 {
  62.529% {
    transform: translate(92.9136vw, 62.529vh) scale(0.5493);
  }
  to {
    transform: translate(93.79095vw, 100vh) scale(0.5493);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(46) {
  opacity: 0.5425;
  transform: translate(99.1358vw, -10px) scale(0.5996);
  animation: fall-46 27s -6s linear infinite;
}
@keyframes fall-46 {
  55.848% {
    transform: translate(95.2335vw, 55.848vh) scale(0.5996);
  }
  to {
    transform: translate(97.18465vw, 100vh) scale(0.5996);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(47) {
  opacity: 0.5543;
  transform: translate(36.0567vw, -10px) scale(0.4258);
  animation: fall-47 30s -9s linear infinite;
}
@keyframes fall-47 {
  41.489% {
    transform: translate(30.1617vw, 41.489vh) scale(0.4258);
  }
  to {
    transform: translate(33.1092vw, 100vh) scale(0.4258);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(48) {
  opacity: 0.7298;
  transform: translate(90.0196vw, -10px) scale(0.0635);
  animation: fall-48 24s -23s linear infinite;
}
@keyframes fall-48 {
  56.159% {
    transform: translate(99.2359vw, 56.159vh) scale(0.0635);
  }
  to {
    transform: translate(94.62775vw, 100vh) scale(0.0635);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(49) {
  opacity: 0.2186;
  transform: translate(22.1403vw, -10px) scale(0.5629);
  animation: fall-49 13s -5s linear infinite;
}
@keyframes fall-49 {
  63.021% {
    transform: translate(25.7185vw, 63.021vh) scale(0.5629);
  }
  to {
    transform: translate(23.9294vw, 100vh) scale(0.5629);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(50) {
  opacity: 0.0536;
  transform: translate(36.9804vw, -10px) scale(0.3556);
  animation: fall-50 16s -25s linear infinite;
}
@keyframes fall-50 {
  46.048% {
    transform: translate(27.9888vw, 46.048vh) scale(0.3556);
  }
  to {
    transform: translate(32.4846vw, 100vh) scale(0.3556);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(51) {
  opacity: 0.2065;
  transform: translate(82.1428vw, -10px) scale(0.853);
  animation: fall-51 13s -11s linear infinite;
}
@keyframes fall-51 {
  48.971% {
    transform: translate(90.277vw, 48.971vh) scale(0.853);
  }
  to {
    transform: translate(86.2099vw, 100vh) scale(0.853);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(52) {
  opacity: 0.7869;
  transform: translate(17.6841vw, -10px) scale(0.2105);
  animation: fall-52 14s -7s linear infinite;
}
@keyframes fall-52 {
  77.517% {
    transform: translate(12.6188vw, 77.517vh) scale(0.2105);
  }
  to {
    transform: translate(15.15145vw, 100vh) scale(0.2105);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(53) {
  opacity: 0.0017;
  transform: translate(38.1332vw, -10px) scale(0.2352);
  animation: fall-53 13s -12s linear infinite;
}
@keyframes fall-53 {
  42.631% {
    transform: translate(32.2256vw, 42.631vh) scale(0.2352);
  }
  to {
    transform: translate(35.1794vw, 100vh) scale(0.2352);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(54) {
  opacity: 0.0212;
  transform: translate(95.0376vw, -10px) scale(0.5492);
  animation: fall-54 22s -14s linear infinite;
}
@keyframes fall-54 {
  60.479% {
    transform: translate(92.0721vw, 60.479vh) scale(0.5492);
  }
  to {
    transform: translate(93.55485vw, 100vh) scale(0.5492);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(55) {
  opacity: 0.5202;
  transform: translate(95.7189vw, -10px) scale(0.9282);
  animation: fall-55 28s -3s linear infinite;
}
@keyframes fall-55 {
  40.097% {
    transform: translate(102.6812vw, 40.097vh) scale(0.9282);
  }
  to {
    transform: translate(99.20005vw, 100vh) scale(0.9282);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(56) {
  opacity: 0.9437;
  transform: translate(9.4214vw, -10px) scale(0.2387);
  animation: fall-56 19s -7s linear infinite;
}
@keyframes fall-56 {
  39.793% {
    transform: translate(8.1148vw, 39.793vh) scale(0.2387);
  }
  to {
    transform: translate(8.7681vw, 100vh) scale(0.2387);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(57) {
  opacity: 0.3562;
  transform: translate(3.3539vw, -10px) scale(0.4201);
  animation: fall-57 24s -8s linear infinite;
}
@keyframes fall-57 {
  57.281% {
    transform: translate(-5.1453vw, 57.281vh) scale(0.4201);
  }
  to {
    transform: translate(-0.8957vw, 100vh) scale(0.4201);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(58) {
  opacity: 0.8379;
  transform: translate(51.6921vw, -10px) scale(0.0271);
  animation: fall-58 16s -8s linear infinite;
}
@keyframes fall-58 {
  76.314% {
    transform: translate(44.5604vw, 76.314vh) scale(0.0271);
  }
  to {
    transform: translate(48.12625vw, 100vh) scale(0.0271);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(59) {
  opacity: 0.8588;
  transform: translate(34.3026vw, -10px) scale(0.0115);
  animation: fall-59 10s -12s linear infinite;
}
@keyframes fall-59 {
  66.438% {
    transform: translate(33.7742vw, 66.438vh) scale(0.0115);
  }
  to {
    transform: translate(34.0384vw, 100vh) scale(0.0115);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(60) {
  opacity: 0.1731;
  transform: translate(58.0797vw, -10px) scale(0.8796);
  animation: fall-60 29s -23s linear infinite;
}
@keyframes fall-60 {
  32.776% {
    transform: translate(59.408vw, 32.776vh) scale(0.8796);
  }
  to {
    transform: translate(58.74385vw, 100vh) scale(0.8796);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(61) {
  opacity: 0.1531;
  transform: translate(61.1189vw, -10px) scale(0.4935);
  animation: fall-61 17s -30s linear infinite;
}
@keyframes fall-61 {
  47.548% {
    transform: translate(56.7817vw, 47.548vh) scale(0.4935);
  }
  to {
    transform: translate(58.9503vw, 100vh) scale(0.4935);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(62) {
  opacity: 0.3886;
  transform: translate(54.6231vw, -10px) scale(0.8694);
  animation: fall-62 12s -27s linear infinite;
}
@keyframes fall-62 {
  44.775% {
    transform: translate(59.655vw, 44.775vh) scale(0.8694);
  }
  to {
    transform: translate(57.13905vw, 100vh) scale(0.8694);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(63) {
  opacity: 0.697;
  transform: translate(11.3971vw, -10px) scale(0.3866);
  animation: fall-63 28s -29s linear infinite;
}
@keyframes fall-63 {
  67.361% {
    transform: translate(13.2798vw, 67.361vh) scale(0.3866);
  }
  to {
    transform: translate(12.33845vw, 100vh) scale(0.3866);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(64) {
  opacity: 0.3968;
  transform: translate(21.5413vw, -10px) scale(0.4305);
  animation: fall-64 13s -1s linear infinite;
}
@keyframes fall-64 {
  73.894% {
    transform: translate(12.5465vw, 73.894vh) scale(0.4305);
  }
  to {
    transform: translate(17.0439vw, 100vh) scale(0.4305);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(65) {
  opacity: 0.5755;
  transform: translate(27.2277vw, -10px) scale(0.0767);
  animation: fall-65 21s -20s linear infinite;
}
@keyframes fall-65 {
  57.291% {
    transform: translate(24.4727vw, 57.291vh) scale(0.0767);
  }
  to {
    transform: translate(25.8502vw, 100vh) scale(0.0767);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(66) {
  opacity: 0.8861;
  transform: translate(77.8538vw, -10px) scale(0.8732);
  animation: fall-66 25s -12s linear infinite;
}
@keyframes fall-66 {
  34.637% {
    transform: translate(79.8582vw, 34.637vh) scale(0.8732);
  }
  to {
    transform: translate(78.856vw, 100vh) scale(0.8732);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(67) {
  opacity: 0.5462;
  transform: translate(71.8726vw, -10px) scale(0.7803);
  animation: fall-67 28s -26s linear infinite;
}
@keyframes fall-67 {
  33.602% {
    transform: translate(81.1189vw, 33.602vh) scale(0.7803);
  }
  to {
    transform: translate(76.49575vw, 100vh) scale(0.7803);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(68) {
  opacity: 0.0066;
  transform: translate(68.23vw, -10px) scale(0.8897);
  animation: fall-68 16s -30s linear infinite;
}
@keyframes fall-68 {
  46.124% {
    transform: translate(66.5609vw, 46.124vh) scale(0.8897);
  }
  to {
    transform: translate(67.39545vw, 100vh) scale(0.8897);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(69) {
  opacity: 0.4775;
  transform: translate(85.5358vw, -10px) scale(0.0895);
  animation: fall-69 11s -28s linear infinite;
}
@keyframes fall-69 {
  57.788% {
    transform: translate(95.1968vw, 57.788vh) scale(0.0895);
  }
  to {
    transform: translate(90.3663vw, 100vh) scale(0.0895);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(70) {
  opacity: 0.6539;
  transform: translate(99.2211vw, -10px) scale(0.0398);
  animation: fall-70 16s -14s linear infinite;
}
@keyframes fall-70 {
  53.969% {
    transform: translate(93.5066vw, 53.969vh) scale(0.0398);
  }
  to {
    transform: translate(96.36385vw, 100vh) scale(0.0398);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(71) {
  opacity: 0.3959;
  transform: translate(59.5472vw, -10px) scale(0.9433);
  animation: fall-71 21s -6s linear infinite;
}
@keyframes fall-71 {
  78.455% {
    transform: translate(58.5688vw, 78.455vh) scale(0.9433);
  }
  to {
    transform: translate(59.058vw, 100vh) scale(0.9433);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(72) {
  opacity: 0.0577;
  transform: translate(79.5345vw, -10px) scale(0.5559);
  animation: fall-72 17s -27s linear infinite;
}
@keyframes fall-72 {
  58.701% {
    transform: translate(70.0405vw, 58.701vh) scale(0.5559);
  }
  to {
    transform: translate(74.7875vw, 100vh) scale(0.5559);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(73) {
  opacity: 0.9159;
  transform: translate(37.0405vw, -10px) scale(0.5001);
  animation: fall-73 16s -5s linear infinite;
}
@keyframes fall-73 {
  58.592% {
    transform: translate(33.1437vw, 58.592vh) scale(0.5001);
  }
  to {
    transform: translate(35.0921vw, 100vh) scale(0.5001);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(74) {
  opacity: 0.4208;
  transform: translate(39.988vw, -10px) scale(0.3688);
  animation: fall-74 14s -21s linear infinite;
}
@keyframes fall-74 {
  70.163% {
    transform: translate(42.7711vw, 70.163vh) scale(0.3688);
  }
  to {
    transform: translate(41.37955vw, 100vh) scale(0.3688);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(75) {
  opacity: 0.2407;
  transform: translate(92.6263vw, -10px) scale(0.1317);
  animation: fall-75 18s -6s linear infinite;
}
@keyframes fall-75 {
  67.803% {
    transform: translate(91.6873vw, 67.803vh) scale(0.1317);
  }
  to {
    transform: translate(92.1568vw, 100vh) scale(0.1317);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(76) {
  opacity: 0.0668;
  transform: translate(84.0726vw, -10px) scale(0.2321);
  animation: fall-76 19s -6s linear infinite;
}
@keyframes fall-76 {
  70.318% {
    transform: translate(77.837vw, 70.318vh) scale(0.2321);
  }
  to {
    transform: translate(80.9548vw, 100vh) scale(0.2321);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(77) {
  opacity: 0.9265;
  transform: translate(12.2957vw, -10px) scale(0.7002);
  animation: fall-77 19s -12s linear infinite;
}
@keyframes fall-77 {
  50.587% {
    transform: translate(7.08vw, 50.587vh) scale(0.7002);
  }
  to {
    transform: translate(9.68785vw, 100vh) scale(0.7002);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(78) {
  opacity: 0.2408;
  transform: translate(94.5067vw, -10px) scale(0.7879);
  animation: fall-78 17s -22s linear infinite;
}
@keyframes fall-78 {
  78.411% {
    transform: translate(91.882vw, 78.411vh) scale(0.7879);
  }
  to {
    transform: translate(93.19435vw, 100vh) scale(0.7879);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(79) {
  opacity: 0.6686;
  transform: translate(89.1796vw, -10px) scale(0.7291);
  animation: fall-79 20s -6s linear infinite;
}
@keyframes fall-79 {
  79.124% {
    transform: translate(90.1174vw, 79.124vh) scale(0.7291);
  }
  to {
    transform: translate(89.6485vw, 100vh) scale(0.7291);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(80) {
  opacity: 0.2749;
  transform: translate(4.4571vw, -10px) scale(0.9291);
  animation: fall-80 18s -9s linear infinite;
}
@keyframes fall-80 {
  75.072% {
    transform: translate(2.6879vw, 75.072vh) scale(0.9291);
  }
  to {
    transform: translate(3.5725vw, 100vh) scale(0.9291);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(81) {
  opacity: 0.9494;
  transform: translate(27.9163vw, -10px) scale(0.1941);
  animation: fall-81 28s -16s linear infinite;
}
@keyframes fall-81 {
  42.614% {
    transform: translate(25.7357vw, 42.614vh) scale(0.1941);
  }
  to {
    transform: translate(26.826vw, 100vh) scale(0.1941);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(82) {
  opacity: 0.1381;
  transform: translate(35.0728vw, -10px) scale(0.281);
  animation: fall-82 24s -28s linear infinite;
}
@keyframes fall-82 {
  70.432% {
    transform: translate(42.4633vw, 70.432vh) scale(0.281);
  }
  to {
    transform: translate(38.76805vw, 100vh) scale(0.281);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(83) {
  opacity: 0.4571;
  transform: translate(13.8461vw, -10px) scale(0.6084);
  animation: fall-83 17s -14s linear infinite;
}
@keyframes fall-83 {
  72.579% {
    transform: translate(10.483vw, 72.579vh) scale(0.6084);
  }
  to {
    transform: translate(12.16455vw, 100vh) scale(0.6084);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(84) {
  opacity: 0.2608;
  transform: translate(48.4437vw, -10px) scale(0.7623);
  animation: fall-84 14s -1s linear infinite;
}
@keyframes fall-84 {
  61.699% {
    transform: translate(44.4687vw, 61.699vh) scale(0.7623);
  }
  to {
    transform: translate(46.4562vw, 100vh) scale(0.7623);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(85) {
  opacity: 0.8927;
  transform: translate(38.0305vw, -10px) scale(0.1363);
  animation: fall-85 10s -29s linear infinite;
}
@keyframes fall-85 {
  44.942% {
    transform: translate(28.988vw, 44.942vh) scale(0.1363);
  }
  to {
    transform: translate(33.50925vw, 100vh) scale(0.1363);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(86) {
  opacity: 0.9403;
  transform: translate(37.2787vw, -10px) scale(0.5895);
  animation: fall-86 29s -25s linear infinite;
}
@keyframes fall-86 {
  46.294% {
    transform: translate(30.0118vw, 46.294vh) scale(0.5895);
  }
  to {
    transform: translate(33.64525vw, 100vh) scale(0.5895);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(87) {
  opacity: 0.4854;
  transform: translate(27.5409vw, -10px) scale(0.4254);
  animation: fall-87 16s -5s linear infinite;
}
@keyframes fall-87 {
  64.64% {
    transform: translate(26.8051vw, 64.64vh) scale(0.4254);
  }
  to {
    transform: translate(27.173vw, 100vh) scale(0.4254);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(88) {
  opacity: 0.4852;
  transform: translate(9.3604vw, -10px) scale(0.7313);
  animation: fall-88 23s -9s linear infinite;
}
@keyframes fall-88 {
  74.895% {
    transform: translate(13.7323vw, 74.895vh) scale(0.7313);
  }
  to {
    transform: translate(11.54635vw, 100vh) scale(0.7313);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(89) {
  opacity: 0.4415;
  transform: translate(61.324vw, -10px) scale(0.9275);
  animation: fall-89 27s -27s linear infinite;
}
@keyframes fall-89 {
  65.889% {
    transform: translate(55.2821vw, 65.889vh) scale(0.9275);
  }
  to {
    transform: translate(58.30305vw, 100vh) scale(0.9275);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(90) {
  opacity: 0.9231;
  transform: translate(81.9148vw, -10px) scale(0.203);
  animation: fall-90 21s -11s linear infinite;
}
@keyframes fall-90 {
  66.994% {
    transform: translate(82.9857vw, 66.994vh) scale(0.203);
  }
  to {
    transform: translate(82.45025vw, 100vh) scale(0.203);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(91) {
  opacity: 0.7427;
  transform: translate(81.3758vw, -10px) scale(0.818);
  animation: fall-91 10s -18s linear infinite;
}
@keyframes fall-91 {
  48.495% {
    transform: translate(89.4275vw, 48.495vh) scale(0.818);
  }
  to {
    transform: translate(85.40165vw, 100vh) scale(0.818);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(92) {
  opacity: 0.7673;
  transform: translate(99.9111vw, -10px) scale(0.7307);
  animation: fall-92 29s -7s linear infinite;
}
@keyframes fall-92 {
  35.688% {
    transform: translate(91.5504vw, 35.688vh) scale(0.7307);
  }
  to {
    transform: translate(95.73075vw, 100vh) scale(0.7307);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(93) {
  opacity: 0.6132;
  transform: translate(76.6565vw, -10px) scale(0.5194);
  animation: fall-93 24s -18s linear infinite;
}
@keyframes fall-93 {
  59.75% {
    transform: translate(78.1702vw, 59.75vh) scale(0.5194);
  }
  to {
    transform: translate(77.41335vw, 100vh) scale(0.5194);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(94) {
  opacity: 0.3388;
  transform: translate(3.7486vw, -10px) scale(0.8973);
  animation: fall-94 26s -21s linear infinite;
}
@keyframes fall-94 {
  65.482% {
    transform: translate(-5.9557vw, 65.482vh) scale(0.8973);
  }
  to {
    transform: translate(-1.10355vw, 100vh) scale(0.8973);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(95) {
  opacity: 0.6195;
  transform: translate(54.6093vw, -10px) scale(0.0151);
  animation: fall-95 21s -16s linear infinite;
}
@keyframes fall-95 {
  66.091% {
    transform: translate(46.7216vw, 66.091vh) scale(0.0151);
  }
  to {
    transform: translate(50.66545vw, 100vh) scale(0.0151);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(96) {
  opacity: 0.6035;
  transform: translate(12.1684vw, -10px) scale(0.0491);
  animation: fall-96 24s -19s linear infinite;
}
@keyframes fall-96 {
  36.966% {
    transform: translate(10.0892vw, 36.966vh) scale(0.0491);
  }
  to {
    transform: translate(11.1288vw, 100vh) scale(0.0491);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(97) {
  opacity: 0.5509;
  transform: translate(18.1075vw, -10px) scale(0.8093);
  animation: fall-97 18s -17s linear infinite;
}
@keyframes fall-97 {
  61.578% {
    transform: translate(8.5708vw, 61.578vh) scale(0.8093);
  }
  to {
    transform: translate(13.33915vw, 100vh) scale(0.8093);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(98) {
  opacity: 0.8669;
  transform: translate(87.8442vw, -10px) scale(0.5673);
  animation: fall-98 27s -11s linear infinite;
}
@keyframes fall-98 {
  79.353% {
    transform: translate(86.7664vw, 79.353vh) scale(0.5673);
  }
  to {
    transform: translate(87.3053vw, 100vh) scale(0.5673);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(99) {
  opacity: 0.9436;
  transform: translate(23.0406vw, -10px) scale(0.6877);
  animation: fall-99 16s -15s linear infinite;
}
@keyframes fall-99 {
  73.008% {
    transform: translate(22.7061vw, 73.008vh) scale(0.6877);
  }
  to {
    transform: translate(22.87335vw, 100vh) scale(0.6877);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(100) {
  opacity: 0.15;
  transform: translate(72.8705vw, -10px) scale(0.9514);
  animation: fall-100 29s -10s linear infinite;
}
@keyframes fall-100 {
  62.271% {
    transform: translate(71.0869vw, 62.271vh) scale(0.9514);
  }
  to {
    transform: translate(71.9787vw, 100vh) scale(0.9514);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(101) {
  opacity: 0.0717;
  transform: translate(62.6808vw, -10px) scale(0.0716);
  animation: fall-101 20s -21s linear infinite;
}
@keyframes fall-101 {
  70.745% {
    transform: translate(52.9746vw, 70.745vh) scale(0.0716);
  }
  to {
    transform: translate(57.8277vw, 100vh) scale(0.0716);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(102) {
  opacity: 0.6918;
  transform: translate(65.1241vw, -10px) scale(0.5604);
  animation: fall-102 19s -28s linear infinite;
}
@keyframes fall-102 {
  42.147% {
    transform: translate(59.9016vw, 42.147vh) scale(0.5604);
  }
  to {
    transform: translate(62.51285vw, 100vh) scale(0.5604);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(103) {
  opacity: 0.8039;
  transform: translate(14.358vw, -10px) scale(0.6756);
  animation: fall-103 22s -6s linear infinite;
}
@keyframes fall-103 {
  48.508% {
    transform: translate(5.0578vw, 48.508vh) scale(0.6756);
  }
  to {
    transform: translate(9.7079vw, 100vh) scale(0.6756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(104) {
  opacity: 0.5175;
  transform: translate(42.2288vw, -10px) scale(0.2989);
  animation: fall-104 19s -10s linear infinite;
}
@keyframes fall-104 {
  49.294% {
    transform: translate(38.3992vw, 49.294vh) scale(0.2989);
  }
  to {
    transform: translate(40.314vw, 100vh) scale(0.2989);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(105) {
  opacity: 0.0456;
  transform: translate(37.1357vw, -10px) scale(0.8563);
  animation: fall-105 20s -5s linear infinite;
}
@keyframes fall-105 {
  61.969% {
    transform: translate(46.5482vw, 61.969vh) scale(0.8563);
  }
  to {
    transform: translate(41.84195vw, 100vh) scale(0.8563);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(106) {
  opacity: 0.028;
  transform: translate(44.1124vw, -10px) scale(0.5085);
  animation: fall-106 25s -14s linear infinite;
}
@keyframes fall-106 {
  39.129% {
    transform: translate(37.1352vw, 39.129vh) scale(0.5085);
  }
  to {
    transform: translate(40.6238vw, 100vh) scale(0.5085);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(107) {
  opacity: 0.2003;
  transform: translate(84.3161vw, -10px) scale(0.8903);
  animation: fall-107 17s -25s linear infinite;
}
@keyframes fall-107 {
  39.827% {
    transform: translate(82.4767vw, 39.827vh) scale(0.8903);
  }
  to {
    transform: translate(83.3964vw, 100vh) scale(0.8903);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(108) {
  opacity: 0.4973;
  transform: translate(3.0731vw, -10px) scale(0.6159);
  animation: fall-108 24s -14s linear infinite;
}
@keyframes fall-108 {
  62.598% {
    transform: translate(11.5432vw, 62.598vh) scale(0.6159);
  }
  to {
    transform: translate(7.30815vw, 100vh) scale(0.6159);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(109) {
  opacity: 0.1223;
  transform: translate(19.3523vw, -10px) scale(0.5251);
  animation: fall-109 27s -22s linear infinite;
}
@keyframes fall-109 {
  31.121% {
    transform: translate(17.1798vw, 31.121vh) scale(0.5251);
  }
  to {
    transform: translate(18.26605vw, 100vh) scale(0.5251);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(110) {
  opacity: 0.6788;
  transform: translate(66.4556vw, -10px) scale(0.5477);
  animation: fall-110 15s -14s linear infinite;
}
@keyframes fall-110 {
  40.369% {
    transform: translate(71.9493vw, 40.369vh) scale(0.5477);
  }
  to {
    transform: translate(69.20245vw, 100vh) scale(0.5477);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(111) {
  opacity: 0.3875;
  transform: translate(95.5361vw, -10px) scale(0.3969);
  animation: fall-111 26s -27s linear infinite;
}
@keyframes fall-111 {
  34.494% {
    transform: translate(92.0627vw, 34.494vh) scale(0.3969);
  }
  to {
    transform: translate(93.7994vw, 100vh) scale(0.3969);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(112) {
  opacity: 0.64;
  transform: translate(4.468vw, -10px) scale(0.1284);
  animation: fall-112 27s -6s linear infinite;
}
@keyframes fall-112 {
  44.146% {
    transform: translate(12.8191vw, 44.146vh) scale(0.1284);
  }
  to {
    transform: translate(8.64355vw, 100vh) scale(0.1284);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(113) {
  opacity: 0.3135;
  transform: translate(31.9257vw, -10px) scale(0.3868);
  animation: fall-113 21s -18s linear infinite;
}
@keyframes fall-113 {
  40.326% {
    transform: translate(39.8407vw, 40.326vh) scale(0.3868);
  }
  to {
    transform: translate(35.8832vw, 100vh) scale(0.3868);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(114) {
  opacity: 0.5432;
  transform: translate(34.4467vw, -10px) scale(0.4191);
  animation: fall-114 24s -23s linear infinite;
}
@keyframes fall-114 {
  35.948% {
    transform: translate(34.4617vw, 35.948vh) scale(0.4191);
  }
  to {
    transform: translate(34.4542vw, 100vh) scale(0.4191);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(115) {
  opacity: 0.206;
  transform: translate(90.0942vw, -10px) scale(0.6482);
  animation: fall-115 27s -29s linear infinite;
}
@keyframes fall-115 {
  68.039% {
    transform: translate(89.6588vw, 68.039vh) scale(0.6482);
  }
  to {
    transform: translate(89.8765vw, 100vh) scale(0.6482);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(116) {
  opacity: 0.2232;
  transform: translate(24.1061vw, -10px) scale(0.0862);
  animation: fall-116 17s -10s linear infinite;
}
@keyframes fall-116 {
  31.246% {
    transform: translate(19.531vw, 31.246vh) scale(0.0862);
  }
  to {
    transform: translate(21.81855vw, 100vh) scale(0.0862);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(117) {
  opacity: 0.3238;
  transform: translate(33.1089vw, -10px) scale(0.8012);
  animation: fall-117 24s -26s linear infinite;
}
@keyframes fall-117 {
  79.179% {
    transform: translate(37.0447vw, 79.179vh) scale(0.8012);
  }
  to {
    transform: translate(35.0768vw, 100vh) scale(0.8012);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(118) {
  opacity: 0.2313;
  transform: translate(63.3964vw, -10px) scale(0.855);
  animation: fall-118 11s -6s linear infinite;
}
@keyframes fall-118 {
  46.184% {
    transform: translate(55.3828vw, 46.184vh) scale(0.855);
  }
  to {
    transform: translate(59.3896vw, 100vh) scale(0.855);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(119) {
  opacity: 0.9236;
  transform: translate(59.7754vw, -10px) scale(0.4377);
  animation: fall-119 23s -2s linear infinite;
}
@keyframes fall-119 {
  34.747% {
    transform: translate(63.9738vw, 34.747vh) scale(0.4377);
  }
  to {
    transform: translate(61.8746vw, 100vh) scale(0.4377);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(120) {
  opacity: 0.1062;
  transform: translate(49.0032vw, -10px) scale(0.8014);
  animation: fall-120 23s -24s linear infinite;
}
@keyframes fall-120 {
  75.388% {
    transform: translate(49.2278vw, 75.388vh) scale(0.8014);
  }
  to {
    transform: translate(49.1155vw, 100vh) scale(0.8014);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(121) {
  opacity: 0.3706;
  transform: translate(6.2386vw, -10px) scale(0.6495);
  animation: fall-121 27s -9s linear infinite;
}
@keyframes fall-121 {
  74.512% {
    transform: translate(5.8647vw, 74.512vh) scale(0.6495);
  }
  to {
    transform: translate(6.05165vw, 100vh) scale(0.6495);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(122) {
  opacity: 0.8155;
  transform: translate(7.9949vw, -10px) scale(0.694);
  animation: fall-122 15s -1s linear infinite;
}
@keyframes fall-122 {
  55.847% {
    transform: translate(10.2846vw, 55.847vh) scale(0.694);
  }
  to {
    transform: translate(9.13975vw, 100vh) scale(0.694);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(123) {
  opacity: 0.2179;
  transform: translate(30.9759vw, -10px) scale(0.313);
  animation: fall-123 21s -27s linear infinite;
}
@keyframes fall-123 {
  61.566% {
    transform: translate(26.089vw, 61.566vh) scale(0.313);
  }
  to {
    transform: translate(28.53245vw, 100vh) scale(0.313);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(124) {
  opacity: 0.016;
  transform: translate(14.9334vw, -10px) scale(0.0755);
  animation: fall-124 29s -1s linear infinite;
}
@keyframes fall-124 {
  57.688% {
    transform: translate(15.384vw, 57.688vh) scale(0.0755);
  }
  to {
    transform: translate(15.1587vw, 100vh) scale(0.0755);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(125) {
  opacity: 0.256;
  transform: translate(40.6337vw, -10px) scale(0.319);
  animation: fall-125 13s -14s linear infinite;
}
@keyframes fall-125 {
  78.127% {
    transform: translate(35.6309vw, 78.127vh) scale(0.319);
  }
  to {
    transform: translate(38.1323vw, 100vh) scale(0.319);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(126) {
  opacity: 0.2779;
  transform: translate(73.3047vw, -10px) scale(0.2624);
  animation: fall-126 27s -8s linear infinite;
}
@keyframes fall-126 {
  48.176% {
    transform: translate(73.3492vw, 48.176vh) scale(0.2624);
  }
  to {
    transform: translate(73.32695vw, 100vh) scale(0.2624);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(127) {
  opacity: 0.8789;
  transform: translate(56.4423vw, -10px) scale(0.7259);
  animation: fall-127 29s -2s linear infinite;
}
@keyframes fall-127 {
  78.537% {
    transform: translate(48.4168vw, 78.537vh) scale(0.7259);
  }
  to {
    transform: translate(52.42955vw, 100vh) scale(0.7259);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(128) {
  opacity: 0.3578;
  transform: translate(90.3374vw, -10px) scale(0.0825);
  animation: fall-128 10s -1s linear infinite;
}
@keyframes fall-128 {
  38.815% {
    transform: translate(90.6785vw, 38.815vh) scale(0.0825);
  }
  to {
    transform: translate(90.50795vw, 100vh) scale(0.0825);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(129) {
  opacity: 0.6589;
  transform: translate(6.6159vw, -10px) scale(0.0231);
  animation: fall-129 10s -21s linear infinite;
}
@keyframes fall-129 {
  30.108% {
    transform: translate(11.182vw, 30.108vh) scale(0.0231);
  }
  to {
    transform: translate(8.89895vw, 100vh) scale(0.0231);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(130) {
  opacity: 0.3655;
  transform: translate(20.4473vw, -10px) scale(0.9773);
  animation: fall-130 27s -1s linear infinite;
}
@keyframes fall-130 {
  36.493% {
    transform: translate(21.7073vw, 36.493vh) scale(0.9773);
  }
  to {
    transform: translate(21.0773vw, 100vh) scale(0.9773);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(131) {
  opacity: 0.4352;
  transform: translate(29.6729vw, -10px) scale(0.4264);
  animation: fall-131 10s -16s linear infinite;
}
@keyframes fall-131 {
  64.209% {
    transform: translate(24.177vw, 64.209vh) scale(0.4264);
  }
  to {
    transform: translate(26.92495vw, 100vh) scale(0.4264);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(132) {
  opacity: 0.1529;
  transform: translate(40.9462vw, -10px) scale(0.7317);
  animation: fall-132 16s -18s linear infinite;
}
@keyframes fall-132 {
  57.4% {
    transform: translate(48.4765vw, 57.4vh) scale(0.7317);
  }
  to {
    transform: translate(44.71135vw, 100vh) scale(0.7317);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(133) {
  opacity: 0.9147;
  transform: translate(56.9584vw, -10px) scale(0.243);
  animation: fall-133 11s -17s linear infinite;
}
@keyframes fall-133 {
  42.878% {
    transform: translate(53.0408vw, 42.878vh) scale(0.243);
  }
  to {
    transform: translate(54.9996vw, 100vh) scale(0.243);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(134) {
  opacity: 0.2972;
  transform: translate(82.469vw, -10px) scale(0.3154);
  animation: fall-134 23s -20s linear infinite;
}
@keyframes fall-134 {
  70.396% {
    transform: translate(72.7147vw, 70.396vh) scale(0.3154);
  }
  to {
    transform: translate(77.59185vw, 100vh) scale(0.3154);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(135) {
  opacity: 0.5053;
  transform: translate(15.7656vw, -10px) scale(0.1658);
  animation: fall-135 29s -1s linear infinite;
}
@keyframes fall-135 {
  50.519% {
    transform: translate(12.4586vw, 50.519vh) scale(0.1658);
  }
  to {
    transform: translate(14.1121vw, 100vh) scale(0.1658);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(136) {
  opacity: 0.8518;
  transform: translate(34.1021vw, -10px) scale(0.7902);
  animation: fall-136 20s -17s linear infinite;
}
@keyframes fall-136 {
  50.932% {
    transform: translate(34.6675vw, 50.932vh) scale(0.7902);
  }
  to {
    transform: translate(34.3848vw, 100vh) scale(0.7902);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(137) {
  opacity: 0.0435;
  transform: translate(87.6541vw, -10px) scale(0.2836);
  animation: fall-137 17s -29s linear infinite;
}
@keyframes fall-137 {
  52.909% {
    transform: translate(96.8409vw, 52.909vh) scale(0.2836);
  }
  to {
    transform: translate(92.2475vw, 100vh) scale(0.2836);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(138) {
  opacity: 0.1837;
  transform: translate(63.0908vw, -10px) scale(0.1835);
  animation: fall-138 29s -21s linear infinite;
}
@keyframes fall-138 {
  44.115% {
    transform: translate(64.8187vw, 44.115vh) scale(0.1835);
  }
  to {
    transform: translate(63.95475vw, 100vh) scale(0.1835);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(139) {
  opacity: 0.9103;
  transform: translate(55.5426vw, -10px) scale(0.4375);
  animation: fall-139 23s -25s linear infinite;
}
@keyframes fall-139 {
  69.384% {
    transform: translate(64.2889vw, 69.384vh) scale(0.4375);
  }
  to {
    transform: translate(59.91575vw, 100vh) scale(0.4375);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(140) {
  opacity: 0.1378;
  transform: translate(36.9544vw, -10px) scale(0.3793);
  animation: fall-140 18s -24s linear infinite;
}
@keyframes fall-140 {
  34.158% {
    transform: translate(31.6985vw, 34.158vh) scale(0.3793);
  }
  to {
    transform: translate(34.32645vw, 100vh) scale(0.3793);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(141) {
  opacity: 0.7995;
  transform: translate(74.2776vw, -10px) scale(0.4931);
  animation: fall-141 15s -3s linear infinite;
}
@keyframes fall-141 {
  33.873% {
    transform: translate(71.7666vw, 33.873vh) scale(0.4931);
  }
  to {
    transform: translate(73.0221vw, 100vh) scale(0.4931);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(142) {
  opacity: 0.0026;
  transform: translate(65.7268vw, -10px) scale(0.1674);
  animation: fall-142 22s -2s linear infinite;
}
@keyframes fall-142 {
  47.991% {
    transform: translate(65.5426vw, 47.991vh) scale(0.1674);
  }
  to {
    transform: translate(65.6347vw, 100vh) scale(0.1674);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(143) {
  opacity: 0.2781;
  transform: translate(2.5959vw, -10px) scale(0.7495);
  animation: fall-143 24s -14s linear infinite;
}
@keyframes fall-143 {
  43.104% {
    transform: translate(2.305vw, 43.104vh) scale(0.7495);
  }
  to {
    transform: translate(2.45045vw, 100vh) scale(0.7495);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(144) {
  opacity: 0.0598;
  transform: translate(79.7756vw, -10px) scale(0.9624);
  animation: fall-144 28s -15s linear infinite;
}
@keyframes fall-144 {
  42.335% {
    transform: translate(87.4442vw, 42.335vh) scale(0.9624);
  }
  to {
    transform: translate(83.6099vw, 100vh) scale(0.9624);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(145) {
  opacity: 0.7514;
  transform: translate(29.2774vw, -10px) scale(0.0499);
  animation: fall-145 29s -13s linear infinite;
}
@keyframes fall-145 {
  39.887% {
    transform: translate(33.0316vw, 39.887vh) scale(0.0499);
  }
  to {
    transform: translate(31.1545vw, 100vh) scale(0.0499);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(146) {
  opacity: 0.7404;
  transform: translate(3.4505vw, -10px) scale(0.6635);
  animation: fall-146 10s -6s linear infinite;
}
@keyframes fall-146 {
  70.86% {
    transform: translate(-5.023vw, 70.86vh) scale(0.6635);
  }
  to {
    transform: translate(-0.78625vw, 100vh) scale(0.6635);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(147) {
  opacity: 0.3641;
  transform: translate(58.9189vw, -10px) scale(0.0403);
  animation: fall-147 25s -26s linear infinite;
}
@keyframes fall-147 {
  39.275% {
    transform: translate(50.0408vw, 39.275vh) scale(0.0403);
  }
  to {
    transform: translate(54.47985vw, 100vh) scale(0.0403);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(148) {
  opacity: 0.7398;
  transform: translate(60.4622vw, -10px) scale(0.8969);
  animation: fall-148 13s -9s linear infinite;
}
@keyframes fall-148 {
  68.054% {
    transform: translate(68.9927vw, 68.054vh) scale(0.8969);
  }
  to {
    transform: translate(64.72745vw, 100vh) scale(0.8969);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(149) {
  opacity: 0.9044;
  transform: translate(81.1387vw, -10px) scale(0.6406);
  animation: fall-149 28s -26s linear infinite;
}
@keyframes fall-149 {
  50.22% {
    transform: translate(88.6133vw, 50.22vh) scale(0.6406);
  }
  to {
    transform: translate(84.876vw, 100vh) scale(0.6406);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(150) {
  opacity: 0.7091;
  transform: translate(90.9993vw, -10px) scale(0.5257);
  animation: fall-150 13s -5s linear infinite;
}
@keyframes fall-150 {
  36.561% {
    transform: translate(92.7509vw, 36.561vh) scale(0.5257);
  }
  to {
    transform: translate(91.8751vw, 100vh) scale(0.5257);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(151) {
  opacity: 0.3781;
  transform: translate(16.9926vw, -10px) scale(0.2526);
  animation: fall-151 18s -27s linear infinite;
}
@keyframes fall-151 {
  78.513% {
    transform: translate(18.5067vw, 78.513vh) scale(0.2526);
  }
  to {
    transform: translate(17.74965vw, 100vh) scale(0.2526);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(152) {
  opacity: 0.5543;
  transform: translate(19.7509vw, -10px) scale(0.8952);
  animation: fall-152 13s -5s linear infinite;
}
@keyframes fall-152 {
  51.707% {
    transform: translate(15.2515vw, 51.707vh) scale(0.8952);
  }
  to {
    transform: translate(17.5012vw, 100vh) scale(0.8952);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(153) {
  opacity: 0.8597;
  transform: translate(40.5846vw, -10px) scale(0.5437);
  animation: fall-153 24s -25s linear infinite;
}
@keyframes fall-153 {
  75.212% {
    transform: translate(48.7674vw, 75.212vh) scale(0.5437);
  }
  to {
    transform: translate(44.676vw, 100vh) scale(0.5437);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(154) {
  opacity: 0.695;
  transform: translate(53.866vw, -10px) scale(0.9419);
  animation: fall-154 19s -13s linear infinite;
}
@keyframes fall-154 {
  73.241% {
    transform: translate(50.7353vw, 73.241vh) scale(0.9419);
  }
  to {
    transform: translate(52.30065vw, 100vh) scale(0.9419);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(155) {
  opacity: 0.6254;
  transform: translate(12.8238vw, -10px) scale(0.6551);
  animation: fall-155 24s -15s linear infinite;
}
@keyframes fall-155 {
  62.282% {
    transform: translate(20.6455vw, 62.282vh) scale(0.6551);
  }
  to {
    transform: translate(16.73465vw, 100vh) scale(0.6551);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(156) {
  opacity: 0.6047;
  transform: translate(95.9062vw, -10px) scale(0.1227);
  animation: fall-156 15s -19s linear infinite;
}
@keyframes fall-156 {
  51.322% {
    transform: translate(101.8276vw, 51.322vh) scale(0.1227);
  }
  to {
    transform: translate(98.8669vw, 100vh) scale(0.1227);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(157) {
  opacity: 0.7898;
  transform: translate(27.5408vw, -10px) scale(0.8924);
  animation: fall-157 27s -9s linear infinite;
}
@keyframes fall-157 {
  67.676% {
    transform: translate(21.4622vw, 67.676vh) scale(0.8924);
  }
  to {
    transform: translate(24.5015vw, 100vh) scale(0.8924);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(158) {
  opacity: 0.0478;
  transform: translate(37.3506vw, -10px) scale(0.7818);
  animation: fall-158 16s -17s linear infinite;
}
@keyframes fall-158 {
  33.252% {
    transform: translate(43.978vw, 33.252vh) scale(0.7818);
  }
  to {
    transform: translate(40.6643vw, 100vh) scale(0.7818);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(159) {
  opacity: 0.8167;
  transform: translate(25.9319vw, -10px) scale(0.3617);
  animation: fall-159 12s -29s linear infinite;
}
@keyframes fall-159 {
  35.298% {
    transform: translate(28.11vw, 35.298vh) scale(0.3617);
  }
  to {
    transform: translate(27.02095vw, 100vh) scale(0.3617);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(160) {
  opacity: 0.7597;
  transform: translate(88.2661vw, -10px) scale(0.4118);
  animation: fall-160 28s -5s linear infinite;
}
@keyframes fall-160 {
  45.557% {
    transform: translate(84.7027vw, 45.557vh) scale(0.4118);
  }
  to {
    transform: translate(86.4844vw, 100vh) scale(0.4118);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(161) {
  opacity: 0.3471;
  transform: translate(70.4055vw, -10px) scale(0.7485);
  animation: fall-161 25s -19s linear infinite;
}
@keyframes fall-161 {
  67.72% {
    transform: translate(70.6659vw, 67.72vh) scale(0.7485);
  }
  to {
    transform: translate(70.5357vw, 100vh) scale(0.7485);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(162) {
  opacity: 0.6397;
  transform: translate(51.1697vw, -10px) scale(0.1553);
  animation: fall-162 27s -21s linear infinite;
}
@keyframes fall-162 {
  56.048% {
    transform: translate(48.1694vw, 56.048vh) scale(0.1553);
  }
  to {
    transform: translate(49.66955vw, 100vh) scale(0.1553);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(163) {
  opacity: 0.9438;
  transform: translate(6.765vw, -10px) scale(0.087);
  animation: fall-163 25s -4s linear infinite;
}
@keyframes fall-163 {
  31.427% {
    transform: translate(13.0723vw, 31.427vh) scale(0.087);
  }
  to {
    transform: translate(9.91865vw, 100vh) scale(0.087);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(164) {
  opacity: 0.5374;
  transform: translate(37.4605vw, -10px) scale(0.7754);
  animation: fall-164 27s -2s linear infinite;
}
@keyframes fall-164 {
  72.121% {
    transform: translate(43.0879vw, 72.121vh) scale(0.7754);
  }
  to {
    transform: translate(40.2742vw, 100vh) scale(0.7754);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(165) {
  opacity: 0.3875;
  transform: translate(33.0424vw, -10px) scale(0.5584);
  animation: fall-165 19s -20s linear infinite;
}
@keyframes fall-165 {
  78.759% {
    transform: translate(24.7422vw, 78.759vh) scale(0.5584);
  }
  to {
    transform: translate(28.8923vw, 100vh) scale(0.5584);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(166) {
  opacity: 0.436;
  transform: translate(60.7481vw, -10px) scale(0.0564);
  animation: fall-166 29s -1s linear infinite;
}
@keyframes fall-166 {
  71.836% {
    transform: translate(59.7799vw, 71.836vh) scale(0.0564);
  }
  to {
    transform: translate(60.264vw, 100vh) scale(0.0564);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(167) {
  opacity: 0.604;
  transform: translate(81.1328vw, -10px) scale(0.5756);
  animation: fall-167 10s -19s linear infinite;
}
@keyframes fall-167 {
  36.621% {
    transform: translate(77.3211vw, 36.621vh) scale(0.5756);
  }
  to {
    transform: translate(79.22695vw, 100vh) scale(0.5756);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(168) {
  opacity: 0.5819;
  transform: translate(92.8686vw, -10px) scale(0.8952);
  animation: fall-168 11s -28s linear infinite;
}
@keyframes fall-168 {
  52.147% {
    transform: translate(93.198vw, 52.147vh) scale(0.8952);
  }
  to {
    transform: translate(93.0333vw, 100vh) scale(0.8952);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(169) {
  opacity: 0.9272;
  transform: translate(57.293vw, -10px) scale(0.6411);
  animation: fall-169 30s -20s linear infinite;
}
@keyframes fall-169 {
  33.112% {
    transform: translate(63.6346vw, 33.112vh) scale(0.6411);
  }
  to {
    transform: translate(60.4638vw, 100vh) scale(0.6411);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(170) {
  opacity: 0.4584;
  transform: translate(45.6836vw, -10px) scale(0.7071);
  animation: fall-170 27s -14s linear infinite;
}
@keyframes fall-170 {
  38.466% {
    transform: translate(49.6005vw, 38.466vh) scale(0.7071);
  }
  to {
    transform: translate(47.64205vw, 100vh) scale(0.7071);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(171) {
  opacity: 0.9123;
  transform: translate(40.119vw, -10px) scale(0.465);
  animation: fall-171 23s -2s linear infinite;
}
@keyframes fall-171 {
  49.184% {
    transform: translate(31.9351vw, 49.184vh) scale(0.465);
  }
  to {
    transform: translate(36.02705vw, 100vh) scale(0.465);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(172) {
  opacity: 0.3248;
  transform: translate(74.3437vw, -10px) scale(0.0988);
  animation: fall-172 10s -14s linear infinite;
}
@keyframes fall-172 {
  59.111% {
    transform: translate(65.1645vw, 59.111vh) scale(0.0988);
  }
  to {
    transform: translate(69.7541vw, 100vh) scale(0.0988);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(173) {
  opacity: 0.537;
  transform: translate(35.6369vw, -10px) scale(0.7701);
  animation: fall-173 10s -10s linear infinite;
}
@keyframes fall-173 {
  58.255% {
    transform: translate(34.7057vw, 58.255vh) scale(0.7701);
  }
  to {
    transform: translate(35.1713vw, 100vh) scale(0.7701);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(174) {
  opacity: 0.4147;
  transform: translate(15.8427vw, -10px) scale(0.7008);
  animation: fall-174 26s -30s linear infinite;
}
@keyframes fall-174 {
  42.653% {
    transform: translate(13.9773vw, 42.653vh) scale(0.7008);
  }
  to {
    transform: translate(14.91vw, 100vh) scale(0.7008);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(175) {
  opacity: 0.0096;
  transform: translate(63.1657vw, -10px) scale(0.4113);
  animation: fall-175 23s -8s linear infinite;
}
@keyframes fall-175 {
  70.662% {
    transform: translate(58.4703vw, 70.662vh) scale(0.4113);
  }
  to {
    transform: translate(60.818vw, 100vh) scale(0.4113);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(176) {
  opacity: 0.8405;
  transform: translate(46.365vw, -10px) scale(0.053);
  animation: fall-176 12s -26s linear infinite;
}
@keyframes fall-176 {
  44.438% {
    transform: translate(50.3799vw, 44.438vh) scale(0.053);
  }
  to {
    transform: translate(48.37245vw, 100vh) scale(0.053);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(177) {
  opacity: 0.6415;
  transform: translate(28.5005vw, -10px) scale(0.1169);
  animation: fall-177 15s -1s linear infinite;
}
@keyframes fall-177 {
  60.467% {
    transform: translate(33.0293vw, 60.467vh) scale(0.1169);
  }
  to {
    transform: translate(30.7649vw, 100vh) scale(0.1169);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(178) {
  opacity: 0.6984;
  transform: translate(23.4831vw, -10px) scale(0.8832);
  animation: fall-178 21s -3s linear infinite;
}
@keyframes fall-178 {
  41.16% {
    transform: translate(28.6007vw, 41.16vh) scale(0.8832);
  }
  to {
    transform: translate(26.0419vw, 100vh) scale(0.8832);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(179) {
  opacity: 0.3231;
  transform: translate(74.2943vw, -10px) scale(0.9198);
  animation: fall-179 23s -5s linear infinite;
}
@keyframes fall-179 {
  39.241% {
    transform: translate(67.7037vw, 39.241vh) scale(0.9198);
  }
  to {
    transform: translate(70.999vw, 100vh) scale(0.9198);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(180) {
  opacity: 0.8814;
  transform: translate(88.41vw, -10px) scale(0.4681);
  animation: fall-180 11s -3s linear infinite;
}
@keyframes fall-180 {
  30.971% {
    transform: translate(87.6696vw, 30.971vh) scale(0.4681);
  }
  to {
    transform: translate(88.0398vw, 100vh) scale(0.4681);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(181) {
  opacity: 0.4334;
  transform: translate(11.0611vw, -10px) scale(0.1874);
  animation: fall-181 10s -23s linear infinite;
}
@keyframes fall-181 {
  77.814% {
    transform: translate(3.8048vw, 77.814vh) scale(0.1874);
  }
  to {
    transform: translate(7.43295vw, 100vh) scale(0.1874);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(182) {
  opacity: 0.7558;
  transform: translate(73.4593vw, -10px) scale(0.6555);
  animation: fall-182 25s -13s linear infinite;
}
@keyframes fall-182 {
  78.67% {
    transform: translate(75.1411vw, 78.67vh) scale(0.6555);
  }
  to {
    transform: translate(74.3002vw, 100vh) scale(0.6555);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(183) {
  opacity: 0.7286;
  transform: translate(73.4233vw, -10px) scale(0.1787);
  animation: fall-183 28s -11s linear infinite;
}
@keyframes fall-183 {
  38.108% {
    transform: translate(74.4333vw, 38.108vh) scale(0.1787);
  }
  to {
    transform: translate(73.9283vw, 100vh) scale(0.1787);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(184) {
  opacity: 0.4735;
  transform: translate(79.8238vw, -10px) scale(0.5182);
  animation: fall-184 26s -28s linear infinite;
}
@keyframes fall-184 {
  53.529% {
    transform: translate(84.9697vw, 53.529vh) scale(0.5182);
  }
  to {
    transform: translate(82.39675vw, 100vh) scale(0.5182);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(185) {
  opacity: 0.8753;
  transform: translate(74.6486vw, -10px) scale(0.4143);
  animation: fall-185 14s -9s linear infinite;
}
@keyframes fall-185 {
  51.084% {
    transform: translate(78.9559vw, 51.084vh) scale(0.4143);
  }
  to {
    transform: translate(76.80225vw, 100vh) scale(0.4143);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(186) {
  opacity: 0.9682;
  transform: translate(58.3976vw, -10px) scale(0.5018);
  animation: fall-186 24s -27s linear infinite;
}
@keyframes fall-186 {
  72.722% {
    transform: translate(51.7124vw, 72.722vh) scale(0.5018);
  }
  to {
    transform: translate(55.055vw, 100vh) scale(0.5018);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(187) {
  opacity: 0.7468;
  transform: translate(71.8338vw, -10px) scale(0.4275);
  animation: fall-187 13s -20s linear infinite;
}
@keyframes fall-187 {
  57.082% {
    transform: translate(71.6675vw, 57.082vh) scale(0.4275);
  }
  to {
    transform: translate(71.75065vw, 100vh) scale(0.4275);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(188) {
  opacity: 0.345;
  transform: translate(5.8805vw, -10px) scale(0.5559);
  animation: fall-188 13s -17s linear infinite;
}
@keyframes fall-188 {
  71.774% {
    transform: translate(6.8482vw, 71.774vh) scale(0.5559);
  }
  to {
    transform: translate(6.36435vw, 100vh) scale(0.5559);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(189) {
  opacity: 0.2257;
  transform: translate(12.792vw, -10px) scale(0.261);
  animation: fall-189 16s -18s linear infinite;
}
@keyframes fall-189 {
  57.084% {
    transform: translate(12.4566vw, 57.084vh) scale(0.261);
  }
  to {
    transform: translate(12.6243vw, 100vh) scale(0.261);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(190) {
  opacity: 0.8142;
  transform: translate(2.8068vw, -10px) scale(0.1265);
  animation: fall-190 12s -28s linear infinite;
}
@keyframes fall-190 {
  45.817% {
    transform: translate(9.9743vw, 45.817vh) scale(0.1265);
  }
  to {
    transform: translate(6.39055vw, 100vh) scale(0.1265);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(191) {
  opacity: 0.8381;
  transform: translate(40.9138vw, -10px) scale(0.4341);
  animation: fall-191 19s -7s linear infinite;
}
@keyframes fall-191 {
  60.557% {
    transform: translate(50.1378vw, 60.557vh) scale(0.4341);
  }
  to {
    transform: translate(45.5258vw, 100vh) scale(0.4341);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(192) {
  opacity: 0.4122;
  transform: translate(60.198vw, -10px) scale(0.7563);
  animation: fall-192 24s -7s linear infinite;
}
@keyframes fall-192 {
  51.244% {
    transform: translate(64.0937vw, 51.244vh) scale(0.7563);
  }
  to {
    transform: translate(62.14585vw, 100vh) scale(0.7563);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(193) {
  opacity: 0.1255;
  transform: translate(56.9949vw, -10px) scale(0.2305);
  animation: fall-193 13s -8s linear infinite;
}
@keyframes fall-193 {
  46.296% {
    transform: translate(54.7878vw, 46.296vh) scale(0.2305);
  }
  to {
    transform: translate(55.89135vw, 100vh) scale(0.2305);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(194) {
  opacity: 0.9461;
  transform: translate(58.2919vw, -10px) scale(0.03);
  animation: fall-194 22s -11s linear infinite;
}
@keyframes fall-194 {
  34.151% {
    transform: translate(67.5813vw, 34.151vh) scale(0.03);
  }
  to {
    transform: translate(62.9366vw, 100vh) scale(0.03);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(195) {
  opacity: 0.0503;
  transform: translate(72.1688vw, -10px) scale(0.745);
  animation: fall-195 16s -6s linear infinite;
}
@keyframes fall-195 {
  72.293% {
    transform: translate(79.9725vw, 72.293vh) scale(0.745);
  }
  to {
    transform: translate(76.07065vw, 100vh) scale(0.745);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(196) {
  opacity: 0.0006;
  transform: translate(34.3701vw, -10px) scale(0.96);
  animation: fall-196 22s -24s linear infinite;
}
@keyframes fall-196 {
  79.135% {
    transform: translate(28.6658vw, 79.135vh) scale(0.96);
  }
  to {
    transform: translate(31.51795vw, 100vh) scale(0.96);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(197) {
  opacity: 0.9947;
  transform: translate(78.5174vw, -10px) scale(0.5594);
  animation: fall-197 12s -20s linear infinite;
}
@keyframes fall-197 {
  34.973% {
    transform: translate(74.0794vw, 34.973vh) scale(0.5594);
  }
  to {
    transform: translate(76.2984vw, 100vh) scale(0.5594);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(198) {
  opacity: 0.9143;
  transform: translate(19.1818vw, -10px) scale(0.6581);
  animation: fall-198 14s -1s linear infinite;
}
@keyframes fall-198 {
  51.769% {
    transform: translate(27.6452vw, 51.769vh) scale(0.6581);
  }
  to {
    transform: translate(23.4135vw, 100vh) scale(0.6581);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(199) {
  opacity: 0.5337;
  transform: translate(57.7756vw, -10px) scale(0.8352);
  animation: fall-199 12s -7s linear infinite;
}
@keyframes fall-199 {
  65.977% {
    transform: translate(59.8624vw, 65.977vh) scale(0.8352);
  }
  to {
    transform: translate(58.819vw, 100vh) scale(0.8352);
  }
}
.new-year-style .medium-modal-dialog__wrapper .snow-wrapper .snow:nth-child(200) {
  opacity: 0.9125;
  transform: translate(17.1639vw, -10px) scale(0.3596);
  animation: fall-200 26s -10s linear infinite;
}
@keyframes fall-200 {
  49.486% {
    transform: translate(18.1171vw, 49.486vh) scale(0.3596);
  }
  to {
    transform: translate(17.6405vw, 100vh) scale(0.3596);
  }
}

.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;
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper {
    padding-top: 0;
    padding-bottom: 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;
  margin: 1rem 0;
}
.first-screen__wrapper .first-screen__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.55rem;
  row-gap: 0.35rem;
  width: auto;
  max-width: 100%;
  margin: 0 0 2rem 0;
  font-family: "Din-2014", sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.3em;
  color: #E9E9E9;
}
@media screen and (max-width: 1440px) {
  .first-screen__wrapper .first-screen__trust {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .first-screen__wrapper .first-screen__trust {
    font-size: 0.95rem;
    width: 100%;
  }
}
.first-screen__wrapper .first-screen__trust-stars {
  display: inline-flex;
  align-items: center;
  column-gap: 0.15rem;
  color: white;
}
.first-screen__wrapper .first-screen__trust-stars i {
  font-size: 0.9em;
}
.first-screen__wrapper .first-screen__trust-sep {
  opacity: 0.55;
}
.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 {
    flex-direction: column;
    margin-top: 2vh;
    row-gap: 1rem;
    width: fit-content;
  }
}
.first-screen__wrapper .button-block .single-button {
  width: auto;
}
.first-screen__background {
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100vh;
}
.first-screen__background .slider-bg-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgb(0, 0, 0) 98%);
}
.first-screen__background .slider {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  filter: brightness(0.4);
}
.first-screen__background .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: slider 21s infinite;
}
.first-screen__background .slider .slide:nth-child(1) {
  background-image: url("../image/main_1_1.webp");
  animation-delay: 0s;
}
.first-screen__background .slider .slide:nth-child(2) {
  background-image: url("../image/main_1_2.webp");
  animation-delay: -7s;
}
.first-screen__background .slider .slide:nth-child(3) {
  background-image: url("../image/main_1_3.webp");
  animation-delay: -14s;
}
@keyframes slider {
  0%, 28%, 100% {
    opacity: 1;
    animation-timing-function: ease;
    z-index: 0;
  }
  33% {
    opacity: 0;
    animation-timing-function: step-end;
    z-index: 0;
  }
  95% {
    opacity: 1;
    animation-timing-function: step-end;
    z-index: -1;
  }
}

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

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

.photo-topic {
  width: 100%;
  display: flex;
  column-gap: 6%;
  padding: 5vh 5vw;
}
@media screen and (max-width: 1440px) {
  .photo-topic {
    height: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic {
    flex-direction: column;
    row-gap: 4vh;
  }
}
.photo-topic__block {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  row-gap: 2vh;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .photo-topic__block {
    row-gap: 1vh;
  }
}
@media screen and (max-width: 768px) {
  .photo-topic__block {
    row-gap: 3vh;
    width: 100%;
  }
}
.photo-topic__block h3 {
  margin-top: 15px;
}
.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;
  margin: 0;
}
@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: auto;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  .photo-topic__block .topic-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.photo-topic__block .topic-card .card-body {
  position: relative;
  z-index: 1;
  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:hover .card-extra-icon {
  transform: scale(0.8);
}
.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;
  transition: transform 0.4s;
}
.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 {
  position: absolute;
  inset: 0;
  background-color: black;
  z-index: 0;
}
.photo-topic__block .topic-card .card-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.photo-topic .top-align {
  justify-content: start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sequence-topic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6%;
  row-gap: 0;
}
@media (max-width: 1200px) {
  .sequence-topic {
    column-gap: 3%;
  }
}
@media (max-width: 768px) {
  .sequence-topic {
    grid-template-columns: repeat(1, 1fr);
  }
  .sequence-topic .sequence-map {
    display: none;
  }
}
.sequence-topic .sequence-topic__block {
  row-gap: 0;
  width: 100%;
}
.sequence-topic .sequence-topic__block h3 {
  margin: 1.5rem 0;
}
.sequence-topic .sequence-topic__block .gmap-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
}
.sequence-topic .sequence-topic__block .sequence-map-mobile {
  display: none;
}
@media (max-width: 768px) {
  .sequence-topic .sequence-topic__block .sequence-map-mobile {
    display: block;
  }
}
.sequence-topic .sequence-topic__block .sequence-area {
  position: relative;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 2rem;
}
@media (max-width: 1200px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description {
    gap: 0.5rem;
  }
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description::before, .sequence-topic .sequence-topic__block .sequence-area .sequence-description::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  transform: translateX(-50%);
  border-left: 0.8rem solid #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description::before {
  top: 0;
  bottom: 50%;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description::after {
  top: 50%;
  bottom: 0;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__block {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__block {
    flex-direction: column;
  }
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__block .sequence-description__card {
    margin: 0 0 0 1rem;
  }
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #CC332E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot i {
  color: white;
  line-height: 1;
  font-size: 1.4rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot.border-dot {
  background: white;
  border: 3px solid #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot.border-dot i {
  color: #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__dot.hidden-dot {
  opacity: 0;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text {
  margin-left: 3rem;
}
@media (max-width: 1200px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__text {
    margin-left: 1rem;
  }
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .topic-subtitle-2 {
  margin-bottom: 0.5rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .topic-text {
  margin-bottom: 0.4rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .topic-text i {
  margin: 0 0 0.4rem 0;
  color: #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__text .single-button {
  margin-top: 1rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card {
  position: relative;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px solid #CC332E;
  border-radius: 1rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link {
  display: block;
  margin-top: 0.3rem;
  font-weight: bold;
  color: #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link i {
  position: relative;
  left: 0;
  transition: left 0.5s;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link:hover {
  color: black;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-description .card-link:hover i {
  left: 0.8rem;
}
.sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-icon {
  height: 4rem;
}
@media (max-width: 768px) {
  .sequence-topic .sequence-topic__block .sequence-area .sequence-description__card .card-icon {
    display: none;
  }
}
.sequence-topic .sequence-topic__block .sequence-area__start .sequence-description {
  align-items: start;
}
.sequence-topic .sequence-topic__block .sequence-area__start .sequence-description::before {
  margin-top: 4rem;
}
.sequence-topic .sequence-topic__block .sequence-area__end .sequence-description::after {
  display: none;
}
.sequence-topic .sequence-topic__block .sequence-area__start-dashed .sequence-description::before {
  border-left: 0.8rem dashed #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-area__end-dashed .sequence-description::after {
  border-left: 0.8rem dashed #CC332E;
}
.sequence-topic .sequence-topic__block .sequence-empty .sequence-description {
  padding: 0;
}
.sequence-topic .sequence-topic__block .sequence-padding-top .sequence-description {
  padding: 2rem 0 0 0;
}
.sequence-topic .sequence-topic__block .sequence-padding-bottom .sequence-description {
  padding: 0 0 2rem 0;
}
.sequence-topic .sequence-topic__block .sequence-no-padding .sequence-description {
  padding: 0;
}
.sequence-topic .sequence-topic__block .sequence-switch__right {
  position: relative;
  height: 10rem;
}
.sequence-topic .sequence-topic__block .sequence-switch__right::before, .sequence-topic .sequence-topic__block .sequence-switch__right::after {
  content: "";
  position: absolute;
  width: 50%;
  height: calc(50% + 0.38rem);
}
.sequence-topic .sequence-topic__block .sequence-switch__right::before {
  right: 50%;
  top: 0;
  left: 1.15rem;
  border-bottom: 0.8rem solid #CC332E;
  border-left: 0.8rem solid #CC332E;
  border-radius: 0 0 0 5rem;
}
.sequence-topic .sequence-topic__block .sequence-switch__right::after {
  left: 50%;
  bottom: 0;
  right: 1.15rem;
  border-top: 0.8rem solid #CC332E;
  border-right: 0.8rem solid #CC332E;
  border-radius: 0 5rem 0 0;
}
.sequence-topic .block-bottom {
  grid-column: 1/-1;
}

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