@media screen and (max-width: 768px) {
  .pricing-container {
    flex-wrap: wrap;
  }
}

.image-container {
  display: inline-block;
  width: 30%;
  height: 75%;
}
@media screen and (min-width: 480px) {
  .image-container {
    width: 30%;
    /* height: "auto"; */
    display: inline-block;
  }
  .compare-plans {
    margin-left: 5%;
    margin-right: 5%;
  }
}

select,
input {
  width: 100%;
  box-sizing: border-box;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

.feature-wf-container {
  max-height: 1000px;
}

@media screen and (max-width: 720px) {
  .feature-wf-container {
    max-width: 100%;
  }
  .cover-photo {
    max-width: 100%;
  }
}

th:first-child,
td:first-child {
  position: sticky;
  left: 0px;
  background-color: #e9ecef;
}

.why-cart-2-mart-img {
  width: 400px;
}

@media screen and (max-width: 500px) {
  .why-cart-2-mart-img {
    max-width: 100%;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: -5px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;

  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.banner {
  background: #f36649;
}

.banner_content {
  padding: 16px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.banner_text {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-size: xx-large;
}
.mandatory {
  color: red;
}
