/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
.container {
  max-width: 1240px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-size: 18px;
}

.inner-wrapper {
  width: 100%;
  display: flex;
}

.main-body {
  width: 80%;
  position: relative;
  max-width: 980px;
}

.chap-body {
  width: 70%;
  position: relative;
  margin-left: 45px;
}

@media only screen and (max-width: 1600px) {
  .main-body {
    width: 60%;
  }
}

@media only screen and (max-width: 800px) {
  .inner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .main-body {
    width: 100%;
  }
}

/*Header style */
.fh__headOne {
  font-size: 2em;
  color: #002539;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.5em;
  padding-top: 0.5em;
}

/*Header style */

.back-top {
  padding: 15px 50px 40px 25px !important;
  position: fixed;
  height: 40px;
  right: 0;
  bottom: 30%;
  background-color: transparent;
  border: 0;
  border-radius: 10px;
  transition: all 0.08s;
  color: transparent;
}
.back-top:after {
  content: "";
  background-image: url("../images/arrow-up-solid.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #be4f1c;
  display: block;
  background-size: 15px 15px;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border: 2px solid #dff1f3;
  border-radius: 50rem;
  position: absolute;
}
.back-top:hover {
  background-color: #fff;
  border: 1px #be4f1c solid;
  color: #be4f1c;
}
.back-top:hover:after {
  background-color: #fff;
  background-image: url("../images/arrow-up-solid-blue.svg");
}

.back-top__btn {
  background-color: transparent;
  width: 200px;
  height: 60px;
  position: fixed;
  z-index: 1000;
  bottom: 25%;
  right: 0;
  display: flex;
  align-items: center;
  border: 0;
  opacity: 0;
}
.back-top__btn:hover {
  background-color: #fff;
  color: #be4f1c;
  border: 3px #be4f1c;
}
.back-top__btn__arr {
  display: block;
  background-color: #be4f1c;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 45px;
  height: 60px;
  width: 60px;
  transition: all 0.08s;
  border: 0;
}
.back-top__btn__arr:hover {
  text-decoration: none;
  background-color: #fff;
  color: #be4f1c;
  border: 3px #be4f1c solid;
}
.back-top__btn__arr-txt {
  display: inline-block;
  position: absolute;
  right: 0px;
  text-decoration: none;
  transition: all 0.08s;
  opacity: 0;
}

.back-top__btn:hover > .back-top__btn__arr-txt {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.back-top__btn__arr:hover + .back-top__btn__arr-txt {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.back-top__btn:hover > .back-top__btn__arr {
  text-decoration: none;
  background-color: #fff;
  color: #be4f1c;
  border: 3px #be4f1c solid;
}

.displayBtn {
  opacity: 1;
  animation-duration: 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sidebar-nav {
  background-color: #f3f3f3;
  width: 16%;
  border-right: 1px #c0c0c0 solid;
  margin-right: 60px;
}

/*If sidebar-nav__ul__li__arrow-container is the only child then add display none to all sidebar-nav__ul__li-arrow within sidebar-nav__ul__li__arrow-container 
.sidebar-nav__ul__li__arrow-container:only-child > .sidebar-nav__ul__li-arrow {
  display: none; 
}
*/

.sidebar-nav__ul__li-arrow:before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 2em;
  border: 2px solid #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sidebar-nav__ul__li-arrow-icon:before {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.69444em;
  height: 0.10556em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.sidebar-nav__ul__li-arrow-icon:after {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.10556em;
  height: 0.69444em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
}

/* any sidebar-nav__ul__li inside .sidebar-nav__ul that has a second child*/
.sidebar-nav__ul__li:has(ul) {
  border-right: 1px #c0c0c0 solid;
}

.sidebar-nav__ul__li-child-secondLevel-li__arrow-container:only-child
  > .sidebar-nav__ul__li-arrow {
  display: none;
}

/*
.sidebar-nav__ul__li-child-secondLevel-li__arrow-container:only-child > .sidebar-nav__ul__li-arrow {
  display: none; 
}
*/

.multilevel-linkul-0 {
  display: none;
  list-style: none;
  padding-left: 0;
  background-color: #d3cdcd;
}

.multilevel-linkul-0 li {
  list-style: none;
  padding-left: 0;
}

.sidebar-nav__ul__li:only-child > a {
  border-right: 1px #c0c0c0 solid;
}

.sidebar-nav__ul__li:last-child {
  border-bottom: 1px #c0c0c0 solid;
}

.sidebar-nav__ul__li-child-secondLevel-li__arrow-container:only-child
  > .sidebar-nav__ul__li-arrow
  .sidebar-nav__ul__li-arrow-icon {
  display: none;
}

.sidebar-nav__ul__li__arrow-container:only-child > a {
  border: none;
}

.sidebar-nav__ul {
  padding: 0px;
  margin: 0;
  list-style: none;
  width: 100%;
  text-align: left;
  overflow: scroll;
  font-size: 1em;
  list-style: none;
}

.sidebar-nav__ul a {
  color: #6a6a6a;
  text-decoration: none;
  display: block;
}

.sidebar-nav__ul__li {
  width: 100%;
  color: #6a6a6a;
  position: relative;
  padding-left: 0;
  border-top: 1px #c0c0c0 solid;
  position: relative;
}

.sidebar-nav__ul__li__arrow-container {
  display: flex;
  flex-direction: column;
}

.sidebar-nav__ul__li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  position: relative;
}

.sidebar-nav__ul__li-arrow {
  content: "";
  width: 80px;
  height: 60px;
  top: 0;
  right: 0;
  color: #6a6a6a;
  position: absolute;
}

.sidebar-nav__ul__li-arrow:before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 2em;
  border: 2px solid #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sidebar-nav__ul__li-arrow-icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.sidebar-nav__ul__li-arrow-icon:before {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.69444em;
  height: 0.10556em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.sidebar-nav__ul__li-arrow-icon:after {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.10556em;
  height: 0.69444em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.sidebar-nav__ul__li-child {
  background-color: #e7e7e7;
  font-size: 0.9em;
  border-top: 1px #8e8e8e solid;
  display: none;
}

.sidebar-nav__ul__li-child-secondLevel {
  list-style: none;
  padding: 0;
  margin: 0;
  transition: all 0.8s;
  overflow: hidden;
  background-color: #e5e5e5;
}
.sidebar-nav__ul__li-child-secondLevel-li,
.multilevel-linkul-0 li {
  width: 100%;
  color: #7e7e7e;
  padding-left: 15px;
  position: relative;
  margin-left: 0;
  border-top: 1px #7e7e7e solid;
}

.sidebar-nav__ul__li-child-secondLevel-li__arrow-container {
  display: flex;
  align-items: center;
}
.sidebar-nav__ul__li-child-secondLevel-li-arrow {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  background-image: url("../images/chevron-right-solid.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  color: #8e8e8e;
  border-left: 1px #8e8e8e solid;
}
.sidebar-nav__ul__li-child-secondLevel-li a {
  color: #000;
  display: flex;
  align-items: center;
}
.sidebar-nav__ul__li-child-secondLevel-li-child {
  background-color: #e7e7e7;
  display: none;
  font-size: 0.8em;
  border-top: 1px #8e8e8e solid;
}
.sidebar-nav__ul__li-child-secondLevel-li-child-thirdLevel {
  list-style: none;
  padding: 0;
  margin: 0;
  transition: all 0.8s;
  height: 0;
  overflow: hidden;
}
.sidebar-nav__ul__li-child-secondLevel-li-child-thirdLevel-li {
  width: 100%;
  color: #c0c0c0;
  position: relative;
  border-top: 1px #c0c0c0 solid;
  padding-left: 0;
}
.sidebar-nav__ul__li-child-secondLevel-li-child-thirdLevel-li a {
  border-right: 0;
  display: flex;
  align-items: center;
}

.sidebar-nav__ul__li__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 5px 15px 25px;
  border-right: none;
}

.sidebar-nav-show {
  transform: scaleY(1);
  height: auto;
  overflow: auto;
  display: block;
}

.nav-show {
  display: block;
}

.hideThis {
  display: none;
}

.red {
  background-color: red;
}

.arrowOpen {
  color: #6a6a6a;
}
.arrowOpen:after {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.69444em;
  height: 0.10556em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.arrowOpen .sidebar-nav__ul__li-arrow-icon:after {
  width: 0;
  height: 0;
}

.linkContainer {
  display: flex;
  align-items: center;
  border-bottom: 1px #c0c0c0 solid;
}

.sidebar-nav__ul__li-child-secondLevel .linkContainer .openBtn {
  background-color: #e5e5e5;
}

.openBtn {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  padding: 15px;
  margin: 12px;
  border: none;
  outline: none;
}
.openBtn:hover {
  cursor: pointer;
}
.openBtn:focus {
  border: 0;
  outline: none;
}

.openBtn:before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 2em;
  border: 2px solid #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  outline: none;
}

.openBtn__span {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  outline: none;
}

.openBtn__span:before {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.69444em;
  height: 0.10556em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
  outline: none;
}

.openBtn__span:after {
  content: "";
  display: block;
  position: absolute;
  background: #6a6a6a;
  border-radius: 50em;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.10556em;
  height: 0.69444em;
  z-index: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
  outline: none;
}

.openBtn__span__close:after {
  width: 0;
  height: 0;
  outline: none;
  border: 0;
}

.displayBlock {
  display: block;
}

.linkContainer a:first-child {
  border-right: 1px #c0c0c0 solid;
}

.chap--title {
  margin-left: 45px;
}

@media only screen and (max-width: 2080px) {
  .sidebar-nav__ul__li a {
    width: 100%;
  }
}

@media only screen and (max-width: 1600px) {
  .sidebar-nav {
    width: 30%;
  }
}

@media only screen and (max-width: 800px) {
  .sidebar-nav {
    width: 100%;
  }
}

.basic p::before {
  counter-increment: paragraph;
  content: "Paragraph " counter(paragraph) ": ";
  font-style: italic;
}

.secondLevel h4 {
  padding-left: 10px;
}

ol.secondLevel {
  padding-left: 0;
  margin-top: 30px;
}

ol.secondLevel div {
  margin-top: 30px;
}

ol.topLevel,
ol.secondLevel {
  list-style: none;
}

.main-body__txt {
  padding-left: 10px;
}

.third-level {
  margin-left: 25px;
}

.multilevel ol {
  counter-reset: section 2;
  list-style-type: none;
}

.multilevel li::before {
  counter-increment: section;
  content: counters(section, ".") " ";
}

.noDisplay {
  display: none;
}

.anchorLinks__ul {
  list-style: none;
}

.anchorLinks__ul__li {
  margin: 15px auto;
}

.anchorLinks__ul__li__child-ul {
  list-style: none;
}

.anchorLinks__ul__li__child-ul-li {
  font-weight: bold;
  margin: 15px auto;
}

.anchorLinks__ul__li__child-ul-li-child-ul {
  list-style: none;
}

.anchorLinks__ul__li__child-ul-li-child-ul-li {
  margin: 15px auto;
}

.flex-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Index body */

.main-handbook {
  width: 100%;
  padding: 45px;
}

.anchorLinks .anchorLinks__ul .anchorLinks__ul__li .multilevel-linkul-0 {
  display: block;
}


