div {
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  margin: 0;
  background-color: #ffff;
  min-height: 100vh;
  width: 100vw;
  font-family: "Inter;", sans-serif;
  background: url("../images/starBlue.png") no-repeat left 200px,
    url("../images/starPurple.png") no-repeat right 1800px,
    url("../images/starBlue.png") no-repeat left 2800px,
    url("../images/starPurple.png") no-repeat right 3600px;
}

.main-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  max-width: 1050px;
  width: 100%;
  padding: 0 20px;
  max-width: 950px;
  margin: 0 auto;
}
.main-container .title {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  font-family: "Inter";
  line-height: 16px;
  overflow: hidden;
}
.main-container .plan-type-selection-container {
  display: flex;
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #8c15e9;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-radius: 94px;
  gap: 10px;
}
.main-container .plan-type-selection-container .plan-type-selection {
  flex-grow: 1;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  background: white;
  border-radius: 104px;
  gap: 5px;
  width: 50%;
}

.plan-type-selection #month-svg {
  fill: #ffffff;
}

.plan-type-selection {
  cursor: pointer;
}

.main-container
  .plan-type-selection-container
  .plan-type-selection
  .discount-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -39px;
  width: 150px;
  height: 22px;
  background: #8c15e9;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  gap: 5px;
}

.discount-badge {
  box-shadow: 0px 0px 4.3px 0px #8f00ff85;
}

