@import "../common/common.css";
@import "header.css";
@import "sales-channels.css";
/* Poppins loaded via <link> tag in head.html for better parallelism */

body {
  font-family: "Open Sans", sans-serif;
  color: var(--black)-color;
}

a {
  color: var(--black);
}

a:focus-visible {
  outline-color: var(--main-blue);
}

a:hover {
  color: var(--main-blue);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
  color: var(--dark-blue);
  font-weight: 600;
}

h1,
.h1 {
  font-size: 2em;
}

h2,
.h2 {
  font-size: 2em;
}

@media (min-width: 576px) {
  h1,
  .h1 {
    font-size: 2.25em;
  }
}

h1 span {
  font-size: 60%;
  font-weight: 600;
  display: block;
}

.w-40 {
  width: 40% !important;
}

.w-30 {
  width: 30% !important;
}

.w-20 {
  width: 20% !important;
}

p,
p.h5 {
  line-height: 1.8;
}

p,
li,
.list-group-item {
  color: var(--text-color);
}

hr {
  background-color: var(--border-color);
  opacity: 1;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 576px) {
  .py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.table-padding > * > * > * {
  padding: 0.65rem 1rem !important;
}

.border,
.border-top,
.border-left,
.border-right,
.border-botton {
  border-color: var(--border-color) !important;
}

/* Create store form */
@media (max-width: 576px) {
  .header .start-store,
  .create-store-form .btn,
  .mob-w-100 {
    width: 100%;
    border-radius: 0.3rem !important;
    margin-left: 0px !important;
    justify-content: center;
  }
}

/* Sections */
section.w-animation {
  overflow: hidden;
}

@media (max-width: 576px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

section h2.block-title {
  margin-bottom: 1.85rem;
}

section.columns-2-section .btn {
  min-width: 300px;
}

section .section-heading {
  margin-bottom: 3em;
}

section.header {
  background-image: url("/images/common/bg_pages_header.svg");
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 3rem 1rem;
  margin-bottom: 2rem;
}

section.header > *,
section.header li,
section.header h1,
section.header .h1,
section.header h2,
section.header p a {
  color: var(--white);
  font-weight: 600;
}

section.header h2 {
  font-size: 1.375em;
  font-weight: normal;
}

section.header span {
  color: var(--white);
  margin-top: 1.5em;
}

/* Testimonials */
.testimonials-container {
  border-radius: 14px;
}

.testomonial-info {
  position: relative;
  padding: 7px 0 0 75px;
  min-height: 60px;
}

.testimonial-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}

.tesmimonial-quote {
  line-height: 1.8;
}

/* Landing pages */
.landing-page .section-hero h2 {
  font-size: 1.375em;
  font-weight: normal;
}

/* FAQ */
.accordion-faq .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #f5f9fc;
  background-color: #fcfeff;
  border-radius: 0.25rem !important;
}

.accordion-faq .accordion-button {
  background-color: #fcfeff;
  color: #323232;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25em 1.5em;
  border-radius: 5px;
}

.accordion-faq .accordion-body {
  padding: 1.25em 1.5em;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-blue-1);
  color: var(--text-color);
}

.accordion-faq .accordion-body a {
  color: #333333;
  text-decoration: underline;
}

.accordion-faq .accordion-body a:hover {
  color: #111111;
}

.bg-dark-blue a,
.bg-green h5 {
  color: white;
}

.bg-waves {
  background-image: url("/images/common/bg-waves.svg");
  background-position: center;
  background-size: cover;
  min-height: 600px;
}

/* Lists */
.bullet-list li {
  position: relative;
  padding: 8px 0px 8px 35px;
}

.bullet-list li:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: var(--light-blue-2);
}

.bullet-list li:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 0;
  background-image: url(/images/common/check-vivid-blue.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: 50%;
}

/* Dropdown */
.dropdown-menu {
  top: 62px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 1em;
  width: 100%;
  border-radius: 3px;
}

.dropdown-menu small {
  text-transform: none;
}

.dropdown-menu-shadow {
  box-shadow: 0px 52px 42px 11px rgb(0 0 0 / 5%);
}

.dropdown-menu a.dropdown-item {
  font-weight: 600;
  color: var(--black);
  font-size: 0.725em;
}

a.dropdown-item:hover {
  background-color: var(--light-blue-1);
  transition: background-color 0.5s;
}

/* Custom Cards */
.custom-card {
  position: relative;
}

.custom-card_description {
  font-size: 15px;
  line-height: 1.8;
}

.custom-card img {
  width: 70%;
}

