main {
  /* background: linear-gradient(
    90deg,
    rgba(150, 58, 180, 0.27494747899159666) 0%,
    rgba(29, 131, 253, 0.6783088235294117) 50%,
    rgba(192, 69, 252, 0.10968137254901966) 100%
  ); */

  background :url('../images/bg1.jpg');
  z-index: -1; /* Place the background behind the content */
  /* background-image: url("./assets/images/bg1.jpg"); */
  background-size: cover; /* Adjust the sizing of the background image */
  background-position: center center; /* Position the background image */
  opacity: 0.8; /* Adjust the opacity as needed */
}

.containers {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 110px; */
  /* width: 1100px; */
}

.price-card-container {
  display: flex;
  margin: 0px auto;
  flex-wrap: wrap;
  max-width: 990px;
}

.price-card {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  background-color: white;
  margin: 15px;
  width: 300px;
  border: 1px solid white;
  transition: all ease-in-out 400ms;
}

.price-card:hover {
  box-shadow: 0px 0px 10px 3px grey;
}

.price-card-title {
  margin: 0;
  margin-bottom: 10px;
}

.price-card-separator {
  height: 1px;
  background-color: #258cdb;
  margin: 10px 0;
  border-radius: 5px;
}

.price-section {
  font-size: 36px;
  margin-bottom: 20px;
  display: flex;

    justify-content: space-evenly;
  
    align-items: center;
}

.price-card-duration {
  font-size: 18px;
  font-weight: normal;
}

.price-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.price-card-feature {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.price-card-start-button button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  width: 200px;
  border: none;
  margin-bottom: 15px;
}

.price-card-feature-icon {
  margin-right: 10px;
  color: green;
  font-weight: bold;
  padding: 0px 5px;
  margin-right: 0px;
  /* border: 2px solid;
  border-radius: 50%; */
}

.price-card-feature-icon.out {
  color: grey;
}

/* dvfdgbhyjkiuloulyiuyhyu */

.features {
  background: white;
  padding: 15px;
  border-radius: 15px;
  margin: 10px 0px 20px;
}

.table.table-bordered {
  margin-bottom: 0px;
}

.container .title {
  text-align: center;
  margin: 30px 0px;
}

.fixed-header {
  overflow: auto;
  height: 500px;
}

thead th {
  width: 25%;
  background-color: rgb(255, 250, 250);
  position: sticky;
  top: 0;
  vertical-align: middle !important;
}

.price-repeat {
  font-weight: 500;
    color: grey;
}

tbody tr:hover {
  background: #f4f4f4;
  /* box-shadow: 0px 0px 10px 5px #c9c9c9; */
}

tbody td:not(:first-child),
thead th:not(:first-child) {
  text-align: center;
}

.table td {
  vertical-align: middle;
}

.fa-solid.fa-plus {
  float: right;
  border: 1px solid black;
  padding: 4px 5px;
  border-radius: 50%;
  font-size: 12px;
}

/* toggle bar  */
.toggle-container {
  display: flex;
  margin-bottom: 20px; /* Adjust margin as needed */
  padding-top: 110px;
  align-items: center;
  justify-content: flex-end;
}


.toggle-area:hover {
  box-shadow: 0px 0px 8px 0px grey;
}

.toggle-center {
  margin: auto;
}
.toggle-area {
  background-color: white;
  padding: 8px 20px;
  border-radius: 60px;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.toggle-label {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
  margin-bottom: 0px;
}

.toggle-label input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #2196f3;
}

input:focus + .toggle-slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .toggle-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.toggle-text {
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .price-card {
    width: calc(50% - 30px);
  }

  .containers {
    height: auto;
    padding-bottom: 30px;
  }
  .price-card-container,
  .toggle-center {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .price-card,
  .toggle-center {
    width: calc(300px + 10%);
  }

  .toggle-area {
    margin-right: 0px;
  }

  .containers {
    height: auto;
  }

  .price-card-container {
    justify-content: center;
  }

  .row.part {
    margin-left: 0px;
    margin-right: 0px;
  }

  .price-card-feature-icon {
    padding: 2px 5px;
    /* border: 1px solid green; */
  }

  .table-scrollable {
    max-height: 300px;
    overflow-y: auto;
  }
}

@media (min-width: 1200px) {
  .toggle-center {
    width: 990px;
  }
}

/* iofgertkhpyl[tupkoypl;,hyjupl;kkiup] */
