html {
    font-size: 16px !important;
    font-family: "Strawford", Sans-serif !important;

}

.wpcf7-spinner::before {
    top: 0.25rem;
    left: 0.25rem;
    width: 0.375rem;
    height: 0.375rem;
    transform-origin: 0.5rem 0.5rem;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: absolute;
    right: -1rem;
    left: auto;
    top: 0.2125rem;
    width: 1.5rem;
    height: 1.5rem;
}

.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

body {
    font-size: 16px;
    font-family: "Strawford", Sans-serif !important;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.gradient-bar {
    background: linear-gradient(90deg, #FF5A00 0%, #6446DF 100%);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.gradient-bar a {
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}
.gradient-bar a:hover{
    text-decoration: underline;
}
.top-links {
    text-align: right;
    font-size: 0.9rem;
    color: gray;
}

.top-links li {
    list-style: none;
    display: inline-block;
}

.top-links a {
    margin-left: 1rem;
    text-decoration: none;
    color: #737373;
    font-size: 0.93rem;
}

.top-links a:hover {
    text-decoration: underline;
    color: black;
}
.search-input {
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    width: 12rem;
    height: 2.1rem;
  }

  .search-input input {
    border: none;
    outline: none;
    flex: 1;
    height: 2rem;
    text-indent: 0.5rem;
    font-size: 1.09rem;
    color: #737373 !important;
    font-weight: 500;
  }
  .search-input input::placeholder  {
   color: #737373;
  }
  .search-input input:focus { 
    background-color: #fff;
    border: unset; 
    outline: 0;
    box-shadow:unset;
   }

  .search-input .search-icon {
    color: orange;
    font-size: 1.2rem;
    cursor: pointer;
  }
#navbarNav {
    display: flex !important;
    flex-basis: auto;
}

.navbar-logo img {
    height: 40px;
    max-width: 100%; 
}

.navbar-nav {
    gap: 2rem;
}

.navbar-nav .nav-link {
    font-size: 1.09rem;
    color: #737373;
    font-weight: 500;
    line-height: 1.3; 
}

.navbar-toggler {
    border: unset;
}

.navbar-toggler:focus {
    border: unset;
    outline: 0;
    box-shadow: unset;
}

.navbar-nav .nav-link:hover {
    color: black;
}

.contact-btn {
    position: relative;
    color: #FF5A00;
    transition: all 0.3s ease;
    font-weight: 500;
    background: white;
    /* Button background */
    border-radius: 8px;
    /* Rounded corners */
    z-index: 1;
    overflow: hidden;
    /* Hide overflow for the gradient effect */
    line-height: 2rem;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff7e5f, #6a11cb);
    /* Gradient border */
    border-radius: 8px;
    /* Match the button's border radius */
    z-index: -1;
    padding: 1.1px;
    /* Border thickness */
    -webkit-mask:
        linear-gradient(white, white) content-box,
        linear-gradient(white, white);
    /* Mask for the content area */
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.contact-btn:hover {
    color: #6a11cb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.40rem;
}

.banner {
    background-image: url('images/banner-bg.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    text-align: left;
}

.btn-banner {
    background-color: #fff;
    font-weight: 700;
    color: #FF5A00;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border-radius: 1.2rem;
    padding: 1rem 2rem;
    text-transform: uppercase;
    margin-top: 1rem;
}

.btn-banner:hover {
    color: #781E80;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.txt-banner {
    width: 26.12rem;
    font-size: 1.87rem;
    font-weight: 600;
}
.txt-banner sup{
    top: -0.4em;
    font-size: 70%;
}
.banner h1 {
    font-size: 4.29rem;
}

.mob-banner img {
    width: 100%;
}

.banner-content {
    color: #fff;
    padding: 7% 0 11% 0;
}

.gradient-text {
    font-size: 1.75rem;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(to right, #FF5A00,#6446DF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text sup{
    color: #781E80  !important;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #781E80 ;
    top: -0.4rem;
}

.new-patient-txt {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.new-patient-txt p {
    max-width: 41rem;
}

.txt-lovender {
    color: #781E80;
}

.txt-orange {
    color: #FF5A00;
}

.txt-purple {
    color: #532F88;
}

.fda-approved-txt {
    font-size: 1.43rem;
    max-width: 49rem;
    margin-bottom: 3rem;
    font-weight: 500 ;
}
.fda-approved-txt sup{
    font-size: 1.5rem;
    top: 0;
}
.fda-approved-txt sup.num{
    font-size: 1rem;
    top: -0.4rem;
}
.info-cards .card {
    border: 2px solid #FF5A00;
    border-radius: 1.4rem;
    transition: all 0.3s ease-in-out;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
    padding: 2rem 2.6rem;
    font-weight: 500;
    background-color: #F6F6F6;
    text-align: center;
}

.info-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #F9F9F9;
}

.card-container {
    background-color: #F6F6F6;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.card img {
    height: 5.62rem;
    margin: 2rem 0;
}

/* Section Headers */
.comparison-table .section-header {
    background-color: #781E80 !important;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    padding: 0.5rem 1.5rem !important;
}

.bor-none,
.bor-none th {
    border: unset;
}

.table-top-txt {
    max-width: 55rem;
    margin: 0 auto;
}

.table-top-txt p {
    font-size: 1.75rem;
    font-weight: 500;
}

/* Table Cell Styles */
.table-container{
margin: 0 auto;
padding-top: 4rem;
padding-bottom: 4rem;
}
.comparison-table {
    max-width: 48rem;
    margin: 0 auto;
}

.comparison-table th {
    text-align: center;
    vertical-align: middle;
}
.comparison-table tr{
    border: 0;
}
.comparison-table td {
    text-align: center;
    vertical-align: middle;
    font-size: 1.40rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 1rem 1.5rem !important;
    border: 0;
}
.comparison-table td small {
    font-size: 80%;
}
.comparison-table td:first-child {
    text-align: left;
}

/* Icons Styling */
.check-icon {
    color: green;
    font-size: 1.25rem;
}

.cross-icon {
    color: red;
    font-size: 1.25rem;
}

/* Alternating Row Colors */
.striped-row tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.striped-row tr td:nth-child(1) {
    max-width: 15.71rem;
}

.striped-row tr td img {
    width: 1.29rem;
}


.accord-description {
    margin-bottom: 1.5rem;
}

.accord-cta {
    margin-top: 2rem;
}

.accord-cta a {
    background-color: #fff;
    color: #ff6600;
    font-weight: bold;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.accord-cta a:hover {
    background-color: #ff6600;
    color: #fff;
}

.accord-container {
    margin: 0;
    padding: 0;
    color: #fff;
    background: linear-gradient(90.96deg, #FF5A00 9.23%, #FF5A00 49.22%, #FF7A00 87.04%, #FF7A00 99.7%);

}

.accord-section {
    text-align: center;
    padding: 7rem 0;
    max-width: 59.45rem;
    margin: 0 auto;
}

.accord-section p {
    font-size: 1.71rem;
}

.accord-logo {
    margin-bottom:4.5rem; 
}

.accord-logo img {
    max-width: 26.40rem;
}

.accord-description {
    margin-bottom: 1.5rem;
}

.accord-cta {
    margin-top: 2rem;
}

.accord-cta a {
    background-color: #fff;
    color: #ff6600;
    font-weight: bold;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 1rem;
    border: 2px solid #fff;
    transition: background-color 0.3s, color 0.3s;

}

.accord-cta a:hover {
    background-color: #FF5A00;
    border: 2px solid #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.cookie-banner p {
    font-size: 0.93rem;
}

.cookie-banner btn {
    border-radius: 0;
}

.cookie-banner .btn-cookie-settings {
    background-color: #e9ecef;
    border: none;
}

.cookie-banner .btn-accept-all {
    background-color: #28a745;
    color: #fff;
}

/* from*/
.form-section {
    background-color: #F6F6F6;
    padding: 5rem 0;
}

.form-section .text-danger {
    color: #f00 !important;
}

.form-container {}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    color: #5a2a82;
    font-size: 2.18rem;
    font-weight: 700;
}

.form-header p { 
    font-size: 1.56rem;
    font-weight: 500;
}

.form-control {
    height: 4.53rem;
    line-height: 4.53rem;
    text-indent: 1.5rem;
    font-size: 1.40rem;
    padding: 0;
}

.form-select {
    height: 4.53rem;
    line-height: 4.53rem;
    text-indent: 1.4rem;
    font-size: 1.40rem;
    font-weight: 500;
    padding: 0;
}
select.form-control {
    padding: 0 1rem;
    font-weight: 500;
    text-indent: 0.5rem;
}
select option {
    color: #151515;
    font-weight: 500; 
}

.asterisk input,
.asterisk select {
    background-image: url(images/asterisk.png);
    background-repeat: no-repeat;
    background-position: 1rem 1.6rem;
    background-size: 0.5rem;
    color: #2F2F2F;
}

.custom-select {
    position: relative;
}

.custom-select:after {
    content: '';
    position: absolute;
    background-image: url(images/select-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 0.675rem;
    width: 1.2375rem;
    top: 50% !important;
    right: 1.2rem;
    transform: translate(0, -50%);
    z-index: 0;
}

.form-control::placeholder,
option:disabled {
    color: #151515;
    font-weight: 500;
}

.custom-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 500;
    color: #333;
    max-width: 43.5rem;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    width: 2rem;
    height: 2rem;
    border: 1px solid #FF4500;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    outline: none;
    margin-right: 1rem;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: #FF4500;
    appearance: none;
    background-image: url(images/check-box.svg);
    background-size: 1.25rem !important;
    background-size: 80%;
    background-position: center;
}

.custom-checkbox input[type="checkbox"]:checked::after {
    content: '';
    background-image: url(images/check-box.svg);
    background-size: 1.25rem !important;
    z-index: 99;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.thankyou{
    padding: 11rem 0;
}
.thankyou h2{
    font-size: 3rem;
}
.thankyou p{
    font-size: 2rem;
}
.btn-back-to-top{
    background-color: #fff;
    border: 1px solid #fff;
    color: #333;  
    display: inline-block;
    height: 3.12rem;
    line-height: 3.12rem; 
    text-transform: uppercase; 
    padding: 0 3rem !important;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
}
.error {
    border: 2px solid #f00 !important;
}

.custom-checkbox label {
    line-height: 1.4;
}

.btn-submit {
    background-color: #FF5A00;
    border: 2px solid #FF5A00;
    height: 3.12rem;
    line-height: 3.12rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: #fff;
    color: #FF5A00;
    border: 2px solid #FF5A00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.isi-pane-toggler {
    height: 1.8rem;
    width: 1.8rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    cursor: pointer;
    outline: none !important;
}
.top-content{
    display: none;
}
.back-to-top {
    /* display: none; */
    align-items: center;
    color: #BEBCBD;
    text-decoration: none !important;
    position: fixed;
    bottom: 17rem;
    right: 5rem;
    z-index: 20;
}

.back-to-top img {
    width: 2.5rem;
}

/* isi-pane  */
#isi-pane {}
#isi-pane h4{
    font-weight: 700;
}
.isi-pane h2 {
    font-size: 1.75rem;
    font-weight: bold;
    font-family: "Strawford", Sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.isi-additional-text sup {
    top: -0.3em;
}

.isi-pane p {
    font-size: 1.4rem;
    line-height: 1.3;
}

.isi-pane ul li {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.3125rem;
}

.isi-pane ul li:last-child {
    margin-bottom: 0;
}

.isi-pane ul li ul {
    list-style: disc;
}

.isi-pane ul {
    padding-left: 0;
    list-style-position: outside;
    margin: 0 0 1.25rem 1.6rem;
}

.isi-pane-content a {
    color: #2F2F2F;
    font-weight: bold;
}

.isi-pane-content h3 {
    font-size: 1.75rem;
    font-weight: bold; 
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.isi-pane .fs-28-simple {
    font-size: 1.75rem;
}

.isi-pane {
    background-color: #fff;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 3.125rem;
}

.isi-pane>.custom-html-widget {
   /* height: 15.625rem; */
    height: 13.625rem;
    background-color: #fff;
    width: 100%;
}

.isi-pane:not(.full-content)>.custom-html-widget {
    position: fixed;
    bottom: 0;
    padding-top: 2rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.isi-pane:not(.full-content) .isi-pane-content {
    overflow: auto;
    overflow-x: hidden;
    height: 9.6rem;
    scrollbar-color: transparent transparent !important;
}

.isi-pane.expanded .isi-pane-content {
    height: calc(100vh - 18.5rem);
}

.isi-pane.full-content>.custom-html-widget,
.isi-pane.expanded>.custom-html-widget {
    height: auto;
}

.isi-pane,
.isi-pane.expanded>.custom-html-widget {
    padding-top: 2.375rem;
}

.isi-pane-toggler {
    height: 1.8rem;
    width: 1.8rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    cursor: pointer;
    outline: none !important;
    background-image: url(images/plus-minus.png);
    display: inline-block;
}
.isi-small{
    font-size: 80%;
}
.isi-pane.expanded .isi-pane-toggler {
    background-position: 0 100%;
}

.isi-pane.full-content .isi-pane-toggler {
    display: none;
}
.isi-link{
    color: #FF5A00 !important;
    font-weight: 400 !important;
}
body.scroll-hide {
    overflow: hidden;
}

body.scroll-hide .back-to-top {
    display: none !important;
}

footer {
    background-color: #F9F9F9;
    padding: 3rem 0;
}
footer img{
    max-width: 100%;
}
.foot-logo{
    width: 21.7rem;
}
.footer-social-icon {
    padding: 2rem 0;
}

.footer-social-icon a {
    width: 2.5rem;
    display: inline-block;
}

.footer-social-icon a img {
    height: 1.8rem;
    max-width: 100%;
}

footer .menu-item {
    display: inline-block;
    padding: 0 1.4rem 0 0;
}

footer p {
    font-size: 0.93rem;
    color: #737373;
    max-width: 49rem;
    font-weight: 500;
}
footer .footer-logo-box{
    width: auto;
    padding-right: 4rem;
}
footer .menu-item a {
    color: #737373;
    text-decoration: none !important;
    font-size: 0.93rem;
}

footer .menu-item a:hover {
    text-decoration: underline !important;
}

footer ul {
    padding: 0;
}
 
/*Cookis prefrences CSS start*/
 

.cky-modal{
    width: 60rem;
}

.cky-modal .cky-preference-center { 
    width: auto !important;
    background: none !important;
}
.cky-modal .cky-preference-header .cky-preference-title {
    font-weight: normal;
}
.cky-modal .cky-prefrence-btn-wrapper {
    display: none !important;
}

.cky-modal .cky-preference-header {
    border: none;
    padding: 1rem 2rem 1rem;
}

.cky-modal .cky-accordion-header {
    border: 1px solid #F36C23;
    background-color: #ffffff;
    position: relative;
    padding: 1rem 1.5rem 1rem 3.75rem;
}
.cky-modal .cky-accordion-header .cky-accordion-btn, 
.cky-modal .cky-accordion-header .cky-always-active{
    font-weight: normal;
}
.cky-modal .cky-accordion-wrapper .cky-accordion + .cky-accordion{
    margin-top: 1rem;
}

.cky-modal .cky-audit-table {
    display: table;
}
.cky-modal .cky-audit-table .cky-cookie-des-table {
    display: table-row;
}
.cky-modal .cky-audit-table .cky-cookie-des-table li{
    display: table-cell;
}
.cky-modal .cky-audit-table .cky-cookie-des-table:first-child li div:first-child{
    background-color: #3A4855;
    color: #ffffff;
    font-weight: normal !important;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.cky-modal .cky-audit-table .cky-cookie-des-table:not(:first-child) li div:first-child, 
.cky-modal .cky-footer-shadow,
.cky-modal .cky-accordion:not(.cky-accordion-active) .cky-accordion-header-des,
.cky-modal .cky-audit-table .cky-empty-cookies-text  {
    display: none;
}

.cky-modal .cky-audit-table .cky-cookie-des-table,
.cky-modal .cky-audit-table .cky-cookie-des-table p{
    font-size: 1.25rem;
    line-height: 1.5;
}

.cky-modal .cky-audit-table .cky-cookie-des-table li:first-child {
    width: 18.3rem;
}
.cky-modal .cky-audit-table .cky-cookie-des-table li:nth-child(2) {
    width: 10rem;
}
.cky-accordion .cky-accordion-item { 
    position: relative;
}
.cky-modal .cky-accordion-chevron {
    width: 1rem;
    position: absolute;
    margin: 0;
    transform: translate(-50%, 0);
    left: 2rem;
    height: 1rem;
    background-image: url('images/icon-angle-chevron-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 1.35rem;
    height: 1.4875rem;
    width: 1.4875rem;
    transition: transform 0.2s linear;
    z-index: 99;
}
.cky-modal .cky-accordion-active .cky-accordion-chevron {
    transform: translate(-50%, 0) rotate(90deg);
}
.cky-modal .cky-accordion.cky-accordion-active .cky-accordion-body {
    padding: 0;
}

.cky-modal .cky-accordion .cky-accordion-chevron i::before {transform-origin: center;}

/*.cky-modal .cky-preference-header,
.cky-modal .cky-preference-body-wrapper{
    padding:0
}*/
.cky-modal .cky-preference-header{
    margin-top:0.5rem;
}
.cky-modal .cky-modal-btn{
    text-align: right;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}
.cky-modal .cky-accordion-header-des,
.cky-modal .cky-accordion.cky-accordion-active .cky-accordion-body{
    padding: 0 2rem
}
.cky-modal .cky-accordion-header-des p{
    margin-bottom:0;
}
.cky-modal .cky-accordion-header-des{
    margin-bottom: 0.5rem;
}
 
.cky-modal .cky-preference-content-wrapper p,
.cky-modal .cky-accordion-header-des p,
.cky-modal .cky-accordion-header .cky-accordion-btn{
    font-size:1.2rem;
    line-height: 1.45;
}
.cky-modal .cky-preference-header .cky-preference-title {
    font-size: 2rem;
    line-height: 36px;
    font-weight: 500;
}
.cky-modal .cky-accordion-header .cky-always-active,
.cky-modal .cky-accordion-header .cky-switch label{
    color: #151515;
    font-size: 1rem;
}
.cky-btn:last-child{
    color: #FFFFFF;
    background-color: #781E80 !important;
    border-color:  #781E80 !important;
}
a.cky-modal-button.btn {
    padding: 0.75rem 2.5rem;
    border-radius: 1.875rem;
    background-color: #781E80;
    color: #ffffff;
    font-size: 1.1875rem;
    line-height: 1.5;
    font-weight: bold;
}

.cky-modal .cky-audit-table .cky-cookie-des-table li div {
    padding: 1rem 1.875rem;
}

.cky-modal .cky-cookie-des-table li div:last-child {
    margin-left: 0;
}
.cky-modal .cky-preference-content-wrapper.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 7.7rem;
}
.cky-modal .cky-accordion-chevron i {
    display: none;
}
.her-cookie-preference-btn a{
    cursor: pointer;
}
.cky-modal .cky-accordion-header .cky-switch input:checked {
    background-color: #781E80!important;
}
.cky-modal .cky-accordion-header .cky-switch label{
    margin-right: 0.5rem;
    font-weight: bold;
}
.cky-modal .cky-accordion-header .cky-switch{
    align-items: center;
}
/*End of Cookies prefrences CSS */
 
.cky-modal .cky-preference-center:focus, .cky-modal .cky-preference-center:focus-visible {
    outline: none;
}


@media (max-width: 992px) {
    .banner {
        background-image: unset;
        background: linear-gradient(45deg, #FF5A00, #a644b5);
        padding: 4rem 0;
    }
}

/*/////////////////Responsive CSS Rules//////////////*/
@media screen and (min-width:2300px) {
.banner-content { 
    padding: 20% 0 20% 0;
}
}
@media screen and (min-width:1740px) {
    .container {
        max-width: 1500px !important;
    }

    html {
        font-size: 100% !important;
    }
}

@media screen and (min-width: 1680px) and (max-width: 1739.99px) {
    html {
        font-size: 90% !important;
    }

    .container {
        max-width: 1474px;
    }

    .banner-content {
        padding: 9% 0;
    }
}

@media screen and (min-width: 1400px) and (max-width: 1679.99px) {
    html {
        font-size: 80.5860% !important;
    }

    .container {
        max-width: 1320px;
    }

    .banner-content {
        padding: 10% 0;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399.99px) {
    html {
        font-size: 74.59706% !important;
    }

    .container {
        max-width: 1140px;
    }

    .banner-content {
        padding: 6% 0 8% 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 80% !important;
    }

    .container {
        max-width: 960px;
    }

    .banner-content {
        padding: 9% 0;
    }

    .banner h1 {
        font-size: 3.29rem;
    }
}
@media screen and (min-width:1024px){
    .navbar-nav .nav-link{ 
        padding: 0 !important;
    }
}
@media screen and (max-width: 991px) {
    html {
        font-size: 65.60805% !important;
    }

    .banner-content {
        padding: 3% 1rem;
    }

    .mob-btn {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        border: 0;
        background-image: url('images/m-menu.svg');
        background-repeat: no-repeat;
        background-color: unset;
        margin-top: 1rem;
    }

    .navbar>.container {
        position: relative;
        padding: 0 1.5rem;
    }

    .mob-btn.open {
        background-image: url('images/mobile-menu-close.svg');
    }

    #navbarNav {
        display: none !important;
    }

    #navbarNav.open {
        display: block !important;
        position: absolute;
        right: 0;
        background: #fff;
        top: 4rem;
        padding: 2rem;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

}

@media screen and (max-width: 767px) {
    html {
        font-size: 81% !important;
    }

    .row>* {
        padding-right: calc(var(--bs-gutter-x)* 1);
        padding-left: calc(var(--bs-gutter-x)* 1);
    }

    .accord-description {
        padding:1.5rem 2rem;
    }

    .form-container {
        padding: 0 1.5rem;
    }

    .textwidget .container {
        padding: 0 1.5rem;
    }

    .top-links {
        text-align: center;
    }

    .top-links li {
        max-width: 25%;
    }

    .top-links a {
        margin-left: 0 !important;
        line-height: 1rem;
    }

    .banner h1 {
        font-size: 4rem; 
    }

    .gradient-bar {
        background: linear-gradient(90deg, #FF5A00 0%, #FF5A00 100%);
        color: white;
        text-align: center;
        padding: 0.5rem 0;
    }
    .fda-approved-txt { 
        padding: 0 2rem;
    }
    .contact-btn {
        line-height: 1rem !important;
    }
    .navbar-nav .nav-link br{
        display: none;
    }
    .isi-pane.expanded .isi-pane-toggler {
        background-position: 100% 190%; 
    }
}

@media screen and (max-width:576px) {
    html {
        font-size: 60% !important;
    }
    .navbar-logo { 
        max-width:14rem;
    }
    nav.navbar{
        border-top: 1px solid #BDBDBD;
        margin-top: 0.7rem;
    }
    .search-input { 
        border-radius: 30px;
        padding: 5px 8px 5px 5px; 
    }
    .search-input input { 
        height: 1.8rem;
        text-indent: 0.5rem;
    }
    .search-box {
        max-width: 25%;
        margin-left: 1rem;
    }
    .info-cards .card {
        max-width: 22rem;
        margin: 0 auto;
        text-align: center;
    }
    .gradient-bar a { 
        font-size: 1.1rem; 
    }
    .accord-section p:first-of-type{
        margin-bottom: 3rem;
    }
    .imuldosa-data-sec .container {
        padding-right: 0;
        padding-left: 0;
    }
    .new-patient-txt p { 
        padding: 0 2.8rem;
    }
    .table-container {
        margin: 0 auto ;
        padding-top: 4rem;
        padding-bottom: 1rem;
    }
    .table-top-txt p { 
        padding: 0 4rem;
        line-height: 1.3;
    }
    .comparison-table td { 
        font-size: 1.20rem; 
        line-height: 1.6rem;
    }
    .comparison-table .section-header { 
        font-size: 1.25rem;
        font-weight: 700; 
        padding: 0.7rem 1.5rem !important;
    }
    .striped-row tr td img {
        width: 2.3rem;
    }
    .accord-section {  
        padding: 8rem 0 10rem;
    }
    .accord-cta {
        margin-top: 5rem;
    }
    .accord-section p {
        font-size: 2.1rem;
        line-height: 1.3;
    }
    .form-header h2 { 
        margin-bottom: 2rem;
    }
    .form-header p { 
        padding: 0 3rem;
    }
    footer p,   footer .menu-item a {
        font-size: 1.3rem; 
    } 
    footer .menu-item {
        display: block; 
    }
    .footer-social-icon a {
        width: 3rem; 
        margin-right: 1rem;
    }
    .footer-social-icon a img {
        height: 2.8rem; 
    }
    .txt-banner { 
        font-size: 2.3rem;
        line-height: 1.3;
        width: 32.12rem;
    }
    .btn-banner { 
        font-size: 1.7rem;  
        padding: 1.20rem 2.2rem; 
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3rem;
    }
    footer .footer-logo-box { 
        padding-right: 0;
    }
    .cky-notice-btn-wrapper {
        flex-direction: row !important;
    }
    .cky-notice-btn-wrapper .cky-btn-customize {
        order: 1 !important;
    }
    .cky-notice-btn-wrapper .cky-btn {
        width: auto !important;
        padding: 8px 2rem !important; 
    }
    .cky-notice-btn-wrapper {  
        display: block !important;
    }
    [data-cky-tag="detail-powered-by"] {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        height: 0;
        width: 0;
    }
    .cookies-popup .yes-no-button .btn-lt-orange {
        width: 9.5rem !important;
        padding: 0 !important;
        display: inline-block;
        height: 3.0625rem;
        line-height: 3.0625rem;
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .cky-modal .cky-preference-header {
        margin-top: 1.5rem;
    }
    
    .cky-modal .cky-accordion-header-des, 
    .cky-modal .cky-accordion.cky-accordion-active .cky-accordion-body {
        padding: 0;
    }
    .cky-modal .cky-modal-btn{
        text-align: center;
    }
    .cky-modal .cky-accordion-header .cky-always-active,
    .cky-modal .cky-accordion-header .cky-switch label {
        font-size: 0.8125rem;
    }
    .cky-modal .cky-accordion-chevron {
        top: 2.2rem;
        height: 1.0875rem;
        width: 1.4875rem;
        left: 1.2rem;
        margin-top: -0.54375rem;
    }
    .cky-modal .cky-accordion-header {
        padding-left: 2.05rem;
        padding-right: 0.7rem;
    }
    .cky-modal .cky-preference-content-wrapper.line-clamp {
        -webkit-line-clamp: 7;
        height: 11.2rem;
    }
    .cky-accordion-wrapper {
        margin-top: 1rem;
    }
    .cky-modal .cky-audit-table .cky-cookie-des-table, .cky-modal .cky-audit-table .cky-cookie-des-table p {
        font-size: 0.75rem;
    }
    .cky-modal .cky-audit-table {
        width: 36.875rem;
    }
    .cky-modal .cky-audit-table .cky-cookie-des-table li:first-child {
        width: 127.6rem;
    }
    .cky-modal .cky-audit-table .cky-cookie-des-table li:nth-child(2) {
        width: 103rem;
    }
    .cky-modal .cky-audit-table .cky-cookie-des-table li:nth-child(3) {
        width: 359rem;
    }
    .cky-modal .cky-accordion.cky-accordion-active .cky-accordion-body {
        overflow: hidden;
        overflow-x: auto;
    }
    .cky-modal .cky-accordion-header .cky-switch {
        align-items: center;
    }
    .cky-modal .cky-accordion-header .cky-switch label {
        margin-right: 0.5rem;
        font-weight: bold;
    }
    .cky-btn:last-child { 
        margin-left: 1rem !important;
    }
}


.btn-submit {
    display: inline-flex;
    align-items: center;
    padding: 18px 16px; /* Adjust padding as needed */
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    outline: none;
  }
  
  .spinner-wrapper {
    display: flex;
    margin-right: 18px; /* Space between spinner and text */
  }
  
  .spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff; /* White color spinner */
    border-radius: 80%;
    width: 15px;
    height: 15px;
      margin-left:4px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .btn.disabled, .btn:disabled, fieldset:disabled .btn{
    background-color: #FF5A00 !important;
    border: 2px solid #FF5A00;
        color: #fff;
      }
  