@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@400;500;600;700&display=swap');

.erc-reviews-carousel,
.erc-promo-card,
.erc-team-grid,
.erc-faq-wrapper,
.erc-services-grid {
  font-family: 'Spline Sans', sans-serif;
  box-sizing: border-box;
}

.erc-reviews-carousel *,
.erc-promo-card *,
.erc-team-grid *,
.erc-faq-wrapper *,
.erc-services-grid * {
  box-sizing: border-box;
}

.erc-reviews-carousel {
  --erc-gap: 24px;
  --erc-slides-current: 4;
  --erc-arrow-offset: 18px;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 40px 24px 40px;
  box-shadow: 8px 16px 36px rgba(2, 41, 82, 0.08);
  box-sizing: border-box;
}

.erc-carousel-frame {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.erc-carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
}

.erc-carousel-track {
  display: flex;
  gap: var(--erc-gap);
  transition: transform 350ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.erc-carousel-slide {
  flex: 0 0 calc((100% - (var(--erc-slides-current) - 1) * var(--erc-gap)) / var(--erc-slides-current));
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.erc-carousel-slide-inner {
  border-radius: 8px;
  background: #f8f9fa;
  padding: 20px;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.erc-carousel-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.erc-carousel-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #24c3be;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  border-radius: 2px;
}

.erc-carousel-review {
  color: #022952;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.erc-carousel-review strong {
  font-weight: 700;
}

.erc-carousel-name {
  color: #022952;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: auto;
  margin-bottom: 4px;
}

.erc-carousel-meta {
  color: #022952;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.8;
}

.erc-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e2645;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.erc-carousel-arrow:hover {
  opacity: 0.9;
  transform: translateY(-50%) scale(1.05);
}

.erc-carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.erc-carousel-arrow-prev {
  left: -16px;
}

.erc-carousel-arrow-next {
  right: -16px;
}

.erc-reviews-carousel.is-arrows-hidden .erc-carousel-arrow {
  display: none;
}

.erc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.erc-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #cbd3db;
  cursor: pointer;
  opacity: 0.8;
}

.erc-carousel-dot.is-active {
  background: #0e2645;
  opacity: 1;
}

.erc-reviews-carousel.is-dots-hidden .erc-carousel-dots {
  display: none;
}

/* --- Promo Card Styles --- */
.erc-promo-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #085499 0%, rgba(36, 195, 190, 0.16) 100%);
  border-radius: 64px 64px 0 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow: visible; /* To allow sparkles / image offset */
  z-index: 1;
  height: 530px !important;
}

