 
.planOverlay,
.planSec {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
body.noOverflow {
  overflow: hidden !important;
}
.planSec {
  z-index: 1111;
  display: none;
}
.planOverlay {
  background: rgba(0, 0, 0, 0.7);
}
.planSecWrap{
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0,
    #fefefe 100%
  );
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
  width: calc(100% - 50px);
  max-width: max-content;
  /* overflow: hidden; */
  transform: translate(-50%, -50%);
  /* overflow-y: scroll;
  height: 902px; */
  overflow: auto;
  transform: translate(-50%, -50%);
  max-height: calc(100% - 30px);
}
.planModal {
  height: 860px;
  overflow: hidden;
  overflow-y: auto;
}
.modalHead {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
  text-align: center;
  color: #213d56;
  padding: 16px 0;
  border-bottom: 1px solid #d6e7f3;
}
.planName,
.priceAfter,
.subscribeBtn,
.trialText {
  font-weight: 500;
}
 
.plansWrapper {
  display: flex;
  column-gap: 18px;
  align-items: start;
  margin-top: 0;
  padding: 26px 70px 36px;
  justify-content: space-between;
}
.plansWrapper::-webkit-scrollbar {
  height: 2px;
  width: 0;
}
span.closeModalBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: 0.2s;
}
span.closeModalBtn:hover {
  opacity: 1;
}
.closeModalBtn img:hover {
  filter: brightness(0) saturate(100%);
}
.absoluteLoginBtn {
  display: flex;
  align-items: center;
  padding: 5px 0 7px;
  border: 2px solid transparent;
  border-radius: 100px;
  background: linear-gradient(to right, #fff, #fff),
    linear-gradient(81.22deg, #1862ff -14.08%, #7731ff 29.91%, #d012ff 77.88%),
    #fff;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  max-width: max-content;
  min-width: 100px;
  justify-content: center;
  transition: 0.1s;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  right: 60px;
  top: 12px;
  cursor: pointer;
}
.absoluteLoginBtn:hover {
  background: linear-gradient(
      81.22deg,
      #1862ff -14.08%,
      #7731ff 29.91%,
      #d012ff 77.88%
    ),
    #fff;
  border-radius: 100px !important;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
}
.absoluteLoginBtn .btnText {
  font-size: 15px;
  line-height: 20px;
  color: #121826;
  z-index: 2;
  position: relative;
}
.absoluteLoginBtn:hover .btnText,
.annualHead .dicountBadge del,
.annualHead .offerType,
.annualHead .planType,
.annualHead .price,
.oneTimeHead .dicountBadge del,
.oneTimeHead .offerType,
.oneTimeHead .planType,
.oneTimeHead .price {
  color: #fff;
}
.planModal::-webkit-scrollbar {
  width: 0px;
}
.btnLoadingGif {
    width: 50px;
}
@media (max-height: 900px) {
  .planModal {
    /* max-height: 90vh;
    overflow-y: auto; */
  }
}
@media (max-width: 767px) {
  
  .planModal {
    height: 85vh;
  }
  .modalHead {
    padding-bottom: 15px;
   
    font-size: 20px;
    text-align: left;
    padding-left: 15px;
  }
  .plansWrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-height: unset;
    position: relative;
    display: flex;
    padding: 30px 15px;
    justify-content: center;

  }
   
}
.pricingSec h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  margin: 60px 0 83px;
}

.pricingSec {
  padding-top: 30px;
}
.pricingSec h1 span {
  background: var(--primary-color);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Container styles */
.toggle-switch {
  display: inline-block;
  position: relative;
  width: 178px;
  height: 34px;
  border: 1px solid #EBD6F3;
  border-radius: 4px;
  background-color: #FDF7FF;
}

/* Hidden checkbox input */
.toggle-input {
  display: none;
}

/* Label acting as the switch */
.toggle-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      width: 100%;
      height: 34px;
      cursor: pointer;
      font-family: Arial, sans-serif;
      font-size: 13px;
      color: #7E3AF2;
      transition: background-color 0.3s, transform 0.3s;
      top: -1px;
}

/* Options inside the toggle */
.option {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  z-index: 2;
}

/* Active style for the selected side */
.toggle-label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0px;
  width: calc(51% - 5px);
  height: calc(100% - 6px);
  background-color: #7E3AF2;
  border-radius: 4px;
  transform: scaleY(1.2);
  transition: left 0.3s, background-color 0.3s;
  z-index: 1;
}
/* 
    .toggle-label:hover::before {
      background-color: #065944; 
    } */