.custom-card_img-full {
  width: 100%;
  height: 110px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.custom-card_img-container {
  width: 170px;
  height: 50px;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-card_img-container[style*="gateway_epayco.svg"] {
  width: 200px;
  height: 60px;
  margin-bottom: 14px !important;
}

.custom-card_img-container span {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--light-blue-1);
  max-width: 50%;
}

.custom-card_img-container[title="Yape"] {
  height: 70px !important;
  margin-bottom: 5px !important;
}

.custom-card_links {
  background-color: var(--light-blue-1);
}

.custom-card_links .custom-card_links-link {
  display: inline-block;
  color: var(--main-blue);
  padding: 0 1em;
  border-right: 1px solid var(--border-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.custom-card_links .custom-card_links-link:last-child {
  border: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .custom-card_links .custom-card_links-link {
    padding: 0 1.5em;
  }
}

.custom-card_links .custom-card_links-link:hover {
  text-decoration: underline;
}

.app-category:last-child {
  border-bottom: 0 !important;
}

/* Section headers */
.section-hero_gradient {
  background: rgb(10, 37, 64);
  background: linear-gradient(
    90deg,
    rgba(10, 37, 64, 1) 0%,
    rgba(29, 73, 126, 1) 100%
  );
  position: relative;
  padding-bottom: 3rem;
}

.section-hero_gradient.theme-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 991px) {
  .section-hero_with-blocks {
    position: relative;
    padding-bottom: 120px;
  }
}

.info-blocks {
  position: relative;
  margin-top: -8em;
}

.section-hero_hero-block_1 {
  background-color: var(--strong-violet);
}

.section-hero_hero-block_2 {
  background-color: var(--vivid-blue);
}

.section-hero_hero-block_3 {
  background-color: var(--violet);
}

.section-hero_hero-block h5 {
  min-height: 2.5em;
}

.section-hero_gradient h1,
.section-hero_gradient h2,
.section-hero_gradient .h4,
.section-hero_gradient p,
.section-hero_gradient a,
.section-hero_gradient span,
.section-hero_gradient strong,
.section-hero_hero-block p,
.section-hero_hero-block h5,
.section-hero_hero-block span,
.section-hero_hero-block strong,
.section-hero_gradient ul li,
.section-hero_gradient ul li a,
.section-hero_gradient .text-muted,
.theme-swatches {
  color: var(--white);
}

.section-hero_gradient .showcase-pill.active::before {
  border-color: var(--white);
}

.section-hero .section-hero_subheading {
  font-size: 1.375em;
  font-weight: 400;
}

.highlight-content {
  border-radius: 0.25em;
}

.highlight-content h2 {
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 1em;
}

.fs-12 {
  font-size: 0.75em;
}

.fs-14 {
  font-size: 0.875em !important;
}

/* Hover box animation */
@media (min-width: 769px) {
  .hover-box {
    position: relative;
    top: 0;
    transition: top 0.25s;
  }

  .hover-box:hover {
    top: -8px;
  }
}

/* Create store modal */
#createStoreModal .form-label {
  color: var(--main-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}

#createStoreModal i.fa-circle-info {
  color: #414f62;
}

#createStoreModal .form-control {
  border: 1px solid #e6eaef;
  border-radius: 3px;
  padding: 0.9em 1em;
  color: var(--main-blue);
  font-size: 0.935em;
}

#createStoreModal .form-control:focus,
#createStoreModal .form-check-input:focus,
#createStoreModal .form-check-input:checked {
  border-color: #acb0b4;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#createStoreModal .is-valid {
  border-color: #198754;
}

#createStoreModal .is-valid:focus {
  border-color: #198754;
  outline: #19875440 solid 2px;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px #19875440;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px #19875440;
}

#createStoreModal .is-invalid {
  border-color: #dc3545;
}

#createStoreModal .is-invalid:focus {
  border-color: #dc3545;
  outline: #dc354540 solid 2px;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px #dc354540;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px #dc354540;
}

#create-store-modal-form-continue:focus,
#create-store-modal-form-submit:focus,
#create-store-button:focus {
  border-color: #a6c544;
  outline: #a6c54440 solid 2px;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px #a6c54440;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px #a6c54440;
}

.create-store-btn-locked {
  opacity: 40% !important;
}

#createStoreModalLabel {
  color: var4(--white);
}

/*REMOVE*/
.modal-backdrop.show {
  opacity: 1;
  background-color: var(--main-blue);
}

#createStoreModalLabel,
#createStoreModal label {
  color: var(--label-text-color);
}

#createStoreModal .modal-dialog-centered {
  justify-content: center;
}

#createStoreModal .modal-body {
  padding-right: 32px !important;
  padding-left: 32px !important;
  padding-top: 0px !important;
  max-width: 455px;
  /*This can be removed if desired*/
}

#createStoreModal button:has(.fa-xmark) {
  color: #e3e7ec;
}

#createStoreModal h2 {
  font-weight: 700;
  line-height: 1.25;
}

#createStoreModal h2,
#createStoreModal label,
#createStoreModal a {
  color: var(--main-blue);
}

#createStoreModal p {
  color: #52627a;
  margin-top: -0.5rem;
}

#createStoreModal input {
  color: #64748b;
}

#createStoreModal form input.form-control {
  line-height: 1;
  padding: 0.9em 1em;
  color: var(--main-blue);
}

.store-name-tooltip > .tooltip-inner {
  background-color: #414f62;
}

.store-name-tooltip.bs-tooltip-bottom > .tooltip-arrow::before,
.store-name-tooltip.bs-tooltip-auto[data-popper-placement^="bottom"]
  > .tooltip-arrow::before {
  border-bottom-color: #414f62;
}

.store-name-tooltip.bs-tooltip-top > .tooltip-arrow::before,
.store-name-tooltip.bs-tooltip-auto[data-popper-placement^="top"]
  > .tooltip-arrow::before {
  border-top-color: #414f62;
}

.store-name-tooltip.bs-tooltip-start > .tooltip-arrow::before,
.store-name-tooltip.bs-tooltip-auto[data-popper-placement^="left"]
  > .tooltip-arrow::before {
  border-left-color: #414f62;
}

