.gamesSearcher{
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 18px;
    background-color: #ffffff;
    margin-top: 15px;
    border: none;
    display: flex;
    align-items: center;
}
#panel_games{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.searchIconSvg{
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
#inputSearch{
    border: none;
    font-size: 18px;
    width: 100%;
    line-height: 1;
    font-family: "SF-Pro-Display";
}
.inputSearch{
    border: none;
    font-size: 18px;
    width: 100%;
    line-height: 1;
    font-family: "SF-Pro-Display";
}
.gamesList{
    margin-top: 10px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 150px;
}
.gameItem{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gameIcon{
    width: 100%;
    height: 230px;
    border-radius: 10px;
}
.TitleGame{
    margin-top: 5px;
    font-family: "SF-Pro-Display-light";
    font-size: 14px;
    width: 100%;
    line-height: 1;
}
.DescriptionGame{
    margin-top: 5px;
    font-family: "SF-Pro-Display-light";
    font-size: 14px;
    width: 100%;
    color: #676767;
    line-height: 1;
}
#noElements{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "SF-Pro-Display";
    margin-top: 15px;
    color: #676767;
    font-size: 14px;
}