.review-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.review-header {
    width: 100%;
    flex: 1;
    overflow: hidden;
    top: 0;
}

.review-info {
    width: 100%;
    flex: 8;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    overflow: hidden;
    position: relative;
}

.info-container {
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0%;
    left: 0%;
    display: flex;
    flex-direction: column;
    padding: 1% 3% 2%;
}

.info-right-rows {
    flex: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-row {
    flex: 1;
    width: 100%;
    display: flex;
}

.review-log {
    width: 100%;
    flex: 6;
    border-top: solid black 3px;
}

.back-button {
    width: 10px;
    height: 200px;
    position: absolute;
    z-index: 300;
    border: solid black 1px;
    background-color: grey;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    mix-blend-mode: multiply;
    opacity: 1;
    border-radius: 0 0 0 0;
}

.next-button {
    width: 10px;
    height: 200px;
    position: absolute;
    z-index: 300;
    border: solid black 1px;
    background-color: grey;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    mix-blend-mode: multiply;
    opacity: 1;
    border-radius: 0 0 0 0;
}