.settings {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.profile-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.import-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.export-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.profile-display {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile-display .profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    margin-right: 10px;
    position: relative;
}

.profile-display .profile-picture:hover {
    cursor: pointer;
}

.profile-display .profile-picture-edit {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.profile-display .profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}


#fileinputpic{
    display: none;
}
.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 450px;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    transition: 0.2s;
}

.file-drop-area.small {
    padding: 5px;
    width: auto;
}

.choose-file-button.small:hover {
    background-color: #2ecc71;
    color: #fff;
    cursor: pointer;
}

.choose-file-button {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
}

.choose-file-button.small {
    padding: 5px 10px;
    font-size: 10px;
}

.file-message {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}