/* This file is used as dependency in:
   ../../modules/sub-steps.module/module.html 
   ../../modules/sec-steps.module/module.html */

.pwr-sec-steps {
    padding: 90px 0 55px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.pwr-sec-steps--with-intro {
    padding: 135px 0 125px;
}

.pwr-sec-steps__intro-sec {
    margin-bottom: 60px;
    position: relative;
}

.pwr-sec-steps--centered .pwr-step {
    padding-left: 10px;
    padding-right: 10px;
}

.pwr-sec-steps--centered .pwr-step__count {
    margin-left: auto;
    margin-right: auto;
}

.pwr-sec-steps--centered .pwr-steps.pwr-steps--1 {
    display: flex;
    justify-content: center;
}

.pwr-sec-steps--centered .pwr-steps.pwr-steps--2 {
    display: flex;
    justify-content: center;
}

.pwr-sec-steps:not(.pwr-sec-steps--pagination) .swiper-button-next {
    top: 50% !important;
}

.pwr-sec-steps:not(.pwr-sec-steps--pagination) .swiper-button-prev {
    top: 50% !important;
}

@media (max-width: 767px ) {
    .pwr-sec-steps {
        padding: max(var(--fs-min), calc(90px * var(--fs-reduction-factor))) 0 max(var(--fs-min), calc(55px * var(--fs-reduction-factor)));
    }

    .pwr-sec-steps--with-intro {
        padding: max(var(--fs-min), calc(135px * var(--fs-reduction-factor))) 0 max(var(--fs-min), calc(125px * var(--fs-reduction-factor)));
    }

    .pwr-sec-steps__intro-sec {
        margin-bottom: max(var(--fs-min), calc(60px * var(--fs-reduction-factor)));
    }
}

@media (max-width: 575px ) {
    .pwr-sec-steps--centered .pwr-steps {
        flex-direction: column;
    }
}