/* ================================================== SHOP */

#shop-container {
    display: flex;
    flex-direction: column;
}

#shop-services,
#shop-player-inventory {
    width: 100%;
    height: calc(50vh - 50px);
    position: relative;
}

#shop-services {position: relative}
#shop-services > h2 {
    width: 80%;
    height: 15%;
    padding: 0 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0; left: 0;

    background-color: rgba(0, 0, 0, .2);
}

#shop-inventory {
    width: 80%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0; left: 0;
    
    background-color: rgba(0, 0, 0, .2);
}

#shop-inventory > button,
#shop-player-inventory > button {
    width: 75px;
    height: 75px;
    margin: 0 20px;
    background-color: #fff;
    font-size: 30px;
    color: #333;
    border: 1px solid #333;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#shop-inventory > button:hover {transform: translateY(20px); z-index: 50}


#shop-inventory .shadow,
#shop-player-inventory .shadow {
    width: 75px;
    height: 75px;
    margin: 0 20px;
    opacity: 0;
    pointer-events: none;
}

#shop-forge {
    width: 20%;
    height: 100%;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0; top: 0;

    background-color: #bfb;
}

#shop-forge > h3 {margin-bottom: 30px}

#shop-forge-repair {
    width: 100%;
    padding: 50px 0;
}

b.sale {font-size: 14px}

span.on-sale {
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    bottom: 0; right: -20%;
    transform: rotate(-15deg);
}

/* ================================================== BG */

#forge-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    opacity: .3;
    filter: grayscale();
}

/* ================================================== PLAYER INVENTORY */

#shop-player-inventory {
    display: flex;
    justify-content: center;
    align-items: center;
}

#shop-player-inventory > button:hover {
    z-index: 50;
    transform: translateY(-20px);
}