.xm {
  font-size: 16px;
  position: relative;
}

.xm *,
.xm *::before,
.xm *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.xm *::before,
.xm *::after {
  content: none;
}

.xm__outer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.83);
  z-index: 100;
  opacity: 0;
  visibility: collapse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.xm__active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  z-index: 100;
}

.xm__scroll-lock {
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: absolute;
}

.xm__inner {
  position: relative;
  color: #fff;
}

.xm__inner-block {
  width: 65em;
  max-width: 75vw;
  position: relative;
  overflow: hidden;
  padding: 4em 3em;
}

@media (max-width: 768px) {
  .xm__inner-block {
    max-width: 85vw;
    max-height: 90vh;
  }
}

.xm__headline {
  color: #fff;
  font-size: 3em;
  margin-bottom: 1em;
  position: relative;
  z-index: 5;
}

@media (max-width: 900px) {
  .xm__headline {
    font-size: 2.25em;
  }
}

@media (max-width: 768px) {
  .xm__headline {
    font-size: 1.75em;
  }
}

.xm__headline-img {
  display: none;
  height: 7em;
  width: 60%;
  background-image: url(../img/santa-car-headline.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .xm__headline-img {
    width: 100%;
  }
}

.xm__days-list {
  position: relative;
  list-style: none;
  -webkit-column-count: 2;
          column-count: 2;
  margin-bottom: 3.75em;
  max-width: 75%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

@media (max-width: 900px) {
  .xm__days-list {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .xm__days-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    max-height: 15em;
    overflow: hidden;
    overflow-y: scroll;
  }
}

@media (max-width: 768px) {
  .xm__list-item {
    margin-bottom: 0.4rem;
  }
}

.xm__list-item span {
  font-weight: bold;
}

@media (max-width: 900px) {
  .xm__list-item span {
    display: block;
  }
}

.xm__show-more {
  position: relative;
  display: inline-block;
  position: relative;
  width: 100%;
  opacity: 0;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  z-index: 1;
}

@media (min-width: 900px) {
  .xm__show-more {
    display: none;
    z-index: -99999;
    height: 0;
    overflow: hidden;
  }
}

.xm__show-more svg {
  height: 3em;
  fill: #cf1718;
}

.xm__text-content {
  line-height: 1.5;
  max-width: 65%;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .xm__text-content {
    display: none;
  }
}

.xm__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  background-color: #525252;
  background-size: cover;
  background-position: right bottom;
}

.xm__bells-icon {
  display: none;
  position: absolute;
  top: 6em;
  right: 3em;
  background-image: url(../img/xmas_bells.png);
  height: 14em;
  width: 14em;
  background-size: contain;
}

.xm__close-btn {
  position: absolute;
  height: 2.75em;
  width: 2.75em;
  border-radius: 50%;
  border: 5px solid #fff;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -3.5em;
  right: -3.5em;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 6;
}

@media (max-width: 768px) {
  .xm__close-btn {
    top: 1em;
    right: 1em;
    border-color: #525252;
  }
}

.xm__close-btn:hover {
  opacity: 0.55;
}

.xm__close-btn span {
  position: relative;
  width: 5px;
  height: 100%;
  display: inline-block;
}

.xm__close-btn span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@media (max-width: 768px) {
  .xm__close-btn span::before {
    background: #525252;
  }
}

.xm__close-btn span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@media (max-width: 768px) {
  .xm__close-btn span::after {
    background: #525252;
  }
}

.xm__decorations {
  position: absolute;
  left: 0;
  height: 9em;
  background-size: cover;
  width: 100%;
}

.xm__decorations img {
  height: 100%;
}

.xm__decorations--upper {
  top: 1em;
}

.xm__decorations--lower {
  bottom: 1em;
}

.xm__shortcut {
  position: fixed;
  top: 40%;
  background: #cf1718;
  padding: 0.5em 1.5em;
  -webkit-transform: rotate(-90deg) translateX(25%);
          transform: rotate(-90deg) translateX(25%);
  color: white;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  opacity: 0;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  right: -4em;
  z-index: 999;
}

.xm__shortcut--active {
  right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(-90deg) translateX(25%);
          transform: rotate(-90deg) translateX(25%);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  width: auto;
  cursor: pointer;
}

.xm--santa-car .xm__inner-block {
  border-radius: 3.75em;
}

@media (max-width: 768px) {
  .xm--santa-car .xm__inner-block {
    border-radius: 2.25em;
  }
}

.xm--santa-car .xm__headline {
  display: none;
  max-width: 55%;
}

@media (max-width: 768px) {
  .xm--santa-car .xm__headline {
    max-width: 100%;
    text-align: center;
  }
}

.xm--santa-car .xm__headline path {
  fill: transparent;
}

.xm--santa-car .xm__headline text {
  fill: #fff;
  font-size: 3.75em;
}

.xm--santa-car .xm__headline-img {
  display: block;
}

@media (max-width: 768px) {
  .xm--santa-car .xm__days-list {
    margin-bottom: 1em;
  }
}

.xm--santa-car .xm__days-list::before {
  content: "";
  width: calc(100% + 3em);
  height: calc(100% + 3em);
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top: -1.5em;
  left: -1.5em;
  z-index: -1;
}

@media (min-width: 1240px) {
  .xm--santa-car .xm__days-list::before {
    content: initial;
  }
}

@media (max-width: 768px) {
  .xm--santa-car .xm__days-list::before {
    content: initial;
  }
}

.xm--santa-car .xm__days-list.collapsed {
  color: #fff;
  background-image: initial;
}

.xm--santa-car .xm__days-list.collapsed::before {
  content: none;
}

.xm--santa-car .xm__days-list.collapsed span {
  color: #fff;
}

@media (max-width: 768px) {
  .xm--santa-car .xm__list-item {
    padding-bottom: 0.75em;
    background-color: rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 768px) {
  .xm--santa-car .xm__list-item:nth-of-type(1) {
    padding-top: 1em;
  }
}

.xm--santa-car .xm__bg-img {
  background-image: url(../img/santa-car-bg.jpg);
}

.xm--christmas-shapes .xm__inner-block {
  padding: 7em 3em;
}

@media (max-width: 768px) {
  .xm--christmas-shapes .xm__inner-block {
    padding-right: 1em;
    padding-left: 1em;
  }
}

.xm--christmas-shapes .xm__inner {
  color: #2f3340;
}

.xm--christmas-shapes .xm__headline {
  text-align: center;
}

.xm--christmas-shapes .xm__days-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .xm--christmas-shapes .xm__days-list {
    margin-bottom: 0;
  }
}

.xm--christmas-shapes .xm__list-item span {
  color: #cf1718;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.xm--christmas-shapes .xm__text-content {
  max-width: 100%;
  text-align: center;
}

.xm--christmas-shapes .xm__headline {
  color: #cf1718;
}

.xm--christmas-shapes .xm__bg-img {
  background-image: url(../img/christmas-shapes-bg.jpg);
}

.xm--christmas-shapes .xm__decorations {
  background-image: url(../img/christmas-shapes-decorations.png);
  background-repeat: repeat-x;
  height: 3.75em;
}

.xm--christmas-shapes .xm__decorations img {
  height: 140px;
}

.xm--christmas-shapes .xm__decorations--upper {
  top: 1.75em;
}

.xm--christmas-shapes .xm__decorations--lower {
  bottom: 1.75em;
}

.xm--generic-style .xm__inner {
  color: #232323;
}

.xm--generic-style .xm__inner-block {
  background-color: #fff;
}

.xm--generic-style .xm__headline {
  color: inherit;
  text-align: center;
}

@media (max-width: 768px) {
  .xm--generic-style .xm__headline {
    font-size: 1.5rem;
  }
}

.xm--generic-style .xm__days-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .xm--generic-style .xm__days-list {
    margin-bottom: 0;
    max-height: 10em;
  }
}

