/* General */
.wrap {
	--color-gray: #999;
	--color-light: #ccd0d4;
	--color-lighter: #f0f0f0;
	--color-red: #e53e3e;
	--shadow-md: 0 1px 1px rgba(0, 0, 0, .05);
	--border: 1px solid var(--color-light);
	--border-lighter: 1px solid var(--color-lighter);
	--wp-admin-theme-color: #007cba;
}
#wpcontent {
	padding-left: 0;
}
.wrap {
	margin: 0;
}
.notice.notice {
	margin: 24px;
}

/* Header */
.ss-title.ss-title {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 12px 24px;
	border-bottom: var(--border);
}
.ss-title svg {
	width: 36px;
	height: 36px;
	margin-right: 12px;
}
.ss-title a {
	margin-left: auto;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	color: inherit;
}
.ss-title .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

/* Tabs */
.ss-tabs {
	margin: 24px;
	background: #fff;
	border: var(--border);
}
.ss-tab-list {
	border-bottom: var(--border);
	margin: 0;
	display: flex;
	align-items: center;
}
.ss-tab {
	cursor: pointer;
	display: inline-block;
	box-sizing: border-box;
	height: 48px;
	line-height: 42px;
	padding: 3px 12px;
	margin-bottom: 0;
	font-weight: 500;
	transition: box-shadow 0.1s linear;
	text-decoration: none;
	color: inherit;
}
.ss-tab.ss-is-active {
	box-shadow: inset 0 0 0 1.5px transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);
	color: var(--wp-admin-theme-color);
}
.ss-tab-pane {
	display: none;
	padding: 16px 12px;
}
.ss-tab-pane.ss-is-active {
	display: block;
}
.ss-tab-pane > :first-child {
	margin-top: 0;
}

/* Tooltip */
.ss-tooltip {
	border: none;
	background: no-repeat;
	padding: 0;
	color: #ccc;
	width: 16px;
	height: 16px;
}
.ss-tooltip .dashicons {
	font-size: 14px;
	width: 16px;
	height: 16px;
	margin-top: 2px;
}
.tippy-tooltip {
	text-align: left;
}

/* Misc */
p.submit {
	margin-bottom: 0;
	padding-bottom: 0;
}