:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

.noUi-marker.noUi-marker-horizontal.noUi-marker-normal {
  display: none;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.price-slider-container {
  padding: 50px 0;
}

@media (max-width: 599px) {
  main {
    margin-top: 30px !important;
  }

  .noUi-marker.noUi-marker-horizontal.noUi-marker-normal {
    display: block;
  }

  p {
    line-height: 20px;
  }

  .leading-10 {
    line-height: 2rem;
  }
}

@media (max-width: 599px) {
  .price-slider-container {
    padding: 50px 35px;
  }
}

#price-slider {
  height: 10px;

  border: 0;

  border-radius: 5px;
}

#price-slider .noUi-connects {
  border-radius: 5px;
}

#price-slider .noUi-connect {
  background: #ed1c25;
}

#price-slider .noUi-handle {
  right: -11px;

  width: 22px;

  height: 22px;

  border: 0;

  background: #ed1c25;

  border-radius: 11px;

  box-shadow: none;

  cursor: grab;

  outline: none !important;
}

#price-slider .noUi-handle:active {
  cursor: grabbing;
}

#price-slider .noUi-handle:after,
#price-slider .noUi-handle:before {
  display: none;
}

#price-slider .noUi-tooltip {
  bottom: 140%;

  padding: 8px 12px;

  font-size: 16px;

  font-weight: 500;

  color: #fff;

  background: rgb(76, 76, 76);

  border: 0;

  outline: none;
}

#price-slider .noUi-tooltip:focus {
  outline: none;

  outline-width: 0;
}

#price-slider .noUi-tooltip:after {
  content: '';

  display: block;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: -5px;

  border-top: 5px solid rgb(76, 76, 76);

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;
}

.pricing-container {
  padding: 50px 40px 20px;

  border-radius: 26px;

  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);

  text-align: center;

  font-weight: 700;

  color: #1a284c;
}

.pricing-container form[name='periods'] {
  display: flex;

  margin: 0 0 20px;

  padding: 0;

  list-style-type: none;

  justify-content: space-evenly;
}

.pricing-container form[name='periods'] span {
  padding: 10px 20px;

  font-size: 18px;

  border-radius: 5px;

  cursor: pointer;

  opacity: 0.75;

  font-weight: normal;
}

.pricing-container form[name='periods'] input[type='radio'] {
  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;
}

.pricing-container form[name='periods'] input:checked+span {
  background-color: #1a284c;

  opacity: 1;

  font-weight: bold;

  color: #ffffff;
}

.pricing-container .price {
  margin-bottom: 20px;

  font-size: 72px;
}

.pricing-container .price small {
  font-size: 21px;
}

.pricing-container .btn-brand {
  padding: 12px 25px;
}

.pricing-container .perks-list {
  margin: 40px auto 0;

  padding: 0;

  text-align: left;

  list-style-type: none;

  font-size: 12px;

  text-transform: uppercase;
}

.pricing-container .perks-list li {
  margin-bottom: 20px;

  padding: 5px 10px;

  background: #fafafa;

  border-radius: 4px;
}

.pricing-container .disclaimer {
  font-size: 12px;

  line-height: 23px;
}

.pricing-help {
  margin-top: 30px;

  margin-bottom: 10px;
}

.pricing-help-button {
  font-size: 13px;

  background: #e6e6e6;

  line-height: normal;

  color: #1a284c;

  margin-top: 5px;
}

a.pricing-help-button:hover {
  text-decoration: none;

  color: inherit;

  background: #d6d6d6;
}

.style-css-1 {
  position: relative;

  right: -6px;

  z-index: 999;
}

.style-css-2 {
  border-radius: 50px;

  border-left: 0;

  position: relative;

  left: -26px;

  padding-left: 37px;
}

.noUi-value {
  font-size: 16px;
}

#price-slider .noUi-handle {
  outline: none !important;
}

.button-cover {
  margin-right: 20px;
}

.button {
  position: relative;

  width: 180px;

  height: 40px;

  margin: 0 auto;

  background: #ed1c25;
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.checkbox {
  position: relative;

  width: 100%;

  height: 100%;

  opacity: 0;

  cursor: pointer;

  z-index: 9;
}

/* Button 1 */

#button-1 .knobs:before {
  content: '';

  position: absolute;

  top: 4px;

  left: 4px;

  width: 34px;

  height: 32px;

  color: #fff;

  font-size: 10px;

  font-weight: bold;

  text-align: center;

  line-height: 1;

  padding: 9px 4px;

  background-color: #ed1c25;

  border-radius: 50%;

  z-index: 6;

  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#button-1 .checkbox:checked+.knobs:before {
  content: '';

  left: 140px;

  background-color: #fff;
}

