#angle-popup {
	display: flex;
	flex-direction: column;
	align-items: center;

    position: fixed;
    right: 0;
	z-index: 999;

	width: 314px;
	max-width: 100%;
	max-height: 254px;
	

    background-color: var(--window-bg);
}

#angle-popup-profile,
#angle-popup-notification {
	display: none;
	
	width: 100%;
	height: 100%;
}

#angle-popup-title {
	padding-top: 10px;
	margin-bottom: 4px;

	width: 100%;

	user-select: none;
	cursor: default;

	font-size: 24px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	
	text-align: center;
	text-wrap: ellipsis;
	font-weight: 500;
}
#angle-popup-title-username {
	font-weight: bold;
}

#angle-popup-content {
	padding-bottom: 12.5px;

	width: 100%;
	min-height: 3px;
	max-height: 210px;

	border-radius: 0 0 0 45px;

	overflow-y: scroll;
}

.section {
	display: flex;
	align-items: center;

	width: 100%;
	height: 48px;

	font-size: 18px;
}
.section:hover > .icon {
	opacity: 1;
	transition: opacity 0.3s;
}
.section > .icon {
	margin-left: 12.74%;
	margin-right: 12.74%;

	min-width: 34px;
	min-height: 34px;

	opacity: 0.5;
	transition: opacity 0.3s;
}
.section > p {
	margin-right: auto;
}

/* MOBILE */
@media screen and (max-width: 480px) {
	#angle-popup {
		bottom: 52px;

		border-radius: 45px 0 0 0px;
	}

	.section > .icon {
		margin-right: auto;
	}
}
/* DESKTOP */
@media screen and (min-width: 480px) {
	#angle-popup {
		top: 65px;

		border-radius: 0 0 0 45px;
	}
}