#title-month,
#title-annual {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.main-container .plan-cards-container {
  flex: 1;
  width: 90vw;
  height: 100%;
  display: flex;
  flex-flow: row;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  column-gap: 12px;
}
@media (max-width: 860px) {
  .main-container .plan-cards-container {
    flex-direction: column-reverse;
    row-gap: 12px;
  }
  .main-container
    .plan-cards-container
    .plan-card
    .plan-card-content
    .see-more-toggle {
    display: flex !important;
  }

  .items-list {
    display: none;
  }

  .toggle-arrow {
    transform: rotate(180deg);
  }

  .lite-plan-card {
    order: 1;
  }

  .standard-plan-card {
    order: 2;
  }

  .premium-plan-card {
    order: 3;
  }
}
.main-container .plan-cards-container .plan-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex: 1 1 15rem;
  position: relative;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  max-width: 390px;
}
.main-container .plan-cards-container .plan-card .current-banner {
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 161px;
  height: 35px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 9px;
  background-color: #364aff;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.main-container .plan-cards-container .premium-plan-card .current-banner {
  border-top-left-radius: 10px;
  background-color: #8c15e9;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.main-container .plan-cards-container .plan-card .plan-card-content {
  margin: 84px 31px 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
  background-color: white;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .recommended-badge {
  background: #8c15e9;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  color: #fff;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .basic-badge {
  background: #364aff;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  color: #fff;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-card-title {
  font-size: 30px;
  font-weight: 700;
  font-family: "Inter";
  color: #364aff;
}
.main-container .plan-cards-container .free-plan-card {
  display: none;
}
.main-container
  .plan-cards-container
  .free-plan-card
  .plan-card-content
  .plan-card-title {
  color: #172d67;
}
.main-container
  .plan-cards-container
  .lite-plan-card
  .plan-card-content
  .plan-card-title {
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .premium-plan-card
  .plan-card-content
  .plan-card-title {
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-price-container {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .main-container .plan-cards-container {
    align-items: center;
  }
}
@media (max-width: 420px) {
  .main-container
    .plan-cards-container
    .plan-card
    .plan-card-content
    .plan-price-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .main-container
    .plan-cards-container
    .plan-card
    .plan-card-content
    .trial-badge {
    width: 100%;
    align-self: end;
  }
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-price-container
  .plan-price-all {
  position: relative;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-price-container
  .plan-price {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  font-family: "Inter";
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-price-container
  .plan-period-container {
  font-size: 12px;
  font-weight: 650;
  line-height: 20px;
  font-family: "Inter";
  line-height: 10px;
  color: #364aff;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 4px;
}

.plan-period {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}
.main-container
  .plan-cards-container
  .lite-plan-card
  .plan-card-content
  .plan-price-container
  .plan-period-container {
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .premium-plan-card
  .plan-card-content
  .plan-price-container
  .plan-period-container {
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-price-container
  .annual-benefit-banner {
  color: #8c15e9;
  background-color: #fff0f1;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 16px;
  font-weight: 600;
  visibility: hidden;
  width: max-content;
  font-size: 12px;
  margin-bottom: 6px;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .description
  p {
  font-size: 12px;
  font-weight: 400;
  font-family: "Inter";
  margin-top: 22px;
  color: #364aff;
  min-height: 50px;
}
.main-container
  .plan-cards-container
  .free-plan-card
  .plan-card-content
  .description
  p {
  color: #172d67;
}

.main-container
  .plan-cards-container
  .lite-plan-card
  .plan-card-content
  .description
  p {
  color: #8c15e9;
}

.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .plan-price-container
  .plan-period-container
  p {
  margin: 0;
}

.main-container
  .plan-cards-container
  .premium-plan-card
  .plan-card-content
  .description
  p {
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .trial-badge {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 8px 0 6px 0;
  margin-bottom: 12px;
  line-height: 16px;
  border-radius: 12px;
  /* border: 0.3px solid #364AFF; */
  color: #364aff;
  font-size: 10px;
  text-transform: uppercase;
  height: fit-content;
}
.main-container
  .plan-cards-container
  .free-plan-card
  .plan-card-content
  .trial-badge {
  /* border: 0.3px solid #5A5A5A; */
  color: #5a5a5a;
}
.main-container
  .plan-cards-container
  .premium-plan-card
  .plan-card-content
  .trial-badge {
  /* border: 0.3px solid #8C15E9; */
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .lite-plan-card
  .plan-card-content
  .trial-badge {
  /* border: 0.3px solid #8C15E9; */
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  button:last-child {
  width: 100%;
  height: 32px;
  margin: 25px 0;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #fff;
  background: #364aff;
  border: none;
  box-shadow: 0 -0.0625rem 0 0.0625rem #0000001a inset,
    0 0 0 0.0625rem #00000003 inset, 0 0.0313rem 0 0.0938rem #ffffff40 inset;
  font-size: 14px;
  font-weight: 650;
}
.main-container
  .plan-cards-container
  .free-plan-card
  .plan-card-content
  button:first-child {
  background: #fff;
  color: #4a4a4a;
  border: 1px solid #5a5a5a;
}
.main-container
  .plan-cards-container
  .lite-plan-card
  .plan-card-content
  button {
  background: #8c15e9 !important;
  color: #fff !important;
  border: 1px solid #8c15e9 !important;
}
.main-container
  .plan-cards-container
  .premium-plan-card
  .plan-card-content
  button:last-child {
  background: linear-gradient(90deg, #8c15e9 26.1%, #fff471 100%);
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.see-more-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-weight: 650;
  font-size: 16px;
  height: 50px;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .items-list {
  padding-top: 12px;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .items-list
  .items-list-header {
  margin-top: 20px;
  margin-left: 8px;
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter";
  color: #364aff;
}
.main-container
  .plan-cards-container
  .plan-card
  .plan-card-content
  .items-list
  p {
  margin: 0;
  line-height: 16px;
  align-self: center;
  margin-left: 4px;
}
.plan-items-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  font-size: 13px;
  margin-bottom: 10px;
}
.main-container
  .plan-cards-container
  .lite-plan-card
  .plan-card-content
  .items-list
  .items-list-header {
  color: #8c15e9;
}
.main-container
  .plan-cards-container
  .premium-plan-card
  .plan-card-content
  .items-list
  .items-list-header {
  color: #8c15e9;
}
.main-container .schedule-meeting-section {
  width: 100%;
  border: 1px solid #cccccc;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
}
.main-container .schedule-meeting-section .main-title {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #364aff;
}
.main-container .schedule-meeting-section .main-description {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  margin-top: -10px;
  padding-inline: 20px;
  color: #364aff;
}
.main-container .schedule-meeting-section .schedule-button-area {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-container
  .schedule-meeting-section
  .schedule-button-area
  .schedule-button {
  display: flex;
  height: 45px;
}
.main-container
  .schedule-meeting-section
  .schedule-button-area
  .schedule-button:hover {
  opacity: 0.7;
  cursor: pointer;
}
.main-container
  .schedule-meeting-section
  .schedule-button-area
  .schedule-button
  .left-side {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 45px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 1.2px 0px #00000061;
  box-shadow: 1px -2px 8px 0px #17489a52 inset;
}
.main-container
  .schedule-meeting-section
  .schedule-button-area
  .schedule-button
  .right-side {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-inline: 26px;
  height: 45px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Inter";
  font-style: unset;
  color: #ffffff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: linear-gradient(90deg, #364aff 0%, #8c15e9 100%);
}
@media screen and (max-width: 490px) {
  .main-container
    .schedule-meeting-section
    .schedule-button-area
    .schedule-button
    .right-side {
    font-size: 10px;
    padding-inline: 6px;
  }
}
.main-container .faq-section {
  width: 100%;
  /* height: 273px; */
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  margin-top: 20px;
}
.main-container .faq-section .faq-title {
  font-family: "Inter";
  margin-left: 32px;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  padding-left: 20px;
}
.main-container .faq-section .faq-dropdown {
  margin-left: 32px;
  margin-right: 32px;
  padding-bottom: 20px;
}
.main-container .faq-section .faq-dropdown .expandable-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  cursor: pointer;
}
.main-container .faq-section .faq-dropdown .expandable-tab {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #364aff;
}

.question {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}

.answer {
  flex: 1;
  font-family: Inter, sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}

.main-container .faq-section .faq-dropdown .answer {
  padding-right: 32px;
  display: none;
}
.faq-container {
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 20px;
}
.free-plan-price {
  visibility: hidden;
}
.plan-items-icon,
.plan-items-icon svg {
  width: 24px;
  height: 24px;
}
.company-logo-container {
  margin-top: 30px;
  width: 100%;
  margin-bottom: 20px;
}
.slider-logo-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-logos-container .company-logos-header {
  color: #303030;
  font-family: Inter;
  font-weight: 500;
  font-style: italic;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0%;
  text-align: center;
}
.client-video-testimonials-container {
  margin-top: 30px;
  width: 100%;
  margin-bottom: 20px;
}
.client-video-testimonials-header {
  font-family: Inter, sans-serif;
  color: #302f2e;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
  text-align: center;
}
.video-testimonials-slider {
  padding: 0;
}
.video-testimonials-slider .slick-next {
  right: -22px;
}
.video-testimonials-slider .slick-prev {
  left: -28px;
}
.video-testimonials-slider .slick-next:before,
.video-testimonials-slider .slick-prev:before {
  font-size: 25px;
  color: #364aff;
  opacity: 1;
}
.video-testimonials-slider .video-testimonial-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  height: 318px;
  margin-right: 20px;
}
.video-testimonials-slider .video-testimonial-card video,
.video-testimonials-slider .video-testimonial-card .testimonial-video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.video-testimonial-card .testimonial-video-cover {
  position: absolute;
  top: 0;
  left: 0;
}
.video-testimonial-card .testimonial-video-cover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 255, 0.8),
    rgba(0, 0, 255, 0.5),
    rgba(0, 0, 255, 0)
  );
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.video-testimonials-play-stop-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
}
.video-testimonial-logo {
  margin-top: auto;
}
.testimonial-video-quote,
.testimonial-video-name,
.testimonial-video-role {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
}
.testimonial-video-quote {
  margin-bottom: 3px;
}
.testimonial-video-name {
  font-weight: 600;
}
.video-testimonials-slider .slick-list {
  overflow: hidden;
}
@media screen and (max-width: 1040px) {
  .video-testimonial-card {
    height: 150px !important;
  }
  .client-video-testimonials-header {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  .video-testimonial-logo {
    max-width: 45px !important;
  }
  .testimonial-video-quote,
  .testimonial-video-name,
  .testimonial-video-role {
    font-size: 12px !important;
    line-height: 14.52px !important;
  }
  .client-video-testimonials-container .slick-next {
    right: 0;
  }
  .client-video-testimonials-container .slick-prev {
    left: 0;
  }
  .client-video-testimonials-container .slick-next::before,
  .client-video-testimonials-container .slick-prev::before {
    font-size: 15px;
  }
  .video-testimonials-slider {
    padding: 0 20px;
  }
}

.pricing-table-container {
  display: none;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  position: relative;
  text-align: left;
  margin-bottom: 50px;
}

.pricing-table-items-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-table-container {
  margin-bottom: 20px;
}
.pricing-table-inner-container {
  margin-top: 20px;
}

.pricing-table-header {
  padding-top: 30px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 16px;
  color: #364aff;
  text-align: center;
  margin-bottom: 50px;
}

#header-lite,
#header-essential,
#header-premium {
  text-align: center;
}

#category-table-data {
  padding: 0;
  border-radius: 12px;
}

#pricing-table-items {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  vertical-align: middle;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  margin-left: 10px;
}

#pricing-hover-svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.pricing-tbody-container {
  border: 2px solid #364aff;
  border-radius: 12px;
  border-top: unset;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}

td#json-values svg {
  display: block;
  margin: auto;
}

#json-values {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  color: #000;
}

#pricing-inner-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  background: #fff;
  table-layout: fixed !important;
  border-radius: 12px;
}

#category-row {
  display: inline-flex;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 20px;
  color: #f1f1f1;
  border-radius: 8px 8px 0 0;
  background: #364aff;
  min-width: 200px;
  height: auto;
  padding-left: 10px;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}

#category-row span {
  flex-grow: 1;
  text-align: left;
}

.category-inner-div {
  margin-right: 10px;
  align-items: center;
}

.category-toggle-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-right: 3px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.category-items-row {
  display: table-row;
}

.hidden {
  display: none;
}

#pricing-table-empty-wrapper {
  height: 10px;
  width: 200px;
  background: #364aff;
}

#pricing-table-empty-div {
  height: 10px;
  width: 200px;
  border-top-left-radius: 12px;
  background: white;
}

