/* colors.scss */ /* reset.scss */
/* Remove default margin and padding */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
abbr,
address,
button,
input,
label,
select,
optgroup,
option,
table,
caption,
tfoot,
thead,
tbody,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove table cell border and spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default button and input styles */
input,
select {
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Set default font properties */
body {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default image border */
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Remove default quote styling */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* Set default box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* colors.scss */ /* variables.scss */ /* mixins.scss */
.example {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* utilities.scss */
.m-0 {
  margin: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.p-0 {
  padding: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.m-1 {
  margin: 8px;
}

.mt-1 {
  margin-top: 8px;
}

.mr-1 {
  margin-right: 8px;
}

.mb-1 {
  margin-bottom: 8px;
}

.ml-1 {
  margin-left: 8px;
}

.p-1 {
  padding: 8px;
}

.pt-1 {
  padding-top: 8px;
}

.pr-1 {
  padding-right: 8px;
}

.pb-1 {
  padding-bottom: 8px;
}

.pl-1 {
  padding-left: 8px;
}

.m-2 {
  margin: 16px;
}

.mt-2 {
  margin-top: 16px;
}

.mr-2 {
  margin-right: 16px;
}

.mb-2 {
  margin-bottom: 16px;
}

.ml-2 {
  margin-left: 16px;
}

.p-2 {
  padding: 16px;
}

.pt-2 {
  padding-top: 16px;
}

.pr-2 {
  padding-right: 16px;
}

.pb-2 {
  padding-bottom: 16px;
}

.pl-2 {
  padding-left: 16px;
}

.m-3 {
  margin: 24px;
}

.mt-3 {
  margin-top: 24px;
}

.mr-3 {
  margin-right: 24px;
}

.mb-3 {
  margin-bottom: 24px;
}

.ml-3 {
  margin-left: 24px;
}

.p-3 {
  padding: 24px;
}

.pt-3 {
  padding-top: 24px;
}

.pr-3 {
  padding-right: 24px;
}

.pb-3 {
  padding-bottom: 24px;
}

.pl-3 {
  padding-left: 24px;
}

.m-4 {
  margin: 32px;
}

.mt-4 {
  margin-top: 32px;
}

.mr-4 {
  margin-right: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.ml-4 {
  margin-left: 32px;
}

.p-4 {
  padding: 32px;
}

.pt-4 {
  padding-top: 32px;
}

.pr-4 {
  padding-right: 32px;
}

.pb-4 {
  padding-bottom: 32px;
}

.pl-4 {
  padding-left: 32px;
}

.m-5 {
  margin: 40px;
}

.mt-5 {
  margin-top: 40px;
}

.mr-5 {
  margin-right: 40px;
}

.mb-5 {
  margin-bottom: 40px;
}

.ml-5 {
  margin-left: 40px;
}

.p-5 {
  padding: 40px;
}

.pt-5 {
  padding-top: 40px;
}

.pr-5 {
  padding-right: 40px;
}

.pb-5 {
  padding-bottom: 40px;
}

.pl-5 {
  padding-left: 40px;
}

.text__left {
  text-align: left;
}

.text__center {
  text-align: center;
}

.text__right {
  text-align: right;
}

.text__justify {
  text-align: justify;
}

.text__uppercase {
  text-transform: uppercase;
}

.text__lowercase {
  text-transform: lowercase;
}

.text__capitalize {
  text-transform: capitalize;
}

.text__muted {
  color: #6c757d;
}

.text__primary {
  color: #6ac0e3;
}

.text__secondary {
  color: #f39c12;
}

.text__tertiary {
  color: #9b59b6;
}

.lowercase {
  text-transform: lowercase;
}

.d__none {
  display: none;
}

.d__inline {
  display: inline;
}

.d__inline-block {
  display: inline-block;
}

.d__block {
  display: block;
}

.d__flex {
  display: flex;
}

.d__inline-flex {
  display: inline-flex;
}

.flex__row {
  flex-direction: row;
}

.flex__column {
  flex-direction: column;
}

.flex__row__reverse {
  flex-direction: row-reverse;
}

.flex__column__reverse {
  flex-direction: column-reverse;
}

.justify__content__start {
  justify-content: flex-start;
}

.justify__content__end {
  justify-content: flex-end;
}

.justify__content__center {
  justify-content: center;
}

.justify__content__between {
  justify-content: space-between;
}

.justify__content__around {
  justify-content: space-around;
}

.align__items__start {
  align-items: flex-start;
}

.align__items__end {
  align-items: flex-end;
}

.align__items__center {
  align-items: center;
}

.align__items__baseline {
  align-items: baseline;
}

.align__items__stretch {
  align-items: stretch;
}

.pos__static {
  position: static;
}

.pos__relative {
  position: relative;
}

.pos__absolute {
  position: absolute;
}

.pos__fixed {
  position: fixed;
}

.pos__sticky {
  position: sticky;
}

.mx-auto {
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 2.25rem;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 576px) and (max-width: 992px) {
  h1 {
    font-size: calc(1.5rem + (2.25rem - 1.5rem) * ((100vw - 576px) / (992px - 576px)));
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 1.35rem;
}
@media (min-width: 576px) and (max-width: 992px) {
  h2 {
    font-size: calc(1.35rem + (1.875rem - 1.35rem) * ((100vw - 576px) / (992px - 576px)));
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 1.875rem;
  }
}

li, p {
  font-size: 1rem;
}
@media (min-width: 576px) and (max-width: 992px) {
  li, p {
    font-size: calc(1rem + (1.15rem - 1rem) * ((100vw - 576px) / (992px - 576px)));
  }
}
@media (min-width: 992px) {
  li, p {
    font-size: 1.15rem;
  }
}

i {
  color: #4D4D4D;
}

p, li {
  color: #808080;
}

.icon-2x {
  font-size: 2em;
}

.icon-3x {
  font-size: 2.5em;
}

.icon-4x {
  font-size: 4em;
}

.w__100 {
  width: 100% !important;
}

.text__link {
  color: #6ac0e3;
  font-weight: bold;
}

.icon__bg {
  width: 5rem;
  height: 5rem;
  background-color: #EAEAEA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 1.8rem;
  display: none;
}
@media (min-width: 992px) {
  .icon__bg {
    display: flex;
  }
}

.error {
  color: #F06363;
  text-align: left;
}
.error input {
  background-color: #FCDDDD !important;
  color: #F06363 !important;
}
.error i {
  color: #F06363 !important;
}

.progress__bar__comp .progress__container {
  width: 100%;
  height: 8px;
  background-color: #ffffff;
  border-radius: 4px;
  margin-top: 0.5rem;
}
.progress__bar__comp .progress__container .progress__bar {
  height: 100%;
  width: 0%; /* Initial width set to 0% */
  background-color: #6ac0e3; /* Blue color */
  border-radius: 4px;
  transition: width 0.22s ease-in-out;
}
.progress__bar__comp .progress__counter {
  text-align: left;
  display: block;
  margin-top: 0.6rem;
}

.hide__mob {
  display: none;
}
@media (min-width: 992px) {
  .hide__mob {
    display: block;
  }
}

::-webkit-scrollbar {
  width: 0.45rem;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #008dd0;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  transition: 0.5s all ease-in-out !important;
}

.dropdown-container {
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
}

#searchInput {
  width: 100%;
  padding: 9px 12px;
  border-radius: 2px;
  transition: border-color 0.3s;
  border: thin solid #dedede;
  font-size: 11px !important;
}

#searchInput:focus {
  border-color: #007bff;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.show {
  display: block;
}

.dropdown-option {
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-bottom: thin solid #dedede;
}

.dropdown-option:hover {
  background-color: #007bff;
  color: white;
}

/* variables.scss */ /* mixins.scss */
.example {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* colors.scss */ /* variables.scss */
button-action .theme__btn {
  width: fit-content;
  background-color: whitesmoke;
  color: #6ac0e3;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 9px;
  border: none;
}
@media (min-width: 992px) {
  button-action .theme__btn {
    padding: 0.5rem 1rem;
  }
}
button-action .theme__btn span {
  color: #ffffff;
}
button-action .theme__btn--primary {
  background-color: #6ac0e3;
}
button-action .theme__btn--primary span {
  color: #ffffff !important;
}
button-action .theme__btn--primary i {
  color: #ffffff !important;
}
button-action .theme__btn--secondary {
  border: thin solid #6ac0e3;
  background-color: #ffffff;
}
button-action .theme__btn--secondary span {
  color: #6ac0e3 !important;
}
button-action .theme__btn--secondary i {
  color: #6ac0e3 !important;
}
button-action .theme__btn--small {
  padding: 0.5rem !important;
  border-radius: 4px;
  font-size: 1.1rem;
}
button-action .theme__btn--medium {
  padding: 0.5rem 2rem !important;
  border-radius: 4px;
  font-size: 1.2rem;
}
button-action .theme__btn.secondaryBtn {
  background-color: #000000;
}
button-action .theme__btn.mediumBtn {
  padding: 1rem !important;
}
button-action .theme__btn.smallBtn {
  padding: 0.4rem 0.8rem !important;
}
button-action .theme__btn.largeBtn {
  padding: 1rem 2.5rem !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
#spinner {
  width: 15px;
  font-size: 0;
  animation: spin 1.2s linear infinite;
}

.disabled__button {
  background-color: #DFDFDF !important;
  color: #ffffff !important;
}

.gray-button {
  color: #2a2a2a;
  background-color: #dedede;
  border-radius: 6px;
  padding: 5px 26px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  max-width: 100px;
  width: 100%;
  margin-right: 10px;
  border: none;
}

.neon-button {
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background-color: #008dd0;
  border-radius: 4px;
  outline: none;
}

input[type=text],
input[type=number],
input[type=email],
input[type=date],
input[type=password], select {
  background-color: #c0e4f3;
  width: 100%;
  padding: 7px;
  margin: 8px 0 3px 0 !important;
  border-radius: 6px;
  font-size: 16px;
  color: #6c757d;
  position: relative;
}

input[type=text]::placeholder {
  color: #6c757d;
}

input[type=date] {
  text-transform: uppercase !important;
}

.custom__radio {
  display: flex;
  font-size: 1rem;
  align-items: center;
  margin: 0.8rem 0;
}

input[type=radio] {
  appearance: auto !important;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.8rem;
  cursor: pointer;
}

radio-button div {
  display: flex;
  align-items: center;
}

input[type=radio]:checked ~ .radio__mark {
  background-color: #6ac0e3;
  border: 2px solid #6ac0e3;
}

input[type=radio]:checked ~ .radio__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}

input[type=checkbox] {
  width: 1.1rem;
  height: 1.1rem;
  appearance: auto;
}

.radio__mark {
  position: relative;
  display: inline-block;
  margin-right: 1rem;
  width: 18px;
  height: 18px;
  border: 2px solid #6ac0e3;
  border-radius: 50%;
  cursor: pointer;
}

.error-message {
  font-size: 12px;
}

.carousel-container {
  display: flex;
  align-items: center;
}

.carousel-button {
  cursor: pointer;
}

.carousel-item {
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
}

/* variables.scss */
.signup-header-area {
  width: 100%;
  padding: 0 0 5px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.signup-header-content-wrapper {
  width: fit-content;
  height: fit-content;
  display: flex;
}

.registration-links {
  color: #2a2a2a;
  text-decoration: none;
  margin-right: 7px;
  cursor: pointer;
}

.search-box {
  max-width: 280px;
  border: 1.5px solid #c7c7c7;
  margin: 0px 10px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.footer {
  width: 100%;
  height: auto;
  padding: 2rem;
  display: none;
}
@media (min-width: 992px) {
  .footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.footer__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__social__icons__wrapper {
  width: fit-content;
  width: fit-content;
}
.footer__social__icons__wrapper ul li {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 1.2rem;
  cursor: pointer;
}

@media only screen and (min-width: 1700px) {
  .site-options-section {
    max-width: 1150px !important;
  }
  .smallCard ~ .card-text-below {
    font-size: 20px !important;
  }
  .catchUpFormWrapper {
    max-width: 400px !important;
    margin-top: 64px !important;
  }
  .catchUpFormWrapper.catchFormWrapperTumorBoard {
    margin-top: 7px !important;
  }
  .video-listing-section {
    max-width: 1200px !important;
  }
  .video-listing-container {
    max-height: 450px !important;
    margin-top: 2rem !important;
  }
  .categories-listing-section ul li {
    font-size: 1.2rem !important;
  }
  .category_search {
    font-size: 18px !important;
  }
  .video-listing-container p {
    font-size: 16px !important;
  }
  .joinMeetingSlider {
    height: 355px !important;
  }
  .container-wrapper {
    max-width: 1200px !important;
  }
  .clicnial-question-section .clicnial-question-wrapper {
    max-width: 850px !important;
  }
  .partnership-location-wrapper {
    max-width: 700px !important;
  }
  .signup-header-content-wrapper {
    font-size: 1.2em !important;
  }
  .sidebar-section {
    max-width: 300px !important;
  }
  .logo-wrapper img {
    height: 100px !important;
    object-fit: contain !important;
  }
  .blog-listing-section {
    max-height: 450px !important;
    max-width: unset !important;
  }
  .about-page-wrapper {
    max-width: 1200px !important;
    max-height: 600px !important;
    height: 100% !important;
  }
  .about-page-wrapper .team-img-wrapper h4 {
    font-size: 16px !important;
  }
  h4 {
    font-size: 2rem !important;
  }
  h5 {
    font-size: 1.45rem !important;
  }
  #searchInput {
    padding: 12px !important;
  }
  .brcmcRevoOfferingWrapper {
    max-width: 1000px !important;
  }
  .description-container span {
    font-size: 18px !important;
  }
  .description-location-wrapper h6 {
    font-size: 20px !important;
  }
  .description-location-wrapper .address-row {
    width: fit-content !important;
  }
  .description-location-wrapper .location-img {
    height: 160px !important;
  }
  .description-location-wrapper p {
    font-size: 16px !important;
  }
  .site-heading {
    font-size: 2.8em !important;
  }
  .welcomeCol-wrapper p {
    font-size: 18px !important;
  }
  .sidebar-list-area ul li a {
    font-size: 1em !important;
  }
  .welcome-row-wrapper {
    margin-top: 2.5rem !important;
  }
  /* ********profile***************** */
  .profile-main-area .service-card-wrapper {
    height: 185px !important;
    margin-top: 1em !important;
  }
  .profile-main-area {
    max-width: 2000px !important;
    padding: 10px 50px !important;
  }
  .services-packages-inner-parent .service-card-wrapper {
    height: 185px !important;
    margin-top: 1em !important;
  }
  .service-packages-main-area {
    max-width: 2000px !important;
    padding: 10px 100px !important;
  }
  .packages-card-wrapper p {
    font-size: 1em !important;
  }
  .packages-card-wrapper h2 {
    font-size: 2.8em !important;
  }
  .packages-card-wrapper {
    padding: 20px !important;
  }
  .packages-heading {
    margin-top: 0.5em !important;
  }
  /* ********question air screen********* */
  .question-tab-button p {
    font-size: 1em !important;
  }
  .question-tab-button {
    width: 140px !important;
    height: 60px !important;
  }
  .question-form-wrapper h2 {
    font-size: 2.5em !important;
  }
  .question-form-wrapper p {
    font-size: 1.5em !important;
  }
  .question-form-wrapper {
    max-width: 550px !important;
    margin: 35px auto !important;
  }
  .question-form-wrapper input,
  .question-form-wrapper select {
    height: 50px !important;
  }
  .clinical-question-main-area .slider-wrapper {
    margin-top: 2em !important;
  }
  /* ******trial finder********* */
  .tabs-drugs-parent {
    max-width: 2000px !important;
    padding: 10px 50px !important;
  }
  .tabs-drugs-parent ul li {
    padding: 12px !important;
    height: auto !important;
  }
  .gray-button {
    font-size: 20px !important;
  }
  .blue-button {
    font-size: 1.1em !important;
  }
  .drugsTable tbody td,
  .drugsTable tbody th {
    font-size: 1.2em !important;
    padding: 15px 10px !important;
  }
  .tab-content-wrapper-drugs table tbody {
    max-height: 500px !important;
  }
  .stats-drug-card-area {
    height: 200px !important;
  }
  .stats-drug-card-area .text-area {
    height: 135px !important;
  }
  .stats-drug-card-area .text-area p {
    font-size: 1.3em !important;
    max-width: unset !important;
  }
  .tab-content-wrapper-drugs {
    margin-top: 2em !important;
  }
  .input-box-wrapper .signup-box-input,
  select {
    height: auto !important;
    padding: 10px !important;
  }
  .BluetextUnderHeading {
    font-size: 1.2em !important;
  }
  .signup-form-wrapper {
    max-width: 430px !important;
  }
  .signup-header-area {
    /* height: 85px !important; */
  }
  /* ******************** */
  .contact-form-wrapper {
    max-width: 700px !important;
    margin-top: 2em !important;
  }
  .contact-form-wrapper .custom-form-control {
    padding: 12px 10px !important;
  }
  .drugstatusTable-wrapper {
    max-height: 500px !important;
  }
  /* **************** */
  .service-cards-area {
    max-width: 1260px !important;
  }
  .service-card-wrapper {
    height: 220px !important;
  }
  .service-card-parent p {
    font-size: 1.4em !important;
  }
  .light-theme-btn {
    width: 100% !important;
    height: 80px !important;
    font-size: 1.1em !important;
    line-height: 26px !important;
  }
  .molecular-profile-question {
    max-width: 700px !important;
    margin: 35px auto !important;
  }
  .welcome-img-video-wrapper {
    height: 500px !important;
  }
}
@media only screen and (min-width: 3000px) {
  side-bar {
    max-width: 536px !important;
    width: 100% !important;
  }
  .sidebar-section {
    width: 100% !important;
  }
  .site-options-section {
    max-width: 80% !important;
    margin-top: 12rem !important;
  }
  .smallCard ~ .card-text-below {
    font-size: 20px !important;
  }
  .catchUpFormWrapper {
    max-width: 550px !important;
    margin-top: 8rem !important;
  }
  .catchUpFormWrapper.catchFormWrapperTumorBoard {
    margin-top: 3rem !important;
  }
  .video-listing-section {
    max-width: 80% !important;
  }
  .video-listing-container {
    max-height: 1250px !important;
    margin-top: 2rem !important;
  }
  .contentVideoWrapperContainer {
    height: 500px !important;
  }
  .categories-listing-section ul li {
    font-size: 1.7rem !important;
  }
  .category_search {
    font-size: 1.7rem !important;
    padding: 1rem !important;
  }
  .video-listing-container p {
    font-size: 16px !important;
  }
  .joinMeetingSlider {
    height: 655px !important;
  }
  .container-wrapper {
    max-width: 80% !important;
  }
  .clicnial-question-section .clicnial-question-wrapper {
    max-width: 850px !important;
  }
  .partnership-location-wrapper {
    max-width: 1000px !important;
  }
  .signup-header-content-wrapper {
    font-size: 1.2em !important;
  }
  .logo-wrapper img {
    height: 100px !important;
    object-fit: contain !important;
  }
  .blog-listing-section {
    max-height: 1100px !important;
    max-width: unset !important;
  }
  .blog-list-card .blog-img-wrapper {
    width: 480px !important;
  }
  .blog-content-container span {
    font-size: 2rem;
  }
  .blog-list-card .blog-content-container a {
    font-size: 2rem;
  }
  .about-page-wrapper {
    max-width: 80% !important;
    max-height: 1200px !important;
    height: 100% !important;
    margin-top: 4rem !important;
  }
  .meetTeamHeading {
    margin-top: 2rem !important;
  }
  .about-content-wrapper {
    height: auto !important;
  }
  .about-page-wrapper .team-img-wrapper h4 {
    font-size: 24px !important;
  }
  .about-page-wrapper .team-img-wrapper p {
    margin: 1rem 0 !important;
    line-height: unset !important;
    margin-top: 0 !important;
  }
  h4 {
    font-size: 2rem !important;
  }
  h5 {
    font-size: 3rem !important;
  }
  #searchInput {
    padding: 12px !important;
  }
  .brcmcRevoOfferingWrapper {
    max-width: 60% !important;
  }
  .description-container span {
    font-size: 1.7rem !important;
  }
  .description-location-wrapper h6 {
    font-size: 20px !important;
  }
  .description-location-wrapper .address-row {
    width: fit-content !important;
  }
  .description-location-wrapper .location-img {
    height: 260px !important;
  }
  .description-location-wrapper p {
    font-size: 16px !important;
  }
  .site-heading {
    font-size: 2.8em !important;
  }
  .welcomeCol-wrapper p {
    font-size: 18px !important;
  }
  .sidebar-list-area ul li {
    padding: 8px 0 !important;
  }
  .profile-main-area .service-card-wrapper {
    height: 185px !important;
    margin-top: 1em !important;
  }
  .profile-main-area {
    max-width: 2000px !important;
    padding: 10px 50px !important;
  }
  .services-packages-inner-parent .service-card-wrapper {
    height: 185px !important;
    margin-top: 1em !important;
  }
  .service-packages-main-area {
    max-width: 2000px !important;
    padding: 10px 100px !important;
  }
  .packages-card-wrapper p {
    font-size: 1em !important;
  }
  .packages-card-wrapper h2 {
    font-size: 2.8em !important;
  }
  .packages-card-wrapper {
    padding: 20px !important;
  }
  .packages-heading {
    margin-top: 0.5em !important;
  }
  .question-tab-button p {
    font-size: 1em !important;
  }
  .question-tab-button {
    width: 140px !important;
    height: 60px !important;
  }
  .question-form-wrapper h2 {
    font-size: 2.5em !important;
  }
  .question-form-wrapper p {
    font-size: 1.5em !important;
  }
  .question-form-wrapper {
    max-width: 550px !important;
    margin: 35px auto !important;
  }
  .question-form-wrapper input,
  .question-form-wrapper select {
    height: 50px !important;
  }
  .clinical-question-main-area .slider-wrapper {
    margin-top: 2em !important;
  }
  .tabs-drugs-parent {
    max-width: 2000px !important;
    padding: 10px 50px !important;
  }
  .tabs-drugs-parent ul li {
    padding: 12px !important;
  }
  .gray-button {
    font-size: 20px !important;
  }
  .blue-button {
    font-size: 2.1em !important;
    padding: 11px 40px !important;
  }
  .drugsTable tbody td,
  .drugsTable tbody th {
    font-size: 1.2em !important;
    padding: 15px 10px !important;
  }
  .tab-content-wrapper-drugs table tbody {
    max-height: 500px !important;
  }
  .stats-drug-card-area {
    height: 200px !important;
  }
  .stats-drug-card-area .text-area {
    height: 135px !important;
  }
  .stats-drug-card-area .text-area p {
    font-size: 1.3em !important;
    max-width: unset !important;
  }
  .input-box-wrapper .signup-box-input,
  select {
    height: auto !important;
    padding: 10px !important;
  }
  .BluetextUnderHeading {
    font-size: 1.2em !important;
  }
  .signup-form-wrapper {
    max-width: 430px !important;
  }
  .contact-form-wrapper {
    max-width: 700px !important;
    margin-top: 2em !important;
  }
  .contact-form-wrapper .custom-form-control {
    padding: 12px 10px !important;
  }
  .drugstatusTable-wrapper {
    max-height: 500px !important;
  }
  .service-cards-area {
    max-width: 1260px !important;
  }
  .service-card-wrapper {
    height: 220px !important;
  }
  .service-card-parent p {
    font-size: 1.4em !important;
  }
  .light-theme-btn {
    width: 100% !important;
    height: 80px !important;
    font-size: 1.1em !important;
    line-height: 26px !important;
  }
  .molecular-profile-question {
    max-width: 700px !important;
    margin: 35px auto !important;
  }
  .welcome-img-video-wrapper {
    height: 100% !important;
  }
  .logo-wrapper img {
    height: 200px !important;
    object-fit: contain !important;
  }
  .sidebar-list-area ul li a {
    font-size: 2em !important;
  }
  .signup-birds,
  .signup-ground {
    height: 350px !important;
    width: auto !important;
    z-index: 10;
  }
  .sidebar-section {
    max-width: 100% !important;
  }
  .sidebar-list-area h6 {
    font-size: 2em !important;
  }
  .welcomeCol-wrapper h2 {
    font-size: 4em !important;
  }
  .sidebar-list-area ul li .sidebar-list-bullet {
    width: 20px !important;
    height: 20px !important;
  }
  .sidebar-list-area ul li a > div:nth-child(1) {
    min-width: 60px !important;
  }
  .sidebar-list-bullet-img img {
    width: 70px !important;
    height: 70px !important;
  }
  .gray-button {
    padding: 10px 40px !important;
    font-size: 36px !important;
  }
  .signup-header-content-wrapper .content-wrapper span,
  .signup-header-content-wrapper .content-wrapper a {
    font-size: 2em !important;
  }
  .signup-header-area {
    margin-top: 2rem;
    padding-right: 7rem;
  }
  p.brcmc-scroll-text {
    height: 650px !important;
  }
  .welcomeCol-wrapper p {
    font-size: 32px !important;
  }
  .welcome-row-wrapper {
    margin-top: 15rem !important;
  }
  h3 {
    font-size: 4rem !important;
  }
  .insider-blog-wrapper {
    margin-top: 5rem !important;
  }
  .blog-list-card {
    height: 290px !important;
  }
  .filter-section {
    margin-top: 7rem !important;
  }
  .container-wrapper h3 {
    margin-top: 5rem !important;
  }
  .dropdown-container #searchInput {
    padding: 1rem !important;
    font-size: 1.5rem !important;
  }
  .dropdown-container .dropdown-option {
    font-size: 1.5rem !important;
  }
  .neon-button {
    font-size: 2rem !important;
    padding: 13px 50px !important;
  }
  #find_videos_btn {
    margin-top: 40px !important;
  }
  #comingSoonModal .modal-content {
    max-width: 1100px !important;
    padding: 170px 20px !important;
  }
  .modal-content h2 {
    font-size: 3rem !important;
  }
  .modal-content p {
    font-size: 2rem !important;
  }
  .modal-content .close-button {
    width: 50px !important;
    height: 50px !important;
    font-size: 2.5rem !important;
  }
  input[type=text], input[type=number], input[type=email], input[type=date], input[type=password], select {
    padding: 1rem;
    margin: 1rem 0 3px 0 !important;
    border-radius: 8px;
    font-size: 1.8rem;
  }
  .form-wrapper {
    max-width: 800px !important;
  }
  .form-wrapper h1 {
    font-size: 4rem !important;
  }
  .form-wrapper span {
    font-size: 1.8rem;
  }
  .form-wrapper #submit_btn, .form-wrapper #btn {
    font-size: 2.1rem !important;
    padding-bottom: 21px !important;
  }
  .error-message {
    font-size: 1.5rem !important;
  }
  .input-box-wrapper label {
    font-size: 1.6rem !important;
    margin: 1rem 0 !important;
  }
  .or-txt {
    margin-top: 20px;
    font-size: 2rem !important;
  }
  .or-txt::before, .or-txt::after {
    top: 24px !important;
  }
  .signup-with-social-txt {
    font-size: 1.6rem !important;
  }
  .social-icon-circle {
    width: 80px !important;
    height: 80px !important;
    margin: 10px !important;
  }
  .social-icon-circle > img:nth-child(1) {
    height: 85% !important;
    width: auto !important;
  }
  .social-icon-circle > img:nth-child(2) {
    height: 75% !important;
    width: auto !important;
  }
  .forgotPass {
    font-size: 2rem !important;
  }
  .brcmcRevoOfferingWrapper {
    margin-top: 10rem !important;
  }
  .cta-btn {
    max-width: 540px !important;
    padding-bottom: 1rem !important;
  }
  .unrivaled-patient-wrapper {
    margin-top: 12rem !important;
    max-width: 75% !important;
  }
  .partnership-location-wrapper {
    margin-top: 12rem !important;
  }
  .chs-partnership-wrapper {
    margin-top: 8rem !important;
    max-width: 75% !important;
  }
  .description-location-wrapper h6 {
    font-size: 2.1rem !important;
  }
  .description-location-wrapper p {
    font-size: 1.6rem !important;
  }
  .forgot-password-wrapper, .otp-wrapper {
    max-width: 850px !important;
    margin-top: 8rem !important;
  }
  .otp-container {
    max-width: 80% !important;
  }
  .otp-input {
    height: 100px !important;
    font-size: 4rem !important;
  }
  .modal-content {
    max-width: 1000px !important;
    padding: 120px 20px !important;
  }
  .modal-close-btn {
    font-size: 3rem !important;
  }
  .edit-profile-form-section {
    max-width: 1150px !important;
    margin-top: 3rem !important;
  }
  .edit-profile-form-section h3 {
    margin-bottom: 4rem !important;
    margin-top: 3rem !important;
  }
  label {
    font-size: 1.8rem !important;
  }
  .change-password-txt {
    margin-top: 4rem !important;
  }
  .about-page-wrapper p {
    font-size: 1.9rem !important;
  }
  .about-scroll-txt {
    height: 450px !important;
  }
  .about-page-wrapper .about-img-wrapper {
    height: 100% !important;
  }
  .about-page-wrapper .team-content-area {
    height: 500px !important;
  }
  .about-page-wrapper .team-img-wrapper {
    width: 80% !important;
    justify-content: unset !important;
  }
  .team-img-wrapper img {
    height: 60% !important;
    width: 70% !important;
    object-fit: cover !important;
  }
  .video-listing-section p {
    font-size: 24px !important;
  }
  #cancer_type_text, #stage_text {
    font-size: 26px !important;
  }
  .video-listing-container iframe {
    height: 500px !important;
  }
  .calendar-wrapper {
    height: 950px !important;
    margin-top: 5rem !important;
    overflow-y: unset !important;
    max-width: 80% !important;
  }
  .wx-event-calendar-calendar-week.svelte-1s1ahhr.svelte-1s1ahhr {
    min-height: 170px !important;
  }
  .wx-event-calendar-date-label.svelte-1s1ahhr.svelte-1s1ahhr {
    font-size: 28px !important;
  }
}
/* Base styles */
* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .col {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Responsive styles */
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
  }
  /* ... Similar column styles for other col-sm-x classes */
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    flex: 0 0 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    flex: 0 0 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    flex: 0 0 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
  }
  /* ... Similar column styles for other col-lg-x classes */
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
  }
  /* ... Similar column styles for other col-xl-x classes */
}
