﻿.card {
    border-radius: 8px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    width: 160px;
    height: 275px;
    transition: all linear 200ms;
    background-color: #e4bf9e;
}

    .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-nohover {
    border-radius: 8px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    width: 160px;
    background-color: #e4bf9e;
}

.card-body {
    margin-top: 0px;
    width: 150px;
    padding: 10px;
    color: black;
}

.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-Junk {
    color: #969696;
}

.item-rarity-Common {
    color: white;
}

.item-rarity-Uncommon {
    color: #5ad837;
}

.item-rarity-Rare {
    color: #009dff;
}

.item-rarity-Epic {
    color: #c715ef;
}

.item-rarity-Legendary {
    color: #f1712c;
}

.item-detail-rarity-Junk {
    color: #969696;
}

.item-detail-rarity-Common {
    color: black;
}

.item-detail-rarity-Uncommon {
    color: #3b981a;
}

.item-detail-rarity-Rare {
    color: #414cad;
}

.item-detail-rarity-Epic {
    color: #a800ac;
}

.item-detail-rarity-Legendary {
    color: #f1712c;
}

.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: firebrick;
    }

.stat-increase-bright {
    color: lightgreen;
}

.stat-decrease-bright {
    color: salmon;
}

.box {
    /*background-color: #333;*/
    background-color: #17232f;
    margin: 4px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    /*font-family: sans-serif;*/
    word-wrap: break-word;
    /*width: 100px;*/
    min-height: 100px;
    overflow: hidden;
}

    .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-nohover {
    /*background-color: #333;*/
    background-color: #17232f;
    margin: 4px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    /*font-family: sans-serif;*/
    word-wrap: break-word;
    width: 100px;
    min-height: 100px;
}

.box_item_text {
    /*background-color: #333;*/
    background-color: #17232f;
    margin: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    /*font-family: sans-serif;*/
    /*min-height: 130px;*/
    word-wrap: break-word;
    width: 100px;
}

    .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;
    }

.box_item_text-nohover {
    /*background-color: #333;*/
    background-color: #17232f;
    margin: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    /*font-family: sans-serif;*/
    /*min-height: 130px;*/
    word-wrap: break-word;
    width: 100px;
}

    .card-header-label-h4 {
        position: relative;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }

    .card-header-label-h5 {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }

.basic-card {
    transition: all linear 200ms;
    background-color: #e4bf9e;
}

    .basic-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;
    }

.purchase-card {
    display: inline-block;
    /*height: 195px;*/
    width: 250px;
    box-shadow: 1px 1px 10px rgba(0,0,0,.3);
    margin: 5px;
    border: 1px solid black;
}


.m-2 {
    margin: .5rem .5rem 3rem .5rem !important
}


/*Mobile ToolTips*/
@media (pointer: coarse), (hover: none) {
    [title] {
        position: relative;
        display: inline-flex;
        justify-content: center;
    }

        [title]:focus::after {
            content: attr(title);
            position: absolute;
            top: 90%;
            color: #000;
            background-color: #fff;
            border: 1px solid;
            width: fit-content;
            padding: 3px;
        }
}

/*.modal-body {
    max-height: 500px;
    overflow-y: auto;
}*/

/* Hide area where ad did not load */
ins.adsbygoogle[data-ad-status="unfilled"] {
   /* display: none !important;*/
}


/* Used to show ad locations during testing*/
/*ins.adsbygoogle {
    border: 1px solid red;
}
*/