.accountColors{
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0px 1px 0px;
}

.accountColors.rtl{
    flex-direction: row-reverse;
}

.accountColor{
    height: 40px;
    width: 40px;
    background-color: red;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
}

.accountColor.focus{
    outline: none;
    box-shadow: 0 0 0px 3px rgba(0, 0, 0, 0.5);
}