:root {
	--c-purpleDark:			hsl(269, 51%, 24%);
	--c-purple:				hsl(269, 51%, 31%);
	--c-purpleLight:		hsl(269, 51%, 40%);
	--c-purplePale1:		hsl(269, 30%, 96%);
	--c-purplePale2:		hsl(269, 30%, 93%);
	--c-purplePale3:		hsl(269, 30%, 90%);
	--c-purplePale4:		hsl(269, 30%, 87%);
	--c-purplePale5:		hsl(269, 30%, 84%);
	
	--c-bluePale1:			hsl(220, 30%, 90%);
	--c-bluePale2:			hsl(220, 30%, 85%);
	
	--c-yellowDark:			hsl( 45, 82%, 55%);
	--c-yellow:				hsl( 45, 82%, 65%);
	--c-yellowLight:		hsl( 45, 82%, 75%);
	
	--c-blue:				hsl(220, 51%, 31%);
	--c-blueLight:			hsl(220, 51%, 40%);
	--c-green:				hsl(120, 51%, 31%);
	--c-greenLight:			hsl(120, 51%, 40%);
	--c-red:				hsl(  0, 51%, 31%);
	--c-redLight:			hsl(  0, 51%, 40%);
	
	--c-blueNote:			hsl(220, 82%, 65%);
	--c-greenNote1:			hsl(120, 82%, 35%);
	--c-greenNote2:			hsl(120, 82%, 50%);
	--c-redNote:			hsl(  0, 82%, 65%);
}
*,
*::before,
*::after {
	box-sizing: border-box;
	font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
::selection {
	background-color: var(--c-purplePale5);
	color: black;
}
body {
	scrollbar-gutter: stable;
	overflow-y: scroll;
	margin: 0;
	transition: 0.2s;
}
input, textarea, button, select {
	border: 0;
	border-radius: 10px;
	padding: 10px 20px;
	text-align: center;
	background-color: var(--c-yellowLight);
	outline: none;
	transition: background-color 0.2s;
}
input:focus, textarea:focus, select:focus {
	background-color: var(--c-yellow);
}
textarea {
	resize: vertical;
	width: 100%;
	padding: 20px;
	text-align: left;
}
input::placeholder {
	color: rgba(0, 0, 0, 0.3);
}
input[type=submit], button {
	background-color: var(--c-purple);
	color: white;
	font-weight: 700;
	transition: 0.2s;
}
input[type=submit], button, select {
	cursor: pointer;
}
input[type=submit]:hover, button:hover {
	background-color: var(--c-purpleLight);
}
input[type=submit].selected, button.selected {
	color: var(--c-yellowLight);
}
input[type=submit].alternate, button.alternate {
	background-color: var(--c-blue);
}
input[type=submit].alternate:hover, button.alternate:hover {
	background-color: var(--c-blueLight);
}
input[type=submit].positive, button.positive {
	background-color: var(--c-green);
}
input[type=submit].positive:hover, button.positive:hover {
	background-color: var(--c-greenLight);
}
input[type=submit].negative, button.negative {
	background-color: var(--c-red);
}
input[type=submit].negative:hover, button.negative:hover {
	background-color: var(--c-redLight);
}
input[type=submit]:disabled, button:disabled {
	background-color: #f0f0f0 !important;
	color: #b3b3b3 !important;
	cursor: not-allowed !important;
}
img.loading {
	opacity: 0;
	display: block;
	height: 48px;
	margin: 20px auto 0 auto;
	transition: 0.5s;
}
#section-nav {
    position: fixed;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
	z-index: 200;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
}
#section-nav.show {
	opacity: 1;
	visibility: visible;
}
#section-nav > button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	position: relative;
	aspect-ratio: 1 / 1;
	line-height: 1;
	border: none;
	border-radius: 100%;
	background-color: black;
	color: white;
    font-size: 1.0em;
	cursor: pointer;
	transition: 0.2s;
	user-select: none;
	transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
}
#section-nav > #previous-section, #section-nav > #next-section {
	background-color: var(--c-purpleDark);
}
#section-nav > button.nav-number.nav-active {
	color: var(--c-yellowLight);
}
#section-nav > button:hover {
	background-color: var(--c-purpleLight) !important;
}
#section-nav > button.nav-number .nav-tooltip {
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 30px;
	padding: 12px 15px;
	white-space: nowrap;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	background-color: white;
	color: black;
	font-weight: 500;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
	pointer-events: none;
}
#section-nav > .nav-number:hover .nav-tooltip {
	opacity: 1;
	visibility: visible;
}
#modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 300;
}
#modal-window {
	display: flex;
	flex-direction: column;
	width: 90%;
	max-height: 90%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	padding: 40px;
	padding-bottom: 20px;
	background-color: white;
	text-align: center;
}
#modal-content {
	overflow: hidden;
	font-size: 1.2em;
}
#modal-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	height: 60px;
	margin: auto;
	margin-top: 40px;
}
#modal-buttons button {
	width: 150px;
	font-size: 1.3em;
}
#modal-loading {
	display: none;
	opacity: 1;
	height: 60px !important;
	margin-top: 40px;
}
#modal-progress {
	margin-top: 20px;
	user-select: none;
}
#modal-content button.custom {
	margin: 10px 5px;
	font-size: 0.8em;
}
#modal-seed-container {
	max-height: 450px;
	overflow-y: scroll;
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.06), inset -1px -1px 2px rgba(0, 0, 0, 0.06);
	padding: 20px;
	background-color: #f7f7f7;
}
#modal-seed-container > button {
	margin: 5px;
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.03), inset -1px -1px 2px rgba(0, 0, 0, 0.03);
	background-color: var(--c-bluePale2);
	color: black;
	font-size: 0.9em;
	font-weight: normal;
}
#modal-seed-container > button:hover {
	background-color: var(--c-bluePale1);
}
#modal-seed-container > button > span {
	color: var(--c-blueLight);
	font-weight: bold;
	font-size: 0.8em;
}
#modal-seed-container > button.selected {
	background-color: var(--c-blueLight);
	color: white;
}
#modal-seed-container > button.selected > span {
	color: var(--c-yellowLight);
}
#login {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#login > div {
	position: relative;
	width: 400px;
	text-align: center;
}
#login > div > h1 {
	font-size: 1.5em;
}
#login > div > img {
	width: 80%;
}
#login > div > form > input {
	display: block;
	width: 100%;
	margin: 20px 0;
	padding: 20px;
	font-size: 1.5em;
}
#login > div > div.notification {
	position: absolute;
	bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
	width: 100%;
}


