.userview {
    width: 100%;
}
.userview .title {
    font-family: "Metropolis Bold";
    margin: 0 30px 25px 10px;
    color: #0d4962;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
}

.userview .title .backButton {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: "Metropolis Regular";
    font-size: 17px;
    line-height: 18px;
    letter-spacing: 0.17px;
    color: white;
    background-color: #0d4962;
    height: 39px;
    width: 121px;
    border-radius: 16px;
}

.userview .title .backButton .backArrow {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/back_arrow_white_BO.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 18px;
    width: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .userview {
        width: 95%;
        margin: auto;
    }
}

/* iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .userview {
        width: 80%;
        margin: auto;
    }
}

/* DARK MODE */
.dark .userview .title {
    color: rgba(255, 255, 255, 0.87);
}
