/* Start Essential Pricing Plan Switcher Common CSS */

.epps-plan-item-2 {
    display: none;
}

.epps-plan-features-wrapper .epps-plan-list,
.epps-features-wrapper .epps-features-list {
    padding: 0;
}

.epps-plan-list .epps-plan-item,
.epps-features-list .epps-features-item {
    list-style-type: none;
}

.epps-main-wrapper .epps-plan-btn {
    display: inline-block;
}

.epps-main-wrapper .epps-prices-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.epps-main-wrapper .epps-plan-btn {
    background-color: #6834AF;
    padding: 8px 25px;
    border: 2px solid #6834AF;
    color: #FFFFFF;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    margin: 10px;
}

.epps-main-wrapper .epps-plan-btn:hover {
    background-color: #FFFFFF;
    color: #6834AF;
}

.epps-main-wrapper h1,
.epps-main-wrapper h2,
.epps-main-wrapper h3,
.epps-main-wrapper h4,
.epps-main-wrapper h5,
.epps-main-wrapper h6 {
    margin: 0;
}

.epps-main-wrapper .epps-sale-price {
    font-size: 25px;
}

.epps-main-wrapper li.epps-features-item {
    border-bottom: 1px solid #ddd;
}

.epps-main-wrapper .epps-plan,
.epps-main-wrapper .epps-plan.epps-highlight-plan,
.epps-main-wrapper .epps-plan.epps-highlight-plan .epps-title-price-wrapper,
.epps-main-wrapper .epps-plan.epps-highlight-plan .epps-heading-wrapper,
.epps-main-wrapper .epps-plan.epps-highlight-plan .epps-plan-btn {
    transition: all 0.3s ease-out 0s;
}

.epps-main-wrapper .epps-plan-heading {
    color: #FFFFFF;
}

.epps-main-wrapper p {
    margin-bottom: 0;
}

.epps-main-wrapper i.epps-icon-include {
    color: rgb(18, 136, 18);
}

.epps-main-wrapper i.epps-icon-exclude {
    color: red;
}

.epps-main-wrapper .epps-price-line p {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}

.epps-main-wrapper .epps-features-list li:last-child {
    border: none !important;
}

.epps-main-wrapper .epps-prices-wrapper,
.epps-main-wrapper .epps-plan-heading {
    position: relative;
    z-index: 9;
}


/* Design-1: Reduce feature icon size */


/* Fix feature icon size for Design 1 & 2 */

.epps-design-1 .epps-features-item i,
.epps-design-1 .epps-features-item svg,
.epps-design-2 .epps-features-item i,
.epps-design-2 .epps-features-item svg,
.epps-design-3 .epps-features-item i,
.epps-design-3 .epps-features-item svg,
.epps-design-4 .epps-features-item i,
.epps-design-4 .epps-features-item svg,
.epps-design-5 .epps-features-item i,
.epps-design-5 .epps-features-item svg {
    width: 16px;
    font-size: 18px;
    line-height: 1;
}

.epps-design-1 .epps-title-price-wrapper,
.epps-design-2 .epps-heading-wrapper,
.epps-design-3 .epps-heading-wrapper,
.epps-design-4 .epps-title-price-wrapper,
.epps-design-5 .epps-heading-wrapper {
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.epps-design-1 .epps-title-price-wrapper:after,
.epps-design-2 .epps-heading-wrapper:after,
.epps-design-3 .epps-heading-wrapper:after,
.epps-design-4 .epps-title-price-wrapper:after,
.epps-design-5 .epps-heading-wrapper:after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.epps-main-wrapper .epps-sale-price,
.epps-main-wrapper .epps-normal-price {
    display: flex;
}


/* End Common CSS */


/* Start Essential Pricing Plan Switcher Design Switcher CSS */

.epps-main-wrapper .epps-plan-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
}

.epps-main-wrapper .epps-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0px 10px;
}

.epps-main-wrapper .epps-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.epps-main-wrapper .epps-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.epps-main-wrapper .epps-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.epps-slider {
    background-color: #6834AF;
}

input:checked+.epps-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.epps-main-wrapper .epps-slider.epps-round {
    border-radius: 34px;
}

.epps-main-wrapper .epps-slider.epps-round:before {
    border-radius: 50%;
}


/* End Essential Pricing Plan Switcher Design Switcher CSS */


/* Start Essential Pricing Plan Switcher Design 1 CSS */

.epps-design-1 .epps-plan-list {
    display: grid;
}

