body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: transparent;
}
/*.section-wrapper{*/
/*    min-height: 100svh;*/
/*}*/
.star-rating i {
    color: #ccc;
    cursor: pointer;
    transition: color 0.8s ease-in-out;
}

section{
    width: 100%;
}
.star-rating i.hovered,
.star-rating i.selected {
    color: #ffc107;
    transform: scale(1.05);
}
#btn-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 50px;
    height: 50px;
    z-index: 9999;
    transition: all 1s ease-in-out;
}
#btn-to-top:hover {
    transform: scale(1.05);
    opacity: .8;
}