.imageeditor .title {
    font-family: "Metropolis Semi Bold";
    font-size: 18px;
    letter-spacing: 0.18px;
    padding: 20px;
    color: white;
}

.imageeditor .cropper-view-box,
.imageeditor .cropper-face {
    border-radius: 50%;
}

.imageeditor .box {
    padding: 0.5em;
    width: 60%;
    margin: auto;
}
.imageeditor.portrait .box {
    width: 50%;
    margin: auto;
}

.imageeditor img {
    width: 100%;
    height: intrinsic;
    border-radius: 50%;
}

.imageeditor .result img {
    border-radius: 0;
}

.imageeditor .btn.save {
    background-color: #0eb3fc;
    color: white;
    display: block;
    margin: auto;
}

.imageeditor .cancelBtn {
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
    opacity: 1;
    background-color: red;
    border-radius: 50%;
    border: none;
}

.imageeditor .cancelBtn:before,
.cancelBtn:after {
    position: absolute;
    top: 15px;
    left: 28px;
    content: " ";
    height: 30px;
    width: 4px;
    background-color: white;
}

.imageeditor .cancelBtn:before {
    transform: rotate(45deg);
}

.imageeditor .cancelBtn:after {
    transform: rotate(-45deg);
}

.imageeditor .saveBtn {
    cursor: pointer;
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/check-circle-green@3x.png);
    width: 60px;
    height: 60px;
    background-size: cover;
    border: none;
    border-radius: 50%;
}

.imageeditor .btns-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5%;
}