.store-name-tooltip.bs-tooltip-end > .tooltip-arrow::before,
.store-name-tooltip.bs-tooltip-auto[data-popper-placement^="bottom"]
  > .tooltip-arrow::before {
  border-right-color: #414f62;
}

.create-store-form-progress {
  width: 44px;
  height: 6px;
  top: 20px;
  margin-left: 3.5px;
  margin-right: 3.5px;
  border-width: 0px;
}

.btn-pre-onboarding-back,
.btn-pre-onboarding-back:not(.active) {
  border-color: #e3e7ec !important;
  background-color: var(--white) !important;
  color: #9eadb8 !important;
  padding: 0px 18px;
  font-size: 18px;
  line-height: 1;
  border-radius: 5px;
}

.btn-pre-onboarding-back:hover,
.btn-pre-onboarding-back:active,
.btn-pre-onboarding-back.active,
.btn-pre-onboarding-back:focus {
  border-color: #e3e7ec !important;
  background-color: #e3e7ec !important;
  color: var(--white) !important;
}

#createStoreModal .form-check .form-check-label {
  color: var(--main-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 0.935em;
}

#createStoreModal .form-check-input {
  border-radius: 3px !important;
  height: 20px;
  width: 20px;
  margin-right: 16px;
}

#createStoreModal .form-check-input:checked {
  background-color: var(--main-green);
}

#createStoreModal .form-check-input:focus {
  border-color: #acb0b4;
}

#createStoreModal select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background-position: calc(100% - 16px) center !important;
  background: url('data:image/svg+xml,<svg width="18" height="12" viewBox="0 0 11 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.75 6.25C5.5581 6.25 5.3661 6.17676 5.21985 6.03027L0.719849 1.53027C0.42688 1.2373 0.42688 0.762695 0.719849 0.469727C1.01282 0.176758 1.48743 0.176758 1.7804 0.469727L5.75 4.44062L9.72032 0.470312C10.0133 0.177344 10.4879 0.177344 10.7809 0.470312C11.0738 0.763281 11.0738 1.23789 10.7809 1.53086L6.28086 6.03086C6.13438 6.17734 5.94219 6.25 5.75 6.25Z" fill="black"/></svg>')
    no-repeat;
  padding: 8px 32px 8px 16px;
}

.radio-form input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #acb0b4;
  border-radius: 50%;
  background-clip: content-box;
  padding: 1px;
  margin-top: -3px;
  vertical-align: middle;
}

.radio-form input[type="radio"]:checked {
  background-color: #9cbb4a;
}

