test-text {
  color:#000;
}

body {
  background: #fff;
  color: #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  margin: 0 0 68px;
}

a {
  text-decoration: none;
}


ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* footer {
  position: fixed;
  bottom: 0;
  width: 94.75vw;
  background: #000;
  color: #fff;
  padding: 10px 50px;
} */

hr {
  width: 100%;
  border-top: 1px solid #b3b3b3;
}

/* Home Page */

/* Navbar styles */

.navbar,
.static-top.navbar-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0.5em 2em; */
  height: 100px;
  background-color: #f0eee8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nav-ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.homeBtn {
  display: flex;
  color: #000;
  font-size: 1.5em;
  font-weight: 700;
}

#logo {
  width: 28px;
  height: 28px;
  margin-right: 0.5em;
}

.loginBtn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 47px;
  width: 121px;
  border-radius: 8px;
  background-color: #0e51cb;
  color: #fff !important;
  font-size: 18px;
}

.loginBtn:visited {
  color: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  margin: 3% 10%;
  width: 100%;
}

/* Header styles */

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 350px;
  background-color: #f0eee8;
}

#header-title {
  font-size: 4.5em;
  font-weight: 700;
  font-family: 'Patient Discharge/Header 1', 'Poppins', sans-serif;
  font-style: normal;
  margin: 0;
  margin-bottom: 48px;
}

#search-input-home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 50vw;
  max-width: 900px;
  border-radius: 8px;
  background-color: var(--portalThemeColor7);
  color: var(--portalThemeOnColor7);
  font-size: 18px;
  border: none;
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  padding-left: 60px;
}

#search-input-home::placeholder {
  color: var(--portalThemeOnColor7) !important;
}

#header-subtitle {
  font-size: 1.5em;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #505254;
  margin-bottom: 88px;
}

.searchContainer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 64px;
}

#searchIcon {
  position: absolute !important;
  width: 28px;
  height: 28px;
  margin-left: 20px;
}

@media only screen and (max-width: 900px) {
  .header {
    height: 300px;
  }
  #search-input-home {
    font-size: 1em;
    width: 70vw;
  }
  #header-title {
    font-size: 2.5em;
  }
  #header-subtitle {
    font-size: 1em;
    margin: 0 10%;
  }
}

@media only screen and (max-width: 450px) {
  .header {
    height: 300px;
  }
  #search-input-home {
    font-size: 1em;
  }
  #header-title {
    font-size: 2.5em;
  }
  #header-subtitle {
    font-size: 1em;
    margin: 0 5%;
  }
}

/* Topic Styles */

#topic-container-header {
  margin-top: 88px;
  margin-left: 20%;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
}

.topicsContainer {
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  /* align-items: center;
  height: 100%;
  background-color: #fff; */
  flex-wrap: wrap;
  /* margin-inline: auto; */
  margin: 40px 20% 112px;
}

.topic {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  background-color: #fff;
  border: 2px solid #0e51cb;
  border-radius: 8px;
  flex-basis: 31%;
  height: auto;
  min-height: 253px;
  margin: 0.5em;
  cursor: po'Shape Sans';
}

.topic:focus,
.topic:hover {
  color: #fff;
  background-color: #0e51cb;
}

.topicTitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

a:not(.btn):hover {
  text-decoration: none;
}

.topic:hover > .topicTitle,
.topic:focus > .topicTitle {
  color: #fff;
}

@media only screen and (max-width: 1500px) {
  .topicsContainer {
    margin: 3% 10%;
  }
  #topic-container-header {
    margin-left: 10%;
  }
  .home-topArticles-container {
    margin: 10% !important;
  }
}

@media only screen and (max-width: 1000px) {
  .topicsContainer {
    margin: 3% 7%;
  }
  #topic-container-header {
    margin-left: 7%;
  }
  .home-topArticles-container {
    margin: 7% !important;
  }
  .topic {
    flex-basis: 45%;
  }
}

@media only screen and (max-width: 600px) {
  .topic {
    flex-basis: 100%;
  }
}