.xm--generic-style .xm__days-list.collapsed::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(250, 250, 250, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(250, 250, 250, 0) 40%, #fff);
}

.xm--generic-style .xm__text-content {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .xm--generic-style .xm__text-content {
    display: block;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .xm--generic-style .xm__close-btn {
    padding: 4px;
    height: 2.25em;
    width: 2.25em;
  }
}

.xm--generic-style .xm__show-more {
  height: 2.5rem;
  top: -3rem;
  -webkit-animation: mover 1s infinite  alternate;
          animation: mover 1s infinite  alternate;
  width: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 3rem;
}

@media (max-width: 900px) {
  .xm--generic-style .xm__show-more svg {
    fill: #222222;
  }
}

.xm--generic-style .xm__shortcut {
  background: #222222;
}

.xm--green-tree .xm__inner-block {
  padding: 6em 3em;
}

.xm--green-tree .xm__inner {
  color: #2f3340;
}

.xm--green-tree .xm__headline {
  color: #cf1718;
  text-align: center;
}

.xm--green-tree .xm__close-btn {
  border-color: #cf1718;
}

.xm--green-tree .xm__close-btn span::before, .xm--green-tree .xm__close-btn span::after {
  background: #cf1718;
}

.xm--green-tree .xm__days-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

.xm--green-tree .xm__days-list.collapsed::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #fff);
}

