@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --font-popins: "Poppins", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --color-black: #0e0e0e;
  --primary-color: #212C62;
  --secondary-color: #212C62;
  --dashboard-blue-color: #212C62;
  --dashboard-edit-blue-color: #212C62;
  --action-plan-delete-color: #e46312;
  --highlight-card-bg-color: #c6cdf5 ;
  --highlight-card-btn-color: #212C62;
  --construction-header-bg-color: #e5eef6;
  --highlight-card-light-bg-color: #f3f7fb;
  --white: #ffffff;
  --btn-bg-primary-color: #212C62;
  --btn-bg-secondary-color: #766168;
  --btn-bg-tertiary-color: #05CDA3;
  --btn-disable-color: #bdbdbd;
  --input-border-color: #ededed;
  --navbar-border-color: #f5f5f5;
  --breadcrumb-bg-color: #fefefe;
  --breadcrumb-color: #3f3f3f;
  --card-btn-color: #766168;
  --sidebar-bg-color: #fbfbfb;
  --checkbox-bg-color: #f5f5f5;
  --checkbox-green-bg-color: #212C62;
  --checkbox-black-bg-color: #262626;
  --checkbox-brown-bg-color: #766168;
  --h1: 3rem;
  --h2: 2.2rem;
  --h3: 1.8rem;
  --h4: 1.5rem;
  --h5: 1.4rem;
  --h6: 1.2rem;
}

html {
  /* here i have converted default fontsize to 10px for using rem css unit easily*/
  font-size: 62.5%;
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-roboto);
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 1.8rem;
  min-height: 80vh;
}
a {
  text-decoration: none;
  color: var(--color-black);
}
p {
  margin: 0;
}
button {
  outline: none;
  border: none;
}
h1 {
  font-size: var(--h1);
  line-height: 3.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin: 0;
}
h2 {
  font-size: var(--h2);
  line-height: 2.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin: 0;
}
h3 {
  font-size: var(--h3);
  line-height: 2.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin: 0;
}
h4 {
  font-size: var(--h4);
  line-height: 2.1rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin: 0;
}
h5 {
  font-size: var(--h5);
  line-height: 2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin: 0;
}
h6 {
  font-size: var(--h6);
  line-height: 1.8rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin: 0;
}
ul,
li {
  list-style: none;
}
label {
  font-size: 1.7rem;
  font-weight: 600;
  font-family: var(--font-roboto);
}
input,
select {
  border-radius: 0.8rem !important;
  min-height: 5rem;
  border: 0.1rem solid var(--input-border-color);
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  font-family: var(--font-roboto);
  padding-left: 2rem !important;
}
.container {
  max-width: 96%;
  margin-left: 4rem;
  margin-right: 4rem;
}
header {
  position: relative;
  z-index: 1050;
}
.main-section {
  min-height: 65vh;
}
.sbs-btn-primary {
  background-color: var(--btn-bg-primary-color);
  color: var(--white);
  height: 4.5rem;
  min-width: 10rem;
  padding: 0.1rem 2rem;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-roboto);
}
.sbs-btn-primary:hover {
  border: 0.1rem solid var(--btn-bg-primary-color);
  background-color: var(--white);
  color: var(--color-black);
  cursor: pointer;
}
.sbs-btn-secondary {
  background-color: var(--btn-bg-secondary-color);
  color: var(--white);
  height: 4.5rem;
  padding: 0.1rem 2rem;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-roboto);
  cursor: pointer;
}

.sbs-btn-secondary:hover {
    background-color: var(--white);
    border: 0.1rem solid var(--btn-bg-tertiary-color);
    color: var(--color-black);
}

.sbs-btn-danger {
    background-color: darkred;
    color: var(--white);
    height: 4.2rem;
    border-radius: 3rem;
    min-width: 10rem;
    cursor: pointer;
}

.sbs-btn-danger:hover {
    background-color: var(--white);
    border: 0.1rem solid darkred;
    color: var(--color-black);
}