#free-primary-button {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #5a5a5a;
  line-height: 20px;
  width: 132px;
  height: 42px;
  border-radius: 100px;
  border: 1px solid #5a5a5a;
  background-color: white;
  box-shadow: 0px 2px 3.3px 0px #00000080;
}

#free-secondary-button {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: var(--Color-text-text-brand-on-bg-fill, #fff);
  background: #5a5a5a;
  min-width: 104px;
  max-width: 250px;
  height: 26px;
  padding: 3px;
  border-radius: 8px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

#lite-primary-button {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: #8c15e9;
  width: 132px;
  height: 42px;
  border-radius: 100px;
  border: 1px solid #8c15e9;
  background-color: white;
  box-shadow: 0px 2px 3.3px 0px #00000080;
}

#lite-secondary-button {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: var(--Color-text-text-brand-on-bg-fill, #fff);
  background-color: #8c15e9;
  min-width: 104px;
  max-width: 200px;
  height: 26px;
  padding: 3px;
  border-radius: 8px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

#essential-primary-button {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: #364aff;
  border: 1px solid #364aff;
  border-radius: 100px;
  width: 132px;
  height: 42px;
  background-color: white;
  box-shadow: 0px 2px 3.3px 0px #00000080;
}

#essential-secondary-button {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: var(--Color-text-text-brand-on-bg-fill, #fff);
  min-width: 104px;
  max-width: 200px;
  padding: 3px;
  height: 26px;
  border-radius: 8px;
  margin-top: 10px;
  background: linear-gradient(90deg, #364aff 0%, #8c15e9 100%);
  border: none;
  cursor: pointer;
}

