#tab-buttons {
    list-style-type: none;
    text-align: center
}

#tab-buttons li {
    display: inline-block
}

#tab-buttons input[type=checkbox][id^=myCheckbox] {
    display: none
}

#tab-buttons label {
    padding: 5px;
    display: block;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    font-weight: bolder;
    width: 100%;
    background: #f2f2f2
}

#tab-buttons label:before {
    background-color: #fff;
    color: #fff;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid #0bbd32;
    position: absolute;
    top: 5px;
    left: 80%;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    transition-duration: .4s;
    transform: scale(1);
    z-index: 1001
}

#tab-buttons label img {
    transition-duration: .2s;
    transform-origin: 50% 50%
}

#tab-buttons :checked+label:before {
    content: "✓";
    background-color: #099127;
    transform: scale(1);
    z-index: 1001
}

#tab-buttons :checked+label img {
    transform: scale(.9);
    z-index: -1
}

#tab-buttons .card-content {
    width: 100%
}

#tab-buttons .card-subtitle {
    width: 100%;
    float: left;
    padding: 5px;
    font-size: 10px;
    font-weight: bolder;
    text-align: center;
    text-transform: uppercase;
    background: #f4f4f4
}

#tab-buttons .card-title {
    width: 100%;
    float: left;
    padding: 5px;
    font-size: 10px;
    font-weight: bolder;
    text-align: center;
    text-transform: uppercase;
    background: #f4f4f4
}

#tab-buttons .card-option {
    width: 100%;
    float: left;
    font-size: 10px;
    padding: 5px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    background: #3d3d3d
}

@media only screen and (max-width: 968px) {
    #tab-buttons label {
        padding:1px
    }

    #tab-buttons .card-title {
        font-size: 11px!important;
        font-weight: bolder;
        padding: 2px;
        margin-bottom: 0
    }

    #tab-buttons .card-subtitle {
        font-size: 9px!important;
        font-weight: bolder;
        margin-bottom: 0
    }

    #tab-buttons label img {
        width: 100%
    }

    #tab-buttons label:before {
        top: 0;
        left: 75%
    }
}