.epps-design-1 .epps-plan {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-out 0s;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.epps-design-1 .epps-title-price-wrapper {
    background-color: #6834AF;
    padding: 20px;
    color: #FFFFFF;
}

.epps-design-1 .epps-content {
    padding: 20px;
}

.epps-design-1 .epps-plan:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.epps-design-1 li.epps-features-item,
.epps-design-4 li.epps-features-item {
    border-bottom: 1px solid #ddd;
}


/* End Essential Pricing Plan Switcher Design 1 CSS */


/* Start Essential Pricing Plan Switcher Design 2 CSS */

.epps-design-2 .epps-plan {
    border-radius: 0 50px;
    border: 1px solid #6834AF;
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

.epps-design-2 .epps-heading-wrapper {
    clip-path: polygon(0 0, 103% 0, 100% 100%, 0% 100%);
    background-color: #6834AF;
    padding: 20px;
    width: 100%;
}

.epps-design-2 .epps-content {
    padding: 20px;
}

.epps-design-2 .epps-plan:hover {
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
}


/* End Essential Pricing Plan Switcher Design 2 CSS */


/* Start Essential Pricing Plan Switcher Design 3 CSS */

.epps-design-3 .epps-plan {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 0 20px;
    margin: 0 7px;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.09);
    border: 1px solid #FFFFFF;
    margin-top: 20px;
}

.epps-design-3 .epps-plan:hover {
    border: 1px solid #6834AF;
    margin-top: -10px;
}

.epps-design-3 .epps-content {
    padding: 20px;
}

.epps-design-3 .epps-plan-heading {
    z-index: 9;
    position: relative;
}

.epps-design-3 .epps-heading-wrapper {
    background-color: #6834AF;
}

.epps-design-3 .epps-heading-wrapper {
    text-align: center;
    position: relative;
    width: 80%;
}

.epps-design-3 .epps-heading-wrapper:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    background-color: #6834AF;
    z-index: -10;
    opacity: 0.9;
    border-radius: 20px;
}

.epps-design-3 .epps-heading-wrapper {
    position: relative;
    margin-top: 25px;
    margin-bottom: 5px;
    top: 0px;
    left: -7px;
    width: 80%;
    padding: 10px;
    border-radius: 0 15px 0 10px;
    text-align: center;
}

.epps-design-3 .epps-heading-wrapper:after {
    border-radius: 0 15px 0 10px;
}

.epps-design-3 .epps-heading-wrapper:before {
    top: -9px;
    left: 0;
}

.epps-design-3 .epps-label {
    width: 30%;
    position: relative;
    overflow: hidden;
}

.epps-design-3 .epps-title-label-wrapper {
    display: flex;
}

.epps-design-3 .elementor-grid-4 .epps-label {
    width: 40%;
}

.epps-design-3 .epps-label {
    border-radius: 0 20px;
}

.epps-design-3 .epps-plan-label.epps-label-1,
.epps-design-3 .epps-plan-label.epps-label-2,
.epps-design-3 .epps-plan-label.epps-label-3,
.epps-design-3 .epps-plan-label.epps-label-4,
.epps-design-3 .epps-plan-label.epps-label-5 {
    background-color: #6834AF;
    color: #FFFFFF;
}


/* End Essential Pricing Plan Switcher Design 3 CSS */


/* start Essential Pricing Plan Switcher Design 4 CSS */

.epps-design-4 .epps-plan-features-wrapper {
    margin: 30px 0;
}

.epps-design-4 .epps-plan {
    border: 1px solid #6834AF;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin: 15px 0;
}

.epps-design-4 .epps-content {
    padding: 20px;
    margin-top: -30px;
}

.epps-design-4 .epps-plan:hover {
    margin: -10px 0;
}

.epps-design-4 .epps-plan-heading {
    position: relative;
}

