.bar-shop {
    display: flex;
    align-items: center;
    height: 48px;
    margin-top: 50px;
    padding-top: 20px;
}

.bar-shop .bar-left {
    flex: 1;
}

.bar-shop .bar-right {
    background: url(../img/icons/clover-coin.svg) no-repeat center left;
    height: 48px;
    padding-left: 45px;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
}

.shop-items {
    margin: 20px 0 40px;
}

.shop-item {
    display: flex;
    border: 1px solid #ededed;
    border-radius: 4px;
    margin: 5px 0;
    align-items: center;
    padding: 5px 10px;
}

.shop-item.disabled {
    opacity: 0.35;
}

.shop-item-img {
    width: 32px;
    height: 32px;
    margin: 0 20px 0 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.shop-item-name {
    flex: 1;
}

.shop-item-name .title {
    font-size: 16px;
}

.shop-item-name .desc {
    color: #9E9E9E;
    font-size: 12px;
}

.shop-item-name .desc span.disabled {
    color: #f44336;
}

.shop-item-price {
    width: 120px;
    font-weight: bold;
    font-size: 18px;
}

.shop-item-buy {
    width: 50px;
}

.btn-shop-buy {
    visibility: hidden;
    margin-bottom: 0;
    width: 44px;
}

.shop-item:hover .btn-shop-buy {
    visibility: visible;
}

.btn-shop-buy:before {
    font-family: 'FontAwesome';
    content: '\f07a';
    margin-right: 10px;
    font-size: 14px;
}