#premium-primary-button {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: #8c15e9;
  width: 132px;
  height: 42px;
  border-radius: 100px;
  border: 1px solid #8c15e9;
  background-color: white;
  box-shadow: 0px 2px 3.3px 0px #00000080;
}

#premium-secondary-button {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: var(--Color-text-text-brand-on-bg-fill, #fff);
  background: linear-gradient(90deg, #8c15e9 0%, #fff471 100%);
  min-width: 104px;
  max-width: 200px;
  height: 26px;
  padding: 3px;
  border-radius: 8px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

#free-secondary-button:hover,
#lite-secondary-button:hover,
#essential-secondary-button:hover,
#premium-secondary-button:hover {
  opacity: 0.7;
}

#pricing-table-body {
  border-radius: 12px;
  border: 2px solid #364aff;
  overflow: hidden;
  width: 100%;
}

.table-sticky {
  width: 100%;
  border-collapse: separate;
  background: #ffff;
  table-layout: fixed;
  padding: 8px;
  padding-bottom: 5px;
  border-radius: 12px;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  border: 2px solid blue;
  border-bottom: none;
}

.table-sticky-container {
  top: 0;
  position: sticky;
  z-index: 100;
  background: #ffff;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  align-items: center;
}

.more-info-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tooltip-content {
  visibility: hidden;
  background-color: white;
  text-align: center;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  width: 372px;
  height: auto;
  border-radius: 12px;
  opacity: 0px;
  border: 1px solid #cccccc;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #172d67;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 101;
  overflow: hidden;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
.toggle-btn {
  background-color: #364aff;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 5px;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover {
  background-color: #2a3bcc;
}

.tooltip-container:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}
.json-values-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.json-values-mobile {
  display: none;
}

.pricing-header {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
}

.table-sticky-container.at-bottom {
  border: 2px solid #364aff;
  border-radius: 12px;
  padding-bottom: 8px;
}
.table-sticky.at-bottom {
  border: none;
}

@media (max-width: 768px) {
  .json-values-wrapper {
    display: table;
    width: 100%;
  }

  .json-pricing-contents {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 25%;
  }
  .pricing-header {
    white-space: nowrap;
  }
  #empty-pricing-button-row {
    display: none;
  }
  .tooltip-content {
    width: calc(372px * 0.8);
    font-size: calc(11px * 0.9);
  }
  .pricing-table-header {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
  }

  .json-values-mobile {
    display: table-row;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: #000;
  }
  #json-values {
    display: none;
  }

  #free-primary-button,
  #lite-primary-button,
  #essential-primary-button,
  #premium-primary-button {
    font-size: calc(20px * 0.7);
    width: calc(132px * 0.7);
    height: calc(42px * 0.7);
  }

  #free-secondary-button,
  #lite-secondary-button,
  #essential-secondary-button,
  #premium-secondary-button {
    font-size: calc(10px * 0.9);
    width: auto;
    max-width: 200px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .pricing-content-icons {
    width: 11px;
    height: 11px;
  }

  #pricing-table-items .pricing-header {
    font-size: 11px;
    white-space: nowrap;
  }
  .category-items-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .tooltip-content {
    font-size: calc(11px * 0.8);
    transform: translateX(-70%);
    top: unset;
  }

  #empty-pricing-button-row {
    display: none;
  }

  #pricing-table-items {
    width: 100%;
    display: block;
  }

  .pricing-table-items-wrapper {
    display: flex;
    width: 100%;
    gap: 4px;
  }

  .json-values-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .json-values-mobile {
    display: table-row;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: #000;
  }
  #json-values {
    display: none;
  }
  .pricing-table-header {
    font-size: 24px;
    line-height: 32px;
    padding-top: 20px;
    margin-bottom: 30px;
  }
  #free-primary-button,
  #lite-primary-button,
  #essential-primary-button,
  #premium-primary-button {
    font-size: calc(20px * 0.6);
    width: calc(132px * 0.6);
    height: calc(42px * 0.6);
  }

  #free-secondary-button,
  #lite-secondary-button,
  #essential-secondary-button,
  #premium-secondary-button {
    font-size: calc(10px * 0.8);
    min-width: 67px;
  }

  td#json-values svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .tooltip-content {
    width: calc(372px * 0.5);
    font-size: calc(11px * 0.7);
  }
  .pricing-table-items-wrapper {
    display: flex;
    width: 100%;
    gap: 2px;
  }
  .pricing-table-header {
    font-size: 20px;
    line-height: 28px;
    padding-top: 15px;
    margin-bottom: 20px;
  }
  #free-primary-button,
  #lite-primary-button,
  #essential-primary-button,
  #premium-primary-button {
    font-size: calc(20px * 0.5);
    width: calc(132px * 0.5);
    height: calc(42px * 0.5);
  }

  #free-secondary-button,
  #lite-secondary-button,
  #essential-secondary-button,
  #premium-secondary-button {
    font-size: calc(10px * 0.7);
    width: calc(104px * 0.6);
  }

  td#json-values svg {
    width: 15px;
    height: 15px;
  }
}
.exception-header {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 13px;
}

#faq-how-header-items {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}

#basic-text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

#text-purple-italic {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  line-height: 16px;
  color: #8c15e9;
}

