html {
  height: 100%;
  font-family: Arial;
  font-size: 17px;
  padding: 8px;
  cursor: url(/Res/arrow.png), auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: url(/Buy/Img/bbgg.jpg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 100%;
  min-height: fit-content;
}
body {
}

* {
  box-sizing: border-box;
}

.stroke {
  color: white;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}
#Form {
  display: block;
  width: 1150px;
  margin: auto;
  direction: rtl;
  margin-top: 60px;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

.container {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}

input[type="text"] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.btn {
  background-color: #04aa6d;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn:hover {
  background-color: #45a049;
}

a {
  color: #2196f3;
}

hr {
  border: 1px solid lightgrey;
}

span.price {
  float: right;
  color: grey;
}

#search-player {
  border: #000 1px;
  position: absolute;
  width: 250px;
  max-height: 350px;
  background-color: #f2f2f2;
  box-shadow: 2px 2px 5px;
  border-radius: 4px;
  overflow-y: scroll;
  overflow-x: hidden;
}
#search-player ul {
  margin: 5px 5px;
  width: 100%;
}

#search-player ul li {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  width: 230px;
  justify-content: space-between;
  border-radius: 5px;
  padding: 5px 10px;
}

#search-player ul li:hover {
  background-color: #ccc;
}

#search-player .name {
  font-size: 14px;
  line-height: 30px;
}

#search-player ul li img {
  height: 30px;
  display: block;
  margin: auto;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse;
  }
  .col-25 {
    margin-bottom: 20px;
  }
}