#application {
	text-align: center;
}
#application h1 {
	margin-top: 0;
	font-size: 3.0em;
}
#application input,
#application textarea,
#application button {
	font-size: 1.0em;
}
#application button {
	margin: 5px;
}
#application input[type=text] {
	width: 350px;
}
#application .notification-black,
#application .notification-blue,
#application .notification-green,
#application .notification-red {
	font-style: italic;
}
#application .notification-blue {
	color: var(--c-blueNote);
}
#application .notification-green {
	color: var(--c-greenNote1);
}
#application .notification-red {
	color: var(--c-redNote);
}
#application > section {
	padding: 20px 80px;
	font-size: 1.2em;
}
#application > section:nth-child(even) {
	background-color: #f7f7f7;
}
#application > section > h2 {
	font-size: 2.0em;
}
#application > section > h3 {
	margin-top: 50px;
}
#application > section > #website-buttons {
	margin-bottom: 50px;
}
#application > section > #website-namer button.website-namer {
	width: 120px;
}
#application > section > #website-namer p.notification-red {
	user-select: none;
}


#application > #website-information > div.question-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	
}
#application > #website-information > div.question-grid > div {
	padding: 40px 20px;
}
#application > #website-information > div.question-grid > div > h4,
#application > #website-information > div.question-grid > div > h5 {
	margin: 0;
}
#application > #website-information > div.question-grid > div > h5 {
	color: #999999;
}
#application > #website-information > div.question-grid > div > textarea {
	min-height: 150px;
	margin-top: 10px;
}
#application > #website-information > div.question-grid > div > div.question-number {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 100px;
	aspect-ratio: 1 / 1;
	margin: 5px auto;
	border-radius: 100%;
	background-color: black;
	color: white;
	font-size: 3.0em;
	font-weight: 700;
}


