body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.step-count{
    background-color: rgba(0, 0, 0, .502);
    color: #fff !important;
    letter-spacing: 1.2px;
    font-weight: 600;
    width: 56px;
    height: 32px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
}
.admin-bar .step-count{
    top: 65px;
}
.vertical-swiper {
    width: 100%;
    height: 100dvh!important;
    min-width: 450px;
    margin: 0 auto;
}

.vertical-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ebebeb;
    color: #fff;
    padding: 0;
    height: 100dvh!important;
    overflow: hidden;
/*    margin: 0 !important;*/
}

.vertical-swiper .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.horizontal-swiper {
  width: 100%;
  height: 100%;
}
.vertical-swiper .post-title{
    position: absolute;
    width: 50dvh;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    color: #fff;
    font-size: 20px;
    z-index: 2;
    padding: 1rem 2rem;
}
.admin-bar .vertical-swiper .post-title{
    bottom: 62px;
}
.horizontal-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
}
.horizontal-swiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.horizontal-swiper iframe,
.horizontal-swiper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.horizontal-swiper .horizontal-pagination {
    position: absolute;
    top: 76px;
    bottom: unset;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    background-color: rgba(0, 0, 0, .25);
    width: fit-content;
    padding: .4rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    z-index: 22;
}
.horizontal-swiper .horizontal-pagination .swiper-pagination-bullet{
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}
.horizontal-swiper .horizontal-pagination .swiper-pagination-bullet-active{
    background-color: rgba(255, 255, 255, 1);
}

.swiper-button-prev,
.swiper-button-next {
    color: #000;
    display: flex !important;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: none !important;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
}
.vertical-swiper .swiper-wrapper .swiper-slide:nth-of-type(1) .content:before,
.vertical-swiper .swiper-wrapper input + .swiper-slide .content:before{
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    object-fit: contain;
    left: 50%;
    bottom: 130px;
    transform: translateX(-50%);
    background-image: url(../images/hand.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 22;

}

@media(max-width:768px){
    .horizontal-swiper img,
    .horizontal-swiper iframe,
    .horizontal-swiper video {
      object-fit: cover;
    }
    .vertical-swiper {
        min-width: 100%;
    }
    .vertical-swiper .post-title{
        width: 42dvh;
    }
}