


.lv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    margin-top:30px;
    margin-bottom: 30px;
}

    .lv .loading {
        text-align: center;
        color: #999;
    }

lv .badge {
    display: inline-block;
}






.lv .status-text {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 10px;
    background-color: #FF001E;
    color: #FFF;
    padding: 3px 5px;
    border-radius: 3px;
}

.lv .badge-img {
    max-width: auto;
    max-height: 160px;
}



.lv dt {
    font-weight: bold;
}

.lv dd {
    margin-left: 0;
    margin-bottom: 15px;
}



.lv .badge-name {
    margin-bottom: 5px;
}

.lv .issue-by {
    margin-top: 0;
}

.flip-card {
    width: 280px;
    height: 280px;
    /* This container is needed to position the front and back side */
    /* Do an horizontal flip when you move the mouse over the flip box container */
    /* Position the front and back side */
    /* Style the front side (fallback if image is missing) */
    /* Style the back side */


    margin: 10px;
    font-size: 0.8em;
    overflow: hidden;
}



    .flip-card .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner,
    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card:hover .flip-card-back, 
    .flip-card.flipped .flip-card-back {
        display:flex;
    }

    .flip-card .flip-card-front,
    .flip-card .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        /* Safari */
        backface-visibility: hidden;
    }

        .flip-card .flip-card-front > div,
        .flip-card .flip-card-back > div {
            margin: 0 10px;
        }

    .flip-card .flip-card-front {
        background-color: #FFF;
        border-radius: 5px;
        border: 1px solid #CCC;
        box-sizing: border-box;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .flip-card .flip-card-back {
        background-color: #FFF;
        border-radius: 5px;
        border: 1px solid #CCC;
        box-sizing: border-box;

        transform: rotateY(180deg);
        overflow-x: hidden;
        overflow-y: auto;
        display: none;
        text-align: center;
        justify-content: center;
        align-items: center;
        background-color: #F9F9F9;
    }



.lv-btn {
    display: inline-block;
    background-color: #2bc9ab;
    color: #FFF;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    transition: 0.3s all ease-out;
}

    .lv-btn:hover {
        background-color: #ffe000;
        color: #000;
    }