.radio-form label {
  margin-left: 15px;
  font-size: 0.935em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.color-scheme-form {
  padding-left: 10px;
}

/* Information blocks */
.info-section img {
  max-width: 300px;
}

/* Contact box */
.social-circle {
  width: 70px;
  height: 70px;
  font-size: 2em;
  margin-top: -80px;
  color: var(--white);
}

/* Partners */
.partner {
  text-indent: -9999px;
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat !important;
  padding: 2rem 0rem;
}

.free-trial .partner {
  background-size: 80%;
}

.partner-facebook {
  background-image: url("/images/logos/integrations/facebook-business.svg");
}

.partner-google {
  background-image: url("/images/logos/integrations/google-partner.svg");
}

.partner-instagram {
  background-image: url("/images/logos/integrations/instagram.svg");
}

.partner-ig {
  background-image: url("/images/logos/integrations/instagram.svg");
}

.partner-whatsapp {
  background-image: url("/images/logos/integrations/whatsapp.svg");
}

.partner-mercadolibre {
  background-image: url("/images/logos/integrations/mercadolibre.svg");
}

.partner-mercadolivre {
  background-image: url("/images/logos/integrations/mercadolivre.svg");
}

.partner-mercadopago {
  background-image: url("/images/logos/payment/mercadopago.svg");
}

.partner-yape {
  background-image: url("/images/logos/payment/yape.svg");
}

.partner-olva {
  background-image: url("/images/logos/shipping/olva.svg");
}

.partner-sibs {
  background-image: url("/images/logos/payment/sibs.svg");
}

.partner-olx {
  background-image: url("/images/logos/integrations/olx.svg");
}

.partner-dpd {
  background-image: url("/images/logos/shipping/dpd.svg");
}

.partner-dhl {
  background-image: url("/images/logos/shipping/dhl.svg");
}

.partner-klarna {
  background-image: url("/images/logos/payment/klarna.svg");
}

.partner-entel {
  background-image: url("/images/logos/integrations/entel.svg");
}

.partner-correosdechile {
  background-image: url("/images/logos/shipping/correosdechile.svg");
}

.partner-melhorenvio {
  background-image: url("/images/logos/shipping/melhorenvio.svg");
}

.partner-transbank {
  background-image: url("/images/logos/integrations/transbank.svg");
}

.partner-bancolombia {
  background-image: url("/images/logos/integrations/bancolombia.svg");
}

.partner-bsale {
  background-image: url("/images/logos/integrations/bsale.svg");
}

.partner-moloni {
  background-image: url("/images/logos/integrations/moloni.svg");
}

.partner-stripe {
  background-image: url("/images/logos/integrations/stripe.svg");
}

.partner-aliexpress {
  background-image: url("/images/logos/integrations/aliexpress.svg");
}

.partner-paypal {
  background-image: url("/images/logos/payment/paypal.svg");
}

.partner-izipay {
  background-image: url("/images/logos/payment/izipay.svg");
}

.partner-pagbank {
  background-image: url("/images/logos/payment/pagbank.svg");
}

.partner-pix {
  background-image: url("/images/logos/payment/pix.svg");
}

.partner-ctt {
  background-image: url("/images/logos/shipping/ctt.svg");
  background-size: 35% !important;
}

.partner-correosexpress {
  background-image: url("/images/logos/shipping/correos-express.svg");
}

.partner-correos {
  background-image: url("/images/logos/shipping/correos.svg");
}

.partner-bizum {
  background-image: url("/images/logos/payment/bizum.svg");
}

.partner-flow {
  background-image: url("/images/logos/payment/flow.svg");
}

.partner-kuantokusta {
  background-image: url("/images/logos/integrations/kuantokusta.svg");
  background-size: 80% !important;
}

.partner-falabella {
  background-image: url("/images/logos/integrations/falabella.svg");
  background-size: 80% !important;
}

@media (min-width: 991px) and (max-width: 1200px) {
  .partner {
    background-size: 80%;
  }

  .free-trial .partner {
    background-size: 60%;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .partner {
    background-size: 60%;
  }
}

.contact-page .form-control,
.contact-page .form-select,
#inquiry-form .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.375rem;
  box-shadow: 0 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0.8125rem 1.25rem;
}

.contact-page .form-control:focus,
.contact-page .form-select:focus {
  border-color: #86b7fe !important;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

/* Shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1,
.shape-3 {
  left: 0;
}

.shape-2 {
  right: 0;
}

.over-shape {
  z-index: 2;
  position: relative;
}

@media (min-width: 768px) {
  .shape {
    width: 70%;
  }

  .shape-1 {
    top: -15%;
  }

  .shape-2 {
    top: -80%;
  }

  .shape-3 {
    top: -15%;
  }
}

@media (min-width: 1200px) {
  .shape {
    width: 50%;
  }
}

@media (min-width: 1400px) {
  .shape-1 {
    width: 50%;
  }

  .shape-2 {
    top: -160%;
    width: 65%;
  }
}

@media (max-width: 767px) {
  .shape {
    width: 70%;
  }

  .shape-1 {
    top: 30%;
  }

  .shape-2 {
    top: -20%;
  }

  .shape-3 {
    top: 30%;
  }
}

@media (max-width: 576px) {
  .shape {
    width: 90%;
  }
}

.home-container section {
  z-index: 2;
  position: relative;
}

a.icon-block {
  text-decoration: none;
}

.icon-block .icon-block_icon {
  width: 20%;
  height: 150px;
  font-size: 3em;
  text-align: center;
  vertical-align: middle;
  line-height: 150px;
  color: #fff;
}

.icon-block .icon-block_info {
  width: 70%;
}

@media (max-width: 576px) {
  .icon-block .icon-block_icon {
    width: 100%;
    height: 100px;
    line-height: 100px;
    display: block;
  }

  .icon-block .icon-block_info {
    width: 100%;
  }
}

.icon-block p {
  margin: 0;
}

/* Vertical icon block */
.icon-block-vertical .icon-block_icon {
  width: 100%;
  font-size: 3em;
  text-align: center;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.icon-block-vertical p {
  margin: 0;
}

/* Webinars */
.webinars article {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: space-between;
}

/* About */
.about-data .icon-block .icon-block_icon {
  width: 30%;
}

.about-data .icon-block .icon-block_info {
  width: 60%;
}

@media (max-width: 991px) {
  .about-data .icon-block .icon-block_icon {
    width: 100%;
    height: 100px;
    line-height: 100px;
    display: block;
  }

  .about-data .icon-block .icon-block_info {
    width: 100%;
  }
}

.team-images .team-image img {
  filter: gray;
  -webkit-filter: grayscale(1);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.team-images .team-image img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}

.team-images .team-title {
  min-height: 80px;
}

.team-images .team-circle {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  filter: grayscale(1);
  transition: filter 0.5s;
  background-position: top;
}

.team-images .team-member:hover .team-circle {
  filter: none;
  -webkit-filter: grayscale(0);
}

#offices .map .flag {
  display: flex;
  display: -ms-flexbox !important;
  justify-content: center;
  -ms-flex-pack: center !important;
  margin-top: -35px;
  z-index: 9000;
  position: relative;
}

#offices .map .flag img {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 100px;
  border: 3px solid white;
  filter: grayscale(1);
  transition: filter 5s;
}

#offices .map:hover .flag img {
  filter: grayscale(0);
}

.fulfillments-list img {
  max-width: 200px;
}

/* Features Blocks */
.features_block {
  position: relative;
}

.features_block .features_feature-content {
  position: relative;
  z-index: 2;
  padding-left: 65px;
}

.features_feature-icon {
  display: flex;
  position: absolute;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 0;
  font-size: 1.5em;
  color: var(--main-blue);
  border: 1px solid var(--main-blue);
  background-color: transparent;
  left: 0px;
  top: 0px;
  transition:
    background-color 0.5s,
    color 0.5s;
}

.features_block:hover .features_feature-icon {
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--main-blue);
  left: 0px;
  top: 0px;
}

