#holiday-banner {
  width: 100%;
  height: 54px;
  background-color: #000000;
  padding: 16px 0;
  position: relative;
  display: block;
}

#holiday-banner .title {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
  animation: fadeIn linear 1.5s 1;
  -webkit-animation: fadeIn linear 1.5s 1;
  -moz-animation: fadeIn linear 1.5s 1;
  -ms-animation: fadeIn linear 1.5s 1;
  -o-animation: fadeIn linear 1.5s 1;
}

#holiday-banner h4 {
  color: #ffffff;
  margin: 0 14px 0 42px;
  display: inline-block;
  font-weight: 600;
}

#holiday-banner span {
  color: #fecb00;
  margin: 0 24px 0 0;
  display: inline-block;
}

.snow-container {
  position: absolute;
  height: 54px;
  width: 100%;
  top: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  background-color: #000000;
}

.snow {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  animation: snow linear infinite;
  -webkit-animation: snow linear infinite;
  -moz-animation: snow linear infinite;
  -ms-animation: snow linear infinite;
  -o-animation: snow linear infinite;
}

.snow.foreground {
  background-image: url("https://cwsmgmt.corsair.com/marketing/holiday-banner/public/images/snow-large-1-more.png");
  animation-duration: 3.5s;
  -webkit-animation-duration: 3.5s;
  -moz-animation-duration: 3.5s;
  -ms-animation-duration: 3.5s;
  -o-animation-duration: 3.5s;
}

.snow.foreground.layered {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -o-animation-delay: 2s;
}

.snow.middleground {
  background-image: url("https://cwsmgmt.corsair.com/marketing/holiday-banner/public/images/snow-large-2-r.png");
  animation-duration: 6.25s;
  -webkit-animation-duration: 6.25s;
  -moz-animation-duration: 6.25s;
  -ms-animation-duration: 6.25s;
  -o-animation-duration: 6.25s;
}

.snow.middleground.layered {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  -ms-animation-delay: 3s;
  -o-animation-delay: 3s;
}

.snow.background {
  background-image: url("https://cwsmgmt.corsair.com/marketing/holiday-banner/public/images/snow-large-3.png");
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -ms-animation-duration: 5s;
  -o-animation-duration: 5s;
}

.snow.background.layered {
  animation-delay: 5s;
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  -ms-animation-delay: 5s;
  -o-animation-delay: 5s;
}

#snow-hill {
  position: absolute;
  z-index: 5;
  bottom: -1.5px;
  width: 110%;
  left: 50%;
  transform: translate(-50%, 0);
  animation: moveUp linear 2s 1;
  -webkit-animation: moveUp linear 2s 1;
  -moz-animation: moveUp linear 2s 1;
  -ms-animation: moveUp linear 2s 1;
  -o-animation: moveUp linear 2s 1;
}

#holiday-banner .btn.btn-primary {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #fecb00;
  z-index: 10;
  color: #000000;
  border: none !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  animation: fadeIn linear 1.5s 1;
  -webkit-animation: fadeIn linear 1.5s 1;
  -moz-animation: fadeIn linear 1.5s 1;
  -ms-animation: fadeIn linear 1.5s 1;
  -o-animation: fadeIn linear 1.5s 1;
}

@-webkit-keyframes snow {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
  }
}

@keyframes snow {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes moveUp {
  0% {
    bottom: -21px;
  }
  60% {
    bottom: -21px;
  }
  100% {
    bottom: -1.5px;
  }
}

@media only screen and (min-width:500px) and (max-width:780px) {
  #holiday-banner {
    height: 64px;
  }
  #holiday-banner h4 {
    margin: 0 14px 0 24px;
  }
  #holiday-banner span {
    margin: 0 24px 0 24px;
    display: block;
  }
  .snow-container {
    height: 64px;
  }
  #snow-hill {
    bottom: -2px;
    animation: moveUp linear 1.5s 1;
    -webkit-animation: moveUp linear 1.5s 1;
    -moz-animation: moveUp linear 1.5s 1;
    -ms-animation: moveUp linear 1.5s 1;
    -o-animation: moveUp linear 1.5s 1;
  }
  #holiday-banner .btn.btn-primary {
    right: 45px;
  }
  @keyframes moveUp {
    0% {
      bottom: -8px;
    }
    70% {
      bottom: -8px;
    }
    100% {
      bottom: -2px;
    }
  }
}

@media only screen and (min-width:466px) and (max-width:499px) {
  #holiday-banner {
    height: 75px;
  }
  #holiday-banner h4 {
    margin: 0 24px 0 16px;
  }
  #holiday-banner span {
    margin: 0 24px 0 16px;
    display: block;
  }
  .snow-container {
    height: 75px;
  }
  #snow-hill {
    width: 250%;
    bottom: -1px;
    animation: moveUp linear 1.5s 1;
    -webkit-animation: moveUp linear 1.5s 1;
    -moz-animation: moveUp linear 1.5s 1;
    -ms-animation: moveUp linear 1.5s 1;
    -o-animation: moveUp linear 1.5s 1;
  }
  #holiday-banner .btn.btn-primary {
    right: 15px;
  }
  @keyframes moveUp {
    0% {
      bottom: -11px;
    }
    60% {
      bottom: -11px;
    }
    100% {
      bottom: -1px;
    }
  }
}

@media only screen and (min-width: 376px) and (max-width:465px) {
  #holiday-banner {
    height: 54px;
  }
  #holiday-banner h4 {
    margin: 0 24px 0 14px;
    font-size: 14px;
  }
  #holiday-banner span {
    display: block;
    margin: 0 24px 0 14px;
    font-size: 12px;
  }
  .snow-container {
    height: 54px;
  }
  #snow-hill {
    width: 300%;
    bottom: -1px;
    animation: moveUp linear 1.5s 1;
    -webkit-animation: moveUp linear 1.5 1;
    -moz-animation: moveUp linear 1.5 1;
    -ms-animation: moveUp linear 1.5s 1;
    -o-animation: moveUp linear 1.5 1;
  }
  #holiday-banner .btn.btn-primary {
    right: 10px;
    font-size: 10px;
  }
  #holiday-banner .btn{
    padding: 6px 8px;
  }
  @keyframes moveUp {
    0% {
      bottom: -11px;
    }
    50% {
      bottom: -11px;
    }
    100% {
      bottom: -1px;
    }
  }
}

@media only screen and (max-width:375px) {
  #holiday-banner {
    height: 54px;
  }
  #holiday-banner h4 {
    margin: 0 24px 0 7px;
    font-size: 13px;
  }
  #holiday-banner span {
    display: block;
    margin: 0 24px 0 7px;
    font-size: 10px;
  }
  .snow-container {
    height: 54px;
  }
  #snow-hill {
    width: 300%;
    bottom: -1px;
    animation: moveUp linear 1.5s 1;
    -webkit-animation: moveUp linear 1.5 1;
    -moz-animation: moveUp linear 1.5 1;
    -ms-animation: moveUp linear 1.5s 1;
    -o-animation: moveUp linear 1.5 1;
  }
  #holiday-banner .btn.btn-primary {
    right: 10px;
    font-size: 9px;
  }
  #holiday-banner .btn{
    padding: 8px 6px;
  }
}