@import '../../common';

.rs-pricing-switcher {
    position: relative;
    // Switcher Button Style Start
    .switcher-part {
        margin-bottom: 50px !important;
        .pricing-switcher-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            span {
                cursor: pointer;
                transition: $transition;
                display: inline-block;
                text-align: center;
            }
            
        }
    }
    &.switcher-button-style1 {
        .switcher-part {
            text-align: center;
            .pricing-switcher-wrapper {
                gap: 20px;
                span {
                    &:not(.switcher) {
                        padding: 0 !important;
                        z-index: 1;
                        position: relative;
                        color: $titleColor;
                        opacity: 1;
                    }
                    &.switcher {
                        width: 50px;
                        height: 30px;
                        background: $primaryColor;
                        border-radius: 30px;
                        position: relative;
                        box-shadow: inset 0px 0px 8px 3px rgba(0, 0, 0, 0.2);
                        &:after {
                            position: absolute;
                            content: '';
                            top: 50%;
                            transform: translateY(-50%);
                            left: 2px;
                            height: 25px;
                            width: 25px;
                            border-radius: 50%;
                            background: #fff;
                            transition: all 0.3s;
                        }
                    }
                }
            }
        }
        &.switched {
            .switcher-part {
                .pricing-switcher-wrapper {
                    span {
                        &.btn-monthly {
                            opacity: 0.6;
                        }
                        &.switcher {
                            &:after {
                                left: calc(100% - 27px);
                            }
                        }
                    }
                }
            }
        }
        &:not(.switched) {
            .switcher-part {
                .pricing-switcher-wrapper {
                    span {
                        &.btn-yearly {
                            opacity: 0.6;
                        }
                    }
                }
            }
        }
    }
    &.switcher-button-style2 {
        .switcher-part {
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid #d2d2d2;
            padding: 8px;
            border-radius: 43px;
            .pricing-switcher-wrapper {
                border-radius: inherit;
                width: 100%;
                span {
                    border-radius: inherit;
                    &:not(.switcher) {
                        padding: 6px 10px;
                        z-index: 1;
                        position: relative;
                        width: 50%;
                    }
                    &.btn-yearly {
                        color: $bodyColor;
                    }
                    &.btn-monthly {
                        color: #ffff;
                    }
                    &.switcher {
                        position: absolute;
                        content: '';
                        left: 0;
                        top: 0;
                        bottom: 0;
                        width: 100%;
                        max-width: 50%;
                        background: $primaryColor;
                        transition: $transition;
                    }
                }
            }
        }
        &.switched {
            .switcher-part {
                .pricing-switcher-wrapper {
                    span {
                        &.switcher {
                            left: 50%;
                        }
                        &.btn-monthly {
                            color: $bodyColor;
                        }
                        &.btn-yearly {
                            color: #ffff;
                        }
                    }
                }
            }
        }
    }
    // Switcher Button Style End

	ul.pkg-icons {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		flex-wrap: wrap;
		list-style: none;
		margin: 0;
		li {
			flex-shrink: 0;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			background: $primaryColor;
			width: 50px;
			height: 50px;
			transition: $transition;
			border-radius: 3px;
			> * {
				flex-shrink: 0;
			}
			svg {
				width: 20px;
				height: 20px;
				path {
					fill: white;
					transition: $transition;
				}
			}
			i {
				color: white;
				font-size: 20px;
				transition: $transition;
			}
		}
	}
    
    .pricing-item {
        position: relative;
        transition: $transition;
        &.yearly {
            display: none;
        }
    }
    &.switched {
        .pricing-item {
            &.monthly {
                display: none;
            }
            &.yearly {
                display: block;
            }
        }
    }
    &.switching {
        .pricing-item {
            opacity: 0;
        }
    }

    // Pricing Card Style Start
    &.style-1 {
        .pricing-item {
            background: #f7f7f7;
            border-radius: 4px;
            text-align: center;
            border-top: 3px solid $primaryColor;
            padding: 30px 0 50px;
			position: relative;
			&::before{
				position: absolute;
				left: 0;
				top: 0;
				content: '';
				width: 0;
				height: 0;
				border-top: 50px solid $secondaryColor;
				border-right: 50px solid transparent;
			}
            .title-wrapper {
                padding: 0 45px;
                .title {
                    margin: 0 0 8px 0;
                    font-size: 30px;
                    line-height: 40px;
                }
                .intro-txt {
                    font-size: 16px;
                    line-height: 26px;
                }
            }
            .price-wrapper {
                padding: 22px 45px 14px;
                border-top: 1px solid rgba(217, 213, 213, 0.5);
                margin: 30px 0 0;
                display: flex;
                flex-direction: column;
                gap: 5px;
                .price {
                    color: $primaryColor;
                    font-weight: 700;
                    line-height: 1;
                    font-size: 60px;
                }
                .plan-duration {
                    font-size: 17px;
                    line-height: 27px;
                    font-weight: 500;
                }
            }
            .description {
                font-size: 16px;
                line-height: 26px;
                padding: 0 45px;
            }
            .pricing-feature {
                text-align: left;
                padding: 32px 45px 0;
                width: 100%;
                border-top: 1px solid rgba(217, 213, 213, 0.5);
                margin: 30px 0 40px;
                .feature-title {
                    position: relative;
                }
                ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    li {
                        position: relative;
                        font-size: 17px;
                        line-height: 27px;
                        font-weight: 500;
                        color: $titleColor;
                        padding-left: 0;
                        margin: 13px 0;
                        transition: all 0.5s ease;
                        &:before {
							content: "\eb7b";
                            color: $primaryColor;
                            font-size: 20px;
                            margin: 0;
                            font-weight: 900;
                            display: inline-block;
                            font-family: remixicon;
                            position: absolute;
                            left: 0;
                            transition: all 0.5s ease;
                        }
                        &.text-2 {
                            color: $bodyColor !important;
                        }
                        &:first-child {
                            margin-top: 0 !important;
                        }
                        &:last-child {
                            margin-bottom: 0 !important;
                        }
                    }
                }
            }
            .pricing-btn {
                padding: 0 45px;
                a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    width: 100%;
                    padding: 10px;
                    font-size: 17px;
                    font-weight: 500;
                    text-align: center;
                    background: transparent;
                    border-radius: 4px;
                    color: $bodyColor;
                    border: 2px solid rgba(31, 31, 31, 0.10);
                    > * {
                        flex-shrink: 0;
                    }
                    svg {
                        width: 18px;
                        height: 18px;
                        path {
                            fill: $bodyColor;
                            transition: $transition;
                        }
                    }
                    i {
                        font-size: 18px;
                        color: $bodyColor;
                        transition: $transition;
                    }
                    &:hover {
                        background: $primaryColor;
                        border-color: $primaryColor;
                        color: #fff;
                        svg {
                            path {
                                fill: #fff;
                            }
                        }
                        i {
                            color: #fff;
                        }
                    }
                }
            }
            &.item-active {
                background: #faf5f5;
                .pricing-btn {
                    a {
                        background: $primaryColor;
                        border-color: $primaryColor;
                        color: #fff;
                        &:hover {
                            background: lighten($primaryColor, 5%);
                            border-color: lighten($primaryColor, 5%);
                        }
                        svg {
                            path {
                                fill: #fff;
                            }
                        }
                        i {
                            color: #fff;
                        }
                    }
                }
				&::before{
					border-top-color: $primaryColor;

				}
            }
        }
    }
    &.style-2 {
        .pricing-item {
            background: #f7f7f7;
            padding: 60px;
            border-radius: 20px;
            .pricing-item-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 30px;
                .content-side {
                    position: relative;
                    width: 100%;
                    max-width: 30%;
                }
            }
            .title-wrapper {
                .title {
                    margin: 0 0 20px 0;
                    font-size: 24px;
                    line-height: 34px;
                }
                .intro-txt {
                    font-size: 16px;
                    line-height: 26px;
                }
            }
            .price-wrapper {
                display: flex;
                flex-wrap: wrap;
                align-items: flex-end;
                gap: 5px;
                .price {
                    color: $primaryColor;
                    font-weight: 700;
                    line-height: 1;
                    font-size: 40px;
                }
                .plan-duration {
                    font-size: 17px;
                    line-height: 27px;
                }
            }
            .description {
                font-size: 16px;
                line-height: 26px;
                margin: 20px 0 40px;
            }
            .pricing-feature {
                text-align: left;
                width: 100%;
                max-width: 58%;
                padding: 50px 60px 38px;
                background: #fff;
                border-radius: 20px;
                .feature-title {
                    text-align: center;
                    position: relative;
                    font-size: 20px;
                    line-height: 30px;
                }
                ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    li {
                        position: relative;
                        font-size: 17px;
                        line-height: 27px;
                        font-weight: 600;
                        width: calc(50% - 25px);
                        color: $titleColor;
                        padding-right: 36px;
                        margin: 13px 0;
                        transition: all 0.5s ease;
                        &:before {
                            content: "\eb81";
                            color: $primaryColor;
                            font-size: 20px;
                            margin: 0;
                            font-weight: 400;
                            display: inline-block;
                            font-family: remixicon;
                            position: absolute;
                            right: 0;
                            transition: all 0.5s ease;
                        }
                        &.close {
                            color: $bodyColor;
                            &:before {
                                color: inherit;
                                content: "\eb97";
                            }
                        }
                    }
                }
            }
            .pricing-btn {
                a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 10px 24px;
                    font-size: 17px;
                    font-weight: 500;
                    text-align: center;
                    background: $titleColor;
                    border-radius: 4px;
                    color: #fff;
                    > * {
                        flex-shrink: 0;
                    }
                    svg {
                        width: 18px;
                        height: 18px;
                        path {
                            fill: #fff;
                            transition: $transition;
                        }
                    }
                    i {
                        font-size: 18px;
                        color: #fff;
                        transition: $transition;
                    }
                    &:hover {
                        background: $primaryColor;
                        border-color: $primaryColor;
                        color: #fff;
                        svg {
                            path {
                                fill: #fff;
                            }
                        }
                        i {
                            color: #fff;
                        }
                    }
                }
            }
            &.item-active {
                .pricing-feature {
                    background: $primaryColor;
                    ul {
                        li {
                            color: #fff;
                            &:before {
                                color: inherit;
                            }
                            &.close {
                                color: rgba(255,255,255,0.8);
                                &:before {
                                    color: inherit;
                                }
                            }
                        }
                    }
                    
                }
                .pricing-btn {
                    a {
                        background: $primaryColor;
                        border-color: $primaryColor;
                        color: #fff;
                        &:hover {
                            background: lighten($primaryColor, 5%);
                            border-color: lighten($primaryColor, 5%);
                        }
                        svg {
                            path {
                                fill: #fff;
                            }
                        }
                        i {
                            color: #fff;
                        }
                    }
                }
            }
        }
		&.btn-col-yes {
			.pricing-item {
				.content-side {
					max-width: 28%;
				}
				.pricing-feature {
					max-width: 47%;
				}
				.pricing-btn {
					text-align: right;
					width: 100%;
					max-width: 20%;
				}
			}
		}
    }
    // Pricing Card Style Start
}


