/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.testimonials-carousel .owl-item {
	opacity: 0.25;
	transform: scale(.9);
	-webkit-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
}

.testimonials-carousel .owl-item.active.center {
	opacity: 1;
	transform: scale(1);
}

.que-edit:checked + .que-edit-label:before {
    background: #ab4a4a !important;
   
}

/* saas 2 */
.rounded-xxl {
    border-radius: var(--cnvs-card-rounded);
}
    
    .swiper-pagination-progress {
        --cnvs-swiper-bar-size: 2px;
        --cnvs-swiper-bar-color: var(--cnvs-contrast-200);
        --cnvs-swiper-bar-active-color: var(--cnvs-contrast-1000);
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: auto;
        border-radius: 0;
        opacity: 1;
        margin: 0px;
        background-color: transparent;
    }

    .swiper-pagination-progress .swiper-pagination-bar,
    .swiper-pagination-progress .swiper-pagination-bar-active {
        position: absolute;
        bottom: 0;
        border-radius: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: var(--cnvs-swiper-bar-size);
        margin: 0px;
        background-color: var(--cnvs-swiper-bar-color);
    }


    .swiper-pagination-progress .swiper-pagination-bar-active {
        z-index: 2;
        width: 0%;
        background-color: var(--cnvs-swiper-bar-active-color);
    }


    .active .swiper-pagination-progress .swiper-pagination-bar-active {
        animation-name: swiperbarAnim;
        animation-duration: 5s;
        animation-timing-function: ease-in;
        animation-iteration-count: 1;
        animation-direction: alternate;
        animation-fill-mode: forwards;
    }
    
    @keyframes swiperbarAnim {
        0% {
            width: 0;
        }
    
        100% {
            width: 100%;
        }
    }
    
    
    .swiper-tab-link {
        --swiper-tab-title: #AAA;
        --swiper-tab-content:;
        counter-increment: step-counter;
        position: relative;
        overflow: hidden;
        margin-bottom: 5px;
        padding: 20px 0;
        cursor: pointer;
    }


    .swiper-tab-link::before {
        content: "0" counter(step-counter)'.';
        position: relative;
        display: inline-block;
        font-size: 26px;
        font-weight: 600;
        min-width: 50px;
        margin-right: 5px;
        color: var(--swiper-tab-title);
        font-family: monospace;
        line-height: 1;
    }


    .swiper-tab-link .swiper-tab-title {
        display: inline-block;
        color: var(--swiper-tab-title);
        margin-bottom: 0;
        font-size: calc(1.275rem + 0.3vw);
    }


    .swiper-tab-link .swiper-tab-content {
        margin-bottom: 0;
        padding-top: 10px;
        margin-left: 5px;
        line-height: 0;
        opacity: 0;
        vertical-align: middle;
        font-size: 1rem;
        transition: line-height 0.6s cubic-bezier(.4,0,.2,1), opacity .1s .1s cubic-bezier(.4,0,.2,1);
    }



    @media (min-width: 768px) {
        .swiper-tab-link .swiper-tab-content {
        margin-left: 60px;
        }
    }



    .swiper-tab-link.active .swiper-tab-content {
        opacity: .8;
        line-height: var(--cnvs-line-height-content);
        transition: line-height 0.5s cubic-bezier(.4,0,.2,1), opacity .15s .15s cubic-bezier(.4,0,.2,1);
    }


    .swiper-tab-link.active {
        --swiper-tab-title: #000;
    }
/* saas 2 end */

/*galery start*/

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns.grid-2 {
            -webkit-column-count: 2;
            -moz-column-count: 2;
            column-count: 2;
        }

        .card-columns > * {
            display: inline-block;
            width: 100%;
        }
}
/*galery end*/

.si-sticky {
    position: fixed;
    top: 30%;
    bottom: auto;
    z-index: 499;
    transform: translateY(-50%);
}

.si-sticky.si-sidebar {
    --width: 240px;
    --height: 54px;
    --icon-size: var(--height); /* 54px */
    --text-width: calc(var(--width) - var(--height)); /* 230px - 54px */
    width: var(--icon-size);
    height: auto;
}

.si-sticky.si-sidebar:not(.si-sticky-right) {
    left: 0;
}

.si-sticky.si-sidebar .social-icon {
    margin: 2px 0;
    margin-left: calc(-1 * var(--text-width));
    width: var(--width);
    height: var(--height);
    border: 0;
    border-radius: 0 4px 4px 0;
    display: inline-flex;
    align-items: center;
    transition: margin 0.2s ease-in-out;
}

.si-sticky.si-sidebar .social-icon i {
    position: absolute;
    left: auto;
    right: 0;
    width: var(--icon-size);
    height: var(--icon-size);
    line-height: var(--icon-size);
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.si-sticky.si-sidebar .social-icon span {
    color: #FFF;
    font-size: 1rem;
    width: var(--text-width);
    text-align: center;
}


.si-sticky.si-sticky-right {
    right: 0;
}

.si-sticky.si-sidebar.si-sticky-right .social-icon {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    border-radius: 4px 0 0 4px;
}

.si-sticky.si-sidebar.si-sticky-right .social-icon i {
    left: -175px;
    right: auto;
}

@media (min-width: 992px) {
    .si-sticky.si-sidebar:not(.si-sticky-right) .social-icon:hover {
        margin-left: 0;
    }

    .si-sticky.si-sidebar:not(.si-sticky-right) .social-icon:hover i {
        right: calc(-1 * var(--text-width));
    }

    .si-sticky.si-sidebar.si-sticky-right .social-icon:hover {
        margin-left: calc(-1 * var(--text-width));
    }

    .si-sticky.si-sidebar.si-sticky-right .social-icon:hover i {
        left: calc(-1 * var(--text-width));
    }
}