/* Professionals */
.professional-block {
  text-decoration: none;
}

.professional-block:hover {
  cursor: pointer;
  text-decoration: none;
}

.professional-info li {
  position: relative;
}

.professional-info li:not(:last-child) {
  margin-bottom: 0.5em;
}

.professional-info li span {
  display: inline-block;
  width: 25px;
  position: absolute;
  left: 0;
  top: 0;
}

.professional-info li a,
.professional-info li div {
  padding-left: 25px;
}

.professional-block h5 a {
  text-decoration: none;
}

.professional-block_img-container {
  overflow: hidden;
  border-radius: 0.25em;
}

.professional-block_name-container {
  min-height: 7em;
}

.professional-block_box {
  min-height: 11rem;
}

.professional-recommended .owl-stage-outer {
  padding-top: 1em;
}

.custom-badge {
  font-size: 0.75em;
  margin-bottom: 0.05em;
}

.owl-carousel .owl-dots {
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  opacity: 1;
  background-color: transparent !important;
  border: 1px solid var(--main-green);
  display: inline-block;
  border-radius: 50%;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: var(--main-green) !important;
}

/* Jumpdesign */
.testi-meta {
  font-weight: 600;
}

.jumpdesign-testimonials img {
  width: 60px !important;
}

.comparison-table tbody tr > * {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.table-bordered > :not(caption) > *,
.comparison-table tbody tr > * {
  border-color: #e1e5eb;
}

.fulfillments-list img {
  max-width: 200px;
}

/* Comparison table */
#comparison-table .price-tenure {
  font-size: 10px;
  margin-bottom: 2px;
  font-weight: normal;
  margin-left: 4px;
}

#comparison-table .plans-filter {
  min-width: 260px;
}

#comparison-table .plans-filter .btn {
  padding: 1em 1em;
  font-size: 0.75em;
  width: 33.33%;
}

#comparison-table .comparison-price {
  display: flex;
  justify-content: center;
  align-items: end;
}

#comparison-table .comparison-price span {
  line-height: 1.2;
}

#comparison-table .jumpseller-td,
#comparison-table .competition-td {
  max-width: 160px;
}

#comparison-table .competition-td {
  color: #999;
}

#comparison-table .jumpseller-td {
  background-color: var(--light-blue-1) !important;
}

#comparison-table td img {
  width: 120px;
  display: block;
  margin: auto;
}

#comparison-table .competition-td img {
  filter: grayscale(1);
}

/* Browser */
.showcase-item {
  text-decoration: none;
}

.showcase-item-browser {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--main-blue);
}

.showcase-item-browser-bar {
  background-color: var(--main-blue);
  padding: 0.75em 1em;
  display: flex;
}

.showcase-item-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.showcase-item-browser-bar span.green-dot {
  background-color: var(--main-green);
}

.showcase-item-browser-bar span.white-dot {
  background-color: var(--white);
}

.showcase-item-browser-bar span.red-dot {
  background-color: #ee4823;
}

.showcase-item-browser .showcase-image {
  padding-bottom: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: background-position 1s;
}

.showcase-item-browser .showcase-image-theme {
  padding-bottom: 100%;
  display: none;
}

.showcase-item-browser .showcase-image-theme.active {
  display: block;
}

.theme-item {
  text-decoration: none;
}

.theme-item-browser {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.theme-item-browser:hover {
  box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.009);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  transform: scale(1.03);
  transition: box-shadow 0.25s, transform 0.25s;
}

.theme-item-browser-bar {
  background-color: var(--main-blue);
  padding: 0.75em 1em;
  display: flex;
}

.theme-item-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.theme-item-browser-bar span.green-dot {
  background-color: var(--main-green);
}

.theme-item-browser-bar span.white-dot {
  background-color: var(--white);
}

.theme-item-browser-bar span.red-dot {
  background-color: #ee4823;
}

.theme-item-browser .showcase-image {
  padding-bottom: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: background-position 1s, opacity 0.25s, padding-bottom 0.25s;
}

.theme-variant .theme-item-browser {
  background-color: var(--dark-blue);
}

.theme-variant.current .showcase-image:hover,
.theme-variant .showcase-image {
  opacity: 1;
}

.theme-variant.current a {
  cursor: default;
}

.theme-variant .showcase-image {
  padding-bottom: 80%;
}

.theme-variant.current .showcase-image {
  padding-bottom: 90%;
  opacity: 0.5;
}

.theme-variant h5 i {
  display: none;
}

.theme-variant.current h5 i {
  margin-left: 0.24rem;
  color: var(--main-green);
  display: inline-block;
}

.theme-item-browser .showcase-image-theme {
  padding-bottom: 100%;
  display: none;
}

.theme-item-browser .showcase-image-theme.active {
  display: block;
}

#theme-variants:not(:has(.theme-variant)) {
  display: none;
}

/* Theme Gallery */

.theme-captures__container .showcase-item-browser {
  height: 280px;
}

.theme-showcase-item {
  margin-bottom: 1rem;
}

.theme-showcase-item-browser,
.theme-captures__container,
.theme-details__container {
  display: none;
}

.theme-captures__container.active,
.theme-showcase-item-browser.active,
.theme-details__container.active {
  display: block;
}

.theme-showcase-item-browser__container {
  position: relative;
}

