/**
 * Header account action styles.
 *
 * Location: /assets/css/frontend/header/parts/account.css
 *
 * @package SunTechPortal
 */

.stp-header-main__actions .stp-header-account-widget {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}

.stp-header-main__actions .stp-header-account-widget *,
.stp-header-main__actions .stp-header-account-widget *::before,
.stp-header-main__actions .stp-header-account-widget *::after {
	box-sizing: border-box;
}

.stp-header-main__actions .stp-header-account-widget .stp-header-action--account {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	min-width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	transition:
		border-color 0.16s ease,
		background-color 0.16s ease;
}

.stp-header-main__actions .stp-header-account-widget .stp-header-action--account:hover,
.stp-header-main__actions .stp-header-account-widget .stp-header-action--account:focus,
.stp-header-main__actions .stp-header-account-widget .stp-header-action--account[aria-expanded="true"] {
	border-color: #cbd5e1;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
	box-shadow: none;
	outline: none;
}

.stp-header-main__actions .stp-header-account-widget .stp-header-action--account:focus-visible {
	outline: 2px solid #111827;
	outline-offset: 2px;
}

.stp-header-main__actions .stp-header-account-widget .stp-header-action__icon {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
	filter: none;
	opacity: 1;
	transform: none;
	transition: none;
}

.stp-header-main__actions .stp-header-account-widget .stp-header-action--account:hover .stp-header-action__icon,
.stp-header-main__actions .stp-header-account-widget .stp-header-action--account:focus .stp-header-action__icon,
.stp-header-main__actions .stp-header-account-widget .stp-header-action--account[aria-expanded="true"] .stp-header-action__icon {
	filter: none;
	opacity: 1;
	transform: none;
}

@media (max-width: 767px) {
	.stp-header-main__actions .stp-header-account-widget .stp-header-action--account {
		width: 40px;
		min-width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.stp-header-main__actions .stp-header-account-widget .stp-header-action__icon {
		width: 21px;
		height: 21px;
	}
}