#application > #website-profile h4 {
	margin-bottom: 0;
}
#application > #website-profile textarea {
	margin-top: 10px;
}
#application > #website-profile #website-summary {
	width: 60%;
	min-height: 320px;
}
#application > #website-profile #website-summary-button {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#application > #website-profile > div.relevance-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
#application > #website-profile > div.relevance-grid > div {
	padding: 30px;
}
#application > #website-profile > div.relevance-grid > div textarea {
	min-height: 200px;
}

#application > #keyword-research #seed-keyword-services {
	display: block;
	margin: auto;
	font-size: 0.8em;
}
#application > #keyword-research #generated-keywords {
	margin-bottom: 80px;
}
#application > #keyword-research #seed-keywords {
	margin-bottom: 40px;
}
#application > #keyword-research #seed-keywords > div > button {
	background-color: var(--c-purplePale3);
	color: black;
	font-size: 0.9em;
	font-weight: normal;
	cursor: auto;
}
#application > #keyword-research #seed-keywords > div > button > span {
	padding-left: 5px;
	color: var(--c-purpleLight);
	font-weight: 700;
}


#application > #keyword-research-results {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
#application > #keyword-research-results #keyword-count-all {
	font-size: 1.1em;
}
#application > #keyword-research-results div.bulk-keyword-selection {
	display: flex;
    flex-direction: column;
    align-items: flex-end;
	margin: 10px;
	font-size: 0.8em;
}
#application > #keyword-research-results div.bulk-keyword-selection p {
	margin: 10px 5px;
	text-align: right;
}
#application > #keyword-research-results div.bulk-keyword-selection div.bulk-keyword-selection-controls,
#application > #website-structure #site-structure-controls {
	display: flex;
	align-items: stretch;
	gap: 5px;
}
#application > #keyword-research-results div.bulk-keyword-selection div.bulk-keyword-selection-controls > *,
#application > #website-structure #site-structure-controls > * {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-sizing: border-box;
}
#application > #keyword-research-results div.bulk-keyword-selection div.bulk-keyword-selection-controls input,
#application > #website-structure #site-structure-controls input {
	width: 200px;
	padding-left: 0;
}
#application > #keyword-research-results div.bulk-keyword-selection div.bulk-keyword-selection-controls div.bulk-select-status {
	padding: 0;
	font-size: 1.8em;
	user-select: none;
	cursor: pointer;
	filter: saturate(0.5);
	transition: 0.2s;
}
#application > #keyword-research-results div.bulk-keyword-selection div.bulk-keyword-selection-controls div.bulk-select-status:hover {
	filter: saturate(1);
}
#application > #website-structure #site-structure-controls {
	justify-content: center;
	padding-top: 40px;
}
#application > #website-structure #site-structure-controls input {
	font-size: 0.8em;
}
#application > #website-structure #site-structure-controls select {
	padding: 10px;
	text-align: left;
	font-size: 0.8em;
}
#application > #website-structure #site-structure-controls select > option {
	background-color: white;
}
#application > #website-structure #site-structure-controls button {
	width: 250px;
}
#application > #keyword-research-results table {
	width: 100%;
	margin: auto;
    border-collapse: collapse;
    border: none;
}
#application > #keyword-research-results table th,
#application > #keyword-research-results table td {
	padding: 15px;
	text-align: right;
}
#application > #keyword-research-results table thead th:nth-child(2),
#application > #keyword-research-results table thead th:nth-child(3),
#application > #keyword-research-results table thead th:nth-child(4),
#application > #keyword-research-results table thead th:nth-child(5),
#application > #keyword-research-results table thead th:nth-child(7) {
	width: 160px;
}
#application > #keyword-research-results table thead th:nth-child(6),
#application > #keyword-research-results table thead th:nth-child(8) {
	width: 280px;
}
#application > #keyword-research-results table thead {
	position: sticky;
	top: 0;
	z-index: 10;
}
#application > #keyword-research-results table thead tr {
	background-color: var(--c-purple);
	color: white;
}
#application > #keyword-research-results table thead tr:first-child {
	height: 100px;
	user-select: none;
}
#application > #keyword-research-results table thead tr:first-child th:first-child {
	position: relative;
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls {
	position: absolute;
	right: 0;
	top: -36px;
	height: 36px;
	display: flex;
	flex-direction: row;
	gap: 5px;
	font-size: 0.8em;
	font-weight: 500;
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls > div {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px 10px 0 0;
	padding: 0 20px;
	transition: 0.2s;
	cursor: pointer;
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls > div:nth-child(1) {
	background-color: var(--c-red);
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls > div:nth-child(2) {
	background-color: var(--c-purpleDark);
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls > div:nth-child(1):hover {
	background-color: var(--c-redLight);
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls > div:nth-child(2):hover {
	background-color: var(--c-purpleLight);
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls > div > span {
	padding-left: 15px;
	color: var(--c-yellowLight);
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination {
	position: absolute;
	left: 0;
	top: 10px;
	text-align: center;
	font-size: 0.8em;
	font-weight: normal;
	z-index: 50;
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination select {
	user-select: none;
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination div.pagination-indicator {
	display: block;
}
#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination div.pagination-indicator #keyword-count {
	font-weight: 700;
}
#application > #keyword-research-results table thead tr:first-child th div.keyword-sort {
	cursor: pointer;
	transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
}
#application > #keyword-research-results table thead tr:first-child th div.keyword-sort:hover {
	text-decoration: underline;
	text-decoration-color: var(--c-yellowDark);
	text-decoration-thickness: 2px;
	text-underline-offset: 2px;
}
#application > #keyword-research-results table thead tr:first-child th div.keyword-sort-icon {
	display: block;
	padding: 5px;
	font-size: 1.2em;
	cursor: pointer;
}
#application > #keyword-research-results table thead tr:first-child th div.keyword-sort-icon-asc {
	color: var(--c-greenNote2);
}
#application > #keyword-research-results table thead tr:first-child th div.keyword-sort-icon-desc {
	color: var(--c-redNote);
}
#application > #keyword-research-results table thead tr:first-child th div.keyword-sort-icon-none {
	visibility: hidden;
}
#application > #keyword-research-results table thead tr:last-child input[type=text],
#application > #keyword-research-results table thead tr:last-child select {
	width: 100%;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	font-size: 0.8em;
	text-align: right;
	transition: 0.2s;
}
#application > #keyword-research-results table thead tr:last-child input[type=text]:hover,
#application > #keyword-research-results table thead tr:last-child select:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
#application > #keyword-research-results table thead tr:last-child input[type=text]:focus,
#application > #keyword-research-results table thead tr:last-child select:focus {
	background-color: white;
	color: black;
}
#application > #keyword-research-results table thead tr:last-child select {
	padding: 10px 5px;
}
#application > #keyword-research-results table thead tr:last-child select option {
	color: initial;
}
#application > #keyword-research-results table tbody tr:nth-child(odd) {
	background-color: var(--c-purplePale2);
}
#application > #keyword-research-results table tbody tr:nth-child(even) {
	background-color: var(--c-purplePale1);
}
#application > #keyword-research-results table tbody tr:nth-child(odd) td.new-data {
	box-shadow: inset 20px 0 0 var(--c-yellow);
}
#application > #keyword-research-results table tbody tr:nth-child(even) td.new-data {
	box-shadow: inset 20px 0 0 var(--c-yellowLight);
}
#application > #keyword-research-results table tbody td.clickable {
	cursor: pointer;
	user-select: none;
}
#application > #keyword-research-results table tbody tr td.clickable:hover {
    background-color: var(--c-purplePale4);
}
#application > #keyword-research-results table tbody td.unknown {
	font-size: 0.7em;
	color: #666666;
}
#application > #keyword-research-results table tbody td span.seed-keyword-icon {
	cursor: pointer;
	filter: grayscale(1);
	opacity: 0.2;
	transition: 0.2s;
}
#application > #keyword-research-results table tbody td span.seed-keyword-icon:hover {
	opacity: 1;
}
#application > #keyword-research-results table tbody tr.no-results td {
	padding: 50px;
	text-align: center;
	font-size: 1.5em;
	font-style: italic;
	color: #999999;
}
#application > #keyword-research-results table tfoot tr {
	height: 10px;
	background-color: var(--c-purpleDark);
}
#application > #keyword-research-results table tfoot tr td {
	padding: 0;
}


