/* === Main */
body {
    background-color: #ccc;
}

main {
    padding-top:1em;
    padding-bottom:1em;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 .25rem .75rem #000;
    min-height: 99vh;
}

.self-contained {
    background-color: #fff;
    padding-top:1em;
    padding-bottom:1em;
}

.width100 {
    width:100%;
}

/* === Star rating */

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 30px;
    font-weight: 300;
    color: #FFD600;
    cursor: pointer
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}