.layer {
  border: 1px solid #ed1c25;

  z-index: 1;

  height: 40px;

  width: 180px;

  position: absolute;

  top: 0;

  background-color: white;
}

.layer:before {
  content: 'High-Quality';

  position: relative;

  color: #ed1c25;

  text-align: right;

  top: 8px;

  margin-right: -5px;

  display: block;

  right: 16px;

  text-transform: uppercase;

  font-size: 14px;
}

#button-1 .checkbox:checked~.layer {
  background-color: #ed1c25;
}

#button-1 .checkbox:checked~.layer:before {
  content: 'active';

  position: relative;

  text-align: left;

  color: #fff;

  left: 11px;
}

.follower-heading {
  text-align: center;

  font-size: 26px;

  text-transform: capitalize;

  font-weight: bold;
}

.follower-heading strong {
  font-weight: 600;
}

@media (max-width: 600px) {
  .follower-heading {
    font-size: 18px;
  }

  .button-cover {
    margin-right: 0px !important;
  }
}

.slider {
  /*width: 300px;*/

  /*height: 200px;*/
}

.wrapper {
  /* overflow: hidden; */

  position: relative;

  background: transparent;

  z-index: 10;
}

#items {
  width: 10000px;

  height: 550px;

  position: relative;

  top: 0;

  left: 0px;
}

#items.shifting {
  transition: left 0.2s ease-out;
}

.slide {
  width: 300px;

  /*height: 200px;*/

  cursor: grab;

  /* float: left; */

  /* display: flex; */

  /* flex-direction: column; */

  /* justify-content: center; */

  transition: all 1s;

  position: relative;

  background: transparent;
}

.slide .shadow-lg {
  display: inline-block;

  width: 100%;
}

.control {
  position: absolute;

  top: 50%;

  width: 40px;

  height: 40px;

  background: #fff;

  border-radius: 20px;

  margin-top: -20px;

  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);

  z-index: 2;
}

.prev,
.next {
  background-size: 22px;

  background-position: center;

  background-repeat: no-repeat;

  cursor: pointer;
}

.prev {
  /*background-image: url(ChevronLeft.png);*/

  left: -20px;

  display: none;
}

.next {
  /*background-image: url(ChevronRight-512.png);*/

  right: -20px;

  display: none;
}

.prev:active,
.next:active {
  transform: scale(0.8);
}

.style-css-1 {
  position: relative;

  right: -6px;
}

a.text-white:hover {
  color: #fff !important;
}

a.text-brand:hover {
  color: #ef4471 !important;
}

div#price-slider {
  margin: 90px 0;
}

.price-tab {
  width: 300px;

  margin: 0 auto;
}

.hide-tab {
  display: none;
}

.button-cover #button-1 .knobs:before {
  background-color: #2a5d42 !important;
}

.active-btn {
  background: #ed1c25 !important;

  color: #fff !important;

  z-index: 999;
}

@media (max-width: 599px) {
  #price-slider {
    margin: 90px 30px 50px !important;
  }
}

@media (max-width: 1099px) {
  .text-xss {
    font-size: 0.6em;
  }
}

@media (max-width: 550px) {
  .button-cover {
    margin-right: 0px !important;
  }
}

.#2a5d42-bordered-btn {
  font-weight: 400;

  border: 1px solid #3ac430;

  border-radius: 35px;

  padding: 10px 15px;

  color: #3ac430;

  display: block;

  max-width: 180px;

  font-size: 14px;

  text-transform: uppercase;
}

.#2a5d42-bordered-btn:hover {
  background-color: #ed1c25;

  border: 1px solid #ed1c25;

  color: #ffffff;
}

.button_lineheight {
  line-height: 25px;
}

@media (max-width: 550px) {
  .button_container_div {
    position: relative;

    /* padding-bottom: 50px; */
  }

  .#2a5d42-bordered-btn {
    position: absolute;

    top: 20px;

    margin-top: 40px;

    margin-bottom: 40px;

    left: auto;

    right: auto;
  }

  .button-cover {
    margin-right: 0px !important;
  }
}

.small-text {
  display: inline-block;
}

.saved-price {
  color: #526c79;

  text-transform: capitalize;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  margin: 14px 0;
}

.saved-price span {
  color: #008000;

  margin-left: 5px;
}

.saved-price img {
  width: 29px;
}

.m-0 {
  margin: 0;
}

.m-auto {
  margin: auto;
}

.my-0 {
  margin-top: 0;

  margin-bottom: 0;
}

.my-2 {
  margin-top: 0.5rem;

  margin-bottom: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;

  margin-right: 0.5rem;
}

.my-4 {
  margin-top: 1rem;

  margin-bottom: 1rem;
}