/* Checked state moves the toggle */
.toggle-input:checked + .toggle-label::before {
  left: calc(50% + 3px);
}

/* Text color for the active state */
.toggle-input:not(:checked) + .toggle-label .monthly {
  color: white;
}

.toggle-input:checked + .toggle-label .annually {
  color: white;
}
.toggleSec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toggleSec p {
  font-weight: 400;
  font-size: 15px;
  line-height: 28.5px;
  color: var(--text-color);
}
.pricingcardContainer {
  min-width: 973px;
  width: 100%;
  margin: 25px auto 0px;
  flex: 1 1 973px;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}
.plansOffer {
  text-align: center;
}
.swiper-pagination {
  display: none;
  position: relative;
}

.pricingCard {
    border: 1px solid #EBD6F3;
    box-shadow: 0px 4px 28.6px 0px #19423826;
    max-width: 335px;
    width: 332px;
    border-radius: 6px;
    position: relative;
    margin-right: 35px;
    min-height: 705.41px;
}
.pricingCard:hover{
  border: 1px solid #dbb6e9;
}
.pricingcardContainer .pricingCard:last-child{
  margin-right: 0;
}
.price-wrap{
 padding: 17px 21px 5px;
  background-color: #FBEDFF;
  border-radius: 6px 6px 0px 0;
}
.pricingcardContainer .pricingCard:last-child .price-wrap{
  background: linear-gradient(246.87deg, #D306F4 -2.66%, #5700E6 98.71%);

}
.pricingcardContainer .pricingCard:last-child .price-wrap .planTilteHeading,
.pricingcardContainer .pricingCard:last-child .price-wrap .pricings .totalPrice,
.pricingcardContainer .pricingCard:last-child .price-wrap .pricings   .currency,
.pricingcardContainer .pricingCard:last-child .price-wrap .pricings .annualPlanPriceInfo,
.pricingcardContainer .pricingCard:last-child .price-wrap .pricingSpan,
.proPlancard .annualPlanPriceInfo.green{
  color: white;

}
.pricingcardContainer .pricingCard:last-child .price-wrap .btnContainer .startedBtn{
  color: #08080F;
}
.pricingcardContainer .pricingCard:last-child .price-wrap .btnContainer:hover .startedBtn{
  color: #7E3AF2;
}
.pricingcardContainer .pricingCard:last-child .price-wrap .btnContainer img{
  filter: brightness(0) saturate(100%) invert(3%) sepia(5%) saturate(5277%) hue-rotate(201deg) brightness(94%) contrast(99%);
}
.pricingcardContainer .pricingCard:last-child .price-wrap .btnContainer:hover img{
  filter: brightness(0) saturate(100%) invert(21%) sepia(59%) saturate(3734%) hue-rotate(256deg) brightness(100%) contrast(105%);
}

.pricingcardContainer .pricingCard:last-child .price-wrap .cancelNow{
  color: white;
}
.pricingcardContainer .pricingCard:last-child .price-wrap .pricingSpanCut{
  border-color: white;
}
.pricingcardMiddle {
  padding: 15px 22px 42px 22px;
  box-shadow: 0px 4px 28.6px 0px #3763d226;
  max-width: 302px;
  background: linear-gradient(
    to bottom,
    #018751 1%,
    #063e41 39.3% 247px,
    transparent 247px
  );

  width: 100%;

  height: 485px;
  border-radius: 6px;
  margin-left: 36px;
  border: 1px solid #4db094;
}

.pricingcardMiddle .pricings {
  font-weight: 700;
  font-size: 40px;
  line-height: 26px;
  color: #ffffff;
  
  padding: 17px 0px 26px 0px;
}
.pricingcardMiddle .planTilteHeading {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
}
.pricingcardMiddle .pricings .pricingSpan {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #ffffff;
}
.pricingSpanCut {
  display: inline-block;
  width: 66px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid #121212;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 1px 8px 0;
  color: #121212;
  margin: 0 0  0 8px;
  text-decoration: line-through;
  position: relative;
  top: -7px;
}
.pricingcardContainer .pricingCard:last-child .pricingSpanCut{
  color:#fff;
}
.subscribe--Btn,
.btnContainer{
max-width: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
background: linear-gradient(246.87deg, #D306F4 -2.66%, #5700E6 98.71%);
border-radius: 6px;
  border: none;
  height: 39px;
  cursor: pointer;
  margin-top: 20px;
        position: absolute;
        width: calc(100% - 42px);
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);

}
.btnContainer:hover{
background: linear-gradient(265.66deg, #516eff -8.28%, #b44dff 95.98%);
}

  .priceCardHeadline{

font-weight: 400;
font-size: 14px;
line-height: 26px;
letter-spacing: 0%;
text-align: center;
padding: 20px 0px;
margin-right: 20px;
margin-left: 20px;
border-bottom: 1px solid #EBD6F3;
  }
  .yearTxt,
  .monthTxt{
    color:#885999;
font-weight: 400;
font-size: 15px;
line-height: 26px;
letter-spacing: 0%;


  }
  .powerUser{
       min-width: 192px;
    height: 30px;
    color: #7744CF;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D306F4;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
  }
  .yearTxt.txtWhite,
  .monthTxt.txtWhite{
    color:#fff;
  }
  .priceCardbottomHeadline{
    display: flex;
    column-gap: 15px;
    margin: 20px 0 40px;
border-top: 1px solid #EBD6F3;
padding-top: 11px;
    white-space: break-spaces;
  }
    .btnContainer.starterPlanBtn{
        margin-top: 150px;
  }

  .priceCardbottomHeadline span{
font-weight: 400;
font-size: 14px;
line-height: 160%;
letter-spacing: 0%;


  }
  .powerUser,
.yearTxt,
.annualbottomHeadline,
.annualHeadline,
.advanceBtn,
.bulkBtn{
  display: none;
}
.annualPlanPriceInfo{
display: none;
font-weight: 400;
font-size: 17px;
line-height: 26px;
text-decoration: line-through;
}
.annualPlanPriceInfo.green{
  text-align: center;
  color: #00B646;
  /* display: block !important; */
  text-decoration: none;
}
.startedBtn {
  outline: none;
  color:#fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

.planTilteHeading {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: #121212;
}
.pricings{
  padding: 17px 0px;
  text-align: center;
}
.pricings .currency,
.pricings .totalPrice{
  font-weight: 700;
  font-size: 40px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: justify;
  color: #08080F;
}
.pricingSpan {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #885999;
}
.cancelNow {
  padding-top: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #885999;
}
.cancelNowMiddle {
  padding-top: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  color: #ffffff;
}

.planSec strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--secondary-color);
}
.start {
  text-align: start;
  padding: 22px 21px 16px;
}
.offerlistContainer {
   padding: 0 22px 20px;
  /* max-width: 226px;
  margin: auto;
  text-align: start; */
}
.offerList{
  list-style: none;
}
.offerlistContainer ul li {
 
  margin-bottom: 9px;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #121212;
    position: relative;
    padding-left: 24px;
     
}
.offerlistContainer ul li.check::before{
  content: '';
  position: absolute;
  background-image: url(../../pricing-page/images/tick.svg);
  width: 16px;
  height: 16px;
  left: 0;
   top: 5px;
}
.offerlistContainer ul li.cross::before{
  content: '';
  position: absolute;
  background-image: url(../../pricing-page/images/cross.svg);
  width: 16px;
  height: 16px;
  left: 0;
   top: 5px;
}
.offerlistContainer ul li.star::before{
  content: '';
  position: absolute;
  background-image: url(../../pricing-page/images/check-star.svg);
  width: 19px;
  height: 18px;
  left: 0;
   top: 5px;
}
.offerlistContainer ul li:last-child{
  margin-bottom: 0;
}

li::marker {
  color: var(--bg-cta);
}
.swiper-container {
  overflow: hidden;
}


.proplanContainer {
  width: max-content;
  margin-left: auto;
  margin-top: -35px;
  margin-bottom: 10px;
  margin-right: auto;
}
.proPlan {
  color: #7744CF;

  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 13.31px;
  background: #fff;
}

#credits-text, #sortBy-text {
  font-size: 13px;
  color: #121212;
  line-height: 15.73px;
}
.toggleSec {
  position: relative;
  max-width: 973px;
  display: flex;
  justify-content: center;
}

