body {
    width: 80%; 
    margin: 0 auto;
}

.nimbus-responses {
    font-size: 95%;
    font-family: 'Nunito Sans', Geneva, Tahoma, sans-serif;
    background-color: #cce6ff;
    border-radius: 25px;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.nimbus-query {
    background-color: rgb(255, 204, 204);
    font-weight: bold; 
    color: black; 
    border-radius: 10px; 
    padding: 5px;
}

.form-check-inline {
    white-space: nowrap;
    background-color: #dddee0;
    padding: .3em 1em;
    border-radius: 99em;
    -webkit-transition: box-shadow cubic-bezier(0.2, 0, 0, 1) 100ms;
    transition: box-shadow cubic-bezier(0.2, 0, 0, 1) 100ms;
}

/* Hide the checkbox */
.hidden-control {
    display: none;
}

/* Style the div to make it look clickable */
.form-check-inline-wrap {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.mt-1, .my-1 {
    margin-top: .25rem !important;
}

/* Blue border on hover */
.form-check-inline-wrap:hover {
    border-color: blue;
}

/* Additional styling for the tick and text */
.form-check-icon {
    margin-right: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.form-check-label-text {
    transition: all 0.3s ease;
}

.form-check-input:checked ~ .form-check-icon,
.form-check-input:checked ~ .form-check-label-text {
    background-color: blue;
    color: white;
}

.form-check-inline.checked {
    background-color: blue;
    color: white;
    border-color: blue;
}

.spacer {
    width: 100%;
    height: 350px;
}

.fixed-menu {
    max-width: 80%;
    padding: 0px;
    background-color: white; 
    z-index: 1000;
}

.checkbox-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping; ensure they stay in a single line */
    gap: 10px; /* Space between checkboxes */
    align-items: center; /* Align checkboxes vertically */
}

.orangeBg{
    background-color: #ff595a !important;
    color: #fff;
  }

.yellowBg{
    background-color: #fbc713 !important;
  }

.borderYellow {
    border:1px solid #fbc713;
  }

.greenBG{
    background-color: #8fd14f !important;
    color: #ffffff;
  }
  
.borderGreen {
    border:1px solid #8fd14f;
  }

.sticky-top {
    position: sticky;
    top: 0; /* Sticks the h6 to the top of the screen */
    z-index: 1000; /* Ensure it stays on top of other elements */
    background-color: inherit;
}

.widget {
    text-align: center;
      padding: 5rem;
      position: relative;
}

.widget .widget-chart-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: .25;
    z-index: 6;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    overflow: hidden;
  }

  .landingPage__sidebar {
    width: 300px;
    height:100vh
  }
  
  .landingPage {
    width:100%;
    max-width: 1900px;
    margin: auto;
  }
  
  .mainHeading {
    font-size: 1.8rem;
    font-family: 'Joan', serif;
  }
  .textJoan {
    font-family: 'Joan', serif;
  }
   ul.nav li a {
    font-weight:400;
  }
  .bg-arielle-smile{
    background-image: -webkit-radial-gradient(center,circle 248px,#16d9e3 0%,#00263A 47%,#00263A 100%)!important;
    background-image: -o-radial-gradient(center,circle 248px,#16d9e3 0%,#00263A 47%,#00263A 100%)!important;
    background-image: radial-gradient(circle 248px at center,#16d9e3 0%,#00263A 47%,#00263A 100%)!important;
  }
  .bg-love-kiss {
    background-image: -webkit-gradient(linear,left bottom,left top,from(#FF595A),to(#ffb199))!important;
    background-image: -webkit-linear-gradient(bottom,#FF595A 0%,#ffb199 100%)!important;
    background-image: -o-linear-gradient(bottom,#FF595A 0%,#ffb199 100%)!important;
    background-image: linear-gradient(to top,#FF595A 0%,#ffb199 100%)!important;
  }