.hat {
    background-color: rgb(60,60,60);
    max-width: 550px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
    padding: 20px;
}

.hat span {
    font-size: 22px;
    font-weight: bold;
    float: left;
}

.hat button {
    background: rgb(60,60,60);
    border: 1px solid black;
    border-radius: 5px;
    font-size: 16px;
    height: 30px;
    width: 50px;
    float: right;
}

.user {
    display: flex;
    background-color: rgb(60,60,60);
    height: 50px;
    max-width: 550px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.user-face {
    height: 40px;
}

.user form {
    margin: 10px auto 0 5px;
}

.user input {
    background: rgb(60,60,60);
    font-size: 20px;
    outline: none;
    height: 20px;
    width: 120px;
    padding-left: 5px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.user-input-norm {
    border-bottom: 1px solid black;
}

.user-input-error {
    border-bottom: 1px solid rgb(80,0,0);
}

.user-error {
    padding-left: 5px;
    margin-top: 2px;
}

.user-name-box{}

.user-name {
    background: rgb(60,60,60);
    font-size: 20px;
    border: 0;
    padding: 0;
}

.user-name-edit {
    display: none;
    height: 15px;
    width: 15px;
}

.user-name-box:hover .user-name-edit {
    display: inline-block;
}

.traffic {
    margin: 8px 5px 0 0;
}

.traffic span {
    font-size: 12px;
}

.user-buttons {
    margin-top: 13px;
}

.user-toggle-box {
    display: inline-block;
    width: 42px;
    border: 1px solid black;
    border-radius: 22px;
}

.user-toggle {
    border: 1px solid black;
    border-radius: 20px;
    height: 20px;
    width: 20px;
}

.user-toggle-active {
    background: rgb(80,80,80);
    margin-left: 21px;
}

.user-toggle-inactive {
    background: rgb(50, 50, 50);
}

.user-buttons img{
    height: 24px;
    width: 24px;
}

.empty-list {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(60, 60, 60);
    font-size: 20px;
    height: 50px;
    max-width: 550px;
    width: 100%;
}

.tail {
    background-color: rgb(60, 60, 60);
    height: 15px;
    max-width: 550px;
    width: 100%;
    border-radius: 0 0 10px 10px;
}