@font-face {
    font-family: IBM;
    src: url(../../css/fonts/IBMPlexSans-Light.ttf);
    font-weight: 300;
    font-display: swap;
  }
  @font-face {
    font-family: IBM;
    src: url(../../css/fonts/IBMPlexSans-Regular.ttf);
    font-weight: 400;
    font-display: swap;
  }
  @font-face {
    font-family: IBM;
    src: url(../../css/fonts/IBMPlexSans-Medium.ttf);
    font-weight: 500;
    font-display: swap;
  }
  @font-face {
    font-family: IBM;
    src: url(../../css/fonts/IBMPlexSans-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
  }
  @font-face {
    font-family: IBM;
    src: url(../../css/fonts/IBMPlexSans-Bold.ttf);
    font-weight: 700;
    font-display: swap;
  }
.pricePopup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}
.pricePopup.show{
    display: block;
}
.pricePopup .overlay{
         position: unset;
    left: 0;
    z-index: unset;
    top: 0;
    width: unset;
    height: unset;
    background: unset;
    backdrop-filter: unset;
}
.pricingModal{
    padding: 40px 15px 24px;
    background: #fff;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 30px);
    max-width: 1250px;
}
.popupHeading{
    font-size: 27px;
    font-weight: 500;
    line-height: 39px;
    text-align: center;
    margin-bottom: 30px;
}
.singlePlanCard{
    padding: 1px;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    max-width: 283px;
    width: 100%;
    transition: all ease .2s;
    position: relative;
}
.singlePlanCard.free{
    display: none;
}
.singlePlanCard.hide{
    display: none;
}
.singlePlanCard:hover{
    transform:  scale(1.02);
    /* transform: translateX(-20px); */
    z-index: 20;
}
.singlePlanCard:nth-child(n + 2){
    margin-left: -10px;
}
.priceContentWrapper{
    border-radius: 12px;
    padding: 17px;
    background: #fff;
    min-height: 485px;

}
.pricePlanType{
    font-size: 15px;
    font-weight: 500;
    line-height: 19.5px;
    color: #6B9895;
}
.pricePlanName,
.pricePlanName *{
    font-size: 26px;
    font-weight: 500;
    line-height: 36.4px;
    color: #00433F;
    margin: 1px 0 20px;
}
.priceString{
    font-size: 48px;
    font-weight: 700;
    line-height: 34px;
    color: #00433F;
}
.priceString span{
    font-size: 25px;
    font-weight: 400;
    line-height: 0;
    margin-right: 3px;
    transform: translateY(-3px);
    display: inline-block;
}
.offerEndsWhenWrapper{
    position: relative;
    margin: 25px 0 35px;
}
.offerEndsWhenWrapper::before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background:  linear-gradient(269.98deg, #24C7BD 1.84%, #046761 100.34%);
    z-index: 0;
}
.offerEndsWhenWrapper p{
    padding: 5px 32px;
    background: #039A91;
    font-size: 15px;
    line-height: 19.5px;
    border-radius: 100px;
    max-width: max-content;
    color: #fff;
    margin: auto;
    position: relative;
    z-index: 1;
}
.offerEndsWhenWrapper p strong{
    font-weight: 600;
}
.planIncludes p{
    font-size: 13px;
    line-height: 16.9px;
    padding-left: 26px;
    color: #08080F;
    position: relative;
    margin-top: 15px;
}
.planIncludes p:first-child{
    margin-top: 0;
}
.planIncludes p::before{
    position: absolute;
    content: '';
    background: url(../images/check-mark.svg);
    width: 19px;
    height: 19px;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
}
.planIncludes p.star::before{
    background: url(../images/star-list.svg);
}
.planIncludes p.notIncluded::before{
    background: url(../images/remove-mark.svg);
    background-repeat: no-repeat;
}
.subscribeNowBtn {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 11px 26px;
    max-width: max-content;
    border-radius: 5px;
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
    border: none;
    cursor: pointer;
    margin: 40px auto 15px;
    width: 100%;
}
.subscribeNowBtn:hover{
    background: linear-gradient(180deg, #47b5ae 0, #133836 100%)
}
.subscribeNowBtn span{
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 3px;
}
.subscribeNowBtn.loading {
    padding: 0;
    min-width: 168px
}
.subscribeNowBtn img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    object-fit: contain
}
.priceIncreaseText p span {
    color: #f68919;
    font-size: 13px;
    font-weight: 500
}
.allPlansCardWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.buttonText::after {
    width: 16px;
    height: 16px;
    display: inline-block;
    top: 1px
}
.btn-icon::after {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-left: 5px
}
.priceIncreaseText {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 12px;
}
.priceIncreaseText p::before {
    content: "";
    background: url(../../images/timer.svg) 0 0/contain no-repeat;
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-right: 5px
}
.priceString .perMonth{
    font-size: 15px;
    font-weight: 500;
    line-height: 18.15px;
    color: #9da0a5;
}
.oldPriceString{
    font-size: 17px;
    line-height: 12.1px;
    color: #00433F;
    text-decoration: line-through;
    text-decoration-color: #FE1C1C;
    text-decoration-thickness: 2px;
    margin-bottom: 10px;
}
.includesText{
    font-size: 15px;
    font-weight: 600;
    line-height: 19.5px;
    color: #00433F;
    margin: 20px 0;
}
.singlePlanCard.paid .offerEndsWhenWrapper{
    margin-top: 20px;
}
.singlePlanCard.yearly .priceContentWrapper{
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
}
.singlePlanCard.yearly .priceContentWrapper *{
    color: #fff !important;
}
.singlePlanCard.yearly .planIncludes p::before,
.singlePlanCard.yearly .priceIncreaseText p::before{
    filter: brightness(0) invert(1);
}
.singlePlanCard.yearly .oldPriceString{
    color: #00433F !important;
}
.singlePlanCard.yearly .offerEndsWhenWrapper p{
    background: #056D67;
    margin: 19px auto 35px;
}
.singlePlanCard.yearly .offerEndsWhenWrapper::before{
    background: #056D67;
}
.singlePlanCard.yearly .subscribeNowBtn{
    margin: 40px auto 10px;
}
.singlePlanCard.yearly{
    max-width: 290px;
}
.singlePlanCard.badge{
    position: relative;
}
.singlePlanCard .badge{
    position: absolute;
    content: '';
    top: 14px;
    right: 10px;
    padding: 6px 5px;
    background: #F38A0C;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 3px;
    min-width: 80px;
    justify-content: center;
}
.singlePlanCard .badge span{
    font-size: 12px;
    font-weight: 600;
    line-height: 15.6px;
    color: #fff;
    font-family: Inter;
}
.singlePlanCard.paid .badge{
    background: #EBFFFF;
    border: 1px solid #BFEEEE;
}
.singlePlanCard.paid .badge span{
    color: #046761;
}
.singlePlanCard.yearly .badge{
    background: #0D716B33;
    border: 1px solid #FFFFFF
}
.singlePlanCard.yearly .badge span{
    color: #FFFFFF;
}