.theme-showcase-item-browser__desktop {
  width: 100%;
  height: 500px;
  overflow: scroll;
  border-radius: 10px;
  border: 1px solid #000;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.theme-showcase-item-browser__desktop::-webkit-scrollbar {
  display: none;
}

.theme-showcase-item-browser__mobile {
  width: 200px;
  height: 350px;
  margin: auto;
  display: block;
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
}

.theme-showcase-item-browser__container .theme-showcase-image {
  width: 100%;
}

.theme-item__anchor {
  display: block;
  position: relative;
}

.theme-item__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#theme-related .showcase-image {
  padding-bottom: 90%;
}

.showcase-item-browser:hover .showcase-image,
.theme-item-browser:hover .showcase-image {
  background-position: bottom center;
}

.theme-item h5,
.theme-item h2,
.showcase-item h5,
.showcase-item h2 {
  font-weight: 400;
  font-size: 1.25rem;
}

.theme-item h5,
.theme-item h2 {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.theme-item__info--badge {
  display: block;
  font-size: 0.675rem;
  background: var(--light-blue-2);
  border-radius: 3px;
  color: var(--dark-blue);
  padding: 5px;
  line-height: 1;
}

a.showcase-item:hover h5,
a.theme-item:hover h5 {
  text-decoration: underline;
}

.showcase-item-info span,
.theme-item__info span {
  color: #323232;
}

.showcase-pills {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.showcase-pill {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  cursor: pointer;
  transition:
    transform 0.25s,
    border-radius 0.25s;
}

.showcase-pill:not(.active):hover {
  transform: scale(1.3);
  border-radius: 5px;
}

.showcase-pill.active::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid #323232;
  display: block;
}

.theme-swatches .showcase-pills {
  width: 100%;
  justify-content: end;
  padding: 1rem 0;
}

.theme-swatches .showcase-pill {
  width: 24px;
  height: 24px;
}

.theme-swatches .showcase-pill.active::before {
  width: 30px;
  height: 30px;
}

.theme-hero ul {
  margin: 1rem 0;
}

.theme-hero .text-muted {
  opacity: 0.7;
  color: white !important;
}

.filter_gallery {

  font-size: 0.9rem;

  .form-check {

    margin-bottom: 0.5rem;

    &:hover .form-check-input {
      border-color: var(--text-color);
    }

    .form-check-input {

      &:hover {
        cursor: pointer;
      }

      &:checked {
        background-color: var(--dark-blue);
        border-color: var(--dark-blue);
        color: white;
      }

      &:focus {
        box-shadow: none;
      }

      label {
        color: var(--text-color);
      }
    }

    .form-check-label {
      cursor: pointer;
    }
  }
}

@media only screen and (min-width: 991px) {
  .theme-showcase-item-browser__mobile {
    position: absolute;
    bottom: 0px;
    left: -70px;
  }
}

.theme-variable__carousel {
  position: relative;
  overflow: auto hidden;
  flex-wrap: inherit;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  display: flex;
  padding: 1em 0 2em 0;
  gap: 1rem 1em;
  --grid-horizontal-spacing: 1em;
}

.theme-variable__carousel .theme-item {
  text-decoration: none;
  width: 85%;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: width 0.25s;
}

@media only screen and (min-width: 420px) {
  .theme-variable__carousel .theme-item {
    width: 60%;
  }
}

@media only screen and (min-width: 768px) {
  .theme-variable__carousel .theme-item {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) {
  .theme-variable__carousel .theme-item {
    width: 30%;
  }
}

@media only screen and (min-width: 991px) {
  .theme-variable__carousel .theme-item {
    width: 26%;
  }
}

@media only screen and (min-width: 1200px) {
  .theme-variable__carousel .theme-item {
    width: 26%;
  }
}

@media (max-width: 1200px) {
  .theme-section .container,
  .theme-menu__container {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .theme-showcase-item-browser__mobile {
    display: none;
  }

  .theme-showcase-item-browser__desktop {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .theme-swatches .showcase-pills {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .theme-showcase-item-browser__mobile {
    max-width: 300px;
    height: 500px;
    width: auto;
    display: block;
    width: auto;
  }

  .theme-showcase-item-browser__desktop {
    display: none;
  }

  .theme-hero p {
    display: none;
  }
}

@media (max-width: 480px) {
  .theme-showcase-item-browser__mobile {
    max-width: 260px;
    height: 500px;
  }

  .theme-showcase-item-browser__desktop {
    display: none;
  }
}

@media (max-width: 375px) {
  .theme-hero .btn {
    width: 100%!important;
  }
}

/* Theme landing */
#theme-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding-left: 1rem;
  padding-right: 1rem;
}

#theme-menu.is-sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  transition: box-shadow 0.25s;
  padding-top: 0;
  border-top: 0;
}

#theme-menu.is-sticky .btn,
#theme-menu.is-sticky .theme-menu__item--name {
  opacity: 1;
  visibility: visible;
}

#theme-menu.is-sticky .btn-outline-secondary {
  border-color: var(--white);
}

#theme-menu.is-sticky .theme-menu__item--anchor {
  opacity: 0.75;
}
#theme-menu.is-sticky .theme-menu__item--name {
  width: auto;
  margin-right: 1rem;
}

.theme-section {
  padding-top: 5rem;
  padding-bottom: 0;
}

