#user {
	margin-top: auto;
	margin-bottom: auto;
	display: flex;
	gap: 4px;
}

.login {
	padding: 9px;
	white-space: nowrap;
	border-radius: 100px;
	color: white;
	background-color: var(--purple-1);
	white-space: pre;
	border: 2px solid var(--purple-1);
	max-height: 40px;
	font-weight: 500;
}

.login:hover {
	background-color: white !important;
	border: 2px solid var(--purple-1);
	color: var(--purple-1);
}

.login > icon {
	width: 100%;
	height: 100%;
}

.login:hover > icon > svg {
	fill: mediumslateblue;
}

.login > icon > svg {
	fill: white;
	margin-right: 0px;
	margin-top: 1px;
}

#login, #signup {
	display: flex;
}

#mycart {
	display: flex;
}

#register {
	display: none;
	position: relative;
	min-width: 118px;
}

#list {
	display: none;
	flex-direction: column;
	width: calc(100% + 4px);
	top: calc(100% - 2px);
	gap: 5px;
	left: -2px;
	z-index: 5;
	position: absolute;
	white-space: nowrap;
	padding: 5px;
	background-color: white;
	border-left: 2px solid var(--color-1-a);
	border-right: 2px solid var(--color-1-a);
	border-bottom: 2px solid var(--color-1-a);
	border-bottom-left-radius: var(--primary-radius);
	border-bottom-right-radius: var(--primary-radius);
}

#list > div, #list > a {
	border-left: 1px solid var(--color-2-a);
	display: flex;
	color: var(--purple-1);
}

#list > div:hover, #list > a:hover {
	border-left: 1px solid var(--purple-1);
}

@media screen and (max-width: 960px) {
	#signup {
		display: none;
	}
}

@media screen and (max-width: 595px) {
	.login {
		position: absolute !important;
		border: none;
		top: 30px;
		right: 15px;
		gap: 3px;
		padding-right: 10px;
		background-color: transparent !important;
	}

	.login:hover {
		background-color: transparent !important;
		border: none !important;
	}

	.login > span {
		width: 45px;
		color: white !important;
		white-space: wrap;
		margin: -4px 5px 0px 5px;
	}

	.login > icon {
		width: 28px;
	}

	.login > icon > svg {
		width: 28px;
		height: 28px;
		margin-top: 1px;
		fill: white !important;
	}

	#list {
		display: none !important;
	}
}
