/*===========================================
YIA Competition
===========================================*/
.yia ul,
.yia ol{
    margin:0;
    padding-left:1.4em;
}
    .yia li{
        margin-bottom:.5em;
        position:relative;
    }
        .ulStyle > li::before{
            content:"";
            display:inline-block;
            background-color:var(--visual-green);
            border-radius:50%;
            width:9px;
            height:9px;
            position:absolute; left:-19px; top:8px;
        }
.attachment{
    background-color:#f5f5f5;
    padding:15px;
}
    .attachment a{
        display:inline-block;
        background-color:#fff;
        background-position:10px 6px;
        background-repeat:no-repeat;
        background-size:20px auto;
        box-shadow:0 0 0 1px rgba(0,0,0,.1), 0 2px 5px rgba(0,0,0,.1);
        border-radius:3px;
        color:#111;
        font-size:.875rem;
        padding:3px 10px;
        transition:.2s;
    }
    .attachment a:focus,
    .attachment a:hover{
        color:var(--hover-color);
    }
    .attachment a[href*=".pdf"]{
        background-image:url(../images/icon_file_pdf.svg);
        padding-left:35px;
    }
.buttons .btn[href*=".pdf"]::before,
.buttons .btn[href*=".doc"]::before{
    content:"";
    display:inline-block;
    background-position:50% 50%;
    background-repeat:no-repeat;
    background-size:contain;
    width:24px;
    height:24px;
    vertical-align:-5px;
    margin-right:8px;
}
.buttons .btn[href*=".pdf"]::before{
    background-image:url(../images/icon_file_pdf.svg);
}
.buttons .btn[href*=".doc"]::before{
    background-image:url(../images/icon_file_word.svg);
}