.theme-menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.theme_menu__left,
.theme-menu__right {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.theme_menu__btn {
  padding: .5rem 0.75rem;
  font-size: 0.75rem;
  transition: opacity 0.25s, visibility 0.25s;
}

.theme-menu__item {
  margin-right: 1rem;
  position: relative;
}

.theme-menu__item--anchor {
  padding: 1.25rem 0.75rem;
  display: block;
  text-decoration: none;
  line-height: 1;
  overflow: hidden;
    transition: opacity 0.25s;
}

.theme-menu__item--anchor:after,
.theme-menu__item--anchor:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: background-color 0.25s, left 0.25s;
  }

.theme-menu__item--anchor:hover:after,
.theme-menu__item--anchor.active:after {
  left: 0;
}

#theme-menu.is-sticky .theme-menu__item--anchor.active {
  opacity: 1;
}

.theme-menu__item--name {
  font-weight: 600;
  font-size: 1.15rem;
  margin-right: 0;
  color: white;
  transition: opacity 0.15s, visibility 0.15s, width 0.25s, margin 0.25s;
}

.theme-details__block img {
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.theme-details__block-description {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .theme-menu__container {
    padding: 1rem 0;
  }
}

@media (min-width: 768px) {
  .theme-menu__item--name {
    opacity: 0;
    visibility: hidden;
    width: 0;
  }

  .theme_menu__btn {
    opacity: 0;
    visibility: hidden;
  }
}

/* Sell Pages */
@media (max-width: 576px) {
  .form-landing-input {
    margin: 0 auto;
  }

  .form-landing-input {
    width: 75%;
  }
}

@media (max-width: 460px) {
  .form-landing-input {
    width: 100%;
  }
}

.rounded-4 {
  border-radius: 1.3rem !important;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@keyframes filter-animation {
  0% {
    fill: #b2d7f5;
  }

  33% {
    fill: #cddaf8;
  }

  66% {
    fill: #a6e22e;
  }

  100% {
    fill: #b2d7f5;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.shadow {
  box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.014),
    0 6.7px 5.3px rgba(0, 0, 0, 0.018),
    0 12.5px 50px rgba(0, 0, 0, 0.02),
    0 22.3px 17.9px rgba(0, 0, 0, 0.012),
    0 11.8px 100px rgba(0, 0, 0, 0.012),
    0 10px 200px rgba(0, 0, 0, 0.018);
}

.review {
  background-color: white;
  padding: 25px 40px;
  border-radius: 5px;
  border: 1px solid #f4f4f4;
}

span.review-stars {
  display: block;
  margin-bottom: 10px;
}

.review p {
  font-size: 80% !important;
}

/* Cookie Consent Style */
.cc-color-override-688238583.cc-window {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(6 3 62) !important;
}

.cc-color-override-688238583 .cc-btn {
  color: rgb(0, 0, 0);
  border-color: transparent;
  background-color: rgb(255 255 255) !important;
}

/* Hero slider V2 */
#hero-container h6 {
  border-radius: 20px 20px 0 0px;
  color: #09243f;
  padding: 20px 30px;
  margin-bottom: 0 !important;
  width: auto;
}

#hero-container .slider-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}

#hero-container .slider {
  display: flex;
  width: max-content;
  animation: scroll 140s linear infinite;
}

#hero-container .slide {
  flex: 0 0 auto;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-container .slide picture {
  width: 800px;
  height: 450px;
}

#hero-container .slide img {
  border: 3px solid #09243f;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #hero-container .slide picture {
    width: 650px;
    height: 368px;
  }

  #hero-container .slide {
    width: 650px;
  }

  #hero-container .slider {
    animation: scroll 90s linear infinite;
  }
}

@media screen and (max-width: 575px) {
  #hero-container .slide picture {
    width: 240px;
    height: 441px;
  }

  #hero-container .slide img {
    width: 100%;
  }

  #hero-container .slide {
    width: 15rem;
  }

  #hero-container .slider {
    animation: scroll 80s linear infinite;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

#hero-container .home-hero .h1 {
  font-size: 3.25em;
}

#hero-container .home-hero .btn {
  font-size: 1.125em;
}

@media screen and (max-width: 768px) {
  #hero-container .home-hero .h1 {
    font-size: 2.25em;
  }
}

/* Home hero Welcome version */
.home-hero-welcome h1 {
  font-size: 3.25em;
}

.home-hero-welcome p {
  font-size: 1em;
}

.home-hero-welcome form {
  width: 100%;
}

.themes-slider img {
  height: auto !important;
}

.business-images img {
  border-radius: 18px;
}

