/*------------------------------------*\
    #Lightbox
\*------------------------------------*/
html.c-lightbox-is-open {
  overflow: initial !important;
}
body.c-lightbox-is-open {
  overflow: hidden !important;
}
.c-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000000;
  overflow: hidden;
  transition-duration: 350ms;
}
.c-lightbox.is-loading::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 44px;
  -webkit-animation: sqs-spin 1s infinite linear;
  animation: sqs-spin 1s infinite linear;
  border: 2px solid rgba(0, 0, 0, 0.7);
  border-top-color: rgba(0, 0, 0, 0.15);
  border-left-color: rgba(0, 0, 0, 0.15);
  -webkit-filter: brightness(10000%) invert(100%);
  filter: brightness(10000%) invert(100%);
}
.c-lightbox__dialog {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}
.c-lightbox__dialog::before,
.c-lightbox__dialog::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
}
@media (min-width: 768px) {
  .c-lightbox__dialog::before,
  .c-lightbox__dialog::after {
    height: 20px;
  }
}
.c-lightbox__dialog.is-open {
  overflow: auto;
  -webkit-animation: lightboxFadeIn 350ms;
  animation: lightboxFadeIn 350ms;
}
.c-lightbox__dialog.is-close {
  -webkit-animation: lightboxFadeOut 350ms forwards;
  animation: lightboxFadeOut 350ms forwards;
}
.c-lightbox__content {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
  padding: 30px;
  background: #fff;
  border: none;
  border-radius: none;
  box-shadow: none;
  transition: opacity 350ms;
  opacity: 0;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
@media (min-width: 768px) {
  .c-lightbox__content {
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  .c-lightbox__content {
    max-width: 60%;
  }
}
.c-lightbox__content .sqs-block:first-child {
  padding-top: 0 !important;
}
.c-lightbox__content .sqs-block:last-child {
  padding-bottom: 0 !important;
}
.c-lightbox.is-loading .c-lightbox__content {
  opacity: 0;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.c-lightbox:not(.is-loading) .c-lightbox__dialog.is-open .c-lightbox__content {
  -webkit-animation: lightboxOpen 350ms forwards;
  animation: lightboxOpen 350ms forwards;
}
.c-lightbox__dialog.is-close .c-lightbox__content {
  -webkit-animation: lightboxClose 350ms forwards;
  animation: lightboxClose 350ms forwards;
}
.c-lightbox__close {
  box-sizing: border-box;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  padding: 20px;
  background: none;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22rgba(51, 51, 51, 0.999999)%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M18.984%206.422L13.406%2012l5.578%205.578-1.406%201.406L12%2013.406l-5.578%205.578-1.406-1.406L10.594%2012%205.016%206.422l1.406-1.406L12%2010.594l5.578-5.578z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  border: 0;
  box-shadow: none;
  font: 0/0 a;
  outline: none;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .c-lightbox__close {
    top: 15px;
    right: 15px;
  }
}
@-webkit-keyframes lightboxFadeIn {
  from {
    background: transparent;
  }
  to {
    background: rgba(0, 0, 0, 0.4);
  }
}
@keyframes lightboxFadeIn {
  from {
    background: transparent;
  }
  to {
    background: rgba(0, 0, 0, 0.4);
  }
}
@-webkit-keyframes lightboxFadeOut {
  from {
    background: rgba(0, 0, 0, 0.4);
  }
  to {
    background: transparent;
  }
}
@keyframes lightboxFadeOut {
  from {
    background: rgba(0, 0, 0, 0.4);
  }
  to {
    background: transparent;
  }
}
@-webkit-keyframes lightboxOpen {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes lightboxOpen {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes lightboxClose {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes lightboxClose {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