.epps-design-4 .epps-title-price-wrapper {
    mask-image: url(../images/group.svg);
    -webkit-mask-image: url(../images/group.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    width: 100%;
    color: #FFFFFF;
    height: 160px;
    position: relative;
    margin-top: -2px;
    background-color: #6834AF;
}

.epps-design-4 .epps-title-price-wrapper {
    padding: 20px;
}

.epps-design-4 .epps-plan-btn {
    border-radius: 25px 25px 25px 25px;
}


/* End Essential Pricing Plan Switcher Design 4 CSS */


/* start Essential Pricing Plan Switcher Design 5 CSS */

.epps-design-5 .epps-plan {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 30px #eee;
    border-radius: 10px;
}

.epps-design-5 .epps-plan:hover {
    box-shadow: 0px 0px 30px #ccc;
    margin-top: -15px;
}

.epps-design-5 .epps-heading-wrapper {
    mask-image: url(../images/);
    -webkit-mask-image: url(../images/curve-mask.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    width: 100%;
    color: #FFFFFF;
    height: 100px;
    position: relative;
    margin-top: -2px;
    background-color: #6834AF;
}

.epps-design-5 .epps-heading-wrapper {
    padding: 20px 0;
    text-align: left;
    line-height: 30px;
    font-size: 20px;
    font-weight: 400;
}

.epps-design-5 .epps-prices-wrapper {
    z-index: 1;
    position: relative;
}

.epps-design-5 .epps-content {
    padding-bottom: 20px;
    padding-top: 10px;
}

.epps-design-5 .epps-plan-btn {
    border-radius: 5px;
}


/* End Essential Pricing Plan Switcher Design 5 CSS */


/* Start Highlight Plan CSS */


/* Essential Pricing Plan Switcher Design 1 */

.epps-design-1 .epps-plan.epps-highlight-plan {
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}


/* Essential Pricing Plan Switcher Design 2 */

.epps-design-2 .epps-plan.epps-highlight-plan {
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2);
}


/* Essential Pricing Plan Switcher Design 3 */

.epps-design-3 .epps-plan.epps-highlight-plan {
    border: 1px solid #6834AF;
    margin-top: -10px;
}


/* Essential Pricing Plan Switcher Design 4 */

.epps-design-4 .epps-plan.epps-highlight-plan {
    margin: -10px 0;
}


/* Essential Pricing Plan Switcher Design 5 */

.epps-design-5 .epps-plan.epps-highlight-plan {
    margin-top: -15px;
}


/* Label 1 CSS*/

.epps-title-label-wrapper {
    position: relative;
}

.epps-plan-label.epps-label-1 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 2px 10px 2px 10px;
    color: #000;
    text-align: center;
    position: absolute;
    background-color: #FFFFFF;
}

.epps-design-2 .epps-plan-label.epps-label-1 {
    padding: 2px 25px 2px 10px;
}

.epps-design-3 .epps-plan-label.epps-label-1,
.epps-plan-label.epps-label-1.epps-label-right {
    right: 0;
    top: 0;
}

.epps-plan-label.epps-label-1.epps-label-left {
    left: 0;
    top: 0;
}


/* Label 2 CSS*/

.epps-plan-label.epps-label-2.epps-label-right {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 2px 10px 2px 20px;
    color: #000;
    text-align: center;
    position: absolute;
    right: -1px;
    top: 0;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    background-color: #FFFFFF;
}

.epps-plan-label.epps-label-2.epps-label-left {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 2px 20px 2px 10px;
    color: #000;
    text-align: center;
    position: absolute;
    left: -1px;
    top: 0;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
    background-color: #FFFFFF;
}

.epps-design-3 .epps-plan-label.epps-label-2 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 2px 10px 2px 20px;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    right: -1px;
    top: 0;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    background-color: #6834AF;
}


/* Label 3 CSS*/

.epps-plan-label.epps-label-3 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    width: 281px;
    text-align: center;
    display: block;
    position: absolute;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    padding: 3px 0;
    right: -112px;
    top: 19px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #FFFFFF;
    color: #000;
}

.epps-plan-label.epps-label-3.epps-label-right {
    right: -112px;
    top: 19px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.epps-plan-label.epps-label-3.epps-label-left {
    left: -112px;
    top: 19px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* Label 4 CSS*/

.epps-plan-label.epps-label-4 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 2px 10px 2px 15px;
    color: #000;
    text-align: center;
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 99%, 15% 50%);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    background-color: #FFFFFF;
}

.epps-design-3 .epps-plan-label.epps-label-4,
.epps-plan-label.epps-label-4.epps-label-right {
    padding: 2px 10px 2px 15px;
    top: 0;
    right: -1px;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 99%, 15% 50%);
}

.epps-plan-label.epps-label-4.epps-label-left {
    padding: 2px 15px 2px 10px;
    top: 0;
    left: -1px;
    clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}


/* Label 5 CSS*/

.epps-plan-label.epps-label-5 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 2px 10px 2px 10px;
    color: #000;
    top: 0;
    right: 0;
    text-align: center;
    position: absolute;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    background-color: #FFFFFF;
    border-radius: 20px 0 0 20px;
}

.epps-plan-label.epps-label-5.epps-label-left {
    top: 0;
    left: 0;
    right: unset;
    border-radius: 0 20px 20px 0;
}

.epps-plan-label.epps-label-5.epps-label-right {
    top: 0;
    right: 0;
    border-radius: 20px 0 0 20px;
}

.epps-design-2 .epps-plan-label.epps-label-5 {
    padding: 2px 20px 2px 10px;
}

.epps-design-2 .epps-plan-label.epps-label-2,
.epps-design-2 .epps-plan-label.epps-label-4 {
    padding: 2px 20px 2px 15px;
}