/** Shopify CDN: Minification failed

Line 329:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:ebiko-4tab (INDEX:35) */
.ebiko-four-tabs {
  padding: 20px 15px;
  font-family: var(--text-font-family);
  max-width: 1200px;
  margin: 0 auto;
}

.ebiko-tabs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 auto 50px;
}

.ebiko-tab-card {
  background-color: var(--card-color);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  margin-top: calc(var(--icon-size) / 2);
  height: 280px;
  display: flex;
  flex-direction: column;
}

.ebiko-tab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ebiko-tab-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.ebiko-tab-card:hover::before {
  opacity: 1;
}

.ebiko-tab-card__icon {
  position: absolute;
  top: var(--icon-position);
  left: 50%;
  transform: translateX(-50%);
  width: var(--icon-size);
  height: var(--icon-size);
  z-index: 2;
}

.ebiko-tab-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.ebiko-tab-card__title {
  font-size: var(--title-size);
  font-weight: 600;
  color: white;
  background: #474E8E;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: calc(var(--icon-size) / 2);
  margin-bottom: 15px;
  text-align: center;
}

.ebiko-tab-card__content {
  color: #363F72;
  font-size: var(--content-size);
  line-height: 1.5;
  padding: 0 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: top;
  list-style-position: outside;
}

.ebiko-tabs-button-container {
  text-align: center;
  position: relative;
  margin-top: -20px;
  margin-bottom: 30px;
}

.ebiko-tabs-button {
  display: inline-block;
  background: #474E8E;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.button-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #474E8E;
  border-radius: 50px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ebiko-tabs-button:active .button-border::before {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ebiko-tabs-button:hover {
  background: white;
  color: #474E8E;
}

@media screen and (max-width: 768px) {
  .ebiko-tabs-grid {
    grid-template-columns: 1fr;
  }
  
  .ebiko-tab-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* END_SECTION:ebiko-4tab */

/* START_SECTION:ebikovipchart (INDEX:38) */
.ebiko-vip-graph {
  font-family: var(--text-font-family);
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 15px;
}

.ebiko-vip-graph__title {
  color: #153850;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.ebiko-vip-graph__container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.ebiko-vip-graph__headers {
  display: grid;
  grid-template-columns: 250px repeat(5, 1fr);
  background: #153850;
  color: white;
}

.header-cell {
  padding: 20px 15px;
  text-align: center;
  font-weight: 600;
}

.tier-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  display: block;
}

.tier-name {
  font-size: 18px;
}

.ebiko-vip-graph__section {
  border-top: 1px solid #E5E7EB;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #153850;
  padding: 7px;
  background: #F8FAFC;
}

.benefit-row {
  display: grid;
  grid-template-columns: 250px repeat(5, 1fr);
  transition: background-color 0.3s ease;
  position: relative;
}

.ebiko-vip-graph__headers .header-cell:not(:first-child):hover,
.benefit-row .benefit-cell:hover {
  background-color: rgba(71, 78, 142, 0.1);
  position: relative;
}

.benefit-row .benefit-cell:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1000px;
  bottom: -1000px;
  background-color: rgba(71, 78, 142, 0.05);
  pointer-events: none;
  z-index: -1;
}

.benefit-label {
  padding: 10px 15px;
  font-weight: 500;
  color: #1F2937;
  font-size: 13px;
}

.benefit-cell {
  padding: 10px;
  text-align: center;
  color: #4B5563;
  font-size: 13px;
}

.checkmark {
  color: #474E8E;
  font-size: 18px;
}

/* Removed gradient backgrounds */
.saving-section {
  background: #a9cbcb;  /* Using the bottom color from the original gradient */
}

.saving-section .benefit-cell {
  background-color: rgba(255, 255, 255, 0.4);
}

.experiences-section {
  background: #fce6a8;  /* Using the bottom color from the original gradient */
}

.experiences-section .benefit-cell {
  background-color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 1024px) {
  .ebiko-vip-graph__container {
    font-size: 14px;
  }
  
  .benefit-label {
    font-size: 14px;
    padding: 15px 10px;
  }
  
  .benefit-cell {
    padding: 15px 5px;
  }
}

@media screen and (max-width: 768px) {
  .ebiko-vip-graph {
    padding: 20px 10px;
  }
  
  .ebiko-vip-graph__headers,
  .benefit-row {
    grid-template-columns: 180px repeat(5, 1fr);
  }
  
  .tier-name {
    font-size: 14px;
  }
  
  .tier-icon {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 640px) {
  .ebiko-vip-graph__container {
    overflow-x: auto;
  }
  
  .ebiko-vip-graph__headers,
  .benefit-row {
    min-width: 800px;
  }
}
}
/* END_SECTION:ebikovipchart */