
.starter {
text-decoration: underline; text-decoration-thickness: 7px;
text-decoration-color: var(--bm-blue);
}

.card {
    margin: 0 0 30px;
    border: none;
    background-color: var(--bm-neutral-100);
    border: 1px solid var(--bm-neutral-300);
  }
  
  .card-header { 
    border-bottom: 0;
    background: transparent; 
  }

  h5 { 
font-weight: 400;
  }
  
  .card .btn {
    background: var(--bm-blue);
    padding: 8px; 
    color: var(--bm-white);
    border-radius: 7px;
    border: 3px solid var(--bm-blue);
    transition: all 0.3s ease-in-out;
    font-weight: 500;
  }
  
  .card .btn:hover {
    background:transparent;
    color: var(--bm-blue);
    border: 3px solid var(--bm-blue);
  }
  

   /* Container for the toggle switch */
   .toggle-switch {
    position: relative;
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 14px;
    overflow: hidden;
    width: 400px;
    height: 40px;

  }
  /* Hide the native radio inputs */
  .toggle-switch input {
    display: none;
  }
  /* Style the labels as buttons */
  .toggle-switch label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #2f2f2f;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 500;
  }
  /* The sliding background element */
  .toggle-switch .slider {
    position: absolute;
    top: 3px;
    left: 3px; /* starting with a 3px margin */
    width: calc(50% - 6px);  /* half the container minus the margins */
    height: calc(100% - 6px); /* full height minus top and bottom margins */
    background: var(--bm-neutral-700);
    border-radius: 10px;
    transition: left 0.3s ease;
    z-index: 0;

  }

    /* When Monthly is checked, slide the background to the right */
    #monthlyOption:checked ~ .slider {
      left: calc(50% + 3px);
    }
    /* When Annual is checked, slider remains on the left */
    #annualOption:checked ~ .slider {
      left: 3px;
    }
    /* Highlight the active label text */
    #monthlyOption:checked ~ label[for="monthlyOption"],
    #annualOption:checked ~ label[for="annualOption"] {
      color: var(--bm-white);
    }


