/* line 1, app/assets/stylesheets/_swiper.scss */
:root {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
}

/* line 6, app/assets/stylesheets/_swiper.scss */
.swiper {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  z-index: 1;
}

/* line 17, app/assets/stylesheets/_swiper.scss */
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  box-sizing: content-box;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
}

/* line 28, app/assets/stylesheets/_swiper.scss */
.swiper-horizontal {
  touch-action: pan-y;
}

/* line 32, app/assets/stylesheets/_swiper.scss */
.swiper-vertical {
  touch-action: pan-x;
}

/* line 36, app/assets/stylesheets/_swiper.scss */
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

/* line 44, app/assets/stylesheets/_swiper.scss */
.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* line 48, app/assets/stylesheets/_swiper.scss */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

/* line 53, app/assets/stylesheets/_swiper.scss */
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* line 58, app/assets/stylesheets/_swiper.scss */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: 300ms opacity;
  z-index: 10;
}

/* line 66, app/assets/stylesheets/_swiper.scss */
.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  transition: opacity 200ms ease, transform 200ms ease, background-color 200ms ease;
  cursor: pointer;
}

/* line 78, app/assets/stylesheets/_swiper.scss */
.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: 1;
}

/* line 83, app/assets/stylesheets/_swiper.scss */
.swiper-pagination-lock {
  display: none;
}

/* line 87, app/assets/stylesheets/_swiper.scss */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  user-select: none;
}

/* line 103, app/assets/stylesheets/_swiper.scss */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

/* line 110, app/assets/stylesheets/_swiper.scss */
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

/* line 117, app/assets/stylesheets/_swiper.scss */
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none;
}

/* line 122, app/assets/stylesheets/_swiper.scss */
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 10px);
}

/* line 126, app/assets/stylesheets/_swiper.scss */
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 10px);
}

/* line 130, app/assets/stylesheets/_swiper.scss */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

/* line 140, app/assets/stylesheets/_swiper.scss */
.swiper-button-prev::after {
  transform: rotate(-135deg);
  margin-left: 0.15rem;
}

/* line 145, app/assets/stylesheets/_swiper.scss */
.swiper-button-next::after {
  transform: rotate(45deg);
  margin-right: 0.15rem;
}

/* line 150, app/assets/stylesheets/_swiper.scss */
.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  z-index: 10;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
  transform-origin: 50%;
}

/* line 166, app/assets/stylesheets/_swiper.scss */
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

/* line 171, app/assets/stylesheets/_swiper.scss */
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

/* line 175, app/assets/stylesheets/_swiper.scss */
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Colorbox Styles */
/* line 2, app/assets/stylesheets/colorbox.scss */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 3, app/assets/stylesheets/colorbox.scss */
#cboxWrapper {
  max-width: none;
}

/* line 4, app/assets/stylesheets/colorbox.scss */
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(70, 70, 70, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* line 9, app/assets/stylesheets/colorbox.scss */
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

/* line 10, app/assets/stylesheets/colorbox.scss */
#cboxContent {
  position: relative;
}

/* line 11, app/assets/stylesheets/colorbox.scss */
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 12, app/assets/stylesheets/colorbox.scss */
#cboxTitle {
  margin: 0;
}

/* line 13, app/assets/stylesheets/colorbox.scss */
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 14, app/assets/stylesheets/colorbox.scss */
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

/* line 15, app/assets/stylesheets/colorbox.scss */
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

/* line 16, app/assets/stylesheets/colorbox.scss */
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

/* line 17, app/assets/stylesheets/colorbox.scss */
#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* line 18, app/assets/stylesheets/colorbox.scss */
#colorbox {
  outline: 0;
}

/* line 19, app/assets/stylesheets/colorbox.scss */
#cboxContent {
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/colorbox.scss */
.cboxIframe {
  background: #fff;
}

/* line 21, app/assets/stylesheets/colorbox.scss */
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

/* line 22, app/assets/stylesheets/colorbox.scss */
#cboxLoadedContent {
  margin-bottom: 28px;
}

/* line 23, app/assets/stylesheets/colorbox.scss */
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

/* line 24, app/assets/stylesheets/colorbox.scss */
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

/* line 25, app/assets/stylesheets/colorbox.scss */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* line 26, app/assets/stylesheets/colorbox.scss */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

/* line 1, app/assets/stylesheets/mobile-menu.scss */
#navbar-mobile-toggler:not(.collapsed) ul#mobile_menu li:nth-of-type(1) {
  opacity: 0;
}

