/**
 * @package         Modals
 * @version         11.10.1
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://regularlabs.com
 * @copyright       Copyright © 2022 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
/**
 * @package         Modals
 * @version         11.10.1
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://regularlabs.com
 * @copyright       Copyright © 2022 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
/**
 * @package         Modals
 * @version         11.10.1
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://regularlabs.com
 * @copyright       Copyright © 2022 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
/*CSS Animations*/
.rl-modals-fade-in {
  animation: rl-modals-fade-in 300ms ease;
}

.rl-modals-fade-out {
  animation: rl-modals-fade-out 300ms ease;
}

.rl-modals-slide-out-left {
  animation: rl-modals-slide-out-left 300ms ease;
}

.rl-modals-slide-in-left {
  animation: rl-modals-slide-in-left 300ms ease;
}

.rl-modals-slide-out-right {
  animation: rl-modals-slide-out-right 300ms ease;
}

.rl-modals-slide-in-right {
  animation: rl-modals-slide-in-right 300ms ease;
}

.rl-modals-zoom-in {
  animation: rl-modals-zoom-in 300ms ease;
}

.rl-modals-zoom-out {
  animation: rl-modals-zoom-out 300ms ease;
}

@keyframes rl-modals-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rl-modals-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rl-modals-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes rl-modals-slide-in-left {
  from {
    opacity: 0;
    transform: translate3d(-75%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rl-modals-slide-out-left {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-75%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes rl-modals-slide-in-right {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(75%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rl-modals-slide-out-right {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(75%, 0, 0);
    opacity: 0;
  }
}
@keyframes rl-modals-zoom-in {
  from {
    opacity: 0;
    transform: scale3d(0.25, 0.25, 0.25);
  }
  to {
    opacity: 1;
  }
}
@keyframes rl-modals-zoom-out {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.25, 0.25, 0.25);
  }
  to {
    opacity: 0;
  }
}
[class^=rl-modals-]:not(html) {
  box-sizing: border-box;
}

html.rl-modal-open,
html.rl-modal-open body {
  overflow: hidden;
}

.rl-modals-modal {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  touch-action: none;
  backface-visibility: hidden;
  outline: none;
  /* CONTENT TYPES */
}
.rl-modals-modal .hidden {
  display: none;
}
.rl-modals-modal .rl-modals-overlay {
  z-index: 1001;
  position: fixed;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  will-change: opacity;
}
.rl-modals-modal .rl-modals-spinner {
  z-index: 1002;
  position: absolute;
  height: 32px;
  width: 32px;
  animation: rl-modals-spinner 1.2s infinite linear;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: calc(50% - 16px);
}
.rl-modals-modal .rl-modals-container {
  z-index: 1003;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column;
}
.rl-modals-modal .rl-modals-top {
  display: flex;
  flex-direction: row-reverse;
}
.rl-modals-modal .rl-modals-middle {
  display: flex;
  flex: 1 1 auto;
}
.rl-modals-modal .rl-modals-center {
  flex: 1 1 auto;
}
.rl-modals-modal .rl-modals-slides {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
  transform: translate3d(0, 0, 0);
}
.rl-modals-modal .rl-modals-slide {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rl-modals-modal .rl-modals-slide-container {
  display: flex;
  max-height: 100%;
  overflow: hidden;
}
.rl-modals-modal .rl-modal-slides-vertical .rl-modals-slide-container {
  flex-flow: column;
}
.rl-modals-modal .rl-modal-slides-horizontal .rl-modals-slide-container {
  flex-flow: row;
}
.rl-modals-modal .rl-modals-slide-before,
.rl-modals-modal .rl-modals-slide-content,
.rl-modals-modal .rl-modals-slide-after {
  max-height: 100%;
  overflow: auto;
}
.rl-modals-modal .rl-modals-slide-before {
  flex: none;
}
.rl-modals-modal .rl-modals-slide-content {
  flex: 1 1 auto;
}
.rl-modals-modal .rl-modals-slide-after {
  flex: none;
}
.rl-modals-modal .rl-modals-slide-title {
  overflow: auto;
}
.rl-modals-modal .rl-modals-slide-description {
  overflow: auto;
}
.rl-modals-modal .rl-modals-previous,
.rl-modals-modal .rl-modals-next,
.rl-modals-modal .rl-modals-close {
  cursor: pointer;
  z-index: 1004;
  position: relative;
}
.rl-modals-modal .rl-modals-close {
  content: "X";
}
.rl-modals-modal .rl-modals-next {
  content: "<";
}
.rl-modals-modal .rl-modals-previous {
  content: ">";
}
.rl-modals-modal .rl-modals-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rl-modals-modal .rl-modals-page:not(.active) {
  cursor: pointer;
}
.rl-modals-modal .rl-modals-type-video {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.rl-modals-modal .rl-modals-type-video .rl-modals-slide-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.rl-modals-modal .rl-modals-type-inline .rl-modals-slide-content {
  overflow: auto;
}
.rl-modals-modal .rl-modals-type-iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.rl-modals-modal .rl-modals-type-iframe .rl-modals-slide-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
