/* ---------------- < Box 1 > ---------------------  */

.listProduct-Box,
.NewProduct-List-Box {
    min-width: 200px;
    width: var(--box-width);
    height: var(--box-height);
    min-height: 250px;
    padding: var(--box-padding);
    border-radius: var(--box-radius);
    background: var(--box-back);
    box-shadow: 0px 0px 4px var(--allColor5);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    transition: all ease-in-out .2s;
    margin: var(--box-margin);
    color: var(--box-colT);
}

.listProduct-Box {
    margin-left: 9px;
}

.listProduct-Box>img,
.NewProduct-List-Box>img {
    width: 150px;
    height: 120px;
}

.listProduct-Box>span,
.NewProduct-List-Box span {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(219, 219, 219, 0) 0%, #DBDBDB 100%);
    position: absolute;
    bottom: 0;
    border-radius: 0 0 20px 20px;
    transition: all ease-in-out .4s;
    opacity: .6;
}

.listProduct-Box:hover,
.NewProduct-List-Box:hover {
    box-shadow: 0px 0px 13px var(--allColor5) !important;
    cursor: pointer !important;
}

.listProduct-Box:hover>span,
.NewProduct-List-Box:hover>span {
    height: 50%;
}

.listProduct-Box>h1,
.NewProduct-List-Box>h1 {
    text-align: center;
    height: 55px;
    width: 100%;
    font-size: 16px;
    white-space: break-spaces;
}

.listProduct-Box>p,
.NewProduct-List-Box>p {
    text-align: center;
    height: 35px;
    width: 100%;
}

.off {
    text-decoration: line-through;
}

.box-Money {
    font-size: 25px;
    font-family: var(--Font-B);
}

/* ---------------- < Box 2 > -------------------------------  */


.GameBox {
    width: var(--box-width);
    min-width: 230px;
    height: var(--box-height);
    min-height: 300px;
    background: var(--box-back);
    border: 1px solid var(--box-colS);
    border-radius: var(--box-radius);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--box-margin);
    transition: all ease-in-out .2s;
}

/* .GameBox:hover{
    cursor: pointer;
    box-shadow: 0px 0px 10px var(--allColor5);
} */

.GameBox>img {
    min-width: 180px;
    max-width: 100%;
    height: 150px;
    border-radius: var(--box-radius);
}

.GameBox>h4 {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.GameBox__btn {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    overflow-y: hidden;
    position: relative;
}

.GameBox__btn p {
    font-size: 19px;
    padding-top: 8px;
    font-family: 'IR-B';
}

.GameBox__btn p span {
    font-size: 16px !important;
}

.gameBox_off {
    top: -6px;
    left: 40px;
    font-size: 12px !important;
    position: absolute;
    font-family: 'IR' !important;
}

.GameBox a {
    width: 140px;
    height: 40px;
    border: 1px solid var(--box-colB);
    padding: 5px 20px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #101010;
}

.GameBox>a:hover {
    background: var(--box-colB) !important;
    width: 95% !important;
    color: #FFFFFF !important;
}

/* ------------------- < Box 3 > ----------------------------  */

.BoxShop {
    width: var(--box-width);
    min-width: 200px;
    height: var(--box-height);
    min-height: 270px;
    background: var(--box-back);
    box-shadow: 0px 0px 4px var(--allColor5);
    border-radius: var(--box-radius);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--box-margin);
    transition: all ease-in-out .2s;
}

.BoxShop>img {
    min-width: 130px;
    max-width: 100%;
    height: 42%;
    border-radius: 10px 10px 0 0;
}

.BoxShop>h4 {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.BoxShop-Star {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 10px;
    height: 20px;
}

.BoxShop-Star svg {
    fill: var(--box-colS);
    margin-right: 3px;
    margin-top: -4px;
}

.BoxShop-Star p {
    font-size: 14px;
}

.Line_B {
    width: 90%;
    height: 1px;
    background: #000000;
    margin: 2px 0;
}

.BoxShop a {
    width: 85%;
    height: 30px;
    border: 1px solid var(--box-colB);
    padding: 5px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.BoxShop a:hover {
    background: var(--box-colB);
    color: #FFFFFF;
}

/* ------------------------- < Box 4 > ---------------------------  */

.Pbox {
    margin: var(--box-margin);
    width: var(--box-width);
    min-width: 230px;
    padding: var(--box-padding);
    height: var(--box-height);
    border-radius: var(--box-radius);
    background: var(--box-back);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    border: 1px solid var(--box-colL);
    transition: all ease-in-out .2s;
}

.Pbox:hover {
    /* background: #e3e3e3 !important; */
    cursor: pointer;
    box-shadow: 0px 0px 8px 0px #c0c0c0;
    border: 1px solid rgb(242, 242, 242);
}

.Pbox__img_container {
    border-radius: 22px 22px 0 0;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Pbox__img_container>img {
    max-width: 100%;
    max-height: 100%;
}

.Pbox>h4 {
    color: #2c2c2c;
    width: 100%;
    height: 55px;
    text-align: center;
}

.Pbox__price_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    margin-top: 10px;
}

.Pbox__price_container__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
}

.Pbox__price_container__buy>h3 {
    background: #EBFF00;
    border-radius: 5px;
    height: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Pbox__price_container__buy>a {
    background: var(--box-colB);
    color: #FFFFFF;
    border-radius: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out .2s;
}

.Pbox__price_container__buy>a:hover {
    box-shadow: 0 0 5px var(--box-colB) !important;
}

.Pbox__price_container__price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.Pbox__price_container__price>h3 {
    width: 100%;
    color: var(--box-colB);
    display: flex;
    align-items: center;
    height: 25px;
}

.Pbox__price_container__price>.off {
    color: #bdbdbd;
}

.ltr {
    direction: ltr;
}