﻿
.blogtags {
    overflow: hidden;
    padding-top: 15px;
}

    .blogtags ul {
        margin: 0;
        padding: 0;
    }

        .blogtags ul li {
            display: inline-block;
            float: left;
            position: relative;
            margin: 5px;
            padding: 0 3px 0 10px;
        }

            .blogtags ul li:before {
                content: "#";
                position: absolute;
                left: -4px;
                top: 0;
                font-size: 16px;
                color: #0004d5;
                font-weight: 600;
                font-family: var(--menu-font-family) !important;
            }

            .blogtags ul li:not(:last-child):after {
                content: ",";
                position: absolute;
                right: 0;
                bottom: 0;
                font-size: 16px;
                color: #333;
                font-family: var(--menu-font-family) !important;
                font-weight: 600;
            }

            .blogtags ul li a {
                color: #0004d5;
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                font-family: var(--menu-font-family) !important;
            }

            .blogtags ul li:hover a {
                color: #0004d5;
            }
