body {

    margin: 0%;
    padding-block-end: 0%;
    background: #262626;
}

#ratings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(180deg);
    display: flex;
}

#ratings input {
    display: none;

}

#ratings label {
    display: block;
    cursor: pointer;
    width: 50px;
    /* background: #ccc; */
}

#ratings label::before {
    content: '\f005';
    font-family: fontAwesome;
    position: relative;
    display: block;
    font-size: 50px;
    color: #101010;
}

#ratings label::after {
    content: '\f005';
    font-family: fontAwesome;
    position: absolute;
    display: block;
    font-size: 50px;
    color: #1f9cff;
    top: 0%;
    opacity: 0;
    transition: 0.5s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

#ratings label:hover::after,
#ratings label:hover ~ label::after,
#ratings input:checked ~ label::after {
    opacity: 1;
}