.option {
  position: relative;
  cursor: pointer;
  display: inline-block;
  border-radius: 4px;
}
/* .annually:hover {
  background: #087657;
  color: #fff !important;
} */
.mb-30{
    margin-bottom: 30px;
  }


/* Tooltip Styles */

/* Add Arrow to Tooltip */
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%; /* Position at the bottom of the tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #D32F2F transparent transparent transparent;
}

.tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-color: #D32F2F;
  color: #fff;
  width: 108px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  z-index: 10;
  will-change: transform;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  animation: upDown 2.5s infinite ease-in-out;
}

/* .annually::before {
      top: -16px;
      content: "Get months free";
      display: block;
      position: absolute;
      background: #087657;
      background: #00e2a2;
      border-radius: 4px;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      letter-spacing: -0.03em;
      padding: 6px;
      color: #0b163e;
      color: #ffffff;
      min-width: 140px;
      min-width: max-content;
      left: 25%;
      transform: translateX(-50%);
      max-height: 25px;
      animation: upDown 3s infinite ease-in-out;
    } */

@keyframes upDown {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.credits-container, .sortBy-container {
  position: relative;
  display: inline-block;
}
.credits-dropdown:hover, .sortBy-dropdown:hover {
  /* background: #d8f5ea; */
}

.credits-dropdown, .sortBy-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FDF7FF;
  padding: 9.5px 14px;
  cursor: pointer;
  border-radius: 4px;
}

