.display__item__games__header{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 0 0;
}
.display__item__games__header div{
    width: fit-content;
    height: auto;
}
.display__item__games__header div > form{
    width: 370px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
}
.display__item__games__header div > form > input{
    width: 100%;
    height: 45px;
    float: left;
    border: solid 1px rgba(210, 215, 217, 0.75);
    border-right: unset;
    padding: 0 18px;
    box-sizing: border-box;
    border-radius: 5px 0 0 5px;
    font-size: 15px;
}
.display__item__games__header div > form > button{
    width: fit-content;
    height: 45px;
    float: left;
    border: solid 1px #f56a6a;
    padding: 0 30px;
    box-sizing: border-box;
    border-radius: 0 5px 5px 0;
    background-color: #f56a6a;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: .2s;
}
.display__item__games__header div > form > button:hover{
    background-color: #d14a4a;
    transition: .2s;
}
.display__item__games__header-button{
    width: fit-content;
    height: 45px;
    float: left;
    border: solid 1px #f56a6a;
    padding: 0 25px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #f56a6a;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-content: center;
    align-items: center;
}
.display__item__games__header-button:hover{
    background-color: #d14a4a;
    transition: .2s;
}
.display__item__games{
    width: 100%;
    height: auto;
    float: left;
    margin: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.display__item__games__box{
    width: 100%;
    height: auto;
    float: left;
    border: 1px solid #e6e8ea;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
	transition: .3s;
}
.display__item__games__box:hover{
	background-color: #f5f6f7;
	transition: .3s;
}
.display__item__games__block:nth-child(1){
    width: 100px;
    height: 100px;
}
.display__item__games__block-poster{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    float: left;
}
.display__item__games__block:nth-child(2){
    width: calc(100% - 120px);
    height: auto;
}
.display__item__games__block-title{
    width: 100%;
    height: auto;
    float: left;
    color: #3d4449;
    text-align: left;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}
.display__item__games__block-provider{
    width: 100%;
    height: auto;
    float: left;
    color: #3d4449;
    font-size: 16px;
    text-align: left;
    margin: 6px 0 0 0;
}
.display__item__games__checkboxes{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 25px 0 0 0;
    gap: 15px;
}
.display__item__games-checkbox{
    width: fit-content;
    height: auto;
    float: left;
    position: relative;
}
.display__item__games-checkbox input{
    width: 20px;
	height: 20px;
    float: left;
	padding: 0;
	margin: 0 10px 0 0;
	cursor: pointer;
	background-color: #fff;
    border-radius: 5px;
    border: 1px solid #dee1e3;
}
.display__item__games-checkbox input:checked{
    border: solid 1px #f56a6a;
	background-color: #f56a6a;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/icon/check.svg");
	background-size: 12px;
}
.display__item__games-checkbox p{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 15px;
    color: #3d4449;
}
.display__item__games__buttons{
    width: 100px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.display__item__games__buttons-btn{
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: inline-block;
    padding: 0;
    border: unset;
    border-radius: 5px;
    background-color: #e2e9f0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    transition: .2s;
}
.display__item__games__buttons-btn:hover{
    opacity: 0.7;
    transition: .2s;
}
.display__item__games__buttons-btn:nth-child(1){
    background-image: url("../images/icon/edit.svg");
    background-size: 14px;
}
.display__item__games__buttons-btn:nth-child(2){
    background-image: url("../images/icon/copy.svg");
}
.display__item__games__buttons-btn:nth-child(3){
    background-image: url("../images/icon/close.svg");
}
.display__item__games__block-platform{
    width: fit-content;
    height: auto;
    color: #3d4449;
    font-size: 16px;
    text-align: left;
    position: absolute;
    right: 20px;
    font-weight: 600;
    bottom: 20px;
}