.login-header {
	display: flex;
	align-items: center;
	transition: opacity .3s ease-in-out;
}

.login-header__title {
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: #2B2D33;
}

.login-header__img {
	flex: 0 0 32px;
	height: 32px;
	width: 32px;
	margin-left: 10px;
	border-radius: 50%;
	overflow: hidden;
}

.login-header__img.default-img {
	background-color: gray;
}

.login-header__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

@media (min-width: 1200px) {
    .login-header:hover{
        opacity: .8;
    }
}
@media (max-width: 1199.98px) {
    .login-header {
        display: none;
    }
}