.nav-option {
    text-decoration: none;
    color: var(--gray-600);
    margin-left: 1rem;
    margin-right: 1rem;
    cursor: pointer;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    width: 50%;
    padding: 3rem;
    margin: 5rem 0;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  }
  
  .google-button {
    box-shadow: var(--shadow-small);
  }
  
  form .default-input,
  form .simple-input {
    background: var(--input-bg);
    border-radius: 16px;
    height: 64px;
    width: 100%;
    font-family: var(--poppins);
    font-weight: 400;
    padding: 1rem;
    padding-left: 1.5rem;
    font-size: 16px;
    color: #14142b;
    border: none;
  }
  
  form .default-label {
    height: 100%;
    max-width: 90%;
    color: var(--label-text);
    font-size: 16px;
    left: 1.5rem;
    top: 30%;
    pointer-events: none;
    transition: 0.2s ease all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .icon-close {
    right: 1rem;
    top: 30%;
    cursor: pointer;
    display: none;
  }
  
  .default-input:focus ~ .default-label,
  .default-input:not(:focus):valid ~ .default-label {
    top: 4px;
    left: 1.5rem;
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .default-input:focus ~ .icon-close {
    display: block;
  }
  
  .default-input:focus,
  .default-input:not(:focus):valid {
    padding-top: 2.5rem;
  }
  
  .weekday-checkbox {
    display: none;
  }
  
  .check-option {
    top: 25%;
    left: 37%;
  }
  
  input.weekday-checkbox + .check {
    font-family: var(--poppins);
    color: var(--blue-darkmode);
    background-color: var(--main-color-blue-400);
    width: 50px;
    height: 50px;
    border-radius: 100%;
  }
  
  input.weekday-checkbox:checked + label {
    color: white;
    background-color: var(--blue-1000);
    font-style: normal;
  }
  
  input.default-checkbox {
    opacity: 0;
    cursor: pointer;
    height: 25px;
    width: 25px;
  }
  
  input ~ .default-checkmark {
    position: absolute;
    right: 0;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    border: 2px solid #6f756f;
    pointer-events: none;
  }
  
  input.default-checkbox:checked ~ .default-checkmark {
    background-color: var(--blue-1000);
    border: none;
  }
  
  .default-checkmark:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .indicator {
    margin: 0 auto;
    margin-top: 5px;
    height: 4px;
    width: 10px;
    border-radius: 5px;
    background-color: var(--blue-1000);
  }
  
  .adjust-time-button {
    background-color: var(--input-bg);
    width: 30px;
    height: 30px;
    border-radius: 50px;
    color: var(--placeholder-gray);
    font-size: 20px;
  }
  
  .minute {
    color: var(--placeholder-gray);
    font-family: var(--poppins);
    font-size: 13px;
    font-weight: 600;
  }
  
  .allocated-time-input {
    text-align: center;
    padding-left: 1rem !important;
  }

  #spinSpan{
    margin-left: 10px;
    margin-right: 5px;
  }

  @media screen and (max-width : 1200px) and (min-width: 768px){
    .box{
      width: 70%;
    }
  }
  
  
  @media screen and (max-width : 769px){
    .balancee-logo{
      width: 6rem;
    }
  
    .box{
      width: 90%;
      padding: 2.5rem;
      margin: 4rem 0;
    }

    .price-setup-box{
      width: 85%;
    }
  
    form .default-label {
      max-width: 70%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  .timeDiv{
    display: flex;
  }
  @media (max-width: 550px) {
    .timeDiv{
      display: block;
    }
    .closeTime{
      margin-top: 30px;
    }
  }

  @media screen and (max-width : 608px) and (min-width: 426px){
    .price-setup-box{
      width: 85%;
      padding: 1rem;
    }
  }
  
  @media screen and (max-width : 425px){
    .balancee-logo{
      width: 4rem;
    }
  
    .box{
      width: 90%;
      padding: 1rem;
      margin: 2.5rem 0;
    }
  
  }  