div.profileMenu {
    background: var(--color-background-clean);
    border-bottom: 1px solid var(--color-border);
}

div.profileMenuItem {
    border-radius: 5px;
    padding: 8px;
    margin: 5px;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

div.profileMenuItem:hover {
    border: 1px solid var(--theme-color);
}

div.selected {
    border: 1px solid var(--theme-color);
    background: var(--theme-color);
}

.profileHeader {
    position: relative;

    width: 80%;
    max-width: 100%;
    min-height: 120px;

    padding-left: 147px;
    overflow: visible;

    font-size: 1.12em;
    filter: drop-shadow(2px 2px 2px var(--color-border));
}

.profileImg {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 120px;
    height: auto;

    box-sizing: border-box;
    border-radius: 60px;
    border: 3px solid var(--theme-color);
}

.profileSimpleContainer {
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
}

.search {
    position: relative;

    padding: 0px;

    min-width: 360px;
    max-width: 85%;
    height: 50px;

    display: inline-block;
    text-align: left;

    background-color: white;
    filter: drop-shadow(0 0 0.5rem rgba(100, 100, 100, 0.42));

    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: 5px;

    vertical-align: top;

    overflow: hidden;
}

.searchInput {
    position: absolute;
    top: 0px;
    left: 50px;

    height: 50px;
    width: calc(100% - 50px);

    size: 1.2em;

    border: 0px solid transparent;
    outline: none;
    outline-width: 0;
}