.faq-content-header {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
.faq-answer-wrapper {
  padding-bottom: 10px;
  padding-top: 10px;
}
#exception-wrapper {
  display: grid;
}
.strong-purple-answer {
  color: #8c15e9;
  font-weight: 600;
  font-size: 14px;
  font-style: italic;
  font-family: "Inter", sans-serif;
  line-height: 16px;
}
.see-more-text {
  font-weight: 700;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.see-more-link {
  font-family: "Inter", sans-serif;
  color: #000000;
  cursor: pointer;
  font-style: italic;
  font-size: 14px;
  word-wrap: break-word;
}
.answer-as-list {
  display: list-item;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

@media screen and (max-width: 490px) {
  .question {
    font-size: 14px;
  }
  .strong-purple-answer {
    font-size: 10px;
  }
  .faq-content-header {
    font-size: 10px;
  }
  .answer {
    font-size: 10px;
  }
  .see-more-text {
    font-size: 10px;
  }
  .see-more-link {
    font-size: 10px;
  }
  .answer-as-list {
    font-size: 10px;
  }
}
@media screen and (max-width: 360px) {
  .question {
    font-size: 13px;
  }
}
.pricing-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}
.star-container {
  font-style: normal;
  display: inline-block;
  margin-left: 3px;
  font-size: 1em;
}
.pricing-title-first {
  display: flex;
  align-items: center;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 45px;
  white-space: nowrap;
  background: linear-gradient(90deg, #8c15e9 0%, #364aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.pricing-title-second {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #364aff;
}
@media (max-width: 768px) {
  .pricing-title-container {
    gap: 10px;
    padding: 10px;
  }
  .pricing-title-first {
    font-size: 25px;
  }
  .pricing-title-second {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .pricing-title-container {
    gap: 12px;
    padding: 15px;
  }
  .pricing-title-first {
    font-size: 20px;
  }
  .pricing-title-second {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .pricing-title-container {
    gap: 10px;
    padding: 10px;
  }
  .pricing-title-first {
    font-size: 15px;
  }
  .pricing-title-second {
    font-size: 15px;
  }
}
@media screen and (max-width: 490px) {
  #title-month,
  #title-annual {
    font-size: 10px;
  }
  #year-svg,
  #month-svg {
    width: 14px;
    height: 14px;
  }
  .main-container .plan-type-selection-container {
    padding: 8px;
  }
}

.review-testimonials-header {
  font-family: Inter, sans-serif;
  color: #302f2e;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .review-testimonials-header {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}

.review-testimonials-section-container {
  margin-top: 24px;
  width: 100%;
}

.review-testimonials-section-container .block-stack-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-testimonials-section-container .testimonials-section-down-part {
  display: flex;
  justify-content: center;
}

.review-testimonials-section-container
  .review-testimonials-section-down-part
  .review-testimonials-section-wrapper {
  width: 100%;
}

#review-testimonials-slider .slick-next {
  right: -22px;
}

#review-testimonials-slider .slick-prev {
  left: -28px;
}

#review-testimonials-slider .slick-next:before,
#review-testimonials-slider .slick-prev:before {
  font-size: 25px;
  color: #364aff;
  opacity: 1;
}

@media screen and (max-width: 1040px) {
  #review-testimonials-slider .slick-next {
    right: -11px;
  }
  #review-testimonials-slider .slick-prev {
    left: -14px;
  }
  #review-testimonials-slider .slick-next::before,
  #review-testimonials-slider .slick-prev::before {
    font-size: 15px;
  }
}

.review-testimonials-section-container .custom-slider-item-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.review-testimonials-section-container
  .custom-slider-item-container
  .custom-slider-item {
  background-color: #fff;
  width: 95%;
  box-shadow: 0 10px 10px 0 #00000040;
  padding: 20px;
  border-radius: 8px;
}

.review-testimonials-section-container
  .custom-slider-item-container
  .custom-slider-item
  img {
  max-width: 90%;
}

.review-testimonials-section-container
  .review-slider-company-logo-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
}

.review-testimonials-section-container .company-review {
  height: 240px;
  padding: 20px 10px;
  color: #676766;
  font-weight: 400;
  margin-top: 10px;
}

