/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_link_dropdown {
  height: 3.75rem;
  margin-bottom: -1.875rem;
  padding: 0 1.375rem;
}
.sn_link_dropdown__wr {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  display: inline-block;
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
  box-shadow: 0 0 0.9375rem 0 rgba(204, 204, 204, 0.5);
  font-size: 1rem;
  overflow: hidden;
  height: 3.75rem;
  width: 100%;
  max-width: 20.3125rem;
  transition: height 0.35s ease;
}
.__show .sn_link_dropdown__wr {
  height: auto;
}
.__show .sn_link_dropdown__wr ul {
  display: block;
}
.sn_link_dropdown__wr ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: none;
}
.sn_link_dropdown__wr svg-sprite {
  width: 2.1875rem;
  height: 2.1875rem;
}
.sn_link_dropdown__wr button svg-sprite {
  margin-left: auto;
  width: 0.9375rem;
  height: 0.9375rem;
}
.sn_link_dropdown__wr button,
.sn_link_dropdown__wr a {
  height: 3.75rem;
  color: #2b2a2a;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  padding: 0.625rem 1.875rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 0.125rem solid transparent;
  border-radius: var(--bs-border-radius);
  outline: transparent;
  transition: background-color 0.35s ease;
}
.sn_link_dropdown__wr button:focus-visible,
.sn_link_dropdown__wr a:focus-visible {
  border-color: #2b2a2a;
}
.sn_link_dropdown__wr button:hover,
.sn_link_dropdown__wr a:hover {
  background-color: #f5f5f5;
}
.sn_link_dropdown__wr button .tx,
.sn_link_dropdown__wr a .tx {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}