.erc-promo-card-img-wrap {
  width: 110%;
  left: -5%;
  position: relative;
  z-index: 2;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.erc-promo-card-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Slight rounding for box image */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.erc-promo-card-desc {
  position: relative;
  z-index: 2;
  margin: 40px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.erc-promo-card-desc p {
  color: inherit;
  margin: 0;
}

.erc-promo-card-action {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.erc-promo-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #022952;
  border: 1px solid #022952;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.erc-promo-card-btn svg {
  fill: #022952;
  stroke: #022952;
}

.erc-promo-card-btn:hover {
  opacity: 0.85;
}

.erc-promo-card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.erc-sparkle {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 0;
}

.erc-sparkle-top {
  top: -16px;
  left: -16px;
}

.erc-sparkle-top svg {
  fill: #022952;
}

.erc-sparkle-right {
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}

.erc-sparkle-right svg {
  fill: #ffffff;
}

@media (max-width: 1024px) {
  .erc-carousel-review {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .erc-carousel-review {
    font-size: 15px;
  }

  .erc-carousel-arrow-prev {
    left: -8px;
  }

  .erc-carousel-arrow-next {
    right: -8px;
  }

  .erc-promo-card {
    padding: 24px;
    border-radius: 40px 40px 0 0;
    min-height: auto !important;
    height: auto !important;
  }

  .erc-promo-card-img-wrap {
    width: 76%;
    left: 12%;
    margin-top: -30px;
    margin-bottom: 0px;
  }

  .erc-promo-card-img-wrap img {
    height: auto;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .erc-promo-card-desc {
    margin: 20px 0;
    font-size: 14px;
  }

  .erc-promo-card-action {
    justify-content: center;
  }
}

/* --- Medical Team Grid Styles --- */
.erc-team-grid {
  display: grid;
  gap: 24px;
}

.erc-grid-cols-1 .erc-team-grid { grid-template-columns: repeat(1, 1fr); }
.erc-grid-cols-2 .erc-team-grid { grid-template-columns: repeat(2, 1fr); }
.erc-grid-cols-3 .erc-team-grid { grid-template-columns: repeat(3, 1fr); }
.erc-grid-cols-4 .erc-team-grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .erc-grid-cols-tablet-1 .erc-team-grid { grid-template-columns: repeat(1, 1fr); }
  .erc-grid-cols-tablet-2 .erc-team-grid { grid-template-columns: repeat(2, 1fr); }
  .erc-grid-cols-tablet-3 .erc-team-grid { grid-template-columns: repeat(3, 1fr); }
  .erc-grid-cols-tablet-4 .erc-team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Dot pagination hidden on desktop/tablet by default */
.erc-team-dots {
  display: none;
}

@media (max-width: 767px) {
  .erc-grid-cols-mobile-1 .erc-team-grid { grid-template-columns: repeat(1, 1fr); }
  .erc-grid-cols-mobile-2 .erc-team-grid { grid-template-columns: repeat(2, 1fr); }
  .erc-grid-cols-mobile-3 .erc-team-grid { grid-template-columns: repeat(3, 1fr); }
  .erc-grid-cols-mobile-4 .erc-team-grid { grid-template-columns: repeat(4, 1fr); }

  .erc-medical-team-wrap.is-mobile-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .erc-medical-team-wrap.is-mobile-slider .erc-team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    transition: transform 350ms ease;
    will-change: transform;
  }

  .erc-medical-team-wrap.is-mobile-slider .erc-team-grid > .erc-team-card {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
  }

  .erc-medical-team-wrap .erc-team-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
  }

  .erc-team-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #CBD8E6;
    cursor: pointer;
    transition: background-color 200ms ease, transform 200ms ease;
    appearance: none;
    -webkit-appearance: none;
  }

  .erc-team-dot:hover {
    transform: scale(1.1);
  }

  .erc-team-dot.is-active {
    background-color: #085499;
    transform: scale(1.2);
  }
}

.erc-team-card {
  background-color: #EAF4FC;
  border-radius: 8px;
  padding: 32px 32px 0 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.erc-team-content {
  position: relative;
  z-index: 2;
}

.erc-team-name {
  color: #022952;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0 !important;
  padding: 0;
}

.erc-team-role {
  color: #085499;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.erc-team-desc {
  color: #022952;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.erc-team-desc p {
  margin: 0 0 8px 0;
}

.erc-team-desc p:last-child {
  margin-bottom: 0;
}

.erc-team-media {
  position: relative;
  margin-top: auto; 
  display: flex;
  align-items: flex-end;
  justify-content: center; /* match design by centering */
  z-index: 1;
}

.erc-team-media > img {
  width: auto;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative;
  z-index: 3;
}

.erc-team-cross {
  position: absolute;
  right: -10px;
  bottom: 50%;
  transform: translateY(30%);
  width: 160px;
  height: 160px;
  z-index: 2; /* behind the person */
  --cross-c1: #085499;
  --cross-c2: #24C3BE;
}

.erc-team-cross svg,
.erc-team-cross img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* --- FAQ Styles --- */
.erc-faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.erc-faq-main-title {
  text-align: center;
  color: #092040;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 48px 0;
  font-family: 'Spline Sans', sans-serif;
}

.erc-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.erc-faq-item {
  border: 1.5px solid #1A2E46; 
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease;
}

.erc-faq-header {
  width: 100%;
  text-align: left;
  background: transparent !important;
  border: none !important;
  padding: 24px 56px 24px 32px;
  position: relative;
  cursor: pointer;
  outline: none;
}

.erc-faq-header:hover,
.erc-faq-header:focus,
.erc-faq-header:active {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: inherit !important;
}

.erc-faq-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1A2E46;
  font-family: 'Spline Sans', sans-serif;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.erc-faq-item.is-active .erc-faq-title {
  color: #2F6CC0;
}

.erc-faq-icon {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 0 0 0 8px #fff;
  z-index: 1;
}

.erc-faq-icon::after,
.erc-faq-icon::before {
  z-index: 1;
}

.erc-faq-icon::before,
.erc-faq-icon::after {
  content: '';
  position: absolute;
  background-color: #1A2E46;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.erc-faq-icon::before {
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
}

.erc-faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 100%;
}

.erc-faq-item.is-active .erc-faq-icon::before,
.erc-faq-item.is-active .erc-faq-icon::after {
  background-color: #2F6CC0;
}

.erc-faq-item.is-active .erc-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.erc-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 32px 0 32px;
}

