/* Nesting Components */

.nested-layer h2,
.nested-layer h3,
.nested-layer h4 {
  margin-top: 10px;
}

.nested-layer {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all ease-in-out .3s;
  display: block;
}

.nested-layer.active {
  opacity: 1;
  visibility: visible;
  max-height: 15000px;
}

.nested-layer .layer-content {
  color: rgba(2, 34, 54, 0.604308);
}

.inner-mdl-sect .sidebar-right .dropdown-anchor {
  transition: all ease-in-out .2s;
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none !important;
}

.inner-mdl-sect .sidebar-right .dropdown-anchor:hover {
  color: #005E97 !important;
}

.inner-mdl-sect .sidebar-right .dropdown-anchor.active {
  color: #005E97 !important;
}

.inner-mdl-sect .sidebar-right .dropdown-anchor:after,
.inner-mdl-sect .sidebar-right .dropdown-anchor:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 6px;
  height: 10px;
  transform: rotate(90deg);
  margin: 0 3px 0 6px;
  background-image: url(sidebar-arrow-hover.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all ease-in-out .2s;
}

.inner-mdl-sect .sidebar-right .dropdown-anchor:before {
  background-image: url(sidebar-arrow-blue.svg);
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.inner-mdl-sect .sidebar-right .dropdown-anchor:hover:after,
.inner-mdl-sect .sidebar-right .dropdown-anchor.active:after {
  opacity: 0;
}

.inner-mdl-sect .sidebar-right .dropdown-anchor:hover:before,
.inner-mdl-sect .sidebar-right .dropdown-anchor.active:before {
  opacity: 1;
  transform: translateY(-50%) rotate(270deg);
}

@media only screen and (max-width: 425px) {
  .nested-layer .layer-content {
    padding: 10px !important;
  }
}