.sbs-btn-tertiary {
  background-color: var(--btn-bg-tertiary-color);
  color: var(--color-black);
  height: 4.2rem;
  border-radius: 3rem;
  min-width: 10rem;
  cursor: pointer;
}
.sbs-btn-tertiary:hover {
  background-color: var(--white);
  border: 0.1rem solid var(--btn-bg-tertiary-color);
  color: var(--color-black);
}
/* Navbar styling here */
.header-top-gradient {
  background: linear-gradient(270deg, #05CDA3 0%, rgba(0, 89, 161, 0) 100%);
  width: 100%;
  height: 0.8rem;
}
.navbar {
  background: linear-gradient(90deg, #ffffff 0%, #fbfbfb 100%);
}
.navbar-nav {
  align-items: center;
}
.nav-item .nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  margin-right: 1rem;
}
#search-overlay {
  display: none;
}
.search-input-wrapper {
  position: relative;
  margin-right: 1.5rem;
}
.search-icon {
  display: none;
}
.navbar-search {
  border-radius: 30rem !important;
  min-height: 4.2rem;
}
.search-circle {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: var(--dashboard-blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 1rem;
  top: 23%;
  cursor: pointer;
}
.search-circle img {
  transform: scaleX(-1);
}
.nav-help,
.nav-profile {
  width: 4.2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid var(--navbar-border-color);
  border-radius: 100%;
  cursor: pointer;
}
.nav-profile {
  margin: 0 1.5rem;
}

/* Breadcrumbs starts from here */
.breadcumbs {
  height: 4rem;
  border-top: 0.1rem solid var(--input-border-color);
  border-bottom: 0.1rem solid var(--input-border-color);
  display: flex;
  align-items: center;
  background-color: var(--breadcrumb-bg-color);
}

.breadcumbs span {
  color: var(--breadcrumb-color);
  font-size: 1.3rem;
  line-height: 1.9rem;
  cursor: pointer;
}

/* Login Page css starts from here */

.login-wrapper {
  background-image: url("../img/login-wrapper-bg.svg");
  background-repeat: no-repeat;
  background-position: 100% 24%;
  min-height: 100%;
  background-color: #212C62;
  background-size: contain;
}
.top-gradient {
  background: linear-gradient(270deg, #05CDA3 0%, rgba(250, 182, 0, 0) 100%);
  position: relative;
  top: 0;
  right: 0;
  height: 0.8rem;
}
.login-logo {
  padding-top: 1.5rem;
}
.login-form-wrapper {
  min-height: 81vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.login-form {
  background-color: var(--white);
  border-radius: 3rem;
  max-width: 50rem;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.login-header {
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  width: 100%;
  text-align: center;
  border-bottom: 0.1rem solid var(--input-border-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.request-password-header {
  padding-bottom: 2rem;
  justify-content: space-between;
}
.header-text {
  font-size: 3rem;
  padding-bottom: 2rem;
  padding-top: 0.5rem;
  font-family: var(--font-roboto);
  font-weight: 600;
}
.login-form form {
  max-width: 41rem;
  width: 41rem;
  margin-top: 2rem;
}
.username-label {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.form-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-label-wrapper p {
  font-size: 1.1rem;
  margin-top: 1rem;
}
.request-password {
  color: var(--color-black);
  margin-top: 2rem;
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid var(--color-black);
}
.input-style-password {
  position: relative;
}
.eye-icon {
  position: absolute;
  right: 1rem;
  top: 40%;
}
.login-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.login-btn {
  position: relative;
  width: 15rem;
  text-align: justify;
  text-align: left !important;
}
.new-password-back-btn {
  width: 3.4rem;
  height: 3.4rem;
  background-color: var(--color-black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 2rem;
}
.new-password-back-btn:hover {
  background-color: var(--white);
  border: 0.1rem solid var(--color-black);
}
.new-password-back-btn:hover img {
  filter: invert(1);
}
.log-btn-icon {
  position: absolute;
  right: 0;
  top: 40%;
  padding-right: 1rem;
}
.login-btn:hover .log-btn-icon {
  filter: invert(1);
}

/* Home page css starts here */
.main-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.fabien-peixoto-area {
  border: 0.1rem solid var(--navbar-border-color);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.fabien-header {
  background-color: var(--dashboard-edit-blue-color);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  min-height: 6rem;
  display: flex;
  align-items: center;
  padding: 0.1rem 1.5rem;
}
.fabien-header-heading {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  color: var(--white);
  margin-left: 1rem;
}
.highlight-dropdown-wrapper {
  display: flex;
  align-items: center;
}
.fabien-header-highlights {
  justify-content: space-between;
}
.dropdown-highlight {
  background-color: transparent;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
}
.fabien-body {
  padding: 2rem;
}
.fabien-body-highlight {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 70vh;
  overflow-y: auto;
}
.expert-report li {
  border-bottom: 0.1rem solid var(--navbar-border-color);
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.fabien-body .fabien-body-card3 {
  margin-top: 1rem;
}
.fabien-body-card {
  padding: 2rem;
  border: 0.1rem solid var(--navbar-border-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fabien-body-card-img {
  display: flex;
  align-items: center;
}
.fabien-body-card-img img {
  margin-right: 1rem;
}
.fabien-body-card-btn {
  border: 0.1rem solid var(--checkbox-black-bg-color);
  min-width: 3.4rem;
  min-height: 3.4rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.fabien-body-card-btn img {
  color: var(--checkbox-black-bg-color) !important;
}
.fabien-body-card-btn:hover {
  background-color: var(--checkbox-black-bg-color);
}
.fabien-body-card-btn:hover img {
  filter: invert(1);
}
.highlight-card {
    background-color: var(--highlight-card-bg-color);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 80%;
    margin: 1rem auto;
}
.highlight-light-card {
  background-color: var(--highlight-card-light-bg-color);
}
.highlight-card-img {
    width: 100%;
    height: 13rem;
    margin-bottom: 1rem;
    object-fit: contain;
}
.action-info-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.card-info-btn {
  margin-right: 1rem;
}
.card-action-btn {
  background-color: var(--highlight-card-btn-color);
  border-radius: 0.3rem;
  min-width: 8rem;
  min-height: 1.9rem;
  color: var(--white);
  padding: 0.1rem 2rem;
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-weight: 600;
  margin-top: 1rem;
}
.card-bld-txt {
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  margin-top: 1rem;
}
.card-light-txt {
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-weight: 300;
  margin-top: 1rem;
  font-family: var(--font-roboto);
}
.card-links {
  font-weight: 300;
  color: var(--color-black);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.card-links a {
  color: var(--dashboard-blue-color);
  font-family: var(--font-roboto);
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-weight: 300;
}
.card-links-all-highlights {
  font-size: 1rem;
}
.deadline {
  background-color: var(--btn-bg-tertiary-color);
  color: var(--breadcrumb-color);
  border-radius: 3rem;
  padding: 0.1rem 1rem;
  font-size: 1rem;
  line-height: 1.7rem;
  height: 1.8rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  display: flex;
  align-items: center;
}
.deadline-all-highlights {
  font-size: 0.863rem;
  line-height: 1.4rem;
}

/* 404 not found css start from here */
.not-found-wrapper {
  min-height: 82vh;
}
.not-found-txt {
  font-size: 20rem;
  line-height: 7rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  text-align: center;
}
.page-not-found-txt {
  font-size: 5rem;
  line-height: 7rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  margin-top: 4rem;
  text-align: center;
}
.page-unavailable-txt {
  font-size: 2.2rem;
  line-height: 1.9rem;
  font-family: var(--font-roboto);
  font-weight: 300;
  margin-top: 0.1rem;
  text-align: center;
}
.not-found-btn {
  margin-right: 1.5rem;
}

/*construction page ui starts from here  */
.construction-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.construction-li p {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 400;
}
.construction-li p.last-post {
  font-size: 1.3rem;
  font-family: var(--font-roboto);
  font-weight: 300;
}
.construction-work-archive {
  background-color: var(--construction-header-bg-color);
  border-radius: 1rem;
  min-height: 6rem;
  padding: 0rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* jeyagumaar css starts here */
.jeyagumaar-body {
  padding: 0;
}
.jeyagumaar-header-btn {
  border-radius: 3rem;
  background: transparent;
  height: 4.2rem;
  padding: 0.1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  color: var(--white);
  border: 0.1rem solid var(--btn-bg-tertiary-color);
}
.jeyagumaar-header-btn:hover {
  background-color: var(--btn-bg-tertiary-color);
  color: var(--checkbox-black-bg-color);
}
.jeyagumaar-checkbox-series {
  display: flex;
  gap: 1rem;
  border-bottom: 0.1rem solid var(--navbar-border-color);
  padding: 2rem;
}
.jeyagumaar-checkbox-series label {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 400;
  margin-right: 1rem;
}
.jeyagumaar-body .expert-report {
  padding: 0rem 2rem;
}
.jeyagumaar-body .expert-report .construction-li {
  padding: 2rem 0rem;
}

/* action plan css starts here */
.action-upload-file {
  min-height: 25rem;
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spaced-dotted-border {
  position: relative;
  padding: 2rem;
  border: none;
}

.spaced-dotted-border:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.2rem dashed var(--navbar-border-color);
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 0.3rem;
}

.view {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  display: inline-block;
  margin-right: 1rem;
  cursor: pointer;
}
.upload-btn {
  margin-top: 2rem;
  padding: 0rem 3rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.upload-btn span {
  display: inline-block;
  color: var(--breadcrumb-color);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
}
.action-plan-download {
  border: 0.1rem solid var(--navbar-border-color);
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 1rem;
  flex-direction: column;
}
.action-plan-download-wrapper {
  display: flex;
  padding: 2rem;
}
.left-section {
  border-right: 0.1rem solid var(--navbar-border-color);
  flex: 1;
}
.right-section {
  flex: 3;
  padding-left: 2rem;
}
.action-plan-download-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-top: 0.1rem solid var(--navbar-border-color);
}
.dobra-pdf {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  color: var(--breadcrumb-color);
  height: 2.1rem;
  padding: 0px 30px;
  display: block;
  margin-top: 1rem;
}
.active-report-txt {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 600;
}
.tsiala {
  font-size: 1.1rem;
  font-family: var(--font-roboto);
  font-weight: 300;
}
.right-section-action-plan-text {
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-family: var(--font-roboto);
  font-weight: 300;
}
.action-plan-download-btn {
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  color: var(--btn-bg-tertiary-color);
  cursor: pointer;
}
.action-plan-edit {
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  color: var(--dashboard-edit-blue-color);
  cursor: pointer;
}
.action-plan-delete {
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  color: var(--action-plan-delete-color);
  margin-left: 0.5rem;
  cursor: pointer;
}

/*Sector css starts here  */
.sector-text {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 400;
  color: var(--color-black);
  cursor: pointer;
}
.sector-edit {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 400;
  color: var(--dashboard-edit-blue-color);
  cursor: pointer;
}

.textile-author {
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 400;
  margin-right: 1rem;
  color: var(--white);
}

.textile-body-row {
  border-bottom: 0.1rem solid var(--navbar-border-color);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.textile-body p {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 400;
}

/* expert meeting css here */
.stack-expert-meeting {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 1;
}
.expert-meeting-card {
  flex: 1;
  /* min-width: 370px;
  max-width: 300px; */
}

/* Useful documents css starts from here */
.useful-card-btn {
  background-color: var(--checkbox-brown-bg-color);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
  cursor: pointer;
}
.useful-card-btn:hover {
  background-color: var(--dashboard-blue-color);
}

.faqs-card-btn {
  background-color: var(--checkbox-brown-bg-color);
}
.sbs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.1rem solid var(--navbar-border-color);
  padding-top: 1.5rem;
}
.sbs-pagination .page-link {
  border: none;
}
.prev-nav,
.next-nav {
  border: 0.1rem solid var(--checkbox-black-bg-color) !important;
  border-radius: 100%;
  min-width: 2.3rem;
  min-height: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.prev-nav:hover,
.next-nav:hover {
  background-color: var(--checkbox-black-bg-color);
}
.prev-nav:hover img,
.next-nav:hover img {
  filter: invert(1);
}
.prev-nav {
  margin-right: 0.7rem;
}
.prev-nav img {
  width: 1.3rem;
  color: var(--color-black);
  fill: var(--color-black);
}
.page-link {
  color: var(--color-black) !important;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-roboto);
}
.page-link.ative {
  background: #efd691;
  display: flex;
  justify-self: center;
  align-items: center;
  border-radius: 100%;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}
.useful-body-card {
  margin-bottom: 1rem;
}
.useful-selection {
  border: 0.1rem solid var(--navbar-border-color);
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 100%;
}
.useful-selection.active {
  border: 0.1rem solid var(--navbar-border-color);
  background-color: var(--dashboard-blue-color);
}

/* FAQS css start from here */
.faqs .accordion-item {
  border: 0.1rem solid var(--navbar-border-color);
  margin-bottom: 1.5rem !important;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.contact-us-text {
  font-size: 1.1rem;
  font-family: var(--font-roboto);
  font-weight: 300;
}
.faqs-card h4 {
  font-size: 1.5rem;
  font-family: var(--font-roboto);
  font-weight: 600;
}
.faqs-card {
  background-color: var(--sidebar-bg-color);
}
.faqs .accordion-button {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  height: 5rem !important;
  border-radius: 1rem !important;
}
.faqs .accordion-button:not(.collapsed) {
  color: var(--color-black) !important;
  background-color: var(--white) !important;
  box-shadow: none !important;
}
.faqs .accordion-body {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--font-roboto);
}
.faqs .accordion-button:focus {
  box-shadow: none !important;
}
.faqs .accordion-button::after {
  background-image: url("../img/faqs-arrow-down.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.6rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0.1rem solid var(--checkbox-black-bg-color);
  border-radius: 10rem;
}

.faqs .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-size: 0.6rem;
  width: 2.3rem;
  height: 2.3rem;
}

/* profile css starts here */
.password-secure-txt {
  font-size: 1.4rem;
  font-family: var(--font-roboto);
  font-weight: 300;
  margin-top: 1.5rem;
}
.profile-personel-detail label {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-roboto);
}
.password-strength {
  width: 100%;
  height: 3px;
  background-color: var(--highlight-card-bg-color);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.password-strength .medium {
  width: 40%;
  height: 100%;
  background-color: var(--btn-bg-tertiary-color);
}
.password-secure-highlighted-txt {
  color: var(--btn-bg-tertiary-color);
  font-weight: 600;
  font-family: var(--font-roboto);
}
.profile-archive-btn {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.profile-active-btn {
  background-color: var(--btn-bg-primary-color);
  color: var(--white);
  margin-right: 1.5rem;
  height: 6rem;
  flex: 1;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--font-roboto);
  cursor: pointer;
}
.profile-blocked-btn {
  background-color: var(--white);
  color: var(--btn-disable-color);
  border: 0.1rem solid var(--checkbox-bg-color);
  height: 6rem;
  flex: 1;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--font-roboto);
  cursor: pointer;
}
.profile-selection h4 {
  font-size: 1.3rem;
  font-family: var(--font-roboto);
  font-weight: 400;
}
.profile-selection .fabien-body-card {
  padding: 1.6rem;
}
.local-settings {
  background-color: var(--dashboard-edit-blue-color);
  border-radius: 1rem;
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
}
.local-settings-txt {
  font-size: 1.6rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  color: var(--white);
  padding-left: 2rem;
}
.profile-date {
  border-radius: 10rem;
  height: 4.2rem;
  background-color: var(--white);
  color: var(--breadcrumb-color);
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 300;
  display: flex;
  align-items: center;
  padding: 0rem 1.5rem;
}
.profile-date img {
  padding-left: 1rem;
}
.local-settings .profile-date::after {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.local-settings .dropdown-menu.show {
  width: 97%;
}
.country-dropdown {
  margin-top: 1.8rem;
}
.country-dropdown label {
  margin-bottom: 1rem;
}
.country-dropdown select {
  padding: 0.375rem 0.75rem;
  width: 100%;
  border-radius: 0.8rem !important;
  min-height: 5rem;
  border: 0.1rem solid #ced4da;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  font-family: var(--font-roboto);
  padding-left: 2rem !important;
}

/* meeting detail page css here */
.meeting-card-detail-body {
  max-height: 95vh;
  overflow-y: auto;
}
.meeting-card-date {
  margin-bottom: 2rem;
}
.meetings-text {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--font-roboto);
}
.meeting-card {
  margin-bottom: 1.5rem;
}
.meeting-card:hover {
  background-color: var(--checkbox-bg-color);
}
.join-meeting {
  margin: 3rem 0rem;
  padding: 1.5rem 0rem;
  border-top: 0.1rem solid #f1f1f1;
  border-bottom: 0.1rem solid #f1f1f1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.calender-icon {
  background-color: var(--checkbox-brown-bg-color);
  border-radius: 100%;
  min-width: 4.5rem;
  min-height: 4.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-meeting-subheading {
  font-size: 1.4rem;
  font-family: var(--font-roboto);
  font-weight: 700;
}
.join-meeting-txt {
  font-size: 1.4rem;
  font-family: var(--font-roboto);
  font-weight: 300;
}
.meeting-details-body-heading {
  margin-top: 2rem;
}
.meeting-details-body-txt {
  font-size: 1.4rem;
  font-family: var(--font-roboto);
  font-weight: 300;
  margin-top: 2rem;
}
.meeting-documents {
  margin-top: 2rem;
}
.meeting-download-all-btn {
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.2rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  min-width: 16.8rem;
}
/* right side bar css */
.right-sidebar {
  width: 12.7rem;
  background-color: var(--sidebar-bg-color);
  background-color: #fbfbfb;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0.1rem;
}
.sidebar-circle {
  background-color: var(--white);
  min-width: 5.5rem;
  min-height: 5.5rem;
  max-width: 5.5rem;
  max-height: 5.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.sidebar-circle:hover {
  background-color: var(--dashboard-blue-color);
  min-width: 5.5rem;
  min-height: 5.5rem;
  max-width: 5.5rem;
  max-height: 5.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sidebar-circle.active {
  background-color: var(--dashboard-blue-color);
  min-width: 5.5rem;
  min-height: 5.5rem;
  max-width: 5.5rem;
  max-height: 5.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sidebar-circle.active img {
  filter: brightness(1%) invert(1);
}
.sidebar-circle:hover img {
  filter: brightness(1%) invert(1);
}
.sidebar-circle-logout {
  background-color: var(--white);
  min-width: 5.5rem;
  min-height: 5.5rem;
  max-width: 5.5rem;
  max-height: 5.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.sidebar-circle-logout:hover svg {
  filter: brightness(1%) invert(1);
}
.sidebar-circle img,
.sidebar-circle-logout img {
  width: 2.2rem;
  height: 2.2rem;
}
/* footer css start here */
.sbs-footer {
  background-color: var(--white);
  min-height: 6rem;
  display: flex;
  align-items: center;
  border-top: 0.1rem solid var(--input-border-color);
}
.sbs-footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sbs-footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sbs-footer-logo img {
  width: 6.2rem;
  height: 4.2rem;
  object-fit: contain;
}
.footer-logo-img2 {
  margin-left: 1rem;
}
.footer-co-finance {
  margin-left: 1rem;
}
.footer-co-finance p,
.footer-links a {
  font-size: 1.4rem;
}

.navbar-toggler {
  display: none; /* Hide toggle button on larger screens */
}

.mobile-menu {
  display: none; /* Ensure mobile menu does not appear on larger devices */
}

/* Restore body scroll behavior */
body.no-scroll {
  overflow: auto;
}
.header-desktop {
  display: block;
}
.mobile-header {
  display: none;
}
@media screen and (min-width: 2561px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 1920px) and (max-width: 2560px) {
  html {
    font-size: 72.5%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .search-input-wrapper {
    display: none;
  }

  .search-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 4.2rem;
    min-height: 4.2rem;
    border: 0.1rem solid var(--navbar-border-color);
    margin-right: 1.5rem;
    border-radius: 100%;
    cursor: pointer;
  }
  .search-box-input {
    position: relative;
    top: -1.5rem;
  }
  .search-box-input .search-circle {
    border-top-left-radius: 100% !important;
    border-bottom-left-radius: 100% !important;
    border-top-right-radius: 100% !important;
    border-bottom-right-radius: 100% !important;
    width: 3.2rem;
    height: 3.2rem;
    top: 0.9rem;
    z-index: 99999;
  }
  .search-icon img {
    width: 1.8rem;
  }
  #search-overlay {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    display: none;
    justify-content: center;
    z-index: 9999;
    top: 1%;
  }

  #search-box {
    width: 80%;
    max-width: 60rem;
    background-color: var(--white);
    padding: 2rem 0.8rem;
    border-radius: 0.8rem;
    height: 6rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0rem 0.3rem 0.8rem;
  }
  .join-meeting {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  html {
    font-size: 55.2%;
  }
  .navbar-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar-nav {
    align-items: flex-start;
  }
  .expert-meeting-card {
    min-width: auto;
    max-width: 100%;
  }
  .container {
    max-width: 768px !important;
    margin: 0 auto !important;
  }

  header {
    position: relative;
    z-index: 1050;
  }

  .navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  /* Show the mobile menu toggle button */
  .navbar-toggler {
    display: block;
  }

  /* Show the mobile menu */
  .mobile-menu {
    display: flex;
  }

  .mobile-header {
    display: block;
  }
  .header-desktop {
    display: none;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  /* Show Mobile Menu */
  .mobile-menu.active {
    transform: translateY(0);
  }

  /* Prevent Scroll of Background */
  body.no-scroll {
    overflow: hidden;
  }

  /* Search Bar with Cancel Button */
  .mobile-menu-header {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .mobile-menu-header input {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
  }

  #cancelMenu {
    font-size: 14px;
    color: #f40d0def;
    text-decoration: none;
    border: none;
    background: none;
  }

  /* Menu Items */
  .menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .menu-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .menu-item a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
  }

  .menu-item a:hover {
    color: #007bff;
  }

  /* Footer Icons */
  .mobile-menu-footer {
    padding: 10px 0;
    border-top: 1px solid #ddd;
    background: #f9f9f9;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    cursor: pointer;
  }

  .footer-item img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 55.5%;
  }
  .navbar-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar-nav {
    align-items: flex-start;
  }
  .search-circle {
    width: 3.4rem;
    height: 3.4rem;
    right: 0.5rem;
    top: 9%;
  }
  .textile-body {
    overflow-x: auto;
  }
  .expert-meeting-card {
    min-width: auto;
    max-width: 100%;
  }
  .useful-card-btn img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .local-settings {
    margin-bottom: 1.5rem;
  }
  .join-meeting {
    justify-content: flex-start;
    gap: 1.5rem;
  }
  .local-settings-txt {
    padding-left: 1rem;
  }
  .right-sidebar {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .sidebar-circle {
    margin-right: 4rem;
    margin-bottom: 0rem;
    min-width: 5.5rem;
    min-height: 5.5rem;
    max-width: 5.5rem;
    max-height: 5.5rem;
  }
  .sidebar-circle img {
    width: 2.3rem;
    height: 2.3rem;
  }
  .sbs-footer {
    align-items: flex-start;
  }
  .sbs-footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
  }
  .footer-links {
    margin-top: 1rem;
  }
  .container {
    max-width: 540px !important;
    margin: 0 auto !important;
  }

  header {
    position: relative;
    z-index: 1050;
  }

  .navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  /* Show the mobile menu toggle button */
  .navbar-toggler {
    display: block;
  }

  /* Show the mobile menu */
  .mobile-menu {
    display: flex;
  }

  .mobile-header {
    display: block;
  }
  .header-desktop {
    display: none;
  }
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  /* Show Mobile Menu */
  .mobile-menu.active {
    transform: translateY(0);
  }

  /* Prevent Scroll of Background */
  body.no-scroll {
    overflow: hidden;
  }

  /* Search Bar with Cancel Button */
  .mobile-menu-header {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .mobile-menu-header input {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
  }

  #cancelMenu {
    font-size: 14px;
    color: #f40d0def;
    text-decoration: none;
    border: none;
    background: none;
  }

  /* Menu Items */
  .menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .menu-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .menu-item a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
  }

  .menu-item a:hover {
    color: #007bff;
  }

  /* Footer Icons */
  .mobile-menu-footer {
    padding: 10px 0;
    border-top: 1px solid #ddd;
    background: #f9f9f9;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
  }

  .footer-item img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .list-group-item {
    border: none;
    padding: 10px 0;
  }

  .btn-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #ccc;
  }
  .login-form form{
    padding: 0 15px;
    width: 100%;
  }
}

/* scroll bar chnaged */
::-webkit-scrollbar {
  width: 0.7rem;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--dashboard-blue-color);
  border-radius: 1rem;
  border: 0.2rem solid var(--dashboard-blue-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #055a9a;
}

/*custom checkbox */

.custom-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.custom-checkbox label {
  margin-left: 1rem;
}
.custom-checkbox input[type="checkbox"]#construction-cehckbox {
  appearance: none;
  -webkit-appearance: none;
  min-height: 1.82rem;
  width: 2.2rem;
  height: 2.2rem;
  background-color: #d5d5d5;
  border-radius: 0.5rem !important;
  cursor: pointer;
  padding-left: 0rem !important;
  border: 0.1rem solid #d5d5d5;
  background-image: url("../img/checkbox-star1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem 1.2rem;
}
.custom-checkbox input[type="checkbox"]:after#construction-cehckbox {
  display: none;
  background-image: url("../img/checkbox-star1.svg");
  background-repeat: no-repeat;
}

.custom-checkbox input[type="checkbox"]#construction-cehckbox:checked {
  background-color: var(--btn-bg-tertiary-color);
  background-image: url("../img/checkbox-star1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem 1.2rem;
}
.custom-checkbox input[type="checkbox"]#construction-cehckbox:checked:after {
  display: block;
}

.custom-checkbox.jeyagumaar-gray-checkbox
  input[type="checkbox"]#construction-cehckbox:checked {
  background-color: var(--checkbox-bg-color);
  background-image: url("../img/checkbox-star1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem 1.2rem;
}
.custom-checkbox.jeyagumaar-gray-checkbox
  input[type="checkbox"]#construction-cehckbox:checked:after {
  display: block;
}
.custom-checkbox.jeyagumaar-green-checkbox
  input[type="checkbox"]#construction-cehckbox:checked {
  background-color: var(--checkbox-green-bg-color);
  background-image: url("../img/exclaimation.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem 1.2rem;
}
.custom-checkbox.jeyagumaar-green-checkbox
  input[type="checkbox"]#construction-cehckbox:checked:after {
  display: block;
}
.custom-checkbox.jeyagumaar-black-checkbox
  input[type="checkbox"]#construction-cehckbox:checked {
  background-color: var(--checkbox-black-bg-color);
  background-image: url("../img/sticky-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem 1.2rem;
}
.custom-checkbox.jeyagumaar-black-checkbox
  input[type="checkbox"]#construction-cehckbox:checked:after {
  display: block;
}

.comment-body {
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #212529;
}
