.profile-gap {
    width: 100%; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-shrink: 1;
}

.profile-gap .profile-item {
    width: 443px;
    background-color: var(--color-white);
    border: 1px solid var(--color-red-primary);
    border-radius: 10px;
    padding: 20px;
}

.profile-gap .profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: auto;
    margin-top: -80px;
}

.profile-gap .profile-img > img {
    width: 100%;
}

.profile-gap .profile-name {
    font-family: "nunito-semibold";
    font-size: 1.5rem;
    line-height: 26px;
    font-weight: bold;
    color: var(--color-black);
    text-align: center;
    margin: auto;
}

.profile-gap .profile-nickname {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: var(--color-pink-1);
    font-family: "nunito-semibold";
    font-size: 1.5rem;
    line-height: 26px;
    font-weight: bold;
    color: var(--color-white);
    padding: 12px 16px;
    margin-right: 10px;
    margin: auto;
}

.profile-gap .profile-content {
    width: 100%; 
    height: 180px;
}

.profile-gap .profile-content > textarea {
    font-family: "nunito-regular";
    font-size: 1.125rem;
    line-height: 26px;
    font-weight: 400;
    color: var(--color-black);
}

.flat-vn::before{
  content: url("/school/resources/images/icons/vn.png");
}

.flat-en::before{
  content: url("/school/resources/images/icons/en.png");
}

.flat-zh::before{
  content: url("/school/resources/images/icons/zh.png");
}

.custom-control {
    position: relative;
}

.custom-control .custom-control-input {
    position: absolute;
    opacity: 0;
}

.custom-control .custom-control-label {
    display: flex;
    align-items: center;
    font-family: "nunito-regular";
    font-size: 1.125rem;
    line-height: 24px;
    color: var(--color-black);
    background-color: var(--color-white);
    border-radius: 40px;
    white-space: nowrap;
    padding: 4px 8px;
}

.custom-control-input:checked ~ .custom-control-label {
    color: var(--color-white);
    background-color: var(--color-cyan-1);
  }
