.features-comparison-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999999999998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.features-comparison-overlay.active {
  opacity: 1;
  visibility: visible;
}

section.features-comparison-holder {
  position: fixed;
  z-index: 99999999999999;
  background-color: #F1F1F1;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100vw;
  transition: all 0.9s ease-in-out;
  overflow: auto;
}
@media (min-width: 768px) {
  section.features-comparison-holder {
    right: -50%;
    width: 50vw;
  }
}
section.features-comparison-holder.active {
  right: 0;
}
section.features-comparison-holder .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  section.features-comparison-holder .container-fluid {
    padding-left: 0px;
    padding-right: 25px;
  }
}
section.features-comparison-holder a.close-comparison {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 700;
  font-family: var(--font-family-Font-5, Helvetica);
}
@media (min-width: 768px) {
  section.features-comparison-holder a.close-comparison {
    top: 10px;
    right: 10px;
  }
}
section.features-comparison-holder a.close-comparison svg {
  margin-left: 8px;
  top: -1px;
  position: relative;
  height: 40px;
}
section.features-comparison-holder a.close-comparison svg:hover {
  cursor: pointer;
  text-decoration: none;
}
section.features-comparison-holder .name-and-image .image-holder {
  position: relative;
  width: 100%;
  max-width: 188px;
  aspect-ratio: 1;
  overflow: hidden;
}
section.features-comparison-holder .name-and-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
section.features-comparison-holder .name-and-image h5 {
  font-size: 16px;
}
@media (min-width: 768px) {
  section.features-comparison-holder .name-and-image h5 {
    font-size: 18px;
  }
}
section.features-comparison-holder .the-table {
  display: flex;
  flex-direction: column;
}
section.features-comparison-holder .the-table th:not(:first-child),
section.features-comparison-holder .the-table td:not(:first-child) {
  flex: 1;
  position: relative;
  margin-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
section.features-comparison-holder .the-table th:not(:first-child)::after,
section.features-comparison-holder .the-table td:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -40px;
  right: -30px;
  bottom: 0;
  height: 1px;
  background-color: #000;
}
@media (min-width: 768px) {
  section.features-comparison-holder .the-table th:not(:first-child)::after,
  section.features-comparison-holder .the-table td:not(:first-child)::after {
    display: none;
  }
}
@media (min-width: 768px) {
  section.features-comparison-holder .the-table th:not(:first-child),
  section.features-comparison-holder .the-table td:not(:first-child) {
    border-bottom: 1px solid #000;
  }
}
section.features-comparison-holder .the-table th:not(:first-child):not(:nth-child(2))::before,
section.features-comparison-holder .the-table td:not(:first-child):not(:nth-child(2))::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #000;
}
@media (min-width: 768px) {
  section.features-comparison-holder .the-table th:not(:first-child):not(:nth-child(2))::before,
  section.features-comparison-holder .the-table td:not(:first-child):not(:nth-child(2))::before {
    display: none;
  }
}
section.features-comparison-holder table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-collapse: collapse;
}
section.features-comparison-holder tr {
  display: flex;
  width: 100%;
}
section.features-comparison-holder th, section.features-comparison-holder td {
  flex: 1;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  section.features-comparison-holder th, section.features-comparison-holder td {
    font-size: 18px;
    text-align: left;
  }
}
section.features-comparison-holder th img.check, section.features-comparison-holder td img.check {
  border-radius: 50%;
  border: 1px solid #000;
  padding: 5px;
  box-sizing: border-box;
  overflow: hidden;
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.features-comparison-holder th:first-child, section.features-comparison-holder td:first-child {
  flex: 2;
  max-width: 130px;
  background: rgba(118, 118, 118, 0.1);
  margin-right: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  section.features-comparison-holder th:first-child, section.features-comparison-holder td:first-child {
    max-width: 200px;
  }
}
section.features-comparison-holder th:not(:first-child) {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
