
.header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;    
    .infos {
        display: flex;
        flex-direction: column;
        width: 360px;
        .name, .otherdomains {
            .text {
                color: #333;
            }
            .profile-icon {
                margin-right: 20px;
            }
        }
    }
    .login-button {
        cursor: auto;
        border-radius: 15px;
        border: 1px transparent;
        background-color: white;
        font-weight: bold;
        color: #034FA0;
        white-space: normal;
        .text{
            font-weight: bold;
            color: #034FA0;
        }
        &:active, &:hover, &:focus {
            background-color: white !important;
            outline: none;
        }
    }

     .profile-button {
        cursor: auto;
        border: 1px transparent;
        font-weight: bold;
        color: #034FA0;
        white-space: normal;
        background-color: transparent;

        hr {
            margin-bottom: 10px;
            margin-top: 5px;
        }

        .arrow {
            border: solid white;
            border-width: 0 3px 3px 0;
            display: inline-block;
            padding: 3px;
            margin-left: 5px;
        }
          
        .down {
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
        }
   
        img {
            width: 35px;
            height: 35px;
            padding: 5px;
            background-color: white;
        }

        .text{
            font-weight: bold;
            color: #034FA0;
        }
        &:active, &:hover, &:focus {
            cursor: pointer;
            outline: none;
        }

        h5 {
            b {
                color: #034FA0;
                text-align: center;
            }
            
        }
        .license {
            padding: 5px;
        }
        .logout {
            color: red !important;
            padding: 5px;
        }
    }
}

.connection {
    display: inline;
    .logout {
        color: white;
    }
}