header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 0 0 5rem;
    background-color: #eeeeee;
    z-index: 101;
}

header .header__container {
    position: relative;
    width: 100%;
    height: 100%;
}

header .header__container .ivr__logo {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    height: 100%;
    transform: translateX(-50%);
}

header .header__container .ivr__logo img {
    height: 60%;
    cursor: pointer;
}

.account_container {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.account_container .account_name {
    display: flex;
    align-items: center;
    padding-right: 1rem;
}

.account_container .account {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: fit-content;
    height: 100%;
    padding: 0 1rem;
    background-color: black;
    color: white;
    cursor: pointer;
    user-select: none;
}

.account_container .account .dropdown {
    position: absolute;
    top: var(--header-height);
    right: 0;
    width: fit-content;
    height: 0;
    padding: 0 0.5rem;
    background-color: black;
    border: 1px solid white;
    visibility: hidden;
    opacity: 0;
}

.account_container .account .dropdown.shown {
    height: fit-content;
    padding: 0.5rem 0;
    opacity: 1;
    visibility: visible;
    z-index: 102;
}

.account_container .account .dropdown a {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
    color: white;
}

.account_container .account .dropdown a:hover {
    background-color: rgb(63, 63, 63);
}

.account_container .account .dropdown a i {
    color: transparent;
}