/* line 4, app/assets/stylesheets/mobile-menu.scss */
#navbar-mobile-toggler:not(.collapsed) ul#mobile_menu li:nth-of-type(2) {
  transform: translateY(8px) rotate(45deg);
}

/* line 7, app/assets/stylesheets/mobile-menu.scss */
#navbar-mobile-toggler:not(.collapsed) ul#mobile_menu li:nth-of-type(3) {
  transform: rotate(-45deg);
}

/* line 10, app/assets/stylesheets/mobile-menu.scss */
#navbar-mobile-toggler:not(.collapsed) ul#mobile_menu li:nth-of-type(4) {
  top: 120%;
  opacity: 0;
}

/* line 15, app/assets/stylesheets/mobile-menu.scss */
#navbar-mobile-toggler:not(.collapsed) ul#mobile_menu li {
  transition: all 0.5s ease;
}

/* line 19, app/assets/stylesheets/mobile-menu.scss */
ul#mobile_menu {
  position: relative;
}

/* line 23, app/assets/stylesheets/mobile-menu.scss */
ul#mobile_menu li {
  list-style: none;
  right: 0;
  height: 2px;
  transition: .5s;
  opacity: 1;
  width: 30px;
  margin: 6px;
}

/* line 1, app/assets/stylesheets/faq.scss */
.faq_items .faq_item .cross_button:before {
  content: "";
  display: block;
  width: 24px;
  height: 0px;
  border-bottom: solid 2px white;
  position: relative;
  top: 12px;
  transform: rotate(90deg);
  transition: all 0.5s ease;
}

/* line 13, app/assets/stylesheets/faq.scss */
.faq_items .faq_item.active .cross_button:before {
  transform: rotate(360deg);
  transition: all 0.5s ease;
}

/* line 18, app/assets/stylesheets/faq.scss */
.faq_items .faq_item .cross_button:after {
  content: "";
  display: block;
  width: 24px;
  height: 0px;
  border-bottom: solid 2px white;
  position: relative;
  top: 10px;
}

/* line 1, app/assets/stylesheets/pagy.scss */
nav.pagy-nav.pagination {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}

/* line 9, app/assets/stylesheets/pagy.scss */
#stripe-products-index .pagy-bootstrap-nav .page-item.disabled .page-link {
  color: #BABABA;
}

/* line 13, app/assets/stylesheets/pagy.scss */
#stripe-products-index .pagy-bootstrap-nav .page-item .page-link {
  background-color: inherit;
  color: white;
}

/* line 18, app/assets/stylesheets/pagy.scss */
#stripe-products-index .pagy-bootstrap-nav .page-item.active .page-link {
  border-color: #BABABA;
  background-color: white;
  color: #381959;
}

/* line 2, app/assets/stylesheets/account.scss */
#accordion-environments .accordion-item:last-of-type .accordion-collapse {
  border-radius: 0%;
}

/* line 6, app/assets/stylesheets/account.scss */
#accordion-environments .accordion-item {
  /* Use solid color compatible with sassc; previous rgb() used CSS Color 4 syntax */
  background-color: #26113e;
}

/* line 13, app/assets/stylesheets/account.scss */
#stats-pills-tab button.nav-link {
  color: white;
}

/* line 16, app/assets/stylesheets/account.scss */
#stats-pills-tab button.nav-link.active {
  background-color: #26113e;
}

/* line 21, app/assets/stylesheets/account.scss */
.anim-scale-in {
  animation-name: scaleIn;
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
}

/* Custom styles for range input */
/* line 2, app/assets/stylesheets/range-slider.scss */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
}

/* Style the track */
/* line 11, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.25rem;
  background: white;
  border: none;
  border-radius: 0.125rem;
}

/* line 19, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 0.25rem;
  background: white;
  border: none;
  border-radius: 0.125rem;
}

/* line 27, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-ms-track {
  width: 100%;
  height: 0.25rem;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/* line 35, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper {
  background: white;
  border-radius: 0.125rem;
}

/* Style the thumb */
/* line 42, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
  margin-top: -0.375rem;
  /* (thumb height - track height) / 2 */
}

/* line 52, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-moz-range-thumb {
  height: 1rem;
  width: 1rem;
  border: none;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
}

/* line 61, app/assets/stylesheets/range-slider.scss */
input[type="range"]::-ms-thumb {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
}

/* line 9, app/assets/stylesheets/application-new-design.scss */
a:hover {
  color: inherit;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 18, app/assets/stylesheets/application-new-design.scss */
.form-switch .form-check-input:checked {
  background-size: contain;
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 34, app/assets/stylesheets/application-new-design.scss */
.anim-scale-in {
  animation-name: scaleIn;
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
}