/* Top Articles */

#featured-article-title {
  margin: 0;
  font-weight: 700;
  font-size: 50px;
}

.home-topArticles-container {
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly;
  align-items: center;
  height: 100%;
  background-color: #fff;
  flex-wrap: wrap;
  margin-inline: auto; */
  margin: 0 20% 112px;
}

.home-topArticles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 48px;
  grid-column-gap: 48px;
  min-width: 300px;
  width: 100%;
  margin-inline: auto;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .home-topArticles {
    grid-template-columns: 1fr;
  }
}

.featured-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: po'Shape Sans';
}

.fa-chevron-right {
  color: var(--portalThemeColor4);
  font-size: 2em;
}

.home-topArticles-header {
  width: 100%;
}

.top-article-h2 {
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  text-align: start;
}

.top-article-p {
  font-size: 1.5em;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #505254;
}

.featured-article-a {
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
}

.featured-article-a:nth-child(even) {
  justify-self: end;
}

.featured-article-a:nth-child(odd) {
  justify-self: start;
}
/* Accordion */

.top-articles {
  margin: 20px 20%;
}

.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: #444;
  cursor: po'Shape Sans';
  padding: 18px;
  width: 100%;
  max-height: 70px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1em;
  font-weight: 700;
  transition: 0.4s;
  border-bottom: 1px solid #eee;
}

.active,
.accordion:hover {
  background-color: #ccc;
}

.card {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.expand-btn {
  font-size: 2em;
  font-weight: 300;
}

@media only screen and (max-width: 900px) {
  .top-articles {
    margin: 20px 10%;
  }
  .top-article-h2 {
    font-size: 1.5em;
  }
  .top-article-p {
    font-size: 1em;
  }
}

/* Call to Action */

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 375px;
  background-color: #1d2a42;
}

.cta-header {
  color: #fff;
  font-size: 50px;
  margin-top: 88px;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 17.641px;
}

.cta-btn {
  background-color: #0e51cb;
  border-radius: 8px;
  padding: 10px 50px;
  color: #fff;
  margin-bottom: 88px;
  height: 86px;
  display: flex;
  align-items: center;
  font-size: 30px;
  width: 352px;
  justify-content: center;
  font-weight: 700;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #fff;
}

.cta-btn:visited {
  color: #fff;
}

@media only screen and (max-width: 900px) {
  .cta-header {
    margin: 10px 5%;
    text-align: center;
  }
}

/* Categories Page */

/* Search */

.categories-header {
  display: flex;
  align-items: center;
  height: 150px;
  background-color: #866501;
}

#cat-search-input-home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 180px;
  border-radius: 3px;
  background-color: var(--portalThemeColor7);
  color: var(--portalThemeOnColor7);
  font-size: 10px;
  border: 1px solid #b3b7c5;
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  padding-left: 25px;
}

#cat-search-input-home::placeholder {
  color: var(--portalThemeOnColor7);
}

#cat-searchIcon {
  position: absolute !important;
  width: 15px;
  height: 15px;
  color: #808080;
  margin-left: 5px;
}

.cat-searchContainer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2%;
}

@media screen and (max-width: 900px) {
  #cat-search-input-home {
    width: 100%;
    padding-left: 0px;
    font-size: 14px;
  }
  .cat-searchContainer {
    width: 70%;
    height: 50%;
    margin: 0 5%;
    padding: 0;
  }
}

/* Main */

/* Sidebar */

.search-categories-container {
  display: flex;
  background-color: #fff;
  margin: 0 15%;
  padding: 72px 0;
  gap: 64px;
}

.categories-container {
  display: flex;
  background-color: #fff;
  margin: 0 15%;
  padding: 72px 0;
}