#application > #website-structure div.level-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	max-width: 360px;
	margin: auto;
	font-size: 0.8em;
}
#application > #website-structure div.level-grid > button {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: auto;
	border-radius: 100%;
	padding: 0;
}
#application > #website-structure p.level-introduction {
	margin: 60px 0;
}
#application > #website-structure hr.grid-separator {
	width: 20%;
	height: 5px;
	background-color: black;
	border-color: transparent;
	margin: 150px auto;
}
#application > #website-structure div.page-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 30px;
	margin: 0 40px 150px 40px;
}
#application > #website-structure div.page-grid > div {
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 20px;
	padding: 15px;
	padding-top: 0;
	background-color: var(--c-yellowLight);
}
#application > #website-structure div.page-grid div.breadcrumbs {
	max-width: 360px;
	margin-top: 7px;
	margin-left: 5px;
	text-align: left;
	color: rgba(0, 0, 0, 0.4);
	font-size: 0.8em;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#application > #website-structure div.add-new-page div.breadcrumbs {
	position: absolute;
	top: 2px;
	left: 15px;
	margin: 0;
}
#application > #website-structure div.page-container-unassigned div.breadcrumbs {
	position: absolute;
	top: 7px;
	left: 5px;
	margin: 0;
}
#application > #website-structure div.page-grid > div > input[type=text] {
	width: 100%;
	text-align: left;
	font-weight: 700;
}
#application > #website-structure div.page-grid-level0 > div > input[type=text] {
	margin: 15px 0;
	padding: 10px;
	font-size: 1.4em;
}
#application > #website-structure div.page-grid-level1 > div > input[type=text],
#application > #website-structure div.page-grid-level2 > div > input[type=text] {
	margin: 12px 0;
	padding: 5px 10px;
	font-size: 1.0em;
}
#application > #website-structure div.page-grid > div > input[type=text]:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
#application > #website-structure div.page-grid > div > input[type=text]:focus {
	background-color: white;
	color: black;
}
#application > #website-structure div.page-grid > div > table {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
	border-collapse: collapse;
	border: none;
	background-color: white;
}
#application > #website-structure div.page-grid > div > table > thead,
#application > #website-structure div.page-grid > div > table > tbody {
	display: block;
}
#application > #website-structure div.page-grid > div > table > tbody {
	flex-grow: 1;
	height: 300px;
	overflow-y: scroll;
}
#application > #website-structure div.page-grid > div.parent-container > div.parent-title {
	padding: 17px 10px;
	text-align: left;
	font-weight: 700;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody {
	height: 250px;
}
#application > #website-structure div.page-grid > div > table > thead > tr,
#application > #website-structure div.page-grid > div > table > tbody > tr {
	display: table;
	table-layout: fixed;
	width: 100%;
}
#application > #website-structure div.page-grid > div > table > thead > tr:nth-child(1) {
	background-color: black;
	color: white;
}
#application > #website-structure div.page-grid > div > table > thead > tr:nth-child(2) {
	background-color: var(--c-purple);
	color: white;
}
#application > #website-structure div.page-grid > div > table > tbody > tr:nth-child(even) {
	background-color: #f7f7f7;
}
#application > #website-structure div.page-grid > div > table > thead > tr:nth-child(2) > th {
	font-weight: normal;
}
#application > #website-structure div.page-grid > div > table > thead > tr > th,
#application > #website-structure div.page-grid > div > table > tbody > tr > td,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td {
	padding: 10px;
	font-size: 0.7em;
}
#application > #website-structure div.page-grid > div > table > thead > tr > th:first-child,
#application > #website-structure div.page-grid > div > table > tbody > tr > td:first-child {
	flex: 1;
	text-align: left;
}
#application > #website-structure div.page-grid > div > table > thead > tr > th:not(:first-child),
#application > #website-structure div.page-grid > div > table > tbody > tr > td:not(:first-child) {
	width: 100px;
	text-align: right;
}
#application > #website-structure div.page-grid > div > div.manual-page {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 360px;
	aspect-ratio: 1 / 1;
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.03), inset -1px -1px 2px rgba(0, 0, 0, 0.03);
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.03);
	font-size: 9.0em;
	user-select: none;
}
#application > #website-structure div.page-grid > div.add-new-page {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 475px;
	border: 5px dashed #e6e6e6;
	background-color: transparent;
}
#application > #website-structure div.page-grid > div.add-new-page > div.plus {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	width: 100px;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	background-color: #e6e6e6;
	color: white;
	font-size: 4.0em;
	user-select: none;
	cursor: pointer;
	transition: 0.2s;
}
#application > #website-structure div.page-grid > div.add-new-page > div.plus:hover {
	background-color: var(--c-yellowLight);
}
#application > #website-structure div.page-grid > div.add-new-page > div.toggle-page-type {
	position: absolute;
	top: 10px;
	right: 10px;
	user-select: none;
	font-size: 1.5em;
}
#application > #website-structure div.page-grid > div.add-new-page > div.toggle-page-type > div,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-manual,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-location {
	display: inline-block;
	filter: grayscale(1);
	opacity: 0.5;
	transition: 0.2s;
	cursor: pointer;
}
#application > #website-structure div.page-grid > div.add-new-page > div.toggle-page-type > div:hover,
#application > #website-structure div.page-grid > div.add-new-page > div.toggle-page-type > div.selected,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-manual:hover,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-location:hover,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-manual.selected,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-location.selected {
	filter: grayscale(0);
	opacity: 0.7;
}
#application > #website-structure div.page-grid > div.add-new-page > div.toggle-page-type > div.selected,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-manual.selected,
#application > #website-structure div.page-grid > div > table > tfoot > tr > td.toggle-page-location.selected {
	opacity: 1;
}
#application > #website-structure div.page-grid > div > div.delete-page,
#application > #website-structure div.page-grid > div > div.pin-page,
#application > #website-structure div.page-grid > div > div.drag-page {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	width: 40px;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	background-color: var(--c-yellowLight);
	user-select: none;
	transition: 0.2s;
}
#application > #website-structure div.page-grid > div > div.delete-page {
	right: -10px;
	top: -10px;
	font-size: 1.2em;
	box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
