.fsc_wrapper{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
	margin-top: 15px;
    margin-bottom: 28px;
}
.fsc_btn{
    border: 0px;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border-radius: 5%;
    color: #e52b1e;
    margin: 2px;
    padding: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}


.fsc_btn:focus{
    outline: none!important;
}
.fsc_reading_time{
    background-color: blueviolet;
    color: #fff;
    padding: 2px 10px;
    display:inline;
}




button#fsc_default {
    background: red;
    padding-left: 6px;
    padding-right: 8px;
    height: 34px;
    color: white;
    line-height: 0;
    font-size: 21px;
	
}

button#fsc_plus {
	padding-left: 4px;
    padding-right: 5px;
    height: 38px;
    font-size: 22px;
    line-height: 0;	
}


button#fsc_minus {
	padding-left: 6px;
    padding-right: 5px;
    padding-top: 1px;
    height: 29px;
    font-size: 19px;
    line-height: 0;
}


button#fsc_plus:active {
    background: red !important;
    color: white !important;
}

button#fsc_minus:active {
    background: red !important;
    color: white !important;
}


button#fsc_minus:after {
    content: "-";
}
button#fsc_plus:after {
    content: "+";
}