/*Legally Reviewed*/
.custom-practice-sidebar {
  width: 100%;
}

.sidebar-status-card {
  width: 370px;
  max-width: 100%;
  min-height: 115px;
  background: #F0FDF4;
  display: flex;
}

.sidebar-status-card__line {
  width: 4px;
  background: #00C950;
  flex-shrink: 0;
}

.sidebar-status-card__inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 10px;
}

.sidebar-status-card__image {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border: 1px solid #FFFFFF;
}

.sidebar-status-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-status-card__content {
  flex: 1;
}

.sidebar-status-card__small {
  margin-bottom: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 115%;
  color: #0D542B;
}

.sidebar-status-card__title {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #0D542B;
}

@media (max-width: 900px) {
  .sidebar-status-card {
    width: 100%;
  }
}

/*Table of Contents*/
.sidebar-toc {
  width: 370px;
  max-width: 100%;
  margin-top: 30px;
  background: #FCFCFC;
  border: 1px solid #00000033;
}

.sidebar-toc__toggle {
  width: 100%;
  min-height: 81px;
  padding: 0 24px;
  background: transparent;
  border: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #08314D;
  text-align: left;
}

.sidebar-toc__icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.sidebar-toc__icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;

    width: 12px;
    height: 12px;

    border-right: 2.5px solid #0F0F0F;
    border-bottom: 2.5px solid #0F0F0F;

    transform: translate(-50%, -60%) rotate(45deg);
    transition: transform .3s ease;
}

.sidebar-toc.is-open .sidebar-toc__icon::before {
    transform: translate(-50%, -40%) rotate(-135deg);
}

.sidebar-toc__content {
  display: none;
  padding: 0 24px 24px;
}

.sidebar-toc.is-open .sidebar-toc__content {
  display: block;
}

.sidebar-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-toc__list li {
  margin-bottom: 12px;
}

.sidebar-toc__list a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #1E3C62;
  text-decoration: none;
}

.sidebar-toc__list a:hover {
  color: #FE4500;
}

/*CTA get a free guide*/
.sidebar-cta-card {
  width: 370px;
  max-width: 100%;
  min-height: 267px;
  margin-top: 30px;
  padding: 32px 28px;
  background: #1E3C62;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sidebar-cta-card__icon {
  width: 41px;
  height: 41px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.sidebar-cta-card__title {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
}

.sidebar-cta-card__text {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
}

.sidebar-cta-card__button {
  width: 223px;
  height: 44px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  transition: background 0.25s ease, border-color 0.25s ease;
}

.sidebar-cta-card__button span {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}

.sidebar-cta-card__button i {
  position: relative;
  width: 16px;
  height: 1.8px;
  background: #ffffff;
  display: inline-block;
  transition: background 0.25s ease;
}

.sidebar-cta-card__button i::before {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: border-color 0.25s ease;
}

.sidebar-cta-card__button:hover {
  background: #FE4500;
  border-color: #FE4500;
}

/*Related Practice Areas*/
.sidebar-cases-card {
  width: 370px;
  max-width: 100%;
  margin-top: 30px;
  padding: 0 24px 28px;
  background: #FCFCFC;
  border: 1px solid #00000033;
}

.sidebar-cases-card__title {
  margin: 0 -24px;
  padding: 18px 24px;
  color: #08314D;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-transform: uppercase;
}

.sidebar-cases-card__title span {
  color: #08314D;
}

.sidebar-cases-card__line {
  width: 320px;
  max-width: 100%;
  height: 1px;
  background: #00000033;
  margin: 24px 0;
}

.sidebar-cases-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-cases-card__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;

  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #1E3C62;
}

.sidebar-cases-card__list li:last-child {
  margin-bottom: 0;
}

.sidebar-cases-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;

  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2EA3F2;
}