﻿.card {
    border-radius: 8px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    width: 150px;
    height: 275px;
    transition: all linear 200ms;
}

    .card:hover {
        transform: scale(1.1);
        transition: all linear 200ms;
        z-index: 1;
        box-shadow: 1px 1px 10px rgba(0,0,0,.3);
        cursor: pointer;
    }

.card-body {
    margin-top: 0px;
    width: 140px;
    padding: 10px;
}

.CardTextLeft {
    font-size: small;
    width: 55px;
    display: inline-block;
    margin-bottom: -20px;
    text-align: right;
}

.CardTextRight {
    font-size: small;
    width: 70px;
    display: inline-block;
    margin-bottom: -20px;
    margin-left: 5px;
    text-align: left;
}

.statList-Left {
    width: 40%;
    float: left;
    text-align: right;
}

.statList-Right {
    width: 58%;
    float: right;
    text-align: left;
    margin-left: 4px;
}

.item-rarity-Common {
    color: white;
}

.item-rarity-Uncommon {
    color: green;
}

.item-rarity-Rare {
    color: blue;
}

.item-stat-label {
    font-size: x-small;
    width: 55px;
    display: inline-block;
    margin-bottom: -20px;
}

.item-stat-value {
    font-size: x-small;
    width: 40px;
    display: inline-block;
    margin-bottom: -20px;
    margin-left: 5px;
}

    .stat-increase {
        color: green;
    }

    .stat-decrease {
        color: red;
    }

.box {
    /*background-color: #333;*/
    background-color: #111a24;
    margin: 4px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    word-wrap: break-word;
    width: 100px;
    height: 100px;
}

    .box:hover {
        transform: scale(1.1);
        transition: all linear 200ms;
        z-index: 0;
        box-shadow: 1px 1px 10px rgba(0,0,0,.3);
        cursor: pointer;
    }

.box_item_text {
    /*background-color: #333;*/
    background-color: #111a24;
    margin: 4px;
    border-radius: 5px;
    color: #fff;
    display: inline;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    min-height: 150px;
    width: 120px;
    /*    border-style: solid;
    border-width: thick;
    border-color: #333;*/
}

    .box_item_text:hover {
        transform: scale(1.1);
        transition: all linear 200ms;
        z-index: 0;
        box-shadow: 1px 1px 10px rgba(0,0,0,.3);
        cursor: pointer;
    }


@keyframes beat {
    to

    {
        transform: scale(1.2);
    }
}