.mx-4 {
  margin-left: 1rem;

  margin-right: 1rem;
}

.my-8 {
  margin-top: 2rem;

  margin-bottom: 2rem;
}

.mx-10 {
  margin-left: 2.5rem;

  margin-right: 2.5rem;
}

.my-12 {
  margin-top: 3rem;

  margin-bottom: 3rem;
}

.mx-auto {
  margin-left: auto;

  margin-right: auto;
}

.-my-2 {
  margin-top: -0.5rem;

  margin-bottom: -0.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.-mr-2 {
  margin-right: -0.5rem;
}

.hide-ul {
  display: none;
}

.extra-wrap ul {
  font-size: 14px !important;
}

span.extra-span {
  font-size: 1rem !important;
}

.fs-1_4 {
  font-size: 1.4rem;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .fs-1_4 {
    font-size: 0.875rem;
  }
}

.price-slider-container {
  padding: 50px 0;
}

@media (max-width: 599px) {
  main {
    margin-top: 30px !important;
  }

  p {
    line-height: 20px;
  }

  .leading-10 {
    line-height: 2rem;
  }
}

@media (max-width: 599px) {
  .price-slider-container {
    padding: 50px 35px;
  }
}

#price-slider,
#price-slider-sub {
  height: 10px;
  border: 0;
  border-radius: 5px;
}

#price-slider .noUi-connects,
#price-slider-sub .noUi-connects {
  border-radius: 5px;
  height: 0.7rem;
  top: -0.28rem;
  left: -0.3rem;
}

.quantity-range {
  border: 5px solid #e2e8f0 !important;
  /* z-index: -1000; */
}

#price-slider .noUi-connect,
#price-slider-sub .noUi-connect {
  background: #f52159;
}

.noUi-handle::after,
.noUi-handle::before {
  z-index: -1;
}

#price-slider .noUi-handle,
#price-slider-sub .noUi-handle {
  right: -11px;
  width: 22px;
  height: 22px;
  border: 0;
  background: #f52159;
  border-radius: 11px;
  box-shadow: none;
  cursor: grab;
  outline: none !important;
  top: -0.7rem;
}

#price-slider .noUi-handle:active,
#price-slider-sub .noUi-handle:active {
  cursor: grabbing;
}

#price-slider .noUi-handle:after,
#price-slider .noUi-handle:before,
#price-slider-sub .noUi-handle:after,
#price-sliderprice-slider-sub .noUi-handle:before {
  display: none;
}

#price-slider .noUi-tooltip,
#price-slider-sub .noUi-tooltip {
  bottom: 140%;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: rgb(76, 76, 76);
  border: 0;
  outline: none;
}

#price-slider .noUi-tooltip:focus,
#price-slider-sub .noUi-tooltip:focus {
  outline: none;
  outline-width: 0;
}

#price-slider .noUi-tooltip:after,
#price-slider-sub .noUi-tooltip:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  border-top: 5px solid rgb(76, 76, 76);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.pricing-container {
  padding: 50px 40px 20px;
  border-radius: 26px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  text-align: center;
  font-weight: 700;
  color: #1a284c;
}

