/** Shopify CDN: Minification failed

Line 57:0 Unexpected "}"

**/
#teams_selector {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
}

.tnp-teams__wrapper {
  position: relative;
  margin-left: 10px;
}

#announcement {
  opacity: 0;
}

#teams_selector label {
  display: block;
  padding: .7rem .8rem;
  width: 65%;
  margin: 0 auto;
  text-align: left;
  font-size: .75rem;
}

#teams_selector button,
#teams_selector ul {
  display: block;
  padding: .7rem .8rem;
  width: auto;
  margin: 0 auto;
  text-align: left;
  background: white;
  border: 0;
  font-size: 1rem;
  outline: none;
}

/* Custom Dropdown Button Style (matching the old select button style) */
#teams_selector button {
  position: relative;
  display: inline-block;
  padding: 5px 30px 5px 10px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  font-size: 1rem;
  width: fit-content;
  padding-right: 50px;
}
}

#teams_selector button:focus-visible {
  outline: 0;
  box-shadow: 0 0 5px 2px rgba(251, 146, 60, 0.7) inset;
}

/* Custom arrow style from old select */
#teams_selector button::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  right: 10px;
  top: 15px;
}

/* Dropdown List Styling */
#teams_selector ul {
  color: #3f403b;
  position: absolute;
  left: 0;
  right: 0;
  max-height: 10rem;
  overflow-y: auto;
  list-style-type: none;
  padding: 0;
  margin-top: .1rem;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: top left;
  transition: all .3s ease-in;
  pointer-events: none;
  z-index: 30;
  border-radius: 8px;
  padding: 5px;
  background-color: lightgray;
}

/* Active state of the dropdown */
#teams_selector ul.active {
  opacity: 1;
  transform: scale(1, 1);
  pointer-events: auto;
}

/* Dropdown options list styling */
#teams_selector ul li {
  padding: .6rem .5rem;
  border-top: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease-in;
  position: relative;
  font-size: 1rem;
  border-radius: 5px;
  background: transparent;
}

/* Custom checkmark for active options */
#teams_selector ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  vertical-align: middle;
  font-weight: 900;
  position: absolute;
  right: .8rem;
  opacity: 0;
  transition: opacity .3s ease-out;
}

/* Hover and current selection states for options */
#teams_selector ul li:hover,
#teams_selector ul li.current {
  background: white;
}

#teams_selector ul li.active {
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.7);
}

#teams_selector ul li.active::before {
  opacity: 1;
}

/* Custom Select Wrapper Styling */
.custom-select {
  position: relative;
  display: inline-block;
  width: 100%; /* Match the width of the parent container */
}

/* Hide default select dropdown arrow */
.custom-select select {
  display: inline-block;
  outline: none;
  padding: 5px 30px 5px 10px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  width: 100%;
}

/* Add custom arrow to the select */
.custom-select .custom-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  right: 10px;
  top: 15px;
}

@media screen and (max-width: 767px) {
  .tnp-teams__wrapper{
    margin: auto auto 20px auto;
  }
  
  #teams_selector ul {
    transform-origin: bottom left;
    transition: all .3s ease-in;
    pointer-events: none;
    z-index: 30;
    border-radius: 8px;
    padding: 5px;
    background-color: lightgray;
    bottom: 40px;
  }
}