
.media-add-btn::after {
    content: '\f054';
    display: inline-block;
    position: absolute;
    color: #318cc6;
    right: 20px;
    top: 15px;
    line-height: 25px;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
}

.media-add-btn.bg-light-grey::after {
    color: #999999;
}

.media-add-btn.bg-light-grey::before {
    background: #999999;
}

.media-add-btn:hover {
    background: #bfdaec;
}

.media-add-btn::before {
    counter-increment: myCounter;
    content: counter(myCounter);
    background: #318cc6;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    position: absolute;
    left: 17px;
    top: 15px;
    line-height: 25px;
    width: 25px;
    font-family: 'apercu_pro', sans-serif;
    height: 25px;
    border-radius: 100%;
    font-size: 13px;
    font-weight: bold;
}

.media-add-btn {
    padding: 15px 20px 15px 60px;
    border-radius: 5px;
    display: block;
    transition: 0.2s;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 17px;
    color: #475669;
    width: 70%;
    position: relative;
    background: #d4e4f2;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'apercu_pro', sans-serif;
}

.media-add-btns {
    counter-reset: myCounter;
}


@media screen and (max-width: 1023px) {
    .media-add-btn {
        width: 100% ;
    }
}

@media screen and (max-width: 767px) {
    .media-add-btn  {
        font-size: 14px;
        padding: 10px 10px 10px 40px;
    }

    .media-add-btn::after {
        display: none;
    }
    .media-add-btn::before {
        left: 10px;
        top: 11px;
        line-height: 18px;
        width: 18px;
        height: 18px;
        border-radius: 100%;
    }


}