﻿.badge1 {
    position: relative;
    margin: 10px;
    width: 42px;
    height: 60px;
    border-radius: 10px;
    display: inline-block;
    top: 0;
    transition: all 0.2s ease;
    font-size: 30px;
}

    .badge1:before, .badge1:after {
        position: absolute;
        width: inherit;
        height: inherit;
        border-radius: inherit;
        background: inherit;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    .badge1:before {
        transform: rotate(60deg);
    }

    .badge1:after {
        transform: rotate(-60deg);
    }

    /*    .badge1:hover {
        top: -4px;
    }*/

    .badge1 .circle, .badge2 .circle {
        width: 40px;
        height: 40px;
        position: absolute;
        background: #fff;
        z-index: 10;
        border-radius: 50%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .badge1 .circle i.fa {
            font-size: 24px;
            margin-top: 9px;
        }

    .badge1 .font {
        display: inline-block;
        margin-top: 1em;
    }

/*    .badge1 .ribbon {
        position: absolute;
        width: 100px;
        z-index: 11;
        bottom: 5px;
        left: 50%;
        margin-left: -50px;
    }*/

.badge2 {
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    /*    border: 1.5px dotted #fff;*/
    position: relative;
}
    /*    .badge2 .ribbon {
        position: absolute;
        width: 60px;
        z-index: 11;
        bottom: -5px;
        left: 50%;
        margin-left: -30px;
    }*/

    .badge1 .ribbon, .badge2 .ribbon {
        background: #4a4a4a;
        color: #fff;
        border-radius: 4px;
        text-align: center;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27);
        text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        padding: 1px;
        font-size: 10px;
        position: absolute;
        width: 80px;
        z-index: 11;
        bottom: -5px;
        left: 50%;
        margin-left: -40px;
    }

.badge-yellow {
    background: #ecd9a0;
    color: #a8842f;
}

.badge-orange {
    background: #e8c4a0;
    color: #b06f34;
}

.badge-pink {
    background: #e5bfcf;
    color: #b06585;
}

.badge-red {
    background: #dcaea9;
    color: #a8493f;
}

.badge-purple {
    background: #d3c2dc;
    color: #82638f;
}

.badge-teal {
    background: #b3d3ce;
    color: #4a7f76;
}

.badge-blue {
    background: #b6cfe0;
    color: #4c7599;
}

.badge-blue-dark {
    background: #a3bad4;
    color: #3f577d;
}

.badge-green {
    background: #cddab3;
    color: #71914a;
}

.badge-green-dark {
    background: #b6cdb1;
    color: #4f7e56;
}

.badge-silver {
    background: #dedede;
    color: #8f8f8f;
}

.badge-gold {
    background: #e2d0a3;
    color: #a17f3a;
}

.badge-brown {
    background: #cdb290;
    color: #7d5530;
}