.pricing-container form[name='periods'] {
  display: flex;
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

.pricing-container form[name='periods'] span {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.75;
  font-weight: normal;
}

.pricing-container form[name='periods'] input[type='radio'] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.pricing-container form[name='periods'] input:checked+span {
  background-color: #1a284c;
  opacity: 1;
  font-weight: bold;
  color: #ffffff;
}

.pricing-container .price {
  margin-bottom: 20px;
  font-size: 72px;
}

.pricing-container .price small {
  font-size: 21px;
}

.pricing-container .btn-brand {
  padding: 12px 25px;
}

.pricing-container .perks-list {
  margin: 40px auto 0;
  padding: 0;
  text-align: left;
  list-style-type: none;
  font-size: 12px;
  text-transform: uppercase;
}

.pricing-container .perks-list li {
  margin-bottom: 20px;
  padding: 5px 10px;
  background: #fafafa;
  border-radius: 4px;
}

.pricing-container .disclaimer {
  font-size: 12px;
  line-height: 23px;
}

/* .faqs{position:relative;margin-top:30px;padding:45px 35px;background:#f4f8f9;border-radius:26px;text-align:center;color:#1d3d70}
        .faqs:after{content:"";position:absolute;left:0;bottom:45px;height:30px;width:100%;background:#f4f8f9;background:-webkit-linear-gradient(bottom,#f4f8f9 0,rgba(255,255,255,0) 100%);background:-o-linear-gradient(bottom,#f4f8f9 0,rgba(255,255,255,0) 100%);background:linear-gradient(to top,#f4f8f9 0,rgba(255,255,255,0) 100%)}
        .faqs .title{font-size:30px;font-weight:700}
        .faqs .also-contact{font-size:16px;color:#697690}
        .faqs .also-contact a{color:inherit;text-decoration:underline}
        .faq-cards{max-height:333px;overflow:auto}
        .faq-card{position:relative;padding:20px 30px;text-align:left;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06);border-radius:4px}
        .faq-card:before{content:"+";position:absolute;display:block;font-size:22px}
        .faq-card.expanded:before{content:"-"}
        .faq-card+.faq-card{margin-top:25px}
        .faq-card .question{position:relative;padding-left:20px;margin:0;line-height:35px;font-size:18px;cursor:pointer}
        .faq-card .answer{display:none;margin:0;padding-left:20px;font-size:16px;color:#7393b5;line-height:29px}
        .faq-card.expanded .answer{display:block} */
.pricing-help {
  margin-top: 30px;
  margin-bottom: 10px;
}

.pricing-help-button {
  font-size: 13px;
  background: #e6e6e6;
  line-height: normal;
  color: #1a284c;
  margin-top: 5px;
}

a.pricing-help-button:hover {
  text-decoration: none;
  color: inherit;
  background: #d6d6d6;
}

.style-css-1 {
  position: relative;
  right: -6px;
  z-index: 999;
}

.style-css-2 {
  border-radius: 50px;
  border-left: 0;
  position: relative;
  left: -26px;
  padding-left: 37px;
}

.noUi-value {
  font-size: 16px;
}

#price-slider .noUi-handle {
  outline: none !important;
}

.button-cover {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.button-cover span {
  margin-right: 15px;
  font-weight: 700;
  font-size: 16px;
}

.button-cover .q-mark {
  margin: 0 0 0 10px;
}

.q-mark {
  max-width: 20px;
  cursor: pointer;
}

.button {
  position: relative;
  width: 180px;
  height: 40px;
  margin: 0 auto;
  background: #f52159;
}

.button-cover-subscribe .button {
  width: 120px;
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.checkbox,
.subscription-check {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
}

/* Button 1 */
#button-1 .knobs:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 34px;
  height: 32px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 9px 4px;
  background-color: #f52159;
  border-radius: 50%;
  z-index: 6;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.button-cover .button.r {
  background-color: unset !important;
}

#button-1 .checkbox:checked+.knobs:before,
#button-1 .subscription-check:checked+.knobs:before {
  content: '';
  left: 140px;
  background-color: #fff !important;
}

#button-1 .checkbox:checked+.knobs-sub:before,
#button-1 .subscription-check:checked+.knobs-sub:before {
  left: 62px;
}

.layer,
.layer-sub {
  border: 1px solid #2a5d42 !important;
  z-index: 1;
  height: 40px;
  width: 180px;
  position: absolute;
  top: 0;
  background-color: white;
}

.layer-sub {
  width: 100px;
}

.layer:before {
  content: 'High-Quality';
  position: relative;
  color: #2a5d42;
  text-align: right;
  top: 8px;
  margin-right: -5px;
  display: block;
  right: 16px;
  text-transform: uppercase;
  font-size: 14px;
}

.layer-sub:before {
  content: '';
  margin-right: -4px;
}

#button-1 .checkbox:checked~.layer,
#button-1 .subscription-check:checked~.layer {
  background-color: #2a5d42;
}

#button-1 .checkbox:checked~.layer:before,
#button-1 .subscription-check:checked~.layer-sub:before {
  position: relative;
  text-align: left;
  color: #fff;
  left: 11px;
}

#button-1 .checkbox:checked~.layer:before {
  content: 'Active';
}

#button-1 .subscription-check:checked~.layer-sub:before {
  content: '';
}

.follower-heading {
  text-align: center;
  font-size: 26px;
  text-transform: capitalize;
  font-weight: bold;
}

.follower-heading strong {
  font-weight: 600;
}

@media (max-width: 600px) {
  .follower-heading {
    font-size: 18px;
  }

  .button-cover {
    margin-right: 0px !important;
  }
}

.slider {
  /*width: 300px;*/
  /*height: 200px;*/
}

/* .wrapper {
  overflow: hidden;
  position: relative;
  background: transparent;
  z-index: 1;
} */

#items {
  width: 10000px;
  height: 550px;
  position: relative;
  top: 0;
  left: 0px;
}

#items.shifting {
  transition: left 0.2s ease-out;
}

.slide {
  width: 300px;
  /*height: 200px;*/
  cursor: grab;
  /* float: left; */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center; */
  transition: all 1s;
  position: relative;
  background: transparent;
}

.slide .shadow-lg {
  display: inline-block;
  width: 100%;
}

