.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-overlay::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal-main.open .modal-overlay {
  opacity: 1;
  z-index: 1000;
}

.modal-window {
  width: 90%;
  max-width: 1600px;
  /* height: 800px; */
  /*border: 1px solid black;
  */
  background-color: #fff;
  border-radius: 5px;
  margin: 3rem auto;
  overflow: auto;
}

.modal-close {
  cursor: pointer;
}

.modal-header,
.modal-checkbox {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
}

.modal-checkbox {
  flex-direction: row;
  justify-content: flex-start;
}

/* .pricing-box {
  cursor: pointer;
} */

/* .modal-checkbox {
  display: flex;
  align-items: center;
} */

.modal-checkbox input {
  width: 10rem;
}

.modal-checkbox label {
  font-size: 4rem;
}

.modal-body {
  overflow: auto;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  padding-left: 50px;
  padding-right: 50px;
  overflow: auto;
}

.flex-item {
  width: 100%;
  max-width: 300px;
  min-width: 200px;
  cursor: pointer;
  height: 100%;
  border-radius: 10px;
}

.flex-item .pricing-box {
  padding: 0;
  margin: 0;
  border-radius: 10px;
}
.flex-item .pricing-features {
  padding: 0;
  margin: 0;
}
.flex-item .pricing-price {
  background-color: transparent;
}

.flex-item:hover {
  /* border: 2px solid black; */
  /* opacity: 0.8; */
  background-color: rgba(219, 219, 219, 0.5);
  box-shadow: 10px 5px 5px rgb(176, 176, 176);
}
