.header__username {
	text-align: center;
	display: inline-block;
	cursor: pointer;
	color: var(--button-color);
}
.header__username i {
	font-size: 18px;
}
i.header__username-down {
	font-size: 15px;
	color: var(--text-color);
}
.header .header__list h5 {
	margin: 0;
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
}
.header .header__list {
	background-color: #fff;
	z-index: 1001;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	transform: translateX(100%);
}
.header__scroll {
	height: 100vh;
}
.header .header__list li {
	border-bottom: 1px dotted var(--border-color);
}
.header .header__list li:last-of-type {
	border-bottom: 0;
}
@media (min-width: 800px) {
	.header .header__list {
		border: 1px solid var(--border-color);
		border-radius: 16px;
		top: 28px;
		position: absolute;
		right: -10px;
		transform: translateX(0);
		display: none;
		left: auto;
		height: auto;
		width: 296px;
		text-align: left;
	}
	.header__scroll {
		height: auto;
	}
	.header .header__list li {
		border: 0;
	}
}
.header .header__list a {
	color: var(--text-color);
	padding: 15px;
	display: block;
}
.header .header__list a i {
	margin-right: 15px;
	display: none;
}
.header .header__list a.l-link {
	color: var(--button-color);
}
.header .header__list.is-open {
	transform: translateX(0);
}
@media (min-width: 992px) {
	.header .header__list.is-open {
		display: block;
	}
}
.header__account {
	position: relative;
	margin-left: 15px;
	cursor: pointer;
}
.account-nav {
	background-color: #f5f6fa;
	border-radius: 16px;
	overflow: hidden;
}
.account-nav li {
	border-bottom: 2px solid #ffffff;
}
.account-nav li:last-of-type {
	border-bottom: 0;
}
.account-nav li a{
	font-size: 17px;
	padding: 15px;
	color: var(--text-color);
	display: block;
}
.account-nav li a.active{
	background-color: #f1863c;
	color: #ffffff;
	font-weight: 600;
}
.account-content {
	margin-bottom: 20px;
}
p.subscribed-info {
	font-weight: 800;
	color: #F44336;
}
.header__username span {
	display: none;
}
i.header__username-icon.fas.fa-user {
    background: #f2873c;
    padding: 10px;
    border-radius: 16px;
    width: 40px;
    height: 40px;
    line-height: 19px;
    color: #fff;
}