#profileadd {
    z-index: 1300;
}
#profileadd .content{
    
}
#profileadd .content .back-drop{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.2);
    z-index: 1;
}
#profileadd .content .popup-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}
#profileadd .content .popup-inner{    
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    background-color: white;
    box-shadow: 0px -2px 10px rgb(0 0 0 / 11%);

    pointer-events: all;
    overflow: hidden;
    overflow-y: auto;
}
#profileadd .content .popup-inner .subject {
    width: 100%;
    height: 60px;
    padding-top: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: black;
    font-size: 20px;
    font-weight: 900;

    border-bottom: 1px solid white;
}



#profileadd .close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;

    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;

    cursor: pointer;
}
#profileadd .close img{
    width: 1.5rem;
}
#profileadd .tit {
    font-size: 1.125rem;
    font-weight: 500;

    margin-top: 2rem;

    text-align: center;
    color: black;
}
#profileadd .name-wrapper {
    margin-top: 2rem;
    margin-left: 3rem;
    margin-right: 3rem;
}
#profileadd .name-wrapper input::placeholder{
    color: #e2e2e2;
}
#profileadd .name-wrapper input{    
    border-radius: 0;
    padding: 0 1rem;
    font-size: 1.4rem;
    height: 50px;
    width: 100%;
    font-weight: 500;
    color: black;
    text-align: left;
    border-bottom: 2px solid #9b9b9b;
}
#profileadd .infos{
    padding: 0rem 3rem;
    padding-top: 2rem;
}

#profileadd .infos .i-info-row{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#profileadd .infos .i-info-row .lab{
    color: black;
    font-size: 1rem;
    min-width: 6.25rem;
}
#profileadd .infos .i-info-row .val{
    color: black;
    font-size: 1rem;
    width: 100%;
    font-weight: 500;
    border: 1px solid #ededed;
    min-height: 30px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.5rem;

    cursor: pointer;
}

#profileadd .add.disable {
    background-color: #eee;
}
#profileadd .add {
    margin-top: 1rem;
    margin-left: 3rem;
    margin-right: 3rem;
    height: 3.75rem;
    font-size: 1rem;
    border-radius: 8px;
    background-color: #5936DF;
    color: white;
    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;

    cursor: pointer;
}