.rs-price-table-menu {
	ul {
		margin: 0;
		list-style: none;
	}
	li {
		list-style: none;
	}
	.rs-pricing-table-body {
		h3.rs-pricing-menu-features-title {
			margin-bottom: 0px;
		}
		.full-menu-item {
			.price-menu {
				display: flex;
				flex-wrap: wrap;
				.rs-pricing-menu-image {
					margin-right: 10px;
					flex-grow: 0;
					width: 80px;
				}
				.rs-pricing-table-feature-text {
					display: flex;
					justify-content: space-between;
					margin-bottom: 5px;
					width: 100%;
					span.rs-price-title-connector {
						border-bottom: 1px dashed #ccc;
						height: 1px;
						flex-grow: 1;
						align-self: center;
						margin: 0 20px;
					}
					span {
						align-self: center;
					}
				}
				.menu-price {
					display: inline-table;
					align-self: center;
				}
			}
		}
	}
}
div.swiper-container.rs-pricing-slider {
	position: relative;
	right: -150px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: -88px;
	margin-bottom: -88px;
	padding-left: 20px;
	ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.swiper-wrapper {
		align-items: center;
		.swiper-slide {
			.test-it {
				border-radius: 40px;
				margin: 0 auto;
				box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
				position: relative;
				z-index: -2;
				background: transparent;
				overflow: hidden;
				img {
					width: 100%;
					height: 100%;
				}
				.priceing-wrap {
					position: absolute;
					content: '';
					left: 50%;
					top: 50%;
					transform: translate(-50%, -50%);
					width: 100%;
					text-align: center;
					color: #ffffff;
					.top-part {
						i {
							width: 60px;
							height: 60px;
							border-radius: 100%;
							line-height: 60px;
							display: block;
							margin: 0 auto 25px;
							background: #2b59ff;
							font-size: 28px;
						}
						.title {
							margin-bottom: 7px;
							font-size: 22px;
							color: #ffffff;
						}
						.price {
							font-weight: 500;
							font-size: 20px;
							margin-bottom: 10px;
						}
					}
					ul.info {
						li {
							font-size: 13px;
						}
					}
					.btn-part {
						display: none;
						.readon {
							padding: 8px 33px;
						}
					}
				}
			}
		}
	}
	.swiper-slide {
		opacity: 0;
		.test-it {
			width: 100%;
			max-width: 85% !important;
			left: -85px;
			height: 395px;
		}
	}
	.swiper-slide-prev {
		.test-it {
			width: 140%;
			max-width: 140% !important;
			left: 0 !important;
			z-index: 2 !important;
			height: 690px !important;
			.top-part {
				i {
					display: block !important;
				}
				.title {
					font-size: 25px !important;
					margin-bottom: 32px !important;
				}
				.price {
					font-size: 35px !important;
					color: #2b59ff !important;
					margin-bottom: 30px !important;
					font-weight: 600 !important;
				}
			}
			ul.info {
				li {
					font-size: 16px !important;
				}
			}
			.btn-part {
				display: block !important;
			}
			&:before {
				position: absolute;
				content: '';
				border-radius: 100%;
				z-index: 0;
				width: 22px;
				height: 22px;
				right: 80px;
				top: 80px;
				background: #91a9ff;
				opacity: 0.26;
				animation: move-x2 5s alternate infinite;
				-webkit-animation: move-x2 5s alternate infinite;
			}
			&:after {
				position: absolute;
				content: '';
				border-radius: 100%;
				z-index: 0;
				width: 40px;
				height: 40px;
				left: 80px;
				bottom: 80px;
				background: #2b59ff;
				opacity: 0.26;
				animation: move-x 2s alternate infinite;
				-webkit-animation: move-x 2s alternate infinite;
			}
		}
		opacity: 1;
	}
	.swiper-slide-active {
		.test-it {
			width: 120%;
			max-width: 120% !important;
			left: 0 !important;
			z-index: 1 !important;
			height: 520px !important;
		}
		opacity: 1;
	}
	.swiper-slide-next {
		.test-it {
			width: 100%;
			max-width: 100% !important;
			left: -45px !important;
			z-index: -1 !important;
			height: 450px !important;
			.top-part {
				i {
					display: block !important;
				}
			}
		}
		opacity: 1;
	}
	.swiper-next {
		width: 40px;
		height: 40px;
		line-height: 40px;
		background: #ffffff;
		border-radius: 100%;
		position: absolute;
		bottom: 20px;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
		cursor: pointer;
		text-align: center;
		transition: all 0.4s ease 0s;
		z-index: 3;
		left: 52%;
		&:after {
			font-family: Flaticon;
			color: #2b59ff;
			transition: all 0.4s ease 0s;
			content: "\f111";
		}
		&:hover {
			background: #2b59ff;
			&:after {
				color: #ffffff;
			}
		}
	}
	.swiper-prev {
		width: 40px;
		height: 40px;
		line-height: 40px;
		background: #ffffff;
		border-radius: 100%;
		position: absolute;
		bottom: 20px;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
		cursor: pointer;
		text-align: center;
		transition: all 0.4s ease 0s;
		z-index: 3;
		left: 59%;
		&:after {
			font-family: Flaticon;
			color: #2b59ff;
			transition: all 0.4s ease 0s;
			content: "\f110";
		}
		&:hover {
			background: #2b59ff;
			&:after {
				color: #ffffff;
			}
		}
	}
	.pattern {
		position: absolute;
		left: 80px;
		top: 80px;
		pointer-events: none;
	}
}
.rs-price-table{
	.rs-pricing-table-features-list {
		margin-left: 0;
		list-style: none;
	}
	.btn-part {
		&.btn-gradient-color{
			.rs-pricing-table-btn{
				-webkit-background-clip:text;
				color: transparent;
			}
			.rs-pricing-table-btn:hover {
				-webkit-background-clip: text;
				color: transparent;
			}
		}
		&.btn-arrow-rotate{
			&:hover,
			.rs-pricing-table-btn{
				svg {
					transform: rotate(-45deg);
				}
			}
		}
	}

	&.style-1 {
		position: relative;
		// Assign Color Start
		.rs-pricing-table-price-text {
			color: $primaryColor;
		}
		.short-desc {
			border-color: $primaryColor;
		}
		.rs-pricing-table-features-list li svg path {
			fill: $primaryColor;
		}
		.rs-pricing-table-btn {
			background: $primaryColor;
			color: $whiteColor;
			&:hover {
				background: $whiteColor;
				color: $titleColor;
			}
		}
		&:after {
            position: absolute;
            content: '';
            right: 20px;
            left: 20px;
            top: 20px;
            bottom: 20px;
            background: transparent;
            border: 1px dashed $primaryColor;
            pointer-events: none;
        }
		// Assign Color End
		> * {
			position: relative;
			z-index: 1;
		}
		.rs-pricing-table-badge {
			position: absolute;
			top: 0;
			padding: 10px 10px;
			background-color: #010d14;
			color: #fff;
			line-height: 1;
			z-index: 1;
		}
		.rs-pricing-table-title {
			padding-top: 10px;
			margin-bottom: 20px;
			color: #121933;
			font-weight: 400;
			font-size: 24px;
			line-height: 30px;
		}
		.rs-pricing-table-price {
			margin-bottom: 30px;
			.rs-pricing-table-price-tag {
				margin-bottom: .5rem;
				color: $primaryColor;
				font-weight: 700;
				font-size: 60px;
				line-height: normal;
				position: relative;
				span.watermark{
					position: absolute;
					font-size: 60px;
					line-height: 60px;
					text-transform: capitalize;
					font-weight: 800;
					opacity: 0.06;
					top: 6%;
					transform: translateY(-50%);
					width: 100%;
					left: 0;
					color: inherit;
					white-space: nowrap;
					vertical-align: middle;
					-webkit-background-clip: text;
					-webkit-text-stroke: 3px transparent;
					background-size: cover;
					color: #fff;
				}
			}
			.rs-pricing-table-period {
				display: block;
			}
		}
		.rs-pricing-table-price.display-inline2 {
			.rs-pricing-table-price-tag {
				line-height: 0.66;
				display: flex;
				justify-content: center;
			}
			.rs-pricing-table-period {
				display: flex;
				align-items: flex-end;
			}
		}
		.rs-pricing-table-price.display-inline {
			.rs-pricing-table-period {
				position: relative;
				padding-left: 20px;
				display: inline-block;
				&:before {
					content: "";
					height: 20px;
					width: 2px;
					position: absolute;
					left: 0;
					transform: rotate(20deg) translateY(-50%);
					top: 50%;
					background: #f2f2f2;
				}
			}
		}
		.short-desc{
			position: relative;
			&::after{
				content: "";
				position: absolute;
				display: inline-block;
				width: 20px;
				height: 20px;
				right: -10px;
				bottom: -10px;
				background: #ece9e8;
				border-radius: 50%;
				-webkit-border-radius: 50%;
				-moz-border-radius: 50%;
				-ms-border-radius: 50%;
				-o-border-radius: 50%;
			}
			&::before{
				content: "";
				position: absolute;
				display: inline-block;
				width: 20px;
				height: 20px;
				left: -10px;
				bottom: -10px;
				background: #ece9e8;
				border-radius: 50%;
				-webkit-border-radius: 50%;
				-moz-border-radius: 50%;
				-ms-border-radius: 50%;
				-o-border-radius: 50%;
			}
		}

		.rs-pricing-table-body {
			margin-bottom: 24px;
			.rs-pricing-table-features-title {
				margin-top: 62px;
				margin-bottom: 20px;
				font-weight: 700;
				font-size: 16px;
			}
			.rs-pricing-table-features-list {
				margin: 0;
				padding: 0;
				list-style: none;
				li {
					margin-bottom: 8px;
					font-size: 16px;
					&:last-child {
						border: none !important;
					}
					i {
						margin-right: 10px;
						min-width: 15px;
						font-size: 16px;
					}
					svg {
						width: 18px;
						height: 18px;
						margin-right: 10px;
						display: inline-block;
					}
				}
			}
			.rs-pricing-table-features-list.right_position {
				li {
					overflow: hidden;
					i {
						float: right;
						margin-right: 0;
					}
				}
			}
		}
		.rs-pricing-table-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 10px 20px;
			border-radius: 2px;
			color: #fff;
			text-decoration: none;
			font-size: 16px;
			-webkit-transition: all .3s;
			transition: all .3s;
			position: relative;
			svg,
			i {
				transition: $transition;
				position: relative;
				margin-left: 5px;
				transform: translateX(0px);
			}
			&:hover {
				svg,
				i {
					transform: translateX(3px);
				}
			}
		}
		.rs-pricing-icon {
			position: relative;
			i {
				position: relative;
				transition: all 0.4s ease 0s;
				text-align: center;
			}
		}
		.btn-bottom-text{
			p{
				color: $primaryColor;
			}
		}

		.line-through {
			.rs-pricing-table-feature-text {
				text-decoration: line-through;
			}
		}
		.rs-pricing-table-price .rs-pricing-table-price-tag {
			&.price-gradient-color{
				.rs-pricing-table-price-text,
				.rs-pricing-table-currency {
					-webkit-background-clip: text;
					color: transparent;
				}
			}
		}
		.rs-pricing-table-body .rs-pricing-table-features-list{
			&.feature_icon_gradient_color{
				li i{
					-webkit-background-clip: text;
					color: transparent;
				}
			}
		}
		
	}
	&.style-2 {

		// Assign Color Start
		background-color: $primaryColor;
		.rs-pricing-table-header:after {
			background: $primaryColor;
		}
		.rs-pricing-table-title,
		.rs-pricing-table-price-text,
		.rs-pricing-table-currency,
		.rs-pricing-table-features-title,
		.rs-pricing-table-features-list li,
		.rs-pricing-table-features-title {
			color: $whiteColor;
		}
		.rs-pricing-table-btn {
			background: $primaryColor;
			color: $whiteColor;
			&:hover {
				color: $titleColor;
				background: $whiteColor;
			}
		}
		// Assign Color End

		padding: 30px;
		border-radius: 4px;
		text-align: center;
		.rs-pricing-table-header {
			position: relative;
			padding: 20px;
			margin-bottom: 40px;
			border-radius: 4px;
			overflow: hidden;
			> * {
				position: relative;
				z-index: 1;
			}
			&:after {
				position: absolute;
				content: '';
				left: 0;
				top: 0;
				right: 0;
				bottom: 0;
				opacity: 0.9;
			}
		}

		.rs-pricing-table-title {
			margin-bottom: 10px;
		}

		.rs-pricing-table-features-title {
			margin-bottom: 40px;
		}

		.rs-pricing-table-body {
			margin-bottom: 50px;
		}

		.rs-pricing-table-features-list  {
			margin-bottom: 0;
			> li {
				margin-bottom: 10px;
				&:first-child {
					margin-top: 0 !important;
				}
				&:last-child {
					margin-bottom: 0 !important;
				}
			}
		}

		.rs-pricing-table-btn {
			padding: 11px 30px;
			border-radius: 4px;
		}
	}
	&.color_primary_scheme {
		&.style-1 {
			background-color: $secondaryColor;
			.rs-pricing-table-price-text {
				color: $primaryColor;
			}
			.short-desc {
				border-color: $primaryColor;
			}
			.btn-bottom-text{
				p{
					color: $primaryColor;
				}
			}
			.rs-pricing-table-features-list li svg path {
				fill: $primaryColor;
			}
			.rs-pricing-table-btn {
				background-color: $primaryColor;
				color: $whiteColor;
				&:hover {
					background-color: $whiteColor;
					color: $titleColor;
				}
			}
			&:after {
				border-color: $primaryColor;
			}
		}
	}
	&.color_secondary_scheme {
		&.style-1 {
			background-color: $primaryColor;
			.rs-pricing-table-price-text {
				color: $primaryColor;
			}
			.short-desc {
				border-color: $primaryColor;
			}
			.btn-bottom-text{
				p{
					color: $secondaryColor;
				}
			}
			.rs-pricing-table-features-list li svg path {
				fill: $primaryColor;
			}
			.rs-pricing-table-btn {
				background-color: $primaryColor;
				color: $whiteColor;
				&:hover {
					background-color: $whiteColor;
					color: $titleColor;
				}
			}
			&:after {
				border-color: $primaryColor;
			}
		}
	}
	&.color_gradient_scheme {
		&.style-1 {
			.rs-pricing-table-price-text {
				color: $primaryColor;
			}
			.short-desc {
				border-color: $primaryColor;
			}
			.btn-bottom-text{
				p{
					color: $primaryColor;
				}
			}
			.rs-pricing-table-features-list li svg path {
				fill: $primaryColor;
			}
			.rs-pricing-table-btn {
				background-image: linear-gradient(90deg, $primaryColor 0%, $secondaryColor 100%);
				color: $whiteColor;
				&:hover {
					background-image: linear-gradient(90deg, $secondaryColor 0%, $primaryColor 100%);
					color: $whiteColor;
				}
			}
			&:after {
				border-color: $primaryColor;
			}
		}
	}
}

.rs-price-table.style-4  {
	position: relative;
	.rs-pricing-table-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.rs-pricing-table-features-list {
		display: flex;
		align-items: flex-end;
		gap: 30px;
		li {
			flex: 0 0 50%;
			// &:nth-child(even) {
			// 	position: relative;
			// 	list-style: disc;
			// }
			// &:nth-child(odd) {
			// 	padding-left: 0!important;
			// }
		}
	}

	.pricing-svg {
		position: absolute;
		bottom: 0;
		right: 20px;
		svg {
			transition: $transition;
		}
	}
}

.rs-pricing-table-btn:hover svg{
	transition: $transition;
}
.rs-pricing-table-btn:hover svg path{
	transition: $transition;
}