.control {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
  margin-top: -20px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.prev,
.next {
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.prev {
  /*background-image: url(ChevronLeft.png);*/
  left: -20px;
  display: none;
}

.next {
  /*background-image: url(ChevronRight-512.png);*/
  right: -20px;
  display: none;
}

.prev:active,
.next:active {
  transform: scale(0.8);
}

.style-css-1 {
  position: relative;
  right: -6px;
}

a.text-white:hover {
  color: #fff !important;
}

a.text-brand:hover {
  color: #f52159 !important;
}

div#price-slider,
#price-slider-sub {
  margin: 90px 0;
}

.price-tab {
  width: 300px;
  margin: 0 auto;
}

.hide-tab {
  display: none;
}

.active-btn {
  background: #f52159 !important;
  color: #fff !important;
  z-index: 999;
}

@media (max-width: 1099px) {
  .text-xss {
    font-size: 0.6em;
  }
}

@media (max-width: 550px) {
  .button-cover {
    margin-right: 0px !important;
  }
}

.#2a5d42-bordered-btn {
  font-weight: 400;
  border: 1px solid #f52159;
  border-radius: 35px;
  padding: 10px 15px;
  color: #f52159;
  display: block;
  max-width: 180px;
  font-size: 14px;
  text-transform: uppercase;
}

.#2a5d42-bordered-btn:hover {
  background-color: #f52159;
  border: 1px solid #f52159;
  color: #ffffff;
}

.button_lineheight {
  line-height: 25px;
}

@media (max-width: 550px) {
  .button_container_div {
    position: relative;
    /* padding-bottom: 50px; */
  }

  .#2a5d42-bordered-btn {
    position: absolute;
    top: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    left: auto;
    right: auto;
  }

  .button-cover {
    margin-right: 0px !important;
  }
}

.small-text {
  display: inline-block;
}

/*Start new css*/
.saved-price {
  color: #526c79;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin: 14px 0 27px;
  font-weight: 600;
}

.saved-price span {
  color: #008000;
  margin-left: 5px;
}

.saved-price img {
  width: 23px;
  margin-right: 6px;
}

.price-tab .my-12 {
  margin-bottom: 1rem;
}

.ative-followers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8fdff;
  font-size: 14px;
  border: 1px solid #d9efff;
  padding: 5px 30px;
  max-width: 900px;
  border-radius: 15px;
  color: #4c4c4c;
  width: 50%;
}

.ative-followers li {
  list-style-type: none;
  margin-bottom: 0;
}

.ative-followers li strong {
  font-size: 14px !important;
  font-weight: 700;
}

.ative-followers li p {
  font-size: 14px !important;
  font-weight: 400;
}

.ative-followers li img {
  max-width: 16px;
  margin-right: 5px;
}

.ative-followers li svg {
  width: 15px;
  height: 15px;
  position: relative;
  right: 10px;
  top: 5px;
  background-color: #73deff;
  border-radius: 50%;
  padding: 2px;
}

.tooltip,
.tooltip2 {
  display: inline;
  position: relative;
  cursor: unset;
  color: #171d2d;
  border: none;
}

.tooltip p {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: unset;
  margin-bottom: 10px;
  color: #171d2dba;
}

.tooltip p strong {
  font-size: 14px;
  color: #171d2d;
}

.tooltip:hover {
  color: #171d2d;
}

/* .tooltip-popup,
.tooltip-popup2,
.tooltip-popup3 {
  position: absolute;
  top: -170px;
  left: 10px;
  right: 0;
  z-index: 9999;
  width: 252px;
  background-color: white;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 2.42763px 4.85526px rgba(174, 189, 217, 0.07),
    0 3.23684px 18.6118px rgba(130, 145, 152, 0.19),
    0 5.66447px 19.4211px rgba(65, 71, 79, 0.08);
}

.tooltip-popup .close,
.tooltip-popup2 .close,
.tooltip-popup3 .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
} */

.close-hide-1,
.close-hide-2,
.close-hide-sub {
  display: none;
}

.tooltip2 {
  margin: 10px 0 0 10px;
}

.btn-growth {
  display: inline-flex;
}

.buy-instgram p span {
  display: block;
}

/*Start best values*/
/* .best-value-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        .best-value {
            position: absolute;
            right: 0;
            text-align: center;
            width: calc(49vw + 8px);
        } */