#application > #website-structure div.page-grid > div > div.delete-page:hover {
	background-color: var(--c-redLight);
	color: white;
}
#application > #website-structure div.page-grid > div > div.pin-page {
	right: -10px;
	top: 55px;
	font-size: 1.1em;
	box-shadow: -5px -5px 30px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
#application > #website-structure div.page-grid > div > div.pin-page > span {
	opacity: 0.3;
	filter: grayscale(1);
	transform: rotate(180deg);
	transform-origin: center;
	transition: 0.2s;
}
#application > #website-structure div.page-grid > div > div.drag-page {
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--c-purple);
	color: white;
	font-size: 1.1em;
	cursor: grab;
}
#application > #website-structure div.page-grid > div > div.drag-page:hover {
	background-color: var(--c-purpleLight);
}
#application > #website-structure div.page-grid > div > div.pin-page:hover span,
#application > #website-structure div.page-grid > div > div.pin-page.pinned span {
	opacity: 1;
}
#application > #website-structure div.page-grid > div > div.pin-page.pinned span {
	filter: grayscale(0);
	transform: rotate(0);
}
#application > #website-structure div.page-grid > div.is-dragging {
	opacity: 0.4;
}
#application > #website-structure div.page-grid > .page-container-unassigned {
	background-color: #e6e6e6;
}
#application > #website-structure div.page-grid > .page-container-unassigned > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	width: 100%;
	margin: 20px 0;
	padding: 5px;
}
#application > #website-structure div.page-grid > .page-container-unassigned-level1 > div,
#application > #website-structure div.page-grid > .page-container-unassigned-level2 > div {
	min-height: 86px;
	margin: 0;
}
#application > #website-structure div.page-grid > .page-container-unassigned > div > div.unassigned-label {
	text-align: left;
	font-weight: 700;
}
#application > #website-structure div.page-grid > .page-container-unassigned-level1 > div > div.unassigned-label,
#application > #website-structure div.page-grid > .page-container-unassigned-level2 > div > div.unassigned-label {
	align-self: flex-end;
	padding-bottom: 12px;
	padding-left: 5px;
}
#application > #website-structure div.page-grid > .page-container-unassigned > div > button {
	align-self: center;
	margin: 0;
	padding: 7.5px 20px;
	font-size: 0.8em;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td {
	vertical-align: top;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td:nth-child(1) {
	padding: 0;
}
#application > #website-structure div.page-grid > div.parent-container > table > thead > tr > th:nth-child(3),
#application > #website-structure div.page-grid > div.parent-container > table > thead > tr > th:nth-child(4),
#application > #website-structure div.page-grid > div.parent-container > table > thead > tr > th:nth-child(5),
#application > #website-structure div.page-grid > div.parent-container > table > thead > tr > th:nth-child(6),
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td:nth-child(3),
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td:nth-child(4),
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td:nth-child(5),
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td:nth-child(6) {
	width: 30px;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td > textarea {
	width: 100%;
	overflow: hidden;
	resize: none;
	height: 80px;
	border-radius: 0;
	padding: 10px;
	background-color: transparent;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td > textarea:hover,
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td > textarea:focus {
	background-color: var(--c-purplePale3);
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.page-order {
	line-height: 1.2;
	font-size: 0.9em;
	user-select: none;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.page-order > div {
	opacity: 0.2;
	transition: 0.2s;
	cursor: pointer;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.page-order > div:hover {
	color: var(--c-purpleLight);
	opacity: 1;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.pin-page {
	opacity: 0.3;
	filter: grayscale(1);
	transition: 0.2s;
	cursor: pointer;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.pin-page:hover,
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.pin-page.pinned {
	opacity: 1;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.pin-page.pinned {
	filter: grayscale(0);
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.delete-page {
	color: var(--c-redLight);
	transition: 0.2s;
	cursor: pointer;
	user-select: none;
}
#application > #website-structure div.page-grid > div.parent-container > table > tbody > tr > td.delete-page:hover {
	background-color: var(--c-redLight);
	color: white;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot {
	display: flex;
	flex-direction: column;
	width: 100%;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.unassigned-row,
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.new-page-row {
	display: flex;
	width: 100%;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.unassigned-row {
	background-color: var(--c-purplePale2);
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.new-page-row {
	background-color: var(--c-purplePale1);
	user-select: none;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.unassigned-row > td:nth-child(1) {
	display: flex;
	flex: 1;
	align-items: center;
	justify-contemt: left;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.unassigned-row > td:nth-child(2) {
	width: 160px;
	text-align: right;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.unassigned-row > td:nth-child(2) > button {
	margin: 0;
	padding: 10px 20px;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.new-page-row > td:nth-child(1) {
	flex: 1;
	text-align: left;
	transition: 0.2s;
	cursor: pointer;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.new-page-row > td:nth-child(1):hover {
	background-color: var(--c-blueLight);
	color: white;
}
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.new-page-row > td:nth-child(2),
#application > #website-structure div.page-grid > div.parent-container > table > tfoot > tr.new-page-row > td:nth-child(3) {
	width: 70px;
	text-align: center;
}
#application > #website-structure div.empty-parent-level {
	margin-bottom: 800px;
}
#application > #website-structure div.site-structure-instructions {
	max-width: 1000px;
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.03), inset -1px -1px 2px rgba(0, 0, 0, 0.03);
	margin: 20px auto;
	padding: 20px;
	background-color: var(--c-purplePale1);
}
#application > #website-structure div.site-structure-instructions h3 {
	text-align: center;
}
#application > #website-structure div.site-structure-instructions ol {
	text-align: left;
}
#application > #website-structure div.site-structure-instructions ol > li {
	padding: 10px 0;
}
#application > #website-structure div.site-structure-instructions ol > li > ul > li {
	padding: 5px 0;
}

@media(max-width: 1720px) {
	#application > #website-structure div.page-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media(max-width: 1400px) {
	#application > #website-structure div.page-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 960px) {
	#application > #website-structure div.page-grid {
		grid-template-columns: 1fr;
	}
}
@media(max-width: 767px) {
	input[type=submit], button {
		font-size: 0.8em !important;
	}
	#application > #website-information > div.question-grid,
	#application > #website-profile > div.relevance-grid {
		grid-template-columns: auto;
	}
	#section-nav {
		display: none;
	}
	textarea {
		padding: 10px;
		font-size: 0.8em !important;
	}
	#application h1 {
		font-size: 2.0em;
	}
	#application > section {
		padding: 20px 20px;
		font-size: 1.1em;
	}
	#application > section > h2 {
		font-size: 1.5em;
	}
	#application > #website-information > div.question-grid > div,
	#application > #website-profile > div.relevance-grid > div {
		padding: 20px 0;
	}
	#application > #website-profile #website-summary {
		width: 100%;
	}
	#application > #keyword-research #seed-keywords {
		display: none;
	}
	#application > #keyword-research-results > *:not(table) {
		margin-left: 10px !important;
		margin-right: 10px !important;
	}
	#application > #keyword-research-results table thead tr:first-child th:first-child div.top-controls {
		display: none;
	}
	#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination {
		left: 0;
	}
	#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination > button {
		padding: 5px 10px;
	}
	#application > #keyword-research-results table td {
		font-size: 0.8em;
	}
	#application > #keyword-research-results table th:nth-child(7), #application > #keyword-research-results table td:nth-child(7),
	#application > #keyword-research-results table th:nth-child(8), #application > #keyword-research-results table td:nth-child(8) {
		max-width: 100px;
	}
	.mobile-hide,
	#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination > div.pagination-indicator:first-child,
	#application > #keyword-research-results table thead tr:first-child th:first-child div.pagination > select,
	#application > #keyword-research-results table th:nth-child(2), #application > #keyword-research-results table td:nth-child(2),
	#application > #keyword-research-results table th:nth-child(3), #application > #keyword-research-results table td:nth-child(3),
	#application > #keyword-research-results table th:nth-child(4), #application > #keyword-research-results table td:nth-child(4),
	#application > #keyword-research-results table th:nth-child(5), #application > #keyword-research-results table td:nth-child(5),
	#application > #keyword-research-results table th:nth-child(6), #application > #keyword-research-results table td:nth-child(6) {
		display: none;
	}
	#application > #website-structure div.page-grid {
		margin: 40px 0;
	}
	#application > #website-structure div.page-grid > div > div.manual-page {
		margin: auto;
	}
	#application > #website-structure #site-structure-controls {
		flex-direction: column;
		align-items: center;
	}
	#application > #website-structure #site-structure-controls > * {
		width: 100% !important;
		max-width: 300px;
	}
}