.drop-container-file {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container-file:hover {
  background: #eee;
  border-color: #111;
}

.drop-container-file:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}

input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #4099ff;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background: #4099ff;
}

input[type=file]::file-selector-button:after {
  background: #0db84e;
}

.hide{
  display: none;
}


/* Mobile menu */
.game-menu-mobile .dropdown {
  display: none
}

@media screen and (max-width: 1137px) {
  .menu-game {
    display: none;
  }

  .game-menu-mobile .dropdown a:not(:first-child) {
    display: none;
  }

  .game-menu-mobile .dropdown {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1137px) {
  
  .game-menu-mobile .dropdown.responsive {
    position: relative;
  }

  .game-menu-mobile .dropdown.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}