@media screen and (max-width: 576px) {
  .home-hero-welcome h1 {
    font-size: 2.85em;
  }

  .home-hero-welcome p {
    font-size: 0.825em;
  }

  .home-hero-welcome form a,
  #appointment .start-store,
  #subscriptions .start-store,
  #hero .start-store,
  .vs-page .start-store,
  .section-hero .start-store {
    max-width: fit-content;
    border-radius: 0.3rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
}

.bg-slider {
  position: absolute !important;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: -1 !important;
  opacity: 0.3;
}

.bg-slider img {
  position: absolute !important;
  height: 667px !important;
}

@media only screen and (max-width: 2000px) {
  .bg-slider img {
    width: 3145px !important;
    transform: translateX(-25%);
  }
}

@media only screen and (max-width: 1380px) {
  .bg-slider img {
    transform: translateX(-35%);
  }
}

@media only screen and (max-width: 1024px) {
  .bg-slider img {
    transform: translateX(-40%);
  }
}

.bg-slider.owl-carousel .owl-item,
.bg-slider.owl-carousel .owl-stage,
.bg-slider.owl-carousel .owl-stage-outer {
  height: 100%;
  overflow: hidden;
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  from {
    background-position: -468px 0;
  }

  to {
    background-position: 468px 0;
  }
}

@keyframes shrink {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}

@keyframes grow {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.animate-shrink {
  animation: shrink 1s ease-in-out forwards;
}

.animate-grow {
  animation: grow 1s ease-in-out forwards;
}

.animate-fadeIn {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slideInDown {
  animation: slideInDown 0.5s ease-out forwards;
}

.animate-slideInUp {
  opacity: 0;
  animation: slideInUp 0.5s ease-out forwards;
}

.animate-shimmer {
  background: linear-gradient(
    to right,
    #071e3f66 8%,
    #071e3f33 18%,
    #071e3f66 33%
  );
  background-size: 800px 104px;
  animation: shimmer 2s infinite linear;
}

/* Inquiry V2 */
.card-inquiry {
  background-color: #f9fbfd;
  color: #10253e;
}

.card-inquiry h3 {
  font-size: 1.2rem;
}

.card-inquiry a {
  text-transform: none !important;
  color: #22304e;
  text-decoration: none !important;
}

.card-inquiry a span {
  color: #52647c;
  padding-left: 5px;
  font-size: 90%;
}

.card-inquiry a:hover span {
  text-decoration: underline !important;
}

.form-inquiry {
  display: flex;
  margin: auto;
  max-width: 500px;
}

#inquiryModalMessage:has(.card) {
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e6ea;
}

#searchbox {
  border-radius: 0.25rem 0 0 0.25rem;
  background-color: rgba(255, 255, 255, 0.125);
  border-right: 0;
  color: white !important;
  max-width: 500px;
  margin: auto;
  border-radius: 0.375rem;
}

#hits {
  text-align: left;
}

#hits ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

#hits a {
  text-decoration: none;
}

#hits a h5 {
  color: #4063c7;
  font-size: 1.125rem !important;
}

#hits a:hover h5 {
  color: #212121;
  text-decoration: underline;
}

#hits a p {
  color: #52647c !important;
  font-size: 0.875em !important;
}

.ais-SearchBox-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #051e3f;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  box-shadow: 0 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0.8125rem 1.25rem;
  color: white;
  width: 100%;
}

.ais-SearchBox-input:hover,
.ais-SearchBox-input:focus,
.ais-SearchBox-input:active {
  border: 1px solid rgba(255, 255, 255, 1);
}

.ais-SearchBox-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 2px 0.25rem rgb(255 255 255 / 15%);
}

form.ais-SearchBox-form {
  position: relative;
}

.ais-SearchBox-reset {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 45px;
  background-color: #505a73;
  border: 0;
  color: white;
  border-radius: 4px;
}

.ais-SearchBox-reset:hover {
  background-color: #3f485e;
}

.ais-SearchBox-reset svg {
  fill: white;
}

.ais-SearchBox-submit,
.ais-SearchBox-loadingIndicator {
  display: none;
}

.ais-SearchBox-input::placeholder {
  color: #f3f3f3;
  opacity: 1;
}

/* Themes */
@media (min-width: 1440px) {
  .theme-container {
    padding-left: 3em;
    padding-right: 3em;
  }
}

.theme-container {
  max-width: 1920px;
}

.create-store-form-old-pages .input-group-btn {
  position: absolute;
  right: 0;
  z-index: 2;
}

.responsive-list div {
  padding-bottom: 1rem;
  overflow: hidden;
  color: var(--text-color);
  font-size: .95rem;
}

.responsive-list .plan {
  display: inline-block;
  font-size: 0.75em;
  border: 1px solid var(--border-color);
  margin-left: 0.25rem;
  border-radius: 3px;
  line-height: 0;
  padding: 0.5rem 0.25rem;
}

.responsive-list strong {
  color: var(--black);
}

@media (min-width: 576px) {
  .responsive-list {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}

@media (min-width: 768px) {
  .responsive-list {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
  }
}

/* Theme filter pills: styled tokens shown above the gallery */
.selected-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.selected-filters-list .btn {
  background: #e9f3fb;
  color: #0e3b59;
  border: 1px solid #d6eaf9;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  transition: background-color 120ms ease, transform 80ms ease, box-shadow 120ms ease;
}

.selected-filters-list .btn:hover {
  background: #dff0ff;
  border-color: #bfe6ff;
  transform: translateY(-1px);
}

.wave-container {
  position: relative;
  background: #e7f2f7;
}

.domain_search_form {
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.domain_search_form .form-control:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: 0 !important;
}

.domain_search_form:focus-within {
  border-color:#86b7fe !important;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

#domain-plan-summary-domain,
#domain-availability-selected {
  overflow-x: auto;
  display: inline-block;
  white-space: nowrap;
  vertical-align: bottom;
}


@media (max-width: 576px) {
  #domain-plan-summary-domain {
    max-width: 160px;
  }
  #domain-availability-selected {
    max-width: 200px;
  }
}