.xm--green-tree .xm__list-item span {
  color: #cf1718;
}

.xm--green-tree .xm__text-content {
  max-width: 100%;
  text-align: center;
}

.xm--green-tree .xm__bg-img {
  background-color: #fff;
}

.xm--green-tree .xm__decorations {
  background-image: url(../img/green-tree-decorations.png);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom;
}

@media (max-width: 900px) {
  .xm--green-tree .xm__decorations {
    background-size: cover;
  }
}

.xm--green-tree .xm__decorations img {
  height: 140px;
}

.xm--green-tree .xm__decorations--upper {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  top: 0;
}

.xm--green-tree .xm__decorations--lower {
  bottom: 0;
}

.xm--snow-corners .xm__inner {
  background: initial;
}

.xm--snow-corners .xm__bg-img {
  background: initial;
}

.xm--snow-corners .xm__inner-block {
  background-color: #f82736;
  border-bottom-left-radius: 7.5em;
  border-bottom-right-radius: 7.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: visible;
}

@media (max-width: 900px) {
  .xm--snow-corners .xm__inner-block {
    border-bottom-left-radius: 4em;
    border-bottom-right-radius: 4em;
  }
}

.xm--snow-corners .xm__headline {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (max-width: 900px) {
  .xm--snow-corners .xm__headline {
    text-align: center;
  }
}

.xm--snow-corners .xm__close-btn {
  border-color: #fff;
}

.xm--snow-corners .xm__close-btn span::before, .xm--snow-corners .xm__close-btn span::after {
  background: #fff;
}

.xm--snow-corners .xm__bells-icon {
  display: block;
}

.xm--snow-corners .xm__text-content {
  max-width: 35%;
}

.xm--snow-corners .xm__days-list {
  -webkit-column-count: 1;
          column-count: 1;
  margin-right: 3em;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .xm--snow-corners .xm__days-list {
    margin-left: auto;
    margin-right: auto;
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4em;
            column-gap: 4em;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 75%;
  }
}

.xm--snow-corners .xm__days-list.collapsed::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(248, 39, 54, 0)), to(#f82736));
  background: linear-gradient(180deg, rgba(248, 39, 54, 0) 65%, #f82736);
}

.xm--snow-corners .xm__list-item {
  margin-bottom: 0.35em;
}

.xm--snow-corners .xm__decorations {
  background-repeat: no-repeat;
  background-size: contain;
  top: -2em;
  left: initial;
  height: 10em;
}

.xm--snow-corners .xm__decorations--upper {
  top: -2.65em;
  left: -2em;
  background-image: url(../img/snow-corner-left.png);
  width: 24em;
}

.xm--snow-corners .xm__decorations--lower {
  width: 16em;
  right: -1em;
  background-image: url(../img/snow-corner-right.png);
}

@media (max-width: 900px) {
  .xm--snow-corners .xm__decorations--lower {
    display: none;
  }
}

.xm__days-list.collapsed {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.xm__days-list.collapsed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.xm__days-list.collapsed span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.xm__days-list.collapsed + .xm__show-more {
  opacity: 1;
  overflow: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=xmas_modal_styles.css.map */