.category-list-container {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.category-list-item {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}

.category-list-item > a:hover {
  color: #0e51cb;
  text-decoration: none;
}

.category-list-title {
  font-size: 1em;
  font-weight: 700;
}

.category-list-title-active {
  font-size: 1em;
  font-weight: 700;
  color: #0e51cb !important;
}

.list-icon {
  height: 20px;
  width: 20px;
}

.category-main {
  width: 65%;
  margin-left: 100px;
}

.category-list-a {
  margin: 0;
}

@media screen and (max-width: 900px) {
  .categories-container {
    flex-direction: column;
    margin: 0 5%;
  }
  .category-list-container {
    width: 100%;
    margin-bottom: 20px;
  }
  .category-main {
    width: 100%;
    margin-left: 0;
  }
}

#img-back-breadcrumb {
  margin-right: 16px;
}

#img-next-breadcrumb {
  margin: 0 16px;
}

/* Main Section */

.category-h1 {
  margin: 48px 0 0;
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
}

.category-h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 16px;
}

.category-a {
  font-size: 18px;
}

.category-a:hover {
  color: #0e51cb;
}

.category-list-ul > li {
  padding: 16px 0;
}

/* Answers Page */

.answers-container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin: 0 25%;
  padding: 2% 0;
}

.answer-title {
  font-size: 3em;
  font-weight: 700;
  margin: 48px 0 0;
}

.answer-p {
  font-size: 1.5em;
  font-weight: 400;
  margin-bottom: 56px;
  color: #505254;
}

/* List Styling */

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 4;
 margin-left: -280px;
 border: none;
  width: 16px;
  /*margin-top: 10px;*/
}

#list-search-input {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  width: 100%;
  border-radius: 8px;
  background-color: var(--portalThemeColor7);
  color: var(--portalThemeOnColor7);
  font-size: 18px!important;
  border: none;
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  padding-left: 60px;
}

#list-search-input::placeholder {
  color: var(--portalThemeOnColor7);
}

.crmEntityFormView,
.entitylist,
.modal-content,
.popover-content {
  background-color: #f0eee8;
  color: #000000;
  border: 1px solid #f0eee8;
}

footer .footer-bottom {
  height: 100px;
  background-color: #000;
  color: #fff;
}

body > footer > div {
  padding: 0;
}

footer .footer-bottom p {
  color: #fff;
}

/*Attachments*/

