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

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

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

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

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

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

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

.clubs-drop {
  height: 50px;
  width: 100%;
  margin-left: 10px;
  border-radius: 10px;
  border-width: 1px;
  border-style: none;
}

.clubs-drop-toggle::after {
  position: absolute;
  left: 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.clubs-drop-toggle {
  width: 100%;
  height: 100%;
  padding-left: 40px;
  border-radius: 10px;
  border: 1px solid #222222;
  z-index: 1111;
}

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

.btn.clubs-drop-toggle.show {
  border: 1px solid var(--bs-green);
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 0px 5px 0px var(--bs-green);
  /*transition: 0.3s;*/
}

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

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

.clubs-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;
}

.clubs-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;
}

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

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

.clubs-no-results {
  display: none;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 80%;
  color: var(--bs-danger-text-emphasis);
  background-color: rgba(241, 174, 181, 0.3);
  border: 1px solid var(--bs-danger-text-emphasis);
  border-radius: 10px;
  font-size: 20px;
}

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

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

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

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

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

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

.club-img-d a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 75px;
  min-height: 75px;
  max-height: 75px;
  width: 75px;
  min-width: 75px;
  max-width: 75px;
}

.club-img {
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

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

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

@media (min-width: 1200px) {
  .club-card-name h5 {
    font-size: 18px;
  }
}

.club-card-name {
  text-decoration: none;
  color: #222222;
}

.club-card-name:hover {
  color: var(--bs-primary);
}

@media (min-width: 300px) {
  .club-card-btn {
    width: 132px;
    font-size: 12px;
    padding: 5px;
    border-radius: 20px;
    padding-left: 10px;
    transition: 0.3s;
  }
}

@media (min-width: 576px) {
  .club-card-btn {
    width: 150px;
    font-size: 14px;
    padding: 5px;
    border-radius: 20px;
    padding-left: 10px;
    transition: 0.3s;
  }
}

@media (min-width: 1200px) {
  .club-card-btn {
    width: auto;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    padding-left: 10px;
    transition: 0.3s;
  }
}

.club-card-btn:hover {
  background-color: #555555;
  color: #ffffff;
}

.club-card-btn:focus {
  background-color: #bbbbbb;
  color: #ffffff;
}

.clubs-results-cont {
  display: flex;
}