.credits-list, .sortBy-list {
  position: absolute;
  list-style-type: none;
  text-align: start;
  border-radius: 2px;
  background: #ffffff;
  z-index: 99;
  width: 94.16px;
  top: 34px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hidden by default */
  cursor: pointer;
}
.sortBy-list{
  width: 133.16px;
}
.credits-list li, .sortBy-list li {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #121212;
}

.credits-list li:hover, .sortBy-list li:hover {
  background-color: #FDF7FF; /* Highlight item on hover */
  color: #121212;
}
.pricingCTASec {
  margin: 0px auto 70px;
  max-width: max-content;
  overflow: visible;
  position: relative;
}
.ctaWrapper {
padding: 30px 105px;
border: 2px solid transparent;
background: linear-gradient(to right, #fff, #fff), linear-gradient(94.55deg, #ff51d7 -9.2%, #ff4848 21.42%, #6248ff 50.94%, #1862ff 95.77%), #fff;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
border-radius: 15px;
max-width: 927px;
margin: 0 auto;
z-index: 1;
overflow: visible;
  position: relative;
}
.blueCTA {
cursor: pointer;
display: flex;
align-items: center;
padding: 14px 20px;
border: 2px solid transparent;
border-radius: 100px;
background: linear-gradient(to right, #fff, #fff), linear-gradient(81.22deg, #1862ff -14.08%, #7731ff 29.91%, #d012ff 77.88%), #fff;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
min-width: 184px;
justify-content: center;
position: relative;
transition: 0.1s;

margin: 26px auto 0;
max-width: max-content;
cursor: pointer;
}
.blueCTA:hover {
background: linear-gradient(81.22deg, #1862ff -14.08%, #7731ff 29.91%, #d012ff 77.88%), #fff;
border-radius: 100px !important;
border: 2px solid transparent;
background-clip: padding-box, border-box;
}
.ctaText {
font-size: 19px;
line-height: 160%;
text-align: center;
font-weight: 500;
color: #121826;
}

/* .blueCTA .btnText::after, .gradientBtn button .anchorText::after {
content: "";
background-image: url(../../images/btnTextRightArrow.svg);
position: relative;
width: 18px;
height: 17px;
left: 6px;
top: 3px;
display: inline-block;
} */
.blueCTA.pricingBtn::after{
content: "";
background-image: url(../images/free.svg);
position: absolute;
width: 44px;
height: 40px;
left: -12px;
top: -14px;
display: inline-block;
z-index: 1111;
}
.blueCTA .btnText {
font-size: 16px;
line-height: 20px;
color: #121826;
z-index: 2;
font-weight: 500;
position: relative;
cursor: pointer;
font-family: 'Inter';
}
.blueCTA:hover .btnText{
color: #fff;
}
.pricingCTASec::after {
content:'';
position: absolute;
width: 100%;
height: 100%;
top: -7px;
left: 9px;
max-width: 927px;
background: linear-gradient(266.97deg, #ff51d7 -14.2%, #ff4848 17.36%, #6248ff 77.21%, #1862ff 108.3%);
border-radius: 15px;
z-index: 0;
}
@media (max-width: 1300px) and (max-height: 700px){
  .planModal {
    height: 583px;
}
}
@media (max-width: 768px) {
 .offerlistContainer ul li,
  .priceCardHeadline{
        font-size: 13px;
  }
  .priceCardbottomHeadline{
        margin: 20px 0 91px;
  }
  .mb-30 {
    margin-bottom: 30px;
}
.btnContainer.starterPlanBtn {
    margin-top: 90px;
}
   
     .priceCardbottomHeadline span{
          font-size: 13px;
     }
  .pricingSec h1 {
    font-weight: 600;
    font-size: 22px;
    max-width: 290px;
    margin: auto;
    line-height: 30px;

    padding-bottom: 66px;
  }

  .pricingcardContainer {
    margin: 0px 15px 70px;
    height: auto;
    display: flex;
    align-items: start;
    padding-top: 25px;
    min-width: 1083px;
}
.pricingTable{
  overflow: scroll;
  width: 100%;
  max-width: 450px;
 
}
.toggle-switch{
  order: -1;
}
.toggle-switch {
  width: 275px;

}

.toggleSec {
flex-wrap: wrap;
row-gap: 20px;
}
.pricingCard {
 
margin-right: 20px;
width: 100%;
}
.pricingTable::-webkit-scrollbar,
.pricingcardContainer::-webkit-scrollbar {
width: 0px;
height: 0px;
}
}
@media (max-width: 575px) {
  .planSecWrap {
    top: 52%;
    max-height: calc(100% - 85px);
}
  .pricingCTASec {
      margin: 0 15px;
      padding: 32px 0;
  }
  .ctaWrapper {
    padding: 30px 15px;
}
.ctaText {
  font-size: 16px;
  line-height: 159.7%;
  margin-bottom: 25px;
}
.blueCTA {
padding: 12px 20px;
min-width: 175px;
}
.blueCTA .btnText {
font-size: 15px;
}
.pricingCTASec::after {
top: 26px;
left: 6px;
max-width: 927px;
width: 100%;
height: 73%;
}
}
.upgradePlanModal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.upgradePlanOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.upgradePlanWrapper {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 60px 24px;
  max-width: 775px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(to right, #fff, #fff),
    linear-gradient(
      94.55deg,
      #ff51d7 -9.2%,
      #ff4848 21.42%,
      #6248ff 50.94%,
      #1862ff 95.77%
    );
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-color: #fff;
}
.upgradePlanWrapper::before {
  content: "";
  background: #f7f5ff;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.upgradePlanWrapper span {
  display: block;
  color: #64748b;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 60px;
  width: 100%;
}
.upgradePlanWrapper p {
  font-size: 32px;
  color: #1e291e;
  text-align: center;
  width: 100%;
  margin-top: 28px;
  background-image: linear-gradient(
    90deg,
    #ff51d7 0.14%,
    #c300ff 26.99%,
    #c300ff 52.47%,
    #1e43ff 88.98%
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.upgradeBtnsWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.upgradePlanWrapper img {
  display: block;
  margin: 0 auto;
}
.upgradePlanWrapper button {
  padding: 10px 12px;
  font-size: 17px;
  line-height: normal;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  color: #475569;
  background-color: #f1f0fb;
  transition: 0.1s;
}
.upgradePlanWrapper .changePlanBtn {
  background: linear-gradient(265.4deg, #1e43ff -20.86%, #b318ff 95.76%);
  color: #fff;
}
.upgradePlanWrapper .cancelPlanBtn {
  border: 1px solid #a0b6e9;
  padding: 10px 35px;
  color: #a0b6e9;
  font-weight: 400;
}
.upgradePlanWrapper .changePlanBtn svg {
  position: relative;
  top: 3px;
}
.upgradePlanWrapper .changePlanBtn:hover {
  background: linear-gradient(250deg, #516eff 3.39%, #b44dff 101.16%);
}
.upgradePlanWrapper .cancelPlanBtn:hover {
  color: #8393b7;
  border: 1px solid #8393b7;
}
.upgradePlanWrapper a {
  display: block;
  color: #64748b;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  margin-top: 25px;
}
.upgradePlanWrapper a:hover {
  color: #1e43ff;
}
.arrow-icon::after {
  content: "";
  background-image: url("../../images/arrow-btn.svg");
  display: inline-block;
  width: 17px;
  height: 17px;
  position: relative;
  margin-left: 3px;
  top: 1px;
}
@media (max-width: 575px) {
  .upgradePlanWrapper {
    padding: 50px 24px;
    width: calc(100% - 34px);
  }
  .upgradePlanWrapper img {
    width: 100px;
  }
  .upgradePlanWrapper p {
    font-size: 28px;
    margin-top: 20px;
  }
  .upgradePlanWrapper span {
    font-size: 15px;
    margin: 11px auto 40px;
    max-width: 316px;
  }
  .upgradePlanWrapper button {
    font-size: 15px;
  }
  .upgradePlanWrapper a {
    margin-top: 20px;
  }
  .upgradePlanWrapper .cancelPlanBtn {
    padding: 10px 26px;
  }
  .absoluteLoginBtn {
    padding: 5px 0 7px;
    right: 50px;
    top: 15px;
    min-width: 78px;
  }
  .absoluteLoginBtn .btnText {
    font-size: 12px;
    line-height: 120%;
  }
}