:root {
	--easystore-container-max-width: 1320px;
	--easystore-primary-color: #3366ff;
	--easystore-primary-color-hover: #003df5;
	--easystore-color-neutral: #c9cbcf;
}

/* Migration Popup */
.easystore-settingsteps-popup {
	position: fixed;
	right: 20px;
	background: #fff;
	width: 388px;
	bottom: 20px;
	border-radius: 8px;
	box-shadow: 0px 30px 72px 0px #11121333, 0px 0px 2px 0px #11121333;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 9999;
}
.easystore-settingsteps-popup[easystore-settingsteps-isallcompleted]:has(.easystore-hidden) {
	border: 1px solid var(--easystore-primary-color);
}
.easystore-settingsteps-popup:has(.easystore-hidden) {
	border: 1px solid #ffc046;
}
.easystore-settingsteps-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	cursor: pointer;
	padding: 12px 16px;
	border-bottom: 1px solid #c9d8ed;
}
.easystore-settingsteps-popup-title {
	font-size: 18px;
	font-weight: 500;
	color: #515257;
	margin: 0;
}
.easystore-settingsteps-title-wrapper > svg:last-of-type {
	transition: transform 0.3s;
	margin-left: auto;
}
.easystore-settingsteps-title-wrapper > svg.easystore-rotate {
	transform: rotate(180deg);
}
.easystore-settingsteps-content-wrapper {
	transition: all 2s;
	padding: 12px 16px;
}
.easystore-settingsteps-content-wrapper.easystore-hidden {
	display: none;
}
.easystore-settingsteps-popup-content {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #515257;
	border-bottom: 1px solid #f0f4fa;
	padding-block: 10px;
}
.easystore-settingsteps-popup-content:first-child {
	padding-top: 0px;
}
.easystore-settingsteps-popup-content:last-child {
	border-bottom: none;
}
.easystore-settingsteps-popup-content[easystore-settingsteps-isCompleted] {
	font-weight: 400;
}
.easystore-settingsteps-popup-content-title {
	margin: 0;
}
.easystore-settingsteps-popup-content-link {
	margin-left: auto;
}
.easystore-settingsteps-popup-btn {
	background: var(--easystore-primary-color);
	color: #fff;
	padding: 8px 16px;
	border-radius: 6px;
	box-shadow: 0px -1px 0.25px 0px #1112133d inset, 0px 1px 0.25px 0px #11121314;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.easystore-settingsteps-popup-btn:hover {
	background: var(--easystore-primary-color-hover);
	color: #fff;
}
