.compare-container {
  max-width: 1054px;
  padding: 0 15px;
  margin: 0 auto;
}

.compare-title {
  position: relative;
  width: 459px;
  height: 72px;
  margin-bottom: 32px;
  border-radius: 5px;
  border: 1px solid #181818;
  background: #fffaee;

  @media (max-width: 1024px) {
    width: 319px;
  }

  h2 {
    margin: 0;
    width: 100%;
    height: 100%;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 45px;
    line-height: 110%;
    border: 1px solid #181818;
    background: #fffaee;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: -15px;
    left: 15px;
    z-index: 3;

    @media (max-width: 1024px) {
      font-size: 30px;
    }
  }

  >div {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: #fffaee;
    z-index: 1;

    &:nth-child(2) {
      border: 1px solid #181818;
      position: absolute;
      top: -7px;
      left: 7px;
      z-index: 2;
    }
  }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #181818;
  border-radius: 5px;
}

.compare-table th {
  background-color: #181818;
  text-align: center;
  font-family: var(--ff-primary);
  font-weight: 400;
  color: #fffaee;
}

.white {
  color: #fffaee;
}

.italic {
  font-style: italic;
}

.compare-table th {

  img,
  svg {
    height: 42px;
    width: 124px;
    margin-right: 0;

    @media (max-width: 1024px) {
      display: none;
    }
  }
}

.compare-table th,
.compare-table td {
  border: 1px solid #181818;
  padding: 25px;
  vertical-align: middle;

  @media (max-width: 1024px) {
    padding: 12px;
  }
}

.header th {
  @media (max-width: 1024px) {
    padding: 0 12px !important;
  }
}

.compare-table th:nth-child(1) {
  border-right: 1px solid #ffffff !important;
}

.compare-table th:nth-child(2) {
  border-right: 1px solid #ffffff !important;
}

.compare-table span {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 14px;
  color: #000000;

  @media (max-width: 1024px) {
    display: none;
  }
}

.compare-table .feature {
  font-family: var(--ff-fibbl);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000000;
  display: block;

  @media (max-width: 1024px) {
    font-size: 18px;
  }
}

.compare-table img,
.compare-table svg {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-right: 12px;
}

.compare-table td:first-child,
.compare-table th:first-child {
  justify-content: flex-start;
}

.compare-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-xs {
  display: none;
  width: 32px;
  height: 32px;

  @media (max-width: 1024px) {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
  }
}

.text-xs {
  display: none;
  color: #fffaee !important;
  white-space: pre-wrap !important;
  line-height: 1 !important;
  text-align: left;

  @media (max-width: 1024px) {
    display: block !important;
  }
}

.text-lg {
  color: #fffaee !important;

  @media (max-width: 1024px) {
    display: none;
  }
}