.prbview_solution {
    padding: 10px 10px 20px 10px;
    margin-bottom: 50px;
    background-color: #fff;
    box-shadow: 0 0 5px #999;
    border-radius: 10px;
}
.prbview_solution.useless
{
    opacity: 0.4;
}
.prbview_solution.useless:hover
{
    opacity: 1;
}
.prbsol_head {
    padding-bottom: 10px;
    border-bottom: 1px solid #f6f6f6;
}
.prbsol_content {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.prbsol_userInfo {
    display: inline-block;
    padding: 5px;
    background-color: #f2f2f2;
    border-radius: 10px;
    text-align: left !important;
}
.prbsol_score {
    display: inline-block;
    padding: 5px 10px;
    background-color: #c10461;
    color: #fff;
    font-weight: lighter;
    font-size: 16px;
    vertical-align: middle;
}
.prbsol_accept {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px 13px;
    width: 28px;
    height: 28px;
    background-image: url("/Assets/Images/Icons/fontawesome/solid/check.svg");
    border: 1px solid #000;
    vertical-align: middle;
    cursor: pointer;
}
.prbsol_accept[data-accept-state='1'] {
    background-color: #00deff;
    border: 2px solid #003eff;
}
.prbsol_accept[data-accept-state='2'] {
    background-color: #76ff73;
    border: 2px solid #19aa00;
}

@media only screen and (max-width: 601px) {
    .prbview_solution {
        border-radius: 0 !important;
    }
}