.review {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    background: #00c6ff;
    background: linear-gradient(to bottom, #00c6ff , #0072ff);
    animation-name: reveal;
    animation-duration: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.score-box {
    background-color: white;
    padding: 30px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.47);
}

.score-box p {
    margin: 0;
    font-weight: normal;
    color: #757575;
    font-size: 20px;
}

.score p:first-of-type {
    margin-top: 10px;
}

.score {
    padding: 0 30px;
}

.score:first-of-type {
    border-right: 1px #cacaca solid;
}

.stars {
    display: flex;
    margin-bottom: 40px;
    margin-top: -70px;
}

.star-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
}

.message {
    color: white;
    margin-bottom: 40px;
    font-size: 22px;
}

.review-controllers button:hover {
    background-color: #00000087;
}

.review-controllers button {
    border: 2px solid white;
    color: white;
    width: 45px;
    height: 45px;
    margin-top: 35px;
    margin-left: 15px;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    background-color: #00000042;
}

.review-controllers button:first-of-type {
    margin-left: 0;
}

.review-controllers button.disabled {
    cursor: auto;
    color: #d6d6d6;
    border-color: #d6d6d6;
    background-color: transparent;
}

.review-controllers button.disabled:hover {
    background-color: transparent;
}