.review-testimonials-section-container .company-credientials {
  height: 36px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.review-testimonials-section-container .company-credientials .cred-name-area {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.review-testimonials-section-container
  .company-credientials
  .cred-company-title-area {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}
.back-to-top-button {
  position: fixed;
  left: 0;
  bottom: 100px;
  background-color: #1c274c;
  color: white;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 4px 0 #00000040;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 15px 20px;
  padding-right: 10px;
}

.back-to-top-button .vertical-line {
  width: 1.4px;
  height: 50px;
  background-color: white;
  margin: 0 5px 0 15px;
}

.back-to-top-button svg {
  fill: white;
  width: 45px;
  height: 45px;
}

.pricing-table-hide-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pricing-table-hide-btn-container .description {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #303030;
}

.pricing-table-hide-btn-container .pricing-table-hide-btn,
.pricing-table-hide-btn-container .pricing-table-hide-btn-inside {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline: 16px;
  width: fit-content;
  min-width: 400px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #303030;
  border-radius: 100px;
  font-size: 20px;
  color: #303030;
  font-weight: 600;
  box-shadow: 0 2px 3.3px 0 #00000080;
  margin-bottom: 20px;
}

.pricing-table-hide-btn-container .pricing-table-hide-btn-inside {
  margin-top: 20px;
}

.company-review {
  font-size: 16px;
  line-height: 18px;
}

@media (max-width: 1090px) {
  .company-review {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 480px) {
  .pricing-table-hide-btn-container .pricing-table-hide-btn,
  .pricing-table-hide-btn-container .pricing-table-hide-btn-inside {
    font-size: 12px;
    min-width: 260px;
  }
}

.pricing-table-hide-btn-container .pricing-table-hide-btn:hover,
.pricing-table-hide-btn-container .pricing-table-hide-btn-inside:hover {
  opacity: 0.7;
  cursor: pointer;
}

@media screen and (max-width: 490px) {
  .back-to-top-button {
    padding-left: 12px;
    padding-right: 8px;
  }

  .back-to-top-button .back-to-top-text,
  .back-to-top-button .vertical-line {
    display: none;
  }
}

.schemaplus-logo {
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
  cursor: pointer;
}
.url {
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
}
.inner-nav {
  margin: auto;
  flex: 1;
}
.nav-wrapper {
  display: flex;
  flex: 1;
}

.navbar {
  background: linear-gradient(90deg, #364aff 0%, #8c15e9 100%);
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  min-height: 116px;
}
.inner-nav {
  display: flex;
  gap: 20px;
}

#pngLogo {
  display: none;
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  background: linear-gradient(
    90deg,
    rgba(54, 74, 255, 0.84) 0%,
    rgba(140, 21, 233, 0.84) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2rem;
  border-bottom-left-radius: 42px;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  width: 60%;
  box-shadow: 0px 7px 4px -1px #00000033;
  max-height: 248px;
  backdrop-filter: blur(9.600000381469727px);
}

/* Hamburger icon styling */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  margin-left: auto;
  padding: 10px 20px;
  z-index: 10000;
  margin-right: 20px;
}

.mobile-menu-inner {
  padding-top: 100px;
  padding-left: 5px;
  padding-right: 20px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .nav-wrapper {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  .schemaplus-logo {
    width: 110px;
    height: auto;
    flex: none;
  }

  .navbar {
    min-height: 80px;
    padding: 0;
    align-items: center;
  }
}

/* Responsive behavior */
@media (max-width: 490px) {
  .inner-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.navbar a:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media screen and (max-width: 490px) {
  .back-to-top-button {
    padding-left: 12px;
    padding-right: 8px;
  }

  .back-to-top-button .back-to-top-text,
  .back-to-top-button .vertical-line {
    display: none;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding: 10px 0;
  }
  .nav-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .schemaplus-logo {
    margin: 0 auto;
    flex: none;
    width: 110px;
    height: 35px;
  }
  .inner-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    box-sizing: border-box;
    color: #ffffff;
  }
}

.company-logos-slider,
.video-testimonials-slider {
  display: none;
}

.information-ads {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 16px;
  padding-bottom: 30px;
}

@media screen and (max-width: 490px) {
  .information-ads {
    font-size: 10px;
  }

  #logos {
    width: 16px;
    height: 16px;
  }
}

.slider-loading-icon {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #364aff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.back-to-top-button {
  position: fixed;
  left: 0;
  bottom: 100px;
  background-color: #1c274c;
  color: white;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 4px 0 #00000040;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 15px 20px;
  padding-right: 10px;
}

.back-to-top-button .vertical-line {
  width: 1.4px;
  height: 50px;
  background-color: white;
  margin: 0 5px 0 15px;
}

.back-to-top-button svg {
  fill: white;
  width: 45px;
  height: 45px;
}

.preview-heading {
  white-space: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
}

.google-logo {
  width: 150px;
  height: 100px;
  min-width: 60px;
  min-height: 80px;
}

.google-header {
  display: flex;
}

.content-video-side {
  margin: auto;
}

.youtube-preview-section {
  width: 393px;
  height: 221px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .preview-heading {
    font-size: 20px;
  }

  .preview-box {
    margin-top: 0;
  }

  .youtube-preview-section {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 490px) {
  .preview-heading {
    font-size: 15px;
    gap: 8px;
  }

  .preview-box {
    margin-top: 0;
  }

  .youtube-preview-section {
    margin-bottom: 10px;
    width: 300px;
    height: 200px;
  }

  .url-section {
    font-size: 12px;
  }

  .google-header {
    font-size: 15px;
  }

  .rrt-preview-google-desc {
    font-size: 12px;
  }

  .google-footer {
    font-size: 11px;
  }

  .minor-information {
    font-size: 9px;
  }

  .banner-container-for-noschema {
    font-size: 13px;
  }

  .banner-container-for-schema {
    font-size: 13px;
  }
}

.rrt-preview-main-content {
  /* display:flex; */
  padding: 40px;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0) 43.7%,
    #f1f1f1 195.47%
  );
  box-shadow: -2px 15px 22.7px -11px #00000040;
  margin-bottom: 20px;
}

.rrt-preview-url-part {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  vertical-align: middle;
  color: #333333;
}

.rrt-preview-google-url {
  margin-top: 5px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  vertical-align: middle;
  color: #1158d6;
}

.rrt-preview-without-schema-banner {
  margin-top: 40px;
  display: flex;
  align-items: center;
  background: #cbcbcb7a;
  color: #303030;
  max-width: 200px;
  height: 28px;
  gap: 5px;
  padding: 10px;
  border-radius: 12px;
  font-family: Inter;
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  max-width: 180px;
}

.rrt-preview-google-desc {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-top: 5px;
  color: #4f4f4f;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rrt-preview-reviews-stock-price {
  margin-top: 5px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0%;
  color: #00000099;
}

.left-content-header {
  margin-top: 10px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #364aff;
  margin-bottom: 10px;
}

.popup-list-item {
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  line-height: 16px;
  color: #1c274c;
  white-space: nowrap;
}

.popup-plan-name {
  text-align: left;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
}

.popup-plan-desc {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.content-right-side,
.content-left-side {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.description-card-left {
  text-align: left;
  margin-top: 30px;
}

.rrt-preview-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: baseline;
  gap: 30px;
  padding: 0 20px 0 20px;
}

.rrt-preview-schema-effect-banner {
  display: flex;
  align-items: center;
  background: #efdaff;
  color: #8c15e9;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  max-width: 158px;
  height: 28px;
  border-radius: 12px;
  padding: 10px;
  max-width: 180px;
}

.rrt-preview-information {
  margin-top: 3px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 16px;
  color: #8c15e9;
}

.content-bottom-side-header {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #8c15e9;
}

.poup-plan-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .inner-header-p1,
  .inner-header-p1 .higlighted,
  .inner-header-p2 {
    font-size: 24px;
  }

  .content-description {
    font-size: 10px;
  }

  .left-content-header {
    font-size: 15px;
  }

  .rrt-preview-content-wrapper {
    display: block;
  }

  .content-right-side {
    justify-content: unset;
  }

  .popup-list-item {
    white-space: unset;
  }

  .poup-plan-card {
    gap: 10px;
  }

  .google-logo {
    width: 120px;
    height: 80px;
  }
}

@media screen and (max-width: 480px) {
  .content-description {
    font-size: 12px;
  }

  .left-content-header {
    font-size: 15px;
  }

  .rrt-preview-content-wrapper {
    display: block;
    padding: 0;
  }

  .content-right-side {
    justify-content: unset;
  }

  .poup-plan-card {
    flex-direction: column;
    gap: 12px;
    min-height: unset;
  }

  .google-logo {
    width: 72px;
    height: 48px;
  }
}

.google-result-heading {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .content-right-side {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .content-right-side {
    margin-top: 20px;
  }

  .rrt-preview-schema-effect-banner,
  .rrt-preview-without-schema-banner {
    font-size: 10px;
    max-width: 140px;
  }

  .rrt-preview-schema-effect-banner svg {
    width: 12px;
    height: 12px;
  }

  .rrt-preview-without-schema-banner svg {
    width: 12px;
    height: 12px;
  }

  .rrt-preview-url-part,
  .rrt-preview-google-desc {
    font-size: 10px;
  }

  .rrt-preview-google-url {
    font-size: 12px;
  }

  .reviews-stock-pric {
    font-size: 9px;
  }

  .reviews-stock-pric svg {
    width: 8px;
    height: 8px;
  }

  .rrt-preview-information {
    font-size: 8px;
  }

  .rrt-preview-main-content {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 490px) {
  .main-container .faq-section .faq-title {
    font-size: 18px;
  }
  .back-to-top-button {
    padding-left: 12px;
    padding-right: 8px;
  }

  .back-to-top-button .back-to-top-text,
  .back-to-top-button .vertical-line {
    display: none;
  }
}

.plan-card-button {
  display: flex;
  justify-content: center;
}
.plan-card-divider {
  border-top: 1px solid #cccccc;
}
.lite-plan-card .toggle-text {
  color: #8c15e9;
}
.lite-plan-card .toggle-arrow {
  fill: #8c15e9 !important;
}
.premium-plan-card .toggle-text {
  color: #8c15e9;
}
.premium-plan-card .toggle-arrow {
  fill: #8c15e9 !important;
}
.standard-plan-card .toggle-text {
  color: #364aff;
}
.standard-plan-card .toggle-arrow {
  fill: #364aff !important;
}

.main-container .every-plan-gets-you-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.main-container .every-plan-gets-you-section .main-title {
  color: #364aff;
  font-family: sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}
.main-container .every-plan-gets-you-section .every-plan-cards-container {
  display: grid;
  width: 100%;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.main-container
  .every-plan-gets-you-section
  .every-plan-cards-container
  .every-plan-card {
  border: 1px solid #364aff;
  border-radius: 12px;
  min-height: 218px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.main-container
  .every-plan-gets-you-section
  .every-plan-cards-container
  .every-plan-card
  svg {
  min-height: 48px;
}
.main-container
  .every-plan-gets-you-section
  .every-plan-cards-container
  .every-plan-card
  .every-plan-texts-container
  .every-plan-title {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 900;
  font-size: 12px;
  color: #364aff;
}
.main-container
  .every-plan-gets-you-section
  .every-plan-cards-container
  .every-plan-card
  .every-plan-texts-container
  .every-plan-sub-text {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 10px;
  color: #000000;
}
.main-container
  .every-plan-gets-you-section
  .every-plan-cards-container
  .every-plan-card
  .every-plan-texts-container
  .every-plan-description-text {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 10px;
  color: #000000;
}
@media screen and (max-width: 800px) {
  .main-container .every-plan-gets-you-section .every-plan-cards-container {
    grid-template-columns: 1fr 1fr;
  }
  .main-container .every-plan-gets-you-section .main-title {
    font-size: 24px;
    font-weight: 500;
  }
}
.company-logos-container {
  margin-top: 30px;
  width: 100%;
  margin-bottom: 20px;
}
.company-logos-container .company-logos-images-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 40px 0px 40px;
}
.company-logos-container .company-logos-images-container .company-logo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-logos-container
  .company-logos-images-container
  .company-logo-image
  img {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .company-logos-container .company-logos-header {
    font-size: 13px;
  }
}
@media (max-width: 705px) {
  .company-logos-container .company-logos-images-container {
    padding: 20px 0;
  }
  .company-logos-container
    .company-logos-images-container
    .company-logo-image
    img {
    width: 140px;
  }
}
@media (max-width: 644px) {
  .company-logos-container
    .company-logos-images-container
    .company-logo-image
    img {
    width: 120px;
  }
}
@media (max-width: 505px) {
  .company-logos-container .company-logos-images-container {
    gap: 20px;
  }
  .company-logos-container
    .company-logos-images-container
    .company-logo-image
    img {
    width: 100px;
  }
}
@media (max-width: 405px) {
  .company-logos-container .company-logos-images-container {
    gap: 10px;
  }
  .company-logos-container
    .company-logos-images-container
    .company-logo-image
    img {
    width: 90px;
  }
}

.free-trial-slider {
  background: linear-gradient(
    90deg,
    #364aff 0%,
    #8c15e9 45.27%,
    #efff31 90.54%
  );
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-bottom: 26px;
  margin-top: 30px;
}

.free-trial-slide-track {
  display: flex;
  width: calc(320px * 28);
  animation: scroll 20s linear infinite;
}

.free-trial-slide-track .slide {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: fit-content;
  width: 320px;
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.free-trial-slide-track .slide .arrow {
  margin-left: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(calc(-320px * 7));
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .free-trial-slide-track {
    width: calc(200px * 28);
    animation: scroll-mobile 20s linear infinite;
  }

  .free-trial-slide-track .slide {
    width: 200px;
    font-size: 12px;
  }

  @keyframes scroll-mobile {
    0% {
      transform: translateX(calc(-200px * 7));
    }
    100% {
      transform: translateX(0);
    }
  }
}

.shopify-plan-effect-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  border: 1px solid #8c15e9;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 20px;
  margin-top: 35px;
  backdrop-filter: blur(4px);
  position: relative;
  transition: all 0.3s ease;
}

.shopify-plan-effect-container.collapsed {
  padding-block: 20px;
  padding-inline: 10px;
  min-height: auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.shopify-plan-effect-container .shopify-plan-effect-header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-weight: 700;
}

.shopify-plan-effect-container.collapsed .shopify-plan-effect-header-container {
  margin: 0;
}

.shopify-plan-effect-container
  .shopify-plan-effect-header-container
  .shopify-plan-effect-header {
  text-transform: uppercase;
  background: linear-gradient(90deg, #364aff 0%, #8c15e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
}

.shopify-plan-effect-container .shopify-plan-effect-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #303030;
  margin-bottom: 12px;
  margin-top: 0;
  transition: all 0.3s ease;
}

.shopify-plan-effect-container .shopify-plan-effect-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.shopify-plan-effect-container .lite-plan-description {
  font-weight: 300;
  font-size: 13px;
}

.shopify-plan-effect-container.collapsed .shopify-plan-effect-description,
.shopify-plan-effect-container.collapsed .shopify-plan-effect-list,
.shopify-plan-effect-container.collapsed .lite-plan-description {
  display: none !important;
}

.shopify-plan-effect-container
  .shopify-plan-effect-list
  .shopify-plan-effect-list-item:nth-child(1)
  .shopify-plan-effect-list-item-title {
  color: #303030;
}

.shopify-plan-effect-container
  .shopify-plan-effect-list
  .shopify-plan-effect-list-item:nth-child(2)
  .shopify-plan-effect-list-item-title {
  color: #364aff;
}

.shopify-plan-effect-container
  .shopify-plan-effect-list
  .shopify-plan-effect-list-item:nth-child(3)
  .shopify-plan-effect-list-item-title {
  color: #8c15e9;
}

.shopify-plan-effect-container .shopify-plan-effect-collapse-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  cursor: pointer;
}

.shopify-plan-effect-container.collapsed
  .shopify-plan-effect-collapse-button-container {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 12px;
}

.shopify-plan-effect-container
  .shopify-plan-effect-collapse-button-container
  button {
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  text-transform: capitalize;
  background: transparent;
  color: #8c15e9;
  border: none;
  cursor: pointer;
  padding: 8px;
  padding-block: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.shopify-plan-effect-container
  .shopify-plan-effect-collapse-button-container
  #arrow-up-icon {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.shopify-plan-effect-container.collapsed
  .shopify-plan-effect-collapse-button-container
  #arrow-up-icon {
  transform: none;
}

.change-or-cancel-any-time {
  font-size: 12px;
  color: #676768;
  font-weight: 500;
  margin-bottom: 12px;
  width: 100%;
  margin-inline: auto;
}

.plan-price-price-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: start;
  gap: 2px;
}