/* .best-value:before, .best-value:after {
            content: "";
            position: absolute;
            top: 0;
            width: 2px;
            height: 100%;
            background-color: #aaa;
        }
        .best-value:before {
            left: 0;
        }
        .best-value:after {
            right: 0;
        }
        .best-value div {
            position: relative;
            display: block;
        }
        .best-value div span {
            display: inline-block;
            background: #f7fafc;
            padding: 0px 10px;
            color: #ff6a52;
        }
        .best-value div:before {
            content: "";
            position: absolute;
            top: 9px;
            z-index: -1;
            left: 0;
            right: 0;
            width: 100%;
            height: 8px;
            background-color: #fafafa;
            border-top: 2px solid #f2f2f2;
        }
        .best-value-wrapper {
            display: none !important;
        }
        @media(max-width: 1300px) {
            .best-value {
                width: calc(49vw + 39px);
            }
        }
        @media(max-width: 1200px) {
            .best-value {
                width: calc(49vw + 46px);
            }
        }
        @media(max-width: 992px) {
            .best-value {
                width: calc(49vw + 33px);
            }
        }
        @media(max-width: 768px) {
            .best-value {
                width: calc(49vw + 20px);
            }
        } */

@media (max-width: 800px) {
  .ative-followers {
    padding: 10px 14px;
    font-size: 12px;
  }

  .ative-followers li img {
    max-width: 12px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .button_container_div {
    display: block;
  }

  .button-cover {
    align-items: center;
    margin: 22px auto;
    justify-content: center;
    text-align: center;
  }

  .button-cover-subscribe {
    padding-left: 44px;
    width: calc(100% - 0px);
  }

  .button-cover .button {
    margin: 0;
  }

  .button-cover-subscribe .button {
    width: 180px;
  }

  .layer-sub {
    width: 180px;
  }

  #button-1 .checkbox:checked+.knobs-sub::before,
  #button-1 .subscription-check:checked+.knobs-sub::before {
    left: 140px;
  }

  #price-slider-sub {
    width: 75% !important;
    margin: 90px auto !important;
  }
}

@media (max-width: 600px) {
  #price-slider-sub {
    margin: 30px auto !important;
  }

  .ative-followers {
    max-width: 270px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .ative-followers li {
    margin-bottom: 10px;
    margin: 0px 10px;
    /*width: 100%;*/
  }
}

@media (max-width: 599px) {

  /* .best-value {
                width: calc(35vw + 15px);
                font-size: 13px;
            } */
  /* .best-value-wrapper {
                width: 74%;
                margin: 0 auto;
                display: flex;
                justify-content: end;
            } */
  div#price-slider {
    width: 75% !important;
    margin: 90px auto 30px !important;
  }
}

@media (max-width: 576px) {
  .button_container_div {
    position: relative;
    /* padding-bottom: 50px; */
    flex-wrap: wrap;
  }

  .#2a5d42-bordered-btn {
    position: relative;
    top: 0;
    height: 40px;
    line-height: 40px;
  }

  .button-cover {
    margin-right: 0px !important;
  }

  .btn-growth {
    margin-left: 10px;
  }

  .buy-instgram p span {
    display: inline;
  }
}

@media (max-width: 460px) {
  .btn-growth {
    display: inline-flex;
    margin-top: 20px;
  }

  .#2a5d42-bordered-btn {
    top: 0;
  }
}

@media (max-width: 400px) {

  /* .best-value {
                width: calc(35vw + 7px);
            } */
  .tooltip:hover::before {
    bottom: 32px !important;
  }

  .tooltip:hover::after {
    right: -12px !important;
    left: auto !important;
  }

  .tooltip2:hover::before {
    bottom: 26px !important;
  }

  .button {
    width: 160px;
  }

  .button-cover {
    font-size: 14px;
    padding-left: 0;
  }

  .button-cover span {
    margin-right: 8px;
  }

  .layer,
  .layer-sub {
    width: 90px;
  }

  .button-cover-subscribe .button {
    width: 100px;
  }

  #button-1 .checkbox:checked+.knobs::before {
    left: 123px;
  }

  .button_container_div .button-cover:first-of-type span {
    font-size: 14px;
    max-width: 66px;
  }

  #button-1 .checkbox:checked+.knobs-sub::before,
  #button-1 .subscription-check:checked+.knobs-sub::before {
    left: 50px;
  }
}

.hide-ul,
.hide-price,
.hide-sub {
  display: none;
}

/* Dropdown Style */

.select {
  line-height: 2rem !important;
  border: 1px solid #ccc;
}

.price-dropdown {
  width: 50%;
}

@media (min-width: 320px) and (max-width: 599px) {
  .price-dropdown {
    width: 100%;
  }

  .filter-option-inner .filter-option-inner-inner {
    font-size: 12px !important;
  }
}

