
.settings-wrapper{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

#settings-edit-profile{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin-left: 1em;
    margin-right: 1em;
    overflow-y: auto;
    overflow-x: hidden;
    user-select: none;
}

#edit-profile-left-column{
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    width: 85%;
}

#edit-profile-right-column{
    display: flex;
    flex-direction: column;
}

.edit-profile-submit{
    margin-bottom: 1em;
}

.edit-profile-picture{
    width: 70px !important;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
    cursor: pointer;
    margin-top: 1em;
}

.settings-page-title{
    font-size: 20px;
    font-weight: 500;
    color: #2A2A2A;
}

.settings-page-message{
    font-size: 14px;
    font-weight: 400;
    color: #636363;
    padding-top: 1em;
}

.settings-page-text{
    font-size: 14px;
    font-weight: 500;
    color: #2A2A2A;
    padding-top: 1.25em;
    padding-bottom: 0.5em;
}

.settings-input{
    padding: 0.7em;
    width: 100%;
    box-sizing: border-box;
    border: 0px solid transparent;
    background-color: #F8F8F8;
    border-radius: 5px;
    color: #2A2A2A;
    font-size: 13px;
}

.settings-input:focus{
    outline: none;
}

.settings-select{
    padding: 0.7em;
    width: 100%;
    box-sizing: border-box;
    border: 0px solid transparent;
    background-color: #F8F8F8;
    border-radius: 5px;
    color: #2A2A2A;
    font-size: 13px;
    outline: 0;
    cursor: pointer;
}

.settings-apply-button{
    background-color: #2A2A2A;
    border: 1px solid #2A2A2A;
    border-radius: 5px;
    font-weight: 400;
    color: white;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    padding: 0.3rem 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    justify-self: flex-end;

}

.settings-apply-button:hover{
    background-color: #000000;
    transition: 0.3s;
}

.icons-license{
    font-weight: 300;
    color: #A2A2A2;
    font-size: 11px;
    text-decoration: none;
    margin-bottom: 1em;
}