.erc-faq-item.is-active .erc-faq-body {
  grid-template-rows: 1fr;
  padding-bottom: 32px;
}

.erc-faq-content {
  min-height: 0;
  overflow: hidden;
  color: #4A5568;
  line-height: 1.6;
  font-size: 15px;
  font-family: 'Spline Sans', sans-serif;
}

.erc-faq-content p {
  margin-top: 0;
  margin-bottom: 12px;
}
.erc-faq-content p:last-child {
  margin-bottom: 0;
}

.erc-faq-content a {
  color: #2F6CC0;
  text-decoration: none;
}

/* --- Services Grid Styles --- */
.erc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.erc-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.erc-service-icon-wrap {
  width: 80px; /* Inherits control sizing */
  height: 80px;
  background-color: #D8F6F3;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.erc-service-icon-wrap img,
.erc-service-icon-wrap svg {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.erc-service-title {
  color: #022952;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Spline Sans', sans-serif;
  line-height: 1.4;
  margin: 0;
}

.erc-service-title p {
  margin: 0;
}
/* ----------------------------------------- */
/* Exclusive Benefits Widget                 */
/* ----------------------------------------- */

.erc-benefits-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        background: transparent;
        padding: 60px 20px;
        font-family: 'Spline Sans', sans-serif;
}

.erc-benefits-left {
        flex: 1 1 45%;
        padding-right: 20px;
}

.erc-benefits-title {
        color: #0d264f;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
}

.erc-benefits-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
}

.erc-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
}

.erc-benefit-icon-wrap {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        background: #dcf2f3;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
}

.erc-benefit-icon-wrap img {
        width: 32px;
        height: auto;
        display: block;
}

.erc-benefit-content {
        flex: 1;
}

.erc-benefit-item-title {
        color: #0d264f;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 8px 0;
}

.erc-benefit-item-desc {
        color: #3b4e6b;
        font-size: 15px;
        line-height: 1.6;
}

.erc-benefits-right {
        flex: 1 1 45%;
        position: relative;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
}

.erc-benefits-circle-bg {
        position: absolute;
        width: 80%;
        padding-bottom: 80%;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg, #085499 0%, rgba(36, 195, 190, 0.8) 100%);
        z-index: 1;
}

.erc-benefits-sparkle {
        position: absolute;
        color: #fff;
        z-index: 2;
}

.spark-top {
        top: 5%;
        left: 30%;
        transform: scale(1.2);
}

.spark-bottom {
        bottom: 0%;
        left: 60%;
        transform: rotate(45deg) scale(1.5);
}

.erc-benefits-media-container {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 600px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.erc-benefits-browser-head {
        background: #eef2f6;
        padding: 12px 16px;
        display: flex;
        gap: 6px;
        border-bottom: 1px solid #e0e6ed;
}

.erc-dot {
        width: 8px;
        height: 8px;
        background: #c8d3de;
        border-radius: 50%;
        display: inline-block;
}

.erc-benefits-media-content {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        background: #eef2f6;
}

.erc-benefits-media-content iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
}

.erc-video-wrapper, .erc-image-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
}

.erc-video-poster, .erc-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.erc-video-poster {
        position: relative;
        cursor: pointer;
        z-index: 2;
}

.erc-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #085499;
}

.erc-play-button svg {
        width: 24px;
        height: 24px;
        margin-left: 4px;
}

.erc-benefits-callouts {
        position: absolute;
        inset: -20px;
        pointer-events: none;
        z-index: 4;
}