.modalCloseBtn{
position: absolute;
    right: 20px;
    opacity: 1;
    top: 15px;
    display: flex;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
}
.modalCloseBtn:hover {
    opacity: .5;
}
.modalCloseBtn svg{
    width: 20px;
    height: 20px;
}
.mobTabs{
    display: none;
}
.priceLoginBtn{
    position: absolute;
    top: 42px;
    right: 80px;
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
    color: #039A91;
    text-decoration: underline;
    display: block;
}
.priceLoginBtn:hover{
    opacity: .7;
    text-decoration: none;
}
.pricingModal{
    overflow: auto;
    max-height: 97vh;
}
.offerEndsWhenWrapper p span{
    animation: blinkWord 1s infinite linear;
}
@keyframes blinkWord {
    0% { opacity: 1;}
    50% { opacity: 0;}
    100% { opacity: 1;}
}

.popupHeading.onlyOne{
    display: none;
}
.pricingModal.onlyOne .popupHeading.onlyOne{
    display: block;
    margin-bottom: 50px;
}
.pricingModal.onlyOne .popupHeading.all{
    display: none;
}
.pricingModal.onlyOne .singlePlanCard.paid,
.pricingModal.onlyOne .pricingSec{
    display: none;
}
.pricingModal.onlyOne .singlePlanCard.free{
    display: block;
    max-width: 90%;
}
.pricingModal.onlyOne{
    max-width: 560px;
}
.pricingModal.onlyOne .priceLoginBtn{
    display: none;
}
.pricePlanName span{
    display: none;
}
.pricingModal.onlyOne .pricePlanName span{
    display: inline;
}
.pricingModal.onlyOne .pricePlanName{
    text-align: center;
    margin-bottom: 30px;
}
.pricingModal.onlyOne .priceString{
    text-align: center;
}
.pricingModal.onlyOne .pricePlanType{
    display: none;
}
.pricingModal.onlyOne .singlePlanCard .badge{
    display: none;
}
.pricingModal.onlyOne{
    display: flex;
    flex-direction: column;
    max-width: 626px;
    background: #F8FFFE;
    border: 1.3px solid #05ada3;
    max-height: 580px;
    height: 100%;
    padding: 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricingModal.onlyOne .priceContentWrapper{
    background: transparent;
    padding: 0;
    min-height: unset;
}
.pricingModal.onlyOne .singlePlanCard{
    background: transparent;
}
.pricingModal.onlyOne .singlePlanCard:hover{
    transform: scale(1);
}
.freeBg{
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.pricingModal.onlyOne .offerEndsWhenWrapper{
    display: none;
}
.sffaText{
    display: none;
    font-size: 19px;
    font-weight: 500;
    line-height: 24.7px;
    margin: 30px auto 17px;
    max-width: 210px;
}
.pricingModal.onlyOne .sffaText{
    display: block;
}
.pricingModal.onlyOne .planIncludes{
    max-width: 320px;
    margin: auto;
}
.pricingModal.onlyOne .priceIncreaseText{
    display: none;
}
.pricingModal.onlyOne .modalCloseBtn{
    width: auto;
    height: auto;
    right: 0px;
    top: 0px;
    padding: 8px;
}
.pricingModal.onlyOne .modalCloseBtn img{
    width: 14px;
    height: 14px;
}
.pricingModal.onlyOne .modalCloseBtn svg{
    width: 24px;
    height: 24px;
}
.alreadyAUserTextPop{
    font-size: 13px;
    line-height: 16.9px;
    text-align: left;
    color: #08080F;
    max-width: max-content;
    margin: auto;
    display: none;
}
.alreadyAUserTextPop a{
    text-decoration: underline;
    font-size: 13px;
    line-height: 16.9px;
    text-align: left;
    color: #08080F;
}
.alreadyAUserTextPop a:hover{
    color: #05ada3;
}
.pricingModal.onlyOne .alreadyAUserTextPop{
    display: block;
}
.pricingModal.onlyOne .subscribeNowBtn{
            margin: 30px auto 10px;
}
.pricingModal.onlyOne .planIncludes p{
        font-size: 14px;
}
.offImage{
    position: absolute;
    top: 14px ;
    right: 20px;
}
p.pricePlanDesc {
    color: #3F3F3F;
    font-size: 14px;
    line-height: 155.187%;
    text-align: center;
    margin-bottom: 25px;
}
.trustWrapperPlan{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    flex-direction: column;
    margin-top: 40px;
}
.trustTextPlan p{
    font-size: 13px;
    line-height: 109.00000000000001%;
    display: flex;
    align-items: center;
}
.trustTextPlan p svg{
    margin-right: 7px;
}
.trustImages img:nth-child(2){
  margin: 0 -10px;
}
@media (max-width: 1199px) {
    .singlePlanCard{
        min-width: 283px;
    }   
    .allPlansCardWrapper{
        justify-content: center;
        overflow: auto;
        padding: 30px 0;
    }
}
@media (max-width:991px) {
    .pricePopup .pp2-modal {
    
    max-height: auto;
   
    height: auto;
}
    .pricingModal{
        width: 100%;
        height: 100%;
        max-height: unset;
        border-radius: 0;
        padding: 56px 20px;
    }
    .allPlansCardWrapper{
        justify-content: center;
        overflow: visible;
        padding: 0;
    }
    /* .singlePlanCard,
    .singlePricingCard{
        display: none;
    } */
    .singlePricingCard.show{
        display: block;
    }
    .pricingPageSec .singlePricingCard{
        display: block;
    }
    .singlePlanCard, .singlePlanCard.yearly{
        max-width: 340px;
    }
    .popupHeading{
        font-size: 20px;
        font-weight: 500;
        line-height: 26px;
        text-align: center;
    }
    .modalCloseBtn img{
        width: 16px;
        height: 16px;
    }
    .modalCloseBtn{
        top: 17px;
        right: 15px;
    }
    .mobTabs {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    .mobTabs a {
        font-family: Inter;
        padding: 8px 15px;
        color: #afafaf;
        font-size: 14px;
        font-weight: 500;
        border-radius: 100px;
        border: 1px solid #afafaf;
        background: #fff;
    }
    .priceLoginBtn{
        right: 57px;
        top: 13px;
        font-size: 18px;
    }
    .mobTabs a.active {
        border: 1px solid #05ada3;
        background: #e8fbfa;
        color: #05ada3
    }
    .pricingModal.onlyOne .mobTabs{
        display: none;
    }
    .pricingModal.onlyOne #free-plan{
        display: block;
    }
    .pricingModal.onlyOne .popupHeading.onlyOne{
        margin-bottom: 0;
    }
    .pricingModal.onlyOne{
        max-width: 350px;
        padding: 26px 0 24px;
        border-radius: 20px;
    }
    .pricingCardsOuter{
        margin: 30px auto 0;
    }
    .pricingTop{
        display: none;
    }
    .singlePricingCard{
        max-width: 300px;
    }
    .pricingCardsWrapper{
        gap: 25px;
    }
    .pricingPageSec .pricingTop{
        display: block;
        margin-bottom: 30px;
    }
    .pricingPageSec.pb{
        padding: 30px 0;
    }
}