
.form-group{
    margin-bottom: 25px !important;
}

.form-inner{
    margin-bottom: 15px;
    display: flex;
}

.package{
    width: 100%;
    height: 100%;
    border: 1px solid black;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.package h5{
    margin-top: 30px;
}

#loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    z-index: 999;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.activity-check-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.activity-check-box input[type=checkbox]{
    height: 25px;
    width: 25px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .sliderCheck {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .sliderCheck:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .sliderCheck {
    background-color: #2196F3;
  }
  
  input:focus + .sliderCheck {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .sliderCheck:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .sliderCheck.round {
    border-radius: 34px;
  }
  
  .sliderCheck.round:before {
    border-radius: 50%;
  }




.header {
    position: fixed;
    top: 0;
    z-index: 10;
}

.col-6{
  overflow: auto;
}

.col-title {
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  border: 1px solid rgb(209, 209, 209);
  overflow: auto;
}

.table-rows .col-title {
  padding: 8px;
  font-size: 18px;
  font-weight: 500;
}

.table-rows .row:nth-child(odd) {
  background-color: #e4e4e4;

  >div {
      color: black;

      >a {
          color: black;
      }
  }
}

.table-rows .row:nth-child(even) {
  background-color: gray;

  >div {
      color: white;

      >a {
          color: white;
      }
  }
}