.div_attachment{
  border-radius: 12px;
  background: #F7F7F7;
  margin-top: 12px;
  padding: 16px;
  color: #4F4D55;
  font-family: 'Shape Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
.AllAttachments{
width: 700px;
margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;

}

.div_attachment.wide{

  width: 100%;

}

.div_attachment:hover{
  background: #E6EFE3;

}
.div_attachment>svg {margin-top: -4px;}

.div_attachment_box > ul{
  
  overflow: hidden;
}

.div_attachment_box > ul.collapsed{
 
  display:none
}

.div_attachment_box_icon{ 
  cursor: po'Shape Sans'; 
  margin-left: auto;}

  .div_attachment_box_icon:hover path{ 
fill: #067647
  }
.div_attachment_box_icon.collapsed{
  transform: rotate(180deg)
}

.div_attachment_title {color: #0E321C;
  display: flex;
      align-items: center;
  /* Text md/Semibold */
  font-family: 'Shape Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */}


  ul>a{text-decoration: none !important; }
  ul>a:hover {
    text-decoration:none !important;
 }

 /*Sections (All/Design Process/ Office Concept...) */


 .documentationnav{
background-color: white;
position: sticky;
top: 0;
z-index: 999;
 } 
 .sectionsdiv{
border-bottom: 1px solid #E9EAEB;

 }

 .btnsection{
padding-left: 4px;
padding-right: 4px;
padding-bottom: 12px;
color: var(--Gray-600, #535862);
font-family: 'Shape Sans';
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 19.6px */
 }

 .btnsection.activesection{
  font-weight: 600;
  border-bottom: 2px solid #067647;
  color: #067647;
  padding-bottom: 10px;
}
.btnsection:hover{
color:#067647;
border-bottom: 2px solid #067647;
padding-bottom: 10px;}

.btnsection:focus{
  color:#0E321C;
  border-bottom: 2px solid #0E321C;
  padding-bottom: 10px;}


  /*Header strony*/

.siteheader{
  color: #0E321C;
  font-family: 'Shape Sans';
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 72px */
  letter-spacing: -1.44px;

}

/*Back button*/

a.btnback{
  color: var(--Gray-600, #535862);
  font-family: 'Shape Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  display: flex;
  gap: 8px;
  align-items: center;
}

a.btnback:hover{
  color:#067647
}

a.btnback:focus{
  color:#0E321C
}

a.btnback:hover>svg path{
  fill:#067647
}

a.btnback:focus>svg path{
  fill:#0E321C
}

/* top buttons (News/Documentation/Attachments) */

.btntoptabs{
  color: var(--Gray-600, #535862);
  font-family: 'Shape Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}

.btntoptabs.activetab{
  color: #067647;
  font-weight: 600;
}

.btntoptabs:hover{
  color: #067647;
}
.btntoptabs:focus{
  color: #0E321C;
}

.divtoptabs{
    display: flex;
    gap: 20px;
}

/*LOGO*/

.logoodr{
color: #067647;
font-size: 14px;
font-family: 'Shape Sans';
font-weight: 500;
line-height: 19.60px;
word-wrap: break-word
}
.logodocumentation{
  color: #535862;
font-size: 14px;
font-family: 'Shape Sans';
font-weight: 400;
line-height: 19.60px;
word-wrap: break-word
}


/* home buttons (Documentation/Definitions/Attachments) */

.homebutonscontainer{
  width: 100%;
  display: flex;
  gap: 20px;
  height:174px
;
}

.btnhome{
  border-radius: 12px;
  background: #F7F7F7;
padding: 24px;

align-items: center;
width: 440px;
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
}

.btnhomename{
  color: #0E321B;
  font-family: 'Shape Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  letter-spacing: -0.6px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.btnhomedesc{
  color: #4F4D55;
  font-family: 'Shape Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-top: 7px;
}

a.btnhome:hover{
  background:  #E6EFE3;
  color: #0E321B;
}
a.btnhome:focus{
  background:  #E6EFE3;
  color: #0E321B;
}
a.btnhome svg.btnhomeicon{

transition: transform 0.5s ease;
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
margin-left: auto;
margin-top: auto;
}
a.btnhome:hover svg.btnhomeicon{
  -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
  transform: rotate(-45deg);
  }

h1.bigheader{
  color: #0E321C;
  font-family: 'Shape Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 48px */
  letter-spacing: -0.96px;
  margin-top: 0px;
  margin-bottom: 0px;
}

h4.hometext66{
  width: 66.66%;
  color: #4F4D55;
font-family: 'Shape Sans';
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 30px */
letter-spacing: -0.2px;
margin-top: 12px;
margin-bottom: 0px;
}

h4.hometext{
  color: #4F4D55;
  font-family: 'Shape Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding-right: 105px;
  margin-top: 40px;
  margin-bottom: 0px;
  

}
h4.hometext2{
  color: #4F4D55 !important;
  font-family: 'Shape Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 0px;
  margin-bottom: 0px;
}

a.btnlearnmore{
display: inline-flex;
height: 40px;
padding: 10px 14px;
justify-content: center;
align-items: center;
flex-shrink: 0;
color: #0E321B;
font-family: 'Shape Sans';
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
border-radius: 8px;
border: 1px solid #0E321B;
margin-top:40px;
width: 109px;
}

a.btnlearnmore:hover{
  background: #E6EFE3;
  border-radius: 8px;
border: 1px solid #E6EFE3;
color: #0E321B;
}

.homelargebutonscontainer{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 70px
}

.btnhomelarge{
  border-radius: 12px;
  background: #FFF;
  display: inline-flex;
padding: 24px;
justify-content: center;
align-items: center;
width: 100%;
height: 174px;
color: #0E321B;
font-family: 'Shape Sans';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 28px */
letter-spacing: -0.6px;
justify-content: space-between;
align-items: flex-start;
}

a.btnhomelarge:hover{
  background:  #E6EFE3;
  color: #0E321B;
}
a.btnhomelarge:focus{
  background:  #E6EFE3;
  color: #0E321B;
}
a.btnhomelarge svg{
margin-top: auto;
transition: transform 0.5s ease;
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
a.btnhomelarge:hover svg{
  -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
  transform: rotate(-45deg);
  }

  a.btncontactus{
    display: inline-flex;
height: 40px;
padding: 10px 14px;
justify-content: center;
align-items: center;
gap: 4px;
flex-shrink: 0;
border-radius: 8px;
background: #FFF;
color: #0E321B;

/* Text sm/Semibold */
font-family: 'Shape Sans';
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
  }

  a.btncontactus:focus{color: #0E321B;}

  a.btncontactus:hover{
background: #E6EFE3;
color: #0E321B;

  }

  a.btnalteration{
    display: inline-flex;
    height: 40px;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #FFF;
    color: #FFF;

/* Text sm/Semibold */
font-family: 'Shape Sans';
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
  }

  a.btnalteration:hover{
    background: #E6EFE3;
    color: #0E321B;
    border: 1px solid #E6EFE3; ;
      }

      /* Footer */

      .footer{

        display: flex;
        align-items: center;
        justify-content: center;
      }

      .footerlinks{
    display: flex;
    margin-left: auto;
    gap: 20px;
    }
      .footercopyright{
        margin-left: auto;
        color: #4F4D55;
font-family: 'Shape Sans';
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 14px */
      }

.footergototop{
padding: 8px;
width: 40px;
margin-left: 8px;
cursor: po'Shape Sans';
}
.footergototop:hover path{
  fill:#067647;
  stroke:#067647
}

.footer-bottom{
  width: 100%;
  max-width: 1360px;
}

.btnfooter{
  color: var(--Gray-600, #535862);
  font-family: 'Shape Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */

}

.btnfooter:hover{
  color: #067647;

}
/*Header*/

.username{
  color: var(--Gray-600, #535862);
font-family: 'Shape Sans';
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 19.6px */
}

.username:hover{
  color: #067647;

}
.nav-item .dropdown-toggle::after {display: none;}

.usernamemenu:hover .iconodr path{fill:#067647}

.static-top.navbar .menu-bar > .navbar-nav > .divider-vertical{
  margin-right: 8px;
  margin-left: 8px;
border-right-color:#F7F7F7;
border-left: none;
}

/*WhatIsODR*/

.odrheader{
  font-family: 'Shape Sans';
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0E321C;
}
.odrtext{
  font-family: 'Shape Sans';
font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

  color: #4F4D55;

}

/*Definitions*/

.definitioncontainer{
  width: 710px;
  border-radius: 12px;
  padding-bottom: 24px;
  padding-right: 24px;
  max-height: 76px;
  background: transparent;
  transition: max-height 0.3s ease;
}
.definitioncontainer.open{
  background: #F7F7F7;
  max-height: 760px;
}


.definitioncontainer2{
display: flex;
}

.definitionname{
font-family: 'Shape Sans';
font-size: 20px;
font-weight: 500;
line-height: 28px;
letter-spacing: -0.03em;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
margin-top: 24px;
margin-left: 24px;
color:#0E321B

}

.definitiondesc{
  font-family: 'Shape Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #4F4D55;
  margin-left: 24px;
  margin-top: 8px;
  display:none;

}

.definitioncontainer.open .definitiondesc{
  display: block;
  transition: all 0.3s;
}


.definitionicon{
height: 28px;
margin-top: 24px;
margin-left: 20px;
align-content: center;

}

.definitionicon>svg{
  cursor: po'Shape Sans';
}

.definitionicon>svg:hover path{
fill:#067647

}

.category-header{
padding-top: 5px;
padding-bottom: 5px;

}

div.odrcontent p{font-size: 16px}

.category-group{
display: flex;
flex-direction: column;
gap: 5px;
margin-bottom: 5px;
}

.menu_box_icon{
  margin-left: auto;
}

.category-header:hover .menu_box_icon path{
  fill:#067647
  }


  .category-header.collapsed .menu_box_icon{
    transform: rotate(180deg)
  }

  .navbar-nav>li.nav-item>a.loginBtn{
    width: auto;
    border-radius: 8px;
    background: #0E321B;
    height: 40px;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    color: #FFF;
    font-family: 'Shape Sans';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;

  }

  .navbar-nav>li.nav-item>a.loginBtn:hover{ background: #067647;}

  #ModalFocusTrapZone6{width:95%; height: 95%;}
  .main-135{width:95%; height: 95%;}

  * { font-family: 'Shape Sans' !important; }


 li{list-style-position: outside !important;
  font-size: 16px;
color: #4F4D55;
margin-bottom: 5px;}

i.ms-Icon{ font-family: FabricMDL2Icons !important;}

.webchat__modal-dialog__body p{
  color: #4F4D55;
  font-size: 16px;
}

.pages-chatbot-header{
  background-color: #FFF !important;
  color:#0E321B !important; 
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 3.2px 7.2px, rgba(0, 0, 0, 0.11) 0px 0.6px 1.8px;
  height: 76px !important;
  border-bottom: 1px solid #E3E3E3 !important;
  font-family: 'Shape Sans' !important;
font-size: 20px !important;
font-style: normal !important;
font-weight: 500 !important;
line-height: 140% !important; /* 28px */
letter-spacing: -0.6px !important;
padding-left: 24px !important;
padding-right: 24px !important;


}

.pages-chatbot-header-minimize-button svg{ fill:#000}

.webchat__bubble__content{border-radius: 12px !important;
  background-color: #F7F7F7 !important}

.webchat__send-box{
  background-color: #F7F7F7 !important;
}
.pva-privacy-message{
  background-color: #F7F7F7 !important;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  height: 40px !important;
}

.webchat__bubble.webchat__bubble--from-user>.webchat__bubble__content{border-radius: 12px !important;
  background-color: #0E321C !important;
border: 1px solid #E3E3E3 !important;
color: #FFF !important;
font-size: 16px !important;
font-style: normal !important;
font-weight: 400 !important;
line-height: 150% !important; /* 24px */
padding: 10px 12px !important;
}

.webchat__bubble.webchat__bubble--from-user>.webchat__bubble__content p{
color: #FFF !important;
font-size: 16px !important;
font-style: normal !important;
font-weight: 400 !important;
line-height: 150% !important; /* 24px */
padding: 0px !important;
}

.webchat__bubble>.webchat__bubble__content{border-radius: 12px !important;
  background-color: #FFF !important;
border: 1px solid #E3E3E3 !important;
color: #4F4D55 !important;
font-size: 16px !important;
font-style: normal !important;
font-weight: 400 !important;
line-height: 150% !important; /* 24px */
padding: 10px 12px !important;
}

.webchat__bubble>.webchat__bubble__content p{
color: #4F4D55 !important;
font-size: 16px !important;
font-style: normal !important;
font-weight: 400 !important;
line-height: 150% !important; /* 24px */
padding: 0px !important;
}

.webchat__bubble .webchat__text-content{padding: 0px !important;}

.webchat__defaultAvatar--fromUser {display: none;}

.webchat__stacked-layout__avatar-gutter{width: auto !important;}

.webchat__basic-transcript{background-color:#F7F7F7 !important;}

.webchat__imageAvatar{width: 28px !important; height: 28px !important;}
.webchat__initialsAvatar {width: 28px !important; height: 28px !important;}
.webchat__defaultAvatar {width: 28px !important; height: 28px !important;}
div.pva-embedded-web-chat{width: 440px !important; max-width: 440px !important;}
.webchat__bubble.webchat__bubble--hide-nub.webchat__stacked-layout__message{max-width: 85% !important;}
.webchat__stacked-layout{margin-left: 24px !important; margin-right: 24px !important;}
.webchat__stacked-layout__status{margin-left: 28px !important;}
.webchat__activity-status--slotted span{color: #4F4D55;
  font-family: 'Shape Sans' !important;
  font-size: 10px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 150% !important; /* 15px */}
.webchat__send-box__main{
  margin-left: 0px !important;
  margin-right: 0px !important;
  height: 72px !important;
  padding-right: 14px !important;
  padding-left: 14px !important;
  border-bottom: 1px solid #E3E3E3 !important;
  border-top: 1px solid #E3E3E3 !important;
}
.webchat__send-button:hover { background-color: #FFF !important;}

.webchat__send-button:hover>svg{fill: #067647}

.pva-embedded-web-chat-widget{background-color: #0E321C !important;}
.pva-embedded-web-chat-widget:hover{background-color: #067647 !important;}
.webchat__send-box-text-box__input::placeholder{
  color: #4F4D55 !important;
  font-family: 'Shape Sans' !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 150% !important; /* 24px */}
  .webchat__send-box-text-box__input{color: #4F4D55 !important;

    font-family: 'Shape Sans' !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 150% !important; /* 24px */}

    .pva-embedded-web-chat-window-container{padding-bottom: 50px;}
    div.pva-privacy-message>p{
      margin-left: auto !important;
    margin-right: auto !important;
    color: #4F4D55 !important;
    height: auto !important;
    margin-top: auto !important;
    margin-bottom: auto !important;

font-family: 'Shape Sans';
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 15px */
    }

    div.webchat__icon-button__shade{display: none !important;}

    .webchat__link-definitions__list-item-body{border-radius: 4px !important;
      background: #F7F7F7 !important;}

      .webchat__link-definitions__badge{padding-left: 8px !important;
        padding-right: 8px !important;
        color: #4F4D55 !important;
        font-family: 'Shape Sans' !important;
        font-size: 14px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 150% !important; /* 21px */
      border: none !important;}
 
      .webchat__link-definitions__list-item-box.webchat__link-definitions__list-item-box--as-button{border: none !important;}

      .webchat__link-definitions__list-item-text{    color: #003DF5 !important;
        text-decoration: none !important;
    }

    .webchat__render-markdown__pure-identifier.webchat__render-markdown__citation{    color: #003DF5 !important;
      text-decoration: none !important;
  }

  /* Profile */

  .xrm-editable-html.xrm-attribute.page-copy{display: none;}
  #content_form div.page-heading{display: none;}
span.fa{font-family:"Font Awesome 6 Free" !important; }

#ContentContainer_MainContent_MainContent_ContentBottom_MarketingOptionsPanel{display: none;}

#navbar > nav > ul > li.nav-item.dropdown > ul > li{ margin-bottom: 0px;}

#navbar > nav > ul > li.nav-item.dropdown > ul > li.dropdown-divider{ margin-bottom: 8px;}

#navbar > nav > ul > li.nav-item.dropdown > ul > li> a{
color: var(--Gray-600, #535862);
font-family: "Shape Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 19.6px */}

#navbar > nav > ul > li.nav-item.dropdown > ul > li> a:hover{
  color: #067647;
  background-color: #FFF;
}

#navbar > nav > ul > li.nav-item.dropdown > ul{
border-radius: var(--radius-md, 8px) var(--radius-md, 8px) 8px 8px;
border: 1px solid var(--Colors-Border-border-secondary_alt, rgba(0, 0, 0, 0.08));
background: var(--Colors-Background-bg-primary, #FFF);

/* Shadows/shadow-lg */
box-shadow: 0px 12px 16px -4px var(--Colors-Effects-Shadows-shadow-lg_01, rgba(10, 13, 18, 0.08)), 0px 4px 6px -2px var(--Colors-Effects-Shadows-shadow-lg_02, rgba(10, 13, 18, 0.03)), 0px 2px 2px -1px var(--Colors-Effects-Shadows-shadow-lg_03, rgba(10, 13, 18, 0.04));
}