/* Wrapper */
.business-plans-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 40px;
  max-width: 1360px;
}

.tab-buttons {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-wrap : wrap;
}

.tab-button {
  padding: 14px 26px;
  border: solid 1px #000000;
  cursor: pointer;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.3px;
  font-size: 17px;
  line-height: 17px;
  background-color: transparent;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.tab-button:hover {
  background-color: #dee2e6;
  border: solid 1px #000000;
  color: #000000;
}

.tab-button.active {
  background-color: #030001;
  color: #fff;
}
.plan-check svg,
.check-core,
.check-mapping,
.check-autonomy {
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  fill: none !important;
}
}

/* Tab content */
.tab-contents {}
.tab-content {
  display: none;
  margin-top: 20px;
}
.tab-content.active {
  display: block;
}


.plan-items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.plan-item {}
.plan-header {
  max-width: 100%;
  padding-top: 16px;
  padding-bottom: 37px; 
  font-size: 24px;
  line-height: 1.2;
  color: #191919;
  font-weight: 600;
}

.plan-title-header {
  margin-bottom: 16px;
}

.plan-points-wrapper {
  display: flex;
  justify-content: right;

}

.plan-points {
  display: flex;
  gap: 8px;
  justify-content: right;
}

.plan-point {
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 41px;
  color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.plan-first-point {
  background-color: #00ceaf;
}
.plan-second-point {
  background-color: #0085ff;
}
.plan-third-point {
  background-color: #035cb5;
}

/* Plan details table */
.plan-details {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.plan-row {
  display: table-row;
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
  padding-top:16px;
  padding-bottom: 37px; 
  font-size: 17px;
  justify-content: space
}

.plan-title, .plan-description, .plan-check {
  display: table-cell;
  padding-top:16px;
  padding-bottom: 37px; 
  vertical-align: middle;

}

.plan-title {
  width: 280px !important;
}

.plan-description {
  width: 829px !important;
}

.plan-checks {
  display: flex;
  flex-direction: row;
  gap: 25px;
  padding-right: 55px;
}

.plan-check {
  max-width: 424px;
  display: flex;
  width: 100%;
  
}


/* Small tablets and below (768px and below) */
@media (max-width: 767px) {

  .plan-items {
    gap: 60px;
  }

  .plan-points-wrapper {
    justify-content: flex-start;
  }

  .plan-points {
    flex-wrap: wrap;
    gap: 6px;
  }

  .plan-point {
    padding: 4px 14px;   
    font-size: 11px;
  }

  .plan-details {
    display: block;
  }

  .plan-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: none;
    border-bottom: 1px solid #000;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .plan-title, .plan-description, .plan-check {
    display: block;
    padding: 0;
    max-width: 100%;
  }

  .plan-description {
    max-width: 100%;
  }

  .plan-checks {
    flex-direction: row;
    gap: 20px;
    padding-right: 0;
  }

  .plan-check {
    max-width: 100%;
    justify-content: flex-start;
  }

  .check-core, .check-mapping, .check-autonomy {
    width: 24px;
    height: 24px;
  }

  .plan-description {
    width: 100% !important;
  }

}
@media (max-width: 1440px) {

  .business-plans-wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
}