.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 720px);
  max-width: 1440px;
}
@media screen and (max-width: 1440px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.practice-list-container {
  width: 100%;
}
.practice-list-container ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.practice-list-container ul li {
  border-radius: 4px;
  background: white;
  border: 1px solid var(--black-10-fade);
  padding: 0;
  overflow: hidden;
}
.practice-list-container ul li:before {
  display: none;
}
.practice-list-container ul a {
  position: relative;
}
.practice-list-container ul a::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16602 9.99996H15.8327M15.8327 9.99996L9.99935 4.16663M15.8327 9.99996L9.99935 15.8333' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.2;
  pointer-events: none;
}
.practice-list-container ul a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background: var(--green-accent);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  pointer-events: none;
  z-index: 1000;
}
.practice-list-container ul a:hover::after {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
}
.practice-list-container ul a:hover::before {
  opacity: 1;
}
.practice-list-container ul a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 25px 58px 25px 24px;
  text-decoration: none;
  color: var(--green-80);
  transition: color 0.2s ease;
  font-family: var(--s4-fontFamily), sans-serif;
  font-weight: var(--s4-fontWeight);
  font-size: var(--s4-fontSize);
  line-height: var(--s4-lineHeight);
  letter-spacing: var(--s4-letterSpacing);
}
.practice-list-container ul a .practice-list-description {
  display: block;
  flex: 0 0 100%;
  text-decoration: none;
  margin: 8px 0 0 0;
  color: var(--black-100);
  font-family: var(--paragraph-FontFamily), sans-serif;
  font-weight: var(--paragraph-FontWeight);
  font-size: var(--paragraph-FontSize);
  line-height: var(--paragraph-LineHeight);
  letter-spacing: var(--paragraph-LetterSpacing);
}

/*# sourceMappingURL=practice-list.css.map */
