{# Animations #}
@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}
.h-loading {
  display: none;
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}
.ic-button--disabled .h-loading {
  display: inline-block;
}

{# Lity Styles #}
.lity-iframe-container {
  background-color: #2E205B;
  border-radius: 76px;
  padding-top: 87.25%;
}
.lity-container {
  position: relative;
}
.lity-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #EF5396;
  font-size: 54px;
  color: #FFF;
  text-shadow: none;
  border-radius: 50%;
  transform: translate(50%, 50%);
}
.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  background-color: #EF5396;
  text-shadow: none;
}
.lity {
  background: rgba(255, 255, 255, 0.9)
}
.lity-iframe-container iframe {
  box-shadow: none;
  background: none;
}
.lity-content:after {
  box-shadow: none;
}
html.lity-active {
    overflow: hidden;
}

  .lity-content {
    margin: 2rem;
    max-width: calc(964px - 4rem);
    width: calc(100vw - 4rem);
    max-height: calc(100vh - 4rem);
    overflow: auto;
    border-radius: 76px;
 }
 .lity-content:after {
    box-shadow: none;
 }


.lity {
    z-index: 9999999999;
}
.lity-close {
    right: 3rem;
}
@media (min-width: 768px) {
    .lity-close {
        right: 2rem !important;
    }
}