#jl-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background: #0073aa; */
    color: #fff;
    font-size: 24px;
    /* width: 50px;
    height: 50px;
    border-radius: 50%; */
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    z-index: 9999;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.3); */
    line-height: 25px;
    border-radius: 10px;
    padding: 8px;
}
#jl-float-btn span {
    font-size: 16px;
}
#jl-float-btn::after {
    /* content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 9999;
    bottom: 20px;
    background-color: #FB8500; */
}

.loader-hire {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #FB8500;
  box-shadow: 0 0 0 0 #FB85003D;
  animation: l2 1.5s infinite linear;
  position: absolute;
  right: 7px;
  bottom: 20px;
}
.loader-hire:before,
.loader-hire:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 #FB85003D;
  animation: inherit;
  animation-delay: -0.5s;
}
.loader-hire:after {
  animation-delay: -1s;
}
@keyframes l2 {
    100% {box-shadow: 0 0 0 40px #0000}
}

#jl-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#jl-modal form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
	height: 500px;
    overflow-y: scroll;
}

#jl-modal form#jl-referral-form h3 {
    font-size: 30px;
    font-weight: 400;
    color: #000;
}


#jl-modal input, #jl-modal textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
}
#jl-modal input[type="text"], #jl-modal input[type="email"], #jl-modal input[type="tel"], #jl-modal textarea, #jl-modal input[type="number"] {
    height: 2.857em;
    box-sizing: border-box;
    transition: all 0.3s;
    background: none;
    border-width: 0;
    border-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    outline: none !important;
    box-shadow: unset;
}
#jl-modal input[type="text"]:focus {
	color: unset;
    background-color: rgba(233,245,252,1) !important;
    border-color: #d5e5ee;
}
textarea {
    height: 220px !important;
    resize: none;
}
#jl-modal button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

#jl-modal form p {
    color: #000;
    font-size: 16px;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba; /* WP Blue */
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#jl-referral-form {
  overflow-y: auto; /* Ensure vertical scrolling is enabled */
  scrollbar-width: thin;         /* For Firefox */
  scrollbar-color: #888 transparent; /* For Firefox */
}

/* Webkit browsers (Chrome, Edge, Safari) */
#jl-referral-form::-webkit-scrollbar {
  width: 6px; /* Make scrollbar thin */
}

#jl-referral-form::-webkit-scrollbar-track {
  background: transparent; /* Optional: makes track invisible */
}

#jl-referral-form::-webkit-scrollbar-thumb {
  background-color: #888;  /* Scrollbar color */
  border-radius: 10px;     /* Rounded corners */
}

/* Remove up/down scroll buttons on WebKit */
#jl-referral-form::-webkit-scrollbar-button {
  display: none;
  height: 0;
}
