
.fsc_wrapper{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}
.fsc_btn{
    border: 1px solid blueviolet;
    background-color: transparent;
    cursor: pointer;
    font-size: 22px!important;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: blueviolet;
    margin-left: 10px;
    padding: 0;
}
.fsc_btn i{
    padding: 0!important;
    font-size: 22px!important;
    color: blueviolet;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fsc_btn:focus{
    outline: none!important;
}
.fsc_reading_time{
    background-color: blueviolet;
    color: #fff;
    padding: 2px 10px;
    display:inline;
}


@media screen and (max-width:767px){
    .fsc_wrapper{
        display: block;
    }
    .fsc_btn{
        width: 40px;
        height: 40px;
        margin-top: 10px;
    }
}