.wrapper {
	background-image: url("/static/assets/img/default-bg.9059e6a8655b.jpg");
	background-size: cover;
  background-position: top right;
  padding: 0 20px 20px;
}
.stadiums-container {
	max-width: 1100px;
	margin: 40px auto 0;
}
.name {
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.name div {
  display: flex;
  border-bottom: 3px solid var(--primary-color);
}
input[type=text] {
  width: 90%;
  padding: 0px 10px;
  box-sizing: border-box;
  height: 25px;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
input[type=text]:focus, input[type=text]:active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.name .search-btn {
  width: 25px;
  height: 25px;
  background: transparent;
}
.search-btn img,
.search-btn svg {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}
table, .pagination {
  display: none;
}
.stadiums-container table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  margin-top: 40px;
  padding: 0 20px;
}
.stadiums-container table .position,
.stadiums-container table .shirt-name,
.stadiums-container table .birthday {
  text-align: center;
}
.stadiums-container tbody {
  font-size: 14px;
  background: white;
  border: .5px solid #e2e2e2;
}
.stadiums-container th {
  color: #9b9b9b;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
}
.stadiums-container tr {
  border-bottom: 0.5px solid #e2e2e2;
}
.stadiums-container th:first-child,
.stadiums-container td:first-child {
  padding-left: 10px;
  width: 100px;
}
.stadiums-container td:first-child {
  text-align: center;
}
.stadiums-container td {
  padding: 6px 2px;
  box-sizing: border-box;
}
.stadiums-container .player-name {
  display: flex;
  align-items: center;
}
.stadiums-container td:first-child p {
  justify-content: flex-end;
}
.stadiums-container td:first-child p span {
  text-align: right;
}
.stadiums-container .player-name img {
  width: 40px;
  max-height: 40px;
  margin: 0 14px;
  object-fit: cover;
  object-position: top;
}
.stadiums-container a {
  color: black;
  text-decoration: none;
}
.stadiums-container a:hover {
  color: black;
  text-decoration: underline;
}
.stadiums-container .country {
  width: 100px;
}
.stadiums-container .country img {
  width: 40px;
  max-height: 40px;
  object-fit: contain;
}
.stadiums-container td.country div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stadium-photo {
    background-image: url("../assets/img/club-bg.e76de5bd95f6.jpg");
    position: relative;
    height: 350px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}


@media (max-width: 1220px) {
	.wrapper {
		padding: 0 15px;
	}
}

@media (max-width: 992px) {
	.stadium-photo {
		height: 300px;
	}
}

@media (max-width: 768px) {
	 .container-items{
		grid-template-columns: 1fr 1fr;
	}
	.stadium-photo {
		height: 250px;
	}
}

@media (max-width: 576px) {
	 .container-items {
		grid-template-columns: 1fr;
	}
	.stadium-photo {
        height: 200px;
    }
}