.filter-option-inner-inner.instagram {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/instagram-512-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.facebook {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/social-facebook-2019-circle-512-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.linkedin {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/linkedin-circle-1868976-1583140-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.twitter {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/twitter_circle-512-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.youtube {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/social_33_384-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.tiktok {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/5cb78671a7c7755bf004c14b-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.soundcloud {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/58e91984eb97430e819064f9-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.spotify {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/spotify-512-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.twitch {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/twitch-512-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.clubhouse {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/club-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.pinterest {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/social-pinterest-circle-2-512-24x24-1.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.discord,
.filter-option-inner-inner.monthly {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/discord-logo-logodownload-download-logotipos-1-24x24-1.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.onlyfans {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/21cf2d3142d621c1c67650e388075d37-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.reviews,
.filter-option-inner-inner.google,
.filter-option-inner-inner.trustpilot,
.filter-option-inner-inner.tripadvisor,
.filter-option-inner-inner.bbb,
.filter-option-inner-inner.yelp {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/image-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.telegram {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/telegram-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.quora {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/quora-24x24-1.webp);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.reddit {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/reddit-24x24-1.webp);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.snapchat {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/snapchat-24x24-1.webp);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.website-traffic {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/website-24x24-1-24x24.png);
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.audiomack {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/08/32.png);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.tidal {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/09/tidal.png);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.tumblr {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/09/tumblr.png);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner.vimeo {
  padding: 0.2em 0em 0.2em 2em;
  background-image: url(https://sidesmedia.com/wp-content/uploads/2022/09/vimeo.png);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: 0.4em center;
  font-size: 1.3em;
}

.filter-option-inner-inner,
.dropdown-item .text {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.extra-wrap svg,
span.extra-span,
.extra-wrap ul {
  position: unset !important;
}

/*css for fix after adding bootstrap*/

@media (max-width: 768px) {
  .md\:w-2\/3.text-left.px-4.table {
    margin: 0;
  }

  .dropdown.bootstrap-select.w-50 {
    width: 100% !important;
  }
}

.rounded.bg-gray-200 {
  font-weight: 700;
}

.ative-followers {
  max-width: 1080px;
}

.ative-followers li svg {
  vertical-align: unset;
}

.extra-wrap {
  border-color: #b67929 !important;
  max-width: 1080px !important;
}

.filter-option-inner-inner {
  font-size: 1.2rem !important;
}

.price-tab a {
  text-decoration: unset;
}

/*Product page*/
.main-d {
  padding-top: 20px;
  font-family: "source sans pro", sans-serif;
}

.main-d h2.tracking-tight.leading-10.font-semibold.text-gray-900 {
  font-size: 34px;
  margin-top: 0px;
  margin-bottom: 12px;
}

.main-d .product-subtext {
  font-size: 20.4px;
  margin-bottom: 35px;
}

.main-d h1.rounded.bg-gray-200.inline.text-sm.small-text {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  background-color: #edf2f7;
  margin-bottom: 25px;
  margin-top: 0px;
}

.main-d .card.p-1.border-0.mx-3 {
  padding: 5px 8px !important;
  box-shadow: 0 0 10px #d1d1d1 !important;
  border-radius: 7px;
  font-weight: 500;
  margin-bottom: 25px;
}

.main-d .monet_wrap {
  max-width: 313px;
}

.main-d .nav-link {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 6px !important;
}

.main-d button.btn.dropdown-toggle.btn-light {
  border-radius: 5px;
}

.main-d .option-text {
  font-size: 14px !important;
  font-weight: 600;
}

.buy-bt {
  padding: 12px 20px;
}

span.discount.p-2 {
  padding: 8px !important;
  color: #000;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  display: table;
  margin: 0 auto 16px;
}

@media (max-width: 599px) {
  .main-d {
    margin-top: 30px !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-d h2.tracking-tight.leading-10.font-semibold.text-gray-900 {
    font-size: 26px;
    letter-spacing: -1.8px;
  }

  .main-d .product-subtext {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 25px;
  }

  .main-d button.btn.dropdown-toggle.btn-light {
    height: 48px;
    padding: 1px 10px;
  }
}




/* New Css */

div#high-quality-card,
div#premium-card,
div#influencer-card {
  max-width: 345px;
  margin: 10px auto 0 auto;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.card-w {
  max-width: 345px;
  margin: 20px auto;
}

.tabs {
  padding: 5px 8px !important;
  box-shadow: 0 0 10px #d1d1d1 !important;
  border-radius: 7px;
  font-weight: 500;
  margin-bottom: 25px;
  width: 263px;
  height: 48px;
}

.flex {
  display: flex !important;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.item-center {
  align-items: center;
}

.content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between !important;
}

/* new style */
.mx-auto {
  margin: 0px auto;
}

.btns-style {
  padding: 5px 5px !important;
  box-shadow: 0 0 10px #d1d1d1 !important;
  border-radius: 7px;
  font-weight: 500;
  margin-bottom: 10px;
  width: 263px;
  height: 55px;
  display: flex;
  justify-content: center;
}

.tab-button,
.tab-button:hover {
  font-size: 14px;
  border-radius: 6px !important;
  line-height: 0;
  background-color: #fff;
  width: 123.5px;
  border: 0;
  font-weight: 500;
  color: #000;
  padding: 16px 12px;
  cursor: pointer;
}

.tab-button:hover {
  background-color: #fff !important;
}

.tab-button.active {
  background-color: var(--bg-brand-color) !important;
  /* Active button highlight */
  color: #fff;
}

.card ul {
  list-style: none !important;
  margin: 0 !important;
}

.pkg-details {
  margin-top: 20px;
  margin-bottom: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main_top_section_buy_page .card:not(.active) {
  display: none !important;
  /* padding: 34px 30px; */
  background-color: #fbfbfb;
}

.main_top_section_buy_page .card.active {
  display: block;
  background-color: #fbfbfb;
  text-align: left !important;
}

.icon-style {
  margin-right: 10px;
  font-size: 14px;
}

select {
  border: 1px solid var(--bg-brand-color);
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 600;
  font-family: sans-serif;

  position: relative;
  width: 100%;
  /* text-align: right; */
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

option {
  font-size: 18px !important;
  /* Bigger font size for options */
  font-weight: 400 !important;
  /* Normal font weight for options */
  overflow-y: auto;
  max-height: 107px;
}

.custom-select {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  font-family: sans-serif;
}

.custom-select .selected-option {
  padding: 10px 16px;
  border: 1px solid var(--bg-brand-color);
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  /* Ensures text and arrow are on opposite ends */
  align-items: center;
  color: #333;
}

.custom-select .selected-option .arrow {
  transition: transform 0.3s ease;
}

.custom-select ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid rgb(207, 207, 207);
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  display: none;
  z-index: 1000;
}

.custom-select li {
  display: block;
  padding: 0.33rem 1rem;
  clear: both;
  font-weight: 400;
  font-size: 17px;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.custom-select li:hover {
  /* background-color: #0d6efd; */
  background-color: #e2e8f0;
}

.buy-button {
  display: block;
  background-color: var(--bg-brand-color);
  color: #fff !important;
  padding: 14px 20px;
  /* width: 100%; */
  border: 0px;
  font-size: 14px;
  border-radius: 0.375rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.discount {
  margin: 0 auto;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #ffe1a8;
  color: var(--e-global-color-d6cea4e);
  border-radius: 0 0 10px 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.discount-text {
  padding: 8px !important;
  color: #000;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  display: table;
  margin: 0 auto 16px;
}

.custom-select li.selected {
  background-color: #0d6efd;
  /* Green background for selected item */
  color: white;
  /* Optional: change text color for contrast */
}

.pos-rel {
  position: relative !important;
}

.tooltip-btn {
  /* position: absolute;
  top: 30px;
  right: 290px; */
  transform: translate(-50%, -50%);
  border-bottom: 1px dashed #000;
  font-family: sans-serif;
  cursor: pointer;
}

.tooltip-popup3 {
  position: absolute;
  top: -170px;
  right: 8%;
  z-index: 9999;
  width: 252px;
  /* height: 385px; */
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 2.42763px 4.85526px rgba(174, 189, 217, 0.07),
    0 3.23684px 18.6118px rgba(130, 145, 152, 0.19),
    0 5.66447px 19.4211px rgba(65, 71, 79, 0.08);
}

.tooltip p {
  margin: 0;
  font-family: sans-serif;
  color: #333;
}

.description {
  font-size: 15px;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5em;
}

.tooltip strong {
  font-weight: bolder;
  line-height: 2rem;
  letter-spacing: 0.3px;
}

.insta-img {
  width: 12px;
  margin-right: 5px;
}

/* @media (max-width: 500px) {
  .tooltip-btn {
    position: absolute;
    top: 30px;
    right: 0;
    transform: translate(-50%, -50%);
    border-bottom: 1px dashed #000;
    font-family: sans-serif;
    cursor: pointer;
  }
} */

.ml-10 {
  display: inline-block;
  border: 2px solid red !important;
  padding-left: 60px !important;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }

  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

.container {
  margin: auto;
  max-width: var(--max-container-width);
}
/* boost presence */
.instagram-presence{
 padding: 30px 0px 30px 0px;
 
}
.button-fields{
 width: 280px;
 border-radius: 5px;
 font-size: 16px;
  background-color: #b67929;
  color: white;
 margin: 4px;
  padding: 8px 40px 8px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.button-fields:hover {
 color: white;
  background-color: #b67929;
}