.players-section {
  margin-top: 65px;
  width: 100%;
}

@media (min-width: 300px) {
  .players-head-container {
    padding: 0 25px;
    padding-top: 55px;
  }
}

@media (min-width: 992px) {
  .players-head-container {
    padding: 0;
    padding-top: 85px;
  }
}

@media (min-width: 300px) {
  .players-col-h {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .players-col-h {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .players-col-h {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .players-heading {
    font-size: 36px;
  }
}

@media (min-width: 300px) {
  .players-drop {
    height: 50px;
    width: 100%;
    margin: 10px 0 0px;
    border-radius: 10px;
    border-width: 1px;
    border-style: none;
  }
}

@media (min-width: 768px) {
  .players-drop {
    height: 50px;
    width: 100%;
    margin: 0 0 0 10px;
    border-radius: 10px;
    border-width: 1px;
    border-style: none;
  }
}

.players-drop-toggle::after {
  position: absolute;
  right: 15px;
  top: 13px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  transform: rotate(225deg);
  border-top: 2px solid;
  border-bottom: 2px solid transparent;
  border-left: 2px solid;
  border-right: 2px solid transparent;
  transition: 0.3s;
}

.btn.players-drop-toggle {
  width: 100%;
  height: 100%;
  padding-right: 40px;
  border-radius: 10px;
  border: 1px solid #222222;
  z-index: 1111;
}

.btn.players-drop-toggle:hover {
  border: 1px solid #222222;
  box-shadow: 0px 0px 5px 0px #777777;
  transition: 0.2s ease;
}

.btn.players-drop-toggle.show {
  border: 1px solid var(--bs-green);
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 0px 5px 0px var(--bs-green);
}

.players-drop-toggle.show.players-drop-toggle::after {
  transform: rotate(45deg);
  margin-top: 7px;
}

.btn.players-drop-toggle.show:hover {
  box-shadow: 0px 0px 5px 0px var(--bs-green);
}

.players-drop-menu {
  display: block;
  opacity: 0;
  top: 50px !important;
  height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow-y: scroll;
  width: 100%;
  z-index: 1111;
}

.players-drop-menu.show {
  box-shadow: 0px 1px 5px 0px var(--bs-green);
  border: 1px solid var(--bs-green);
  border-top: none;
  height: 225px;
  opacity: 1;
  top: 50px !important;
  transform: none !important;
  transition: all 0.15s linear;
  transition-delay: 0.1s;
  z-index: 1111;
}

.players-results-btn {
  margin: 0;
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  font-size: 15px;
  color: #ffffff;
  background-color: var(--bs-primary);
  transition: 0.3s;
}

.players-results-btn:hover {
  color: #ffffff;
  background-color: var(--bs-success);
}

.players-clubs-splider {
  display: none;
}

@media (min-width: 300px) {
  .players-clubs-slider {
    width: auto;
    min-height: 100px;
    margin: 30px 0px;
  }
}

@media (min-width: 768px) {
  .players-clubs-slider {
    width: auto;
    min-height: 100px;
    margin: 40px 0px;
  }
}

@media (min-width: 992px) {
  .players-clubs-slider {
    width: auto;
    min-height: 100px;
    margin: 45px 0px;
  }
}

@media (min-width: 300px) {
  .splide__list.players-clubs-slider-list {
    height: 85px;
    padding: 0 !important;
  }
}

@media (min-width: 768px) {
  .splide__list.players-clubs-slider-list {
    height: 110px;
    padding: 0 !important;
  }
}

@media (min-width: 300px) {
  .players-clubs-slider-img-link {
    cursor: pointer;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
}

@media (min-width: 768px) {
  .players-clubs-slider-img-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
}

@media (min-width: 300px) {
  .players-clubs-slider-img-link:hover {
    width: 55px;
    height: 55px;
    background-color: rgba(0, 174, 83, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 0px 10px rgba(0, 174, 83, 0.7);
    transform: scale(1.1);
  }
}

@media (min-width: 300px) {
  .players-clubs-slider-img-link.active {
    width: 55px;
    height: 55px;
    background-color: var(--bs-success);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 0px 10px var(--bs-success);
    transform: scale(1.1);
  }
}

@media (min-width: 768px) {
  .players-clubs-slider-img-link:hover {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 174, 83, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 0px 15px rgba(0, 174, 83, 0.7);
    transform: scale(1.1);
  }
}

@media (min-width: 768px) {
  .players-clubs-slider-img-link.active {
    width: 70px;
    height: 70px;
    background-color: var(--bs-success);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 0px 15px var(--bs-success);
    transform: scale(1.1);
  }
}

@media (min-width: 300px) {
  .players-clubs-slider-img {
    height: 55px;
  }
}

@media (min-width: 768px) {
  .players-clubs-slider-img {
    height: 70px;
  }
}

.pclubs-no-results {
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 80%;
  margin: 70px 0px;
  color: var(--bs-danger-text-emphasis);
  background-color: rgba(241, 174, 181, 0.2);
  border: 1px solid var(--bs-danger-text-emphasis);
  border-radius: 10px;
  font-size: 18px;
  transition: 0.4s;
}

#players-results-status {
  height: auto;
  padding: 0 0 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.players-no-results {
  display: none;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
  margin-bottom: 70px;
  color: var(--bs-danger-text-emphasis);
  background-color: rgba(241, 174, 181, 0.2);
  border: 1px solid var(--bs-danger-text-emphasis);
  border-radius: 5px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.2s;
}

.players-no-results.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s;
}

.players-no-results.hide {
  opacity: 0;
  transform: translateY(0);
  transition: all 0.2s;
}

@media (min-width: 300px) {
  #players-no-results span {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  #players-no-results span {
    font-size: 25px;
  }
}

.players-choose-club {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
  margin-bottom: 70px;
  color: #777777;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--bs-gray);
  border-radius: 5px;
  opacity: 1;
  transition: all 0.4s;
}

.players-choose-club.hidden {
  opacity: 0;
  transition: all 0.4s;
}

@media (min-width: 300px) {
  #players-choose-club span {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  #players-choose-club span {
    font-size: 30px;
  }
}

@media (min-width: 300px) {
  .players-cont {
    margin-top: -190px;
  }
}

@media (min-width: 1200px) {
  .players-cont {
    margin-top: -198px;
  }
}

@media (min-width: 300px) {
  .player-card {
    width: 290px;
    padding: 22px 15px;
    margin: 20px;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
}

@media (min-width: 576px) {
  .player-card {
    width: 310px;
    padding: 22px;
    margin: 20px;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .player-card {
    width: 280px;
    padding: 22px 15px;
    margin: 20px;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
}

@media (min-width: 1200px) {
  .player-card {
    width: 320px;
    padding: 20px;
    margin: 30px;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
}

.player-card-img-d {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
  height: 55px;
  min-height: 55px;
  width: 55px;
  min-width: 55px;
  border-radius: 50%;
}

.player-card-img {
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.player-card-img:hover {
  filter: brightness(70%);
  transform: scale(1.1);
}

@media (min-width: 300px) {
  .players-card-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
    transition: 0.3s;
  }
}

@media (min-width: 1200px) {
  .players-card-name {
    font-size: 15px;
  }
}

.club-card-number {
  font-size: 20px;
}

.players-results-section {
  background-color: #fafafa;
  display: none;
  opacity: 0;
  transition: all 0.5s;
  min-height: 100vh;
}

.players-cont {
  display: flex;
  justify-content: center;
}

.players-results-cont {
  display: flex;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  position: absolute;
}

.players-results-cont.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.loading-spinner {
  border: 15px solid rgba(0, 0, 0, 0.1);
  border-top: 15px solid var(--bs-primary);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 0.5s linear infinite;
  margin: 0 auto;
}

.loading-overlay {
  display: none;
  opacity: 0;
  position: absolute;
  top: 93%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  transition: all 0.5s;
}
