* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.w-100 {
  width: 100%;
}
.as-invisible {
  display: none;
}
.as-carousel:not(.as-carousel-destroyed) {
  opacity: 0;
  transition: 0.2s ease-in-out;
  position: relative;
  max-width: 100%;
  transition-timing-function: ease-in-out;
}
.as-carousel:not(.as-carousel-destroyed) .list .item {
  opacity: 1;
  transition: inherit;
  transition: 1s;
}
.as-carousel:not(.as-carousel-destroyed) .as-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
}
.as-carousel:not(.as-carousel-destroyed) .as-carousel-button.as-carousel-prev {
  left: 0;
}
.as-carousel:not(.as-carousel-destroyed) .as-carousel-button.as-carousel-next {
  right: 0;
}
/* .as-carousel:not(.as-carousel-destroyed):not(.as-vertical):not(.as-variablesize)
  .list
  .item {
  flex: 1;
} */
.as-carousel:not(.as-carousel-destroyed).as-initialized {
  opacity: 1;
}
.as-carousel:not(.as-carousel-destroyed).as-initialized .list {
  position: relative;
  display: flex;
  transition: transform 0s, opacity 0s;
  transition-timing-function: ease-in-out;
}
.as-carousel:not(.as-carousel-destroyed).as-initialized,
.as-carousel:not(.as-carousel-destroyed).as-initialized * {
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.as-carousel:not(.as-carousel-destroyed).disable-transition,
.as-carousel:not(.as-carousel-destroyed).disable-transition * {
  transition-duration: 0s !important;
}
.as-carousel:not(.as-carousel-destroyed).as-adaptive-height.as-vertical
  .as-list-container {
  height: 0;
}
.as-carousel:not(.as-carousel-destroyed).as-adaptive-height .list {
  align-items: flex-start;
}
.as-carousel:not(.as-carousel-destroyed).as-vertical .list {
  flex-direction: column;
}
.as-carousel:not(.as-carousel-destroyed).as-vertical .list .item {
  width: 100%;
}
.as-carousel:not(.as-carousel-destroyed).as-fade .list .item {
  position: absolute;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
.as-carousel:not(.as-carousel-destroyed).as-fade
  .list
  .item.as-carousel-visible {
  opacity: 1;
}
.as-carousel:not(.as-carousel-destroyed).as-fade
  .list
  .item.as-carousel-active {
  z-index: 1;
}
.as-carousel:not(.as-carousel-destroyed).as-variablesize .list {
  display: flex;
}
.as-list-container {
  overflow: hidden;
}
.as-isdragging a {
  pointer-events: none;
}
.as-isdragging .list {
  touch-action: none;
  transition: all 0s !important;
}
.as-isdragging .list::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.height-auto .item {
  height: auto !important;
}
/*#region Indicators */
.as-position-top-left,
.as-position-bottom-left {
  text-align: left;
}
.as-position-top-center,
.as-position-bottom-center {
  text-align: center;
}
.as-position-top-right,
.as-position-bottom-right {
  text-align: right;
}
/*#endregion */
/*#region Dots*/
.as-dots-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  justify-content: center;
  opacity: 1;
}
.as-dots-container .as-dot {
  border-radius: 50%;
  display: inline-block;
  border: none;
  cursor: pointer;
  width: 15px;
  height: 15px;
  font-size: 0px;
  position: relative;
  background-color: #ccc;
}
.as-dots-container .as-dot::before {
  content: '';
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.15);
  transition-timing-function: inherit;
  transition-duration: 0.2s;
}
.as-dots-container .as-dot.active::before,
.as-dots-container .as-dot:hover::before {
  transform: scale(0.7);
}
.as-dots-overlap-container {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.as-dots-overlap-container .as-dots-overlap-inner {
  display: flex;
  gap: 0 20px;
  opacity: 1;
  transition: transform 0.2s ease-in-out;
}
.as-dots-overlap-container .as-dots-overlap-inner .as-dot {
  border-radius: 50%;
  display: inline-block;
  border: none;
  cursor: pointer;
  width: 15px;
  height: 15px;
  font-size: 0px;
  position: relative;
  background-color: #ccc;
  text-indent: 1em;
}
.as-dots-overlap-container .as-dots-overlap-inner .as-dot::before {
  content: '';
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.15);
  transition-timing-function: inherit;
  transition-duration: 0.2s;
}
.as-dots-overlap-container .as-dots-overlap-inner .as-dot.active::before,
.as-dots-overlap-container .as-dots-overlap-inner .as-dot:hover::before {
  transform: scale(0.7);
}
/*#endregion */
/*#region Loading*/
.as-carousel-loading-container {
  position: absolute;
  z-index: 99;
  inset: 0;
  display: grid;
  overflow: hidden;
  background: #fff;
  place-items: center;
  transition: opacity 0.2s ease-in-out;
}
.as-carousel-loading-container.loaded {
  opacity: 0;
}
.as-carousel-loading-container .as-carousel-loading {
  background-color: #9f9f9f;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  animation: 1.75s linear infinite;
  animation-name: cl;
}
.as-carousel-loading-container .as-carousel-loading::before,
.as-carousel-loading-container .as-carousel-loading::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #585858;
  border-radius: 3px;
}
.as-carousel-loading-container .as-carousel-loading::before {
  right: calc(100% + 2px);
  animation: 1.75s 0.25s ease infinite;
  animation-name: ll;
}
.as-carousel-loading-container .as-carousel-loading::after {
  left: calc(100% + 2px);
  animation: 1.75s 0.25s ease infinite;
  animation-name: rl;
}
@keyframes ll {
  65% {
    transform: translate(-100%, -50%) scale(0.2) rotate(-180deg);
    background-color: #9f9f9f;
  }
  70%,
  100% {
    transform: translate(0, 0) scale(1) rotate(-360deg);
    background-color: #585858;
  }
}
@keyframes rl {
  65% {
    transform: translate(100%, 50%) scale(0.2) rotate(180deg);
    background-color: #9f9f9f;
  }
  70%,
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    background-color: #585858;
  }
}
@keyframes cl {
  20% {
    transform: rotate(-30deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(2);
    background-color: #9f9f9f;
  }
  80% {
    transform: rotate(720deg) scale(0.8);
  }
  90%,
  100% {
    transform: rotate(720deg) scale(1);
    background-color: #9f9f9f;
  }
}
/*#endregion*/