.erc-benefit-callout {
        position: absolute;
        background: white;
        border-radius: 4px;
        padding: 12px 16px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        font-size: 13px;
        color: #3b4e6b;
        pointer-events: auto;
        max-width: 240px;
        line-height: 1.4;
        transition: all 0.3s ease;
}

.erc-benefit-callout .callout-icon {
        color: #0d264f;
        font-size: 16px;
        display: flex;
}

.erc-benefit-callout .callout-icon i, .erc-benefit-callout .callout-icon svg {
        color: #0d264f;
        fill: #0d264f;
        width: 16px;
        height: auto;
}

/* Default position for hardcoded generic indices */
.erc-benefit-callout:nth-child(1) { top: 10%; left: -5%; }
.erc-benefit-callout:nth-child(2) { top: 15%; left: 60%; }
.erc-benefit-callout:nth-child(3) { top: 80%; left: 45%; }

@media (max-width: 768px) {
        .erc-benefits-wrapper {
                flex-direction: column;
        }
        .erc-benefits-left, .erc-benefits-right {
                flex: 1 1 100%;
                width: 100%;
                padding-right: 0;
        }
        .erc-benefits-circle-bg {
                width: 100%;   
                padding-bottom: 100%;
        }
        .erc-benefit-callout {
                transform: scale(0.85);
        }
}
.erc-reviews-carousel {
  --erc-slides-current: var(--erc-slides-desktop, 4);
}

@media (max-width: 1024px) {
  .erc-reviews-carousel {
    --erc-slides-current: var(--erc-slides-tablet, 2);
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .erc-reviews-carousel {
    --erc-slides-current: var(--erc-slides-mobile, 1);
    padding: 24px 16px;
  }
}
/* ----------------------------------------- */
/* Header Search Bar                         */
/* ----------------------------------------- */
.erc-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #1a2e46;
    border-radius: 4px;
    height: 48px;
    overflow: hidden;
    width: 100%;
    /* max-width removed to allow 100% column filling */
}

.erc-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    color: #5c6a7a;
    font-size: 15px;
    outline: none;
    height: 100%;
}

.erc-search-input::placeholder {
    color: #5c6a7a;
}

.erc-search-submit {
    width: 48px;
    height: 48px;
    background: transparent !important;
    border: none !important;
    color: #0b1f3c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.erc-search-submit:hover,
.erc-search-submit:focus,
.erc-search-submit:active {
    background: transparent !important;
    color: #085499 !important;
    border: none !important;
    outline: none !important;
}

/* ----------------------------------------- */
/* Header Stars                              */
/* ----------------------------------------- */
.erc-header-stars {
    display: flex;
    align-items: center;
}

/* ----------------------------------------- */
/* Moving Text Ticker                        */
/* ----------------------------------------- */
.erc-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
}

.erc-ticker-track {
    display: flex;
    animation: erc-scroll-ticker linear infinite;
    width: max-content;
}

.erc-ticker-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 40px;
}

.erc-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 40px;
}

.erc-ticker-icon {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.erc-ticker-icon i,
.erc-ticker-icon svg {
    fill: currentColor;
}

@keyframes erc-scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ----------------------------------------- */
/* Header Search Bar Advanced                */
/* ----------------------------------------- */
.erc-ticker-wrapper.is-fullscreen {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Additional resets for searchbar completely */
.erc-search-form, 
.erc-search-form:hover, 
.erc-search-submit, 
.erc-search-submit:hover {
    box-shadow: none !important;
}
.erc-search-submit, 
.erc-search-submit:hover,
.erc-search-submit:focus {
    background-color: transparent !important;
}

/* Additional aggressive resets */
.erc-search-form {
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: normal !important;
}
.erc-search-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    min-height: 100% !important;
}
.erc-search-submit {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    min-height: 100% !important;
    padding: 0 16px !important;
    width: auto !important;
    outline: none !important;
    background: transparent !important;
}
.erc-search-submit:hover, .erc-search-submit:focus {
    background: transparent !important;
    border: none !important;
}
.erc-search-submit svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
}

.erc-ticker-wrapper.is-fullscreen {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}

