.profile-wrapper {
    width: 90vw;
    height: 100vh;
    margin: 0 auto;
    overflow-y: auto;
    background: #fff;
}

.profile-wrapper .brief-channel {
    display: flex;
    margin: 47px auto;
    margin-bottom: 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.profile-wrapper .brief-channel div {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    background: #f3f3f3;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

.profile-wrapper .brief-channel div img {
    width: 100%;
    height: 100%;
}

.profile-wrapper .brief-channel h3 {
    font-size: 34px;
    margin-top: 15px;
    margin-bottom: 5px;
    font-family: "SFCompactRoundedBold", sans-serif;
}

.profile-wrapper .brief-channel p {
    font-size: 16px;
    font-weight: 600;
}

.profile-wrapper button {
    width: 100%;
    height: 50px;
    border-radius: 18px;
    font-size: 19px;
    font-weight: 600;
    background: #fff;
    margin-top: 10px;
    border: 2px solid #000;
}

.profile-wrapper h4 {
    margin-top: 30px;
    font-size: 29px;
    margin-bottom: 10px;
}

.profile-wrapper .description {
    font-size: 22px;
}

[contenteditable]:focus {
    outline-offset: 4px;
    outline: 1px dashed rgba(80, 126, 217, 0.2);
}

.custom-select {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.custom-select select {
    display: none;
}

.select-selected {
    border-radius: 15px;
    background: #f3f3f3;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 22px;
    right: 19px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #8A15E7 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    top: 13px;
    border-color: transparent transparent #8A15E7 transparent;
}

.select-items div,.select-selected {
    color: #000;
    font-size: 19px;
    padding: 10px 16px;
}


.select-items {
    left: 0;
    right: 0;
    z-index: 99;
    height: 198px;
    overflow-y: scroll;
    position: absolute;
    background: #f3f3f3;
    border-radius: 15px;
    top: calc(100% + 10px);
}

.select-hide {
    height: 0;
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.profile-wrapper #cards {
    margin-bottom: 150px;
}