@media screen and (min-width: 790px) {
  .container,
  .site-content {
    width: 100vw !important;
    max-width: none;
  }
#content {
	display: flex; 
	gap: 2rem; 
padding: 2rem;
}
#content #primary {
flex: 4 4 auto;
}
#content #secondary {
flex: 1 1 0;
}
  .has-sidebar #primary {
    width: 100%;
  }
}

@media screen and (max-width: 790px) {
  .container,
  .site-content {
    width: 100% !important;
    max-width: none;
  }
  .has-sidebar #primary {
    width: 100%;
  }
}

@media screen and (min-width: 790px) {
  .player-country {
    display: grid;
    grid-template-columns: auto auto;
    width: auto;
    margin: auto;
    align-items: center;
  }

  .chosen-value[placeholder] {
    padding: 10px;
  }
}

@media screen and (max-width: 500px) {
  .player-country {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
  }
}

@media screen and (min-width: 1000px) {
  th:nth-of-type(3) {
    width: 20%;
  }
}

@media screen and (max-width: 500px) {
  html {
    width: 100vw !important;
  }

  .stats-grid {
    grid-gap: 2rem !important;
  }

  .stat {
    height: 7rem !important;
  }

  .stat h4 {
    font-size: 9px;
  }

  .stat p {
    font-size: 8px !important;
  }
  .container {
    padding: 0;
    margin: 0;
  }
  #content {
    padding: 0;
    margin: 0;
  }

  #page {
    width: 100vw;
    padding: 1rem;
  }
}

image {
  width: 100%;
  height: 100%;
}

tr {
  background-color: rgba(250, 250, 250, 1) !important;
}

div.dt-top-container {
  display: grid;
  grid-template-columns: auto auto auto;
}

div.dt-center-in-div {
  margin: 0 0 0 auto;
}

div.dt-btn-container {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

div.dt-btn-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.chosen-value,
.value-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.chosen-value {
  height: 4rem;
  padding: 1rem;
  background-color: #fafcfd;
  border: 3px solid transparent;
  transition: 0.3s ease-in-out;
}
.chosen-value::-webkit-input-placeholder {
  color: #333;
}
.chosen-value:hover {
  background-color: #ff908b;
  cursor: pointer;
}
.chosen-value:hover::-webkit-input-placeholder {
  color: #333;
}
.chosen-value:focus,
w .chosen-value.open {
  z-index: 99;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
  outline: 0;
  background-color: #ff908b;
  color: #000;
}
.chosen-value:focus::-webkit-input-placeholder,
.chosen-value.open::-webkit-input-placeholder {
  color: #000;
}

.value-list {
  list-style: none;
  margin-top: 4rem;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease-in-out;
  z-index: 10;
}
.value-list.open {
  max-height: 320px;
  z-index: 99;
  position: absolute;
  top: 3rem;
  overflow: auto;
}
.value-list li {
  position: relative;
  height: 4rem;
  background-color: #fafcfd;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 1;
}
.value-list li:hover {
  background-color: #ff908b;
}
.value-list li.closed {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
}

.chosen-value {
  height: 80%;
  margin-bottom: 2rem;
  padding: 1rem;
}

.chosen-value[placeholder] {
  padding: 1rem;
}

@media screen and (max-width: 790px) {
  div.dt-top-container {
    display: grid;
    grid-template-rows: 1fr 2fr 1fr;
    grid-template-columns: 1fr;
  }

  .value-list.open {
    top: 6rem !important;
  }
}

tbody tr {
  transition: 0.3s ease-in-out;
}

tbody tr:hover {
  color: rgb(34, 40, 163);
}

