/**
 * Login Page
 */

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Variables
# Icons
# Typography
# Forms
# Login Page
# Login Form
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
* Styles based on Normalize v8.0.1
* @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

html {
	box-sizing: border-box;
	font-size: 62.5%; /* 1rem = 10px */
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {

	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	margin: 0;
	word-wrap: break-word;
}

hr {
	background-color: rgba(var(--tripp-color-on-surface-rgb), 0.15);
	border: 0;
	box-sizing: content-box;
	height: 1px;
	overflow: visible;
}

pre {
	background: rgba(var(--tripp-color-on-surface-rgb), 0.05);
	border-radius: 0.8rem;
	font-family: var(--tripp-font-monospace);
	margin: 0;
	max-width: 100%;
	overflow: auto;
	padding: 1.5rem 2rem;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: none;
}

b,
strong {
	font-weight: 600;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}

sup {
	vertical-align: super;
}

img {
	border-style: none;
	height: auto;
	max-width: 100%;
	position: relative;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: inherit;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button::-moz-focusring,
[type="button"]::-moz-focusring,
[type="reset"]::-moz-focusring,
[type="submit"]::-moz-focusring {
	outline: 1px dotted inherit;
}

fieldset {
	padding: 1rem 2rem 2rem;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0 1rem;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

/* Colors */

/* stylelint-disable at-rule-no-unknown -- Ignore PostCSS Mixins rule */

:root,
.has-scheme-light,
.flext-has-scheme-light {

	--tripp-color-black-rgb: 18, 23, 26;

	--tripp-color-white-rgb: 255, 255, 255;

	--tripp-color-black: rgb(var(--tripp-color-black-rgb));

	--tripp-color-white: rgb(var(--tripp-color-white-rgb));

	--tripp-color-primary-rgb: 131, 209, 220;

	--tripp-color-on-primary-rgb: var(--tripp-color-black-rgb);

	--tripp-color-secondary-rgb: 197, 248, 140;

	--tripp-color-on-secondary-rgb: var(--tripp-color-black-rgb);

	--tripp-color-header: rgba(var(--tripp-color-on-surface-rgb), 0.03);

	--tripp-color-on-header: rgba(var(--tripp-color-on-surface-rgb), 0.75);

	--tripp-color-background-rgb: 245, 248, 249;

	--tripp-color-on-background-rgb: var(--tripp-color-black-rgb);

	--tripp-color-surface-rgb: var(--tripp-color-white-rgb);

	--tripp-color-on-surface-rgb: var(--tripp-color-black-rgb);

	--tripp-color-menu-rgb: var(--tripp-color-surface-rgb);

	--tripp-color-on-menu-rgb: var(--tripp-color-on-surface-rgb);

	--tripp-color-red-rgb: 237, 79, 76;

	--tripp-color-alert: #fa656b;

	--tripp-color-info: #3a784a;

	/* Override WordPress generated preset colors */

	--wp--preset--color--surface: rgb(var(--tripp-color-surface-rgb));

	--wp--preset--color--on-surface: rgb(var(--tripp-color-on-surface-rgb));

	--wp--preset--color--grey: rgba(var(--tripp-color-on-surface-rgb), 0.6);

	/* Override WordPress generated preset shadow colors */

	--wp--preset--shadow--natural: 6px 6px 9px rgba(var(--tripp-color-on-surface-rgb), 0.2);

	--wp--preset--shadow--deep: 12px 12px 50px rgba(var(--tripp-color-on-surface-rgb), 0.4);

	--wp--preset--shadow--sharp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 0.2);

	--wp--preset--shadow--outlined: 6px 6px 0 -3px rgb(var(--tripp-color-background-rgb)), 6px 6px 0 rgb(var(--tripp-color-on-surface-rgb));

	--wp--preset--shadow--crisp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 1);
}

/* Dark Scheme */

.has-scheme-dark,
.flext-has-scheme-dark {

	--tripp-color-black-rgb: 30, 30, 30;

	--tripp-color-white-rgb: 245, 245, 245;

	--tripp-color-header: rgba(var(--tripp-color-on-surface-rgb), 0.02);

	--tripp-color-on-header: rgb(var(--tripp-color-on-surface-rgb));

	--tripp-color-background-rgb: 18, 18, 18;

	--tripp-color-on-background-rgb: var(--tripp-color-white-rgb);

	--tripp-color-surface-rgb: var(--tripp-color-black-rgb);

	--tripp-color-on-surface-rgb: var(--tripp-color-white-rgb);

	--tripp-color-menu-rgb: var(--tripp-color-surface-rgb);

	--tripp-color-on-menu-rgb: var(--tripp-color-on-surface-rgb);

	--tripp-color-black: rgb(var(--tripp-color-black-rgb));

	--tripp-color-white: rgb(var(--tripp-color-white-rgb));

	--tripp-color-alert: #d84f54;

	--tripp-color-info: #0c0;

	/* Override WordPress generated preset colors */

	--wp--preset--color--surface: rgb(var(--tripp-color-surface-rgb));

	--wp--preset--color--on-surface: rgb(var(--tripp-color-on-surface-rgb));

	--wp--preset--color--grey: rgba(var(--tripp-color-on-surface-rgb), 0.6);

	/* Override WordPress generated preset shadow colors */

	--wp--preset--shadow--natural: 6px 6px 9px rgba(var(--tripp-color-on-surface-rgb), 0.2);

	--wp--preset--shadow--deep: 12px 12px 50px rgba(var(--tripp-color-on-surface-rgb), 0.4);

	--wp--preset--shadow--sharp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 0.2);

	--wp--preset--shadow--outlined: 6px 6px 0 -3px rgb(var(--tripp-color-background-rgb)), 6px 6px 0 rgb(var(--tripp-color-on-surface-rgb));

	--wp--preset--shadow--crisp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 1);
}

/* stylelint-enable at-rule-no-unknown */

:root {

	/* Typography */
	--tripp-font-primary: "Roboto Slab", "Helvetica", "Arial", sans-serif;
	--tripp-font-secondary: -apple-system, blinkmacsystemfont, "Inter", "Segoe UI", helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	--tripp-font-highlight: "Caveat", serif;
	--tripp-font-monospace: "Cutive Mono", monospace;

	--tripp-font-size-base: 1.6rem;
	--tripp-font-size-xs: 1.2rem;
	--tripp-font-size-sm: 1.4rem;
	--tripp-font-size-md: 1.8rem;
	--tripp-font-size-lg: 2rem;
	--tripp-font-size-xl: 2.6rem;
	--tripp-font-size-xxl: 3.2rem;
	--tripp-font-size-xxxl: 3.6rem;
	--tripp-font-size-highlight: var(--tripp-font-size-base);

	/* Headings */
	--tripp-font-size-h1: var(--tripp-font-size-xxl);
	--tripp-font-size-h2: 2.8rem;
	--tripp-font-size-h3: 2.4rem;
	--tripp-font-size-h4: 2.2rem;
	--tripp-font-size-h5: var(--tripp-font-size-lg);
	--tripp-font-size-h6: var(--tripp-font-size-md);

	/* Header */
	--tripp-header-menu-height: 6.5rem;
	--tripp-header-menu-gap: 6.5rem;
	--tripp-admin-bar-height: 0px; /* stylelint-disable-line length-zero-no-unit -- A unit is required, unitless (0) is not supported in calc(). */

	/* Spacing */
	--tripp-spacing-xs: 1.5rem;
	--tripp-spacing-sm: 2rem;
	--tripp-spacing-md: 3rem;
	--tripp-spacing-lg: 4rem;
	--tripp-spacing-horizontal: 2rem;
	--tripp-spacing-vertical: 4rem;
	--tripp-alignright-margin: 0;
	--tripp-alignleft-margin: 0;

	/* Content */
	--tripp-content-width: 78rem;
	--tripp-wide-width: 129rem;
	--tripp-full-width: 140rem;
	--tripp-sidebar-width: 100%;

	/* Grid */
	--tripp-grid-columns: 1;
	--tripp-grid-gap: var(--tripp-spacing-md);

	/* Misc */
	--tripp-scrollbar-width: 0;
	--tripp-transition-ease: cubic-bezier(0.46, 0.03, 0.52, 0.96);
	--tripp-transition-delay: 0.1s;

}

/* Text Mode */

.has-text-mode-light {
	--tripp-color-on-surface-rgb: 245, 245, 245;
	--tripp-color-on-header: rgb(var(--tripp-color-on-surface-rgb));
}

.has-text-mode-dark {
	--tripp-color-on-surface-rgb: 17, 17, 17;
	--tripp-color-on-header: rgba(var(--tripp-color-on-surface-rgb), 0.75);
}

.admin-bar {
	--tripp-admin-bar-height: 46px;
}

.desktop-menu {
	--tripp-header-menu-height: 9.5rem;
	--tripp-header-menu-gap: 9.5rem;
}

.desktop-menu.centered-menu {
	--tripp-header-menu-height: 15rem;
	--tripp-header-menu-gap: 15rem;
}

.transparent-menu,
.desktop-menu.centered-menu.transparent-menu {
	--tripp-header-menu-gap: 0px; /* stylelint-disable-line length-zero-no-unit -- A unit is required, unitless (0) is not supported in calc(). */
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/

@font-face {
	font-family: tripp;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/tripp.woff) format("woff");
}

[class^="tripp-ico-"]::before,
[class*=" tripp-ico-"]::before {
	display: inline-block;
	font-family: tripp, sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	margin-top: 1px;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 1em;
}

.tripp-ico-onbackorder::before {
	content: "\e890";
}

.tripp-ico-calendar::before {
	content: "\e229";
}

.tripp-ico-update::before {
	content: "\e228";
}

.tripp-ico-protect::before {
	content: "\e225";
}

.tripp-ico-sortby::before {
	content: "\e224";
}

.tripp-ico-wavy::before {
	content: "\e223";
}

.tripp-ico-download::before {
	content: "\e222";
}

.tripp-ico-timer::before {
	content: "\e221";
}

.tripp-ico-hourglass::before {
	content: "\e226";
}

.closed-comments::before {
	content: "\e227";
}

.tripp-ico-eye-hide::before {
	content: "\e220";
}

.tripp-ico-ok-circle::before {
	content: "\e219";
}

.tripp-ico-info::before {
	content: "\e218";
}

.tripp-ico-attention::before {
	content: "\e217";
}

.tripp-ico-link::before {
	content: "\e216";
}

.tripp-ico-artical::before {
	content: "\e215";
}

.tripp-ico-wavy-line::before {
	content: "\e214";
}

.tripp-ico-title-za::before {
	content: "\e213";
}

.tripp-ico-title::before {
	content: "\e212";
}

.tripp-ico-date::before {
	content: "\e211";
}

.tripp-ico-date-new::before {
	content: "\e210";
}

.tripp-ico-cancel::before {
	content: "\e209";
}

.tripp-ico-quotes::before {
	content: "\e208";
}

.tripp-ico-location::before {
	content: "\e207";
}

.tripp-ico-coupon::before {
	content: "\e206";
}

.tripp-ico-share::before {
	content: "\e205";
}

.tripp-ico-comment::before {
	content: "\e204";
}

.tripp-ico-eye::before {
	content: "\e203";
}

.tripp-ico-folder::before {
	content: "\e202";
}

.tripp-ico-list::before {
	content: "\e833";
}

.tripp-ico-filter::before {
	content: "\e816";
}

.tripp-ico-light::before {
	content: "\e814";
}

.tripp-ico-dark::before {
	content: "\e815";
}

.tripp-ico-facebook::before {
	content: "\e811";
}

.tripp-ico-pinterest::before {
	content: "\e812";
}

.tripp-ico-twitter::before {
	content: "\e813";
}

.tripp-ico-whatsapp::before {
	content: "\e810";
}

.tripp-ico-like::before {
	content: "\e825";
}

.tripp-ico-unlike::before {
	content: "\e826";
}

.tripp-ico-stock::before {
	content: "\e889";
}

.tripp-ico-outofstock::before {
	content: "\e886";
}

.tripp-ico-mail::before {
	content: "\e888";
}

.tripp-ico-logout::before {
	content: "\e887";
}

.tripp-ico-user::before {
	content: "\e885";
}

.tripp-ico-login::before {
	content: "\e882";
}

.tripp-ico-delivery::before {
	content: "\e881";
}

.tripp-ico-search::before {
	content: "\e82c";
}

.tripp-ico-check::before {
	content: "\e831";
}

.tripp-ico-sticky-post::before {
	content: "\e100";
}

.tripp-ico-reply::before {
	content: "\e802";
}

.tripp-ico-globe::before {
	content: "\e921";
}

.tripp-ico-tag::before {
	content: "\e200";
}

.tripp-ico-detail::before {
	content: "\e201";
}

.tripp-ico-spinner::before {
	content: "\e91f";
}

.tripp-ico-resize::before {
	content: "\e837";
}

.tripp-ico-zoom-out::before {
	content: "\e92c";
}

.tripp-ico-play::before {
	content: "\e91b";
}

.tripp-ico-back::before {
	content: "\e803";
}

.tripp-ico-resize-full::before {
	content: "\e836";
}

.tripp-ico-archive::before {
	content: "\e85e";
}

.tripp-ico-arrow-down::before {
	content: "\e90e";
}

.tripp-ico-arrow-left::before {
	content: "\e912";
}

.tripp-ico-arrow-right::before {
	content: "\e913";
}

.tripp-ico-arrow-up::before {
	content: "\e905";
}

.tripp-ico-author::before {
	content: "\e916";
}

.tripp-ico-bookmark::before {
	content: "\e841";
}

.tripp-ico-down::before {
	content: "\e845";
}

.tripp-ico-left::before {
	content: "\e842";
}

.tripp-ico-right::before {
	content: "\e843";
}

.tripp-ico-up::before {
	content: "\e844";
}

.tripp-ico-more::before {
	content: "\e840";
}

.tripp-ico-pencil::before {
	content: "\e80a";
}

.tripp-ico-setting::before {
	content: "\e82f";
}

.tripp-ico-shopping-bag::before {
	content: "\e82d";
}

.tripp-ico-star::before {
	content: "\e806";
}

.tripp-ico-star-empty::before {
	content: "\e807";
}

.tripp-ico-half::before {
	content: "\e808";
}

.tripp-ico-trash::before {
	content: "\e599";
}

.tripp-ico-zoom-in::before {
	content: "\e91c";
}

.tripp-ico-cart::before {
	content: "\e848";
}

.tripp-ico-pause::before {
	content: "\e904";
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

/* Rock Salt */

@font-face {
	font-family: Caveat;
	font-style: normal;
	font-weight: 400;
	src:
		local(""),
		url(../fonts/caveat-regular.woff2) format("woff2"),
		url(../fonts/caveat-regular.woff) format("woff");
}

@font-face {
	font-family: Caveat;
	font-style: normal;
	font-weight: 700;
	src:
		local(""),
		url(../fonts/caveat-700.woff2) format("woff2"),
		url(../fonts/caveat-700.woff) format("woff");
}

/* Cutive Mono */

@font-face {
	font-family: "Cutive Mono";
	font-style: normal;
	font-weight: 400;
	src:
		local(""),
		url(../fonts/cutive-mono-regular.woff2) format("woff2"),
		url(../fonts/cutive-mono-regular.woff) format("woff");
}

/* Roboto Slab */

@font-face {
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 300;
	src:
		local(""),
		url(../fonts/roboto-slab-300.woff2) format("woff2"),
		url(../fonts/roboto-slab-300.woff) format("woff");
}

@font-face {
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 400;
	src:
		local(""),
		url(../fonts/roboto-slab-regular.woff2) format("woff2"),
		url(../fonts/roboto-slab-regular.woff) format("woff");
}

@font-face {
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 600;
	src:
		local(""),
		url(../fonts/roboto-slab-600.woff2) format("woff2"),
		url(../fonts/roboto-slab-600.woff) format("woff");
}

@font-face {
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 700;
	src:
		local(""),
		url(../fonts/roboto-slab-700.woff2) format("woff2"),
		url(../fonts/roboto-slab-700.woff) format("woff");
}

/* Inter */

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 300;
	src:
		local(""),
		url(../fonts/inter-300.woff2) format("woff2"),
		url(../fonts/inter-300.woff) format("woff");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	src:
		local(""),
		url(../fonts/inter-regular.woff2) format("woff2"),
		url(../fonts/inter-regular.woff) format("woff");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 600;
	src:
		local(""),
		url(../fonts/inter-600.woff2) format("woff2"),
		url(../fonts/inter-600.woff) format("woff");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 700;
	src:
		local(""),
		url(../fonts/inter-700.woff2) format("woff2"),
		url(../fonts/inter-700.woff) format("woff");
}

body {
	font-family: var(--tripp-font-secondary);
	font-size: var(--tripp-font-size-base);
	line-height: 1.618;
	-webkit-font-smoothing: antialiased;
}

a {
	color: rgb(var(--tripp-color-primary-rgb));
	text-decoration: none;
	transition: color 0.3s var(--tripp-transition-ease);
	outline: none;
}

a:hover,
a:focus {
	color: rgb(var(--tripp-color-on-surface-rgb));
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: rgb(var(--tripp-color-on-surface-rgb));
	font-family: var(--tripp-font-primary);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
	margin: 0 0 1.5rem;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	font-weight: 400;
}

h1 {
	font-size: var(--tripp-font-size-h1);
}

h2 {
	font-size: var(--tripp-font-size-h2);
}

h3 {
	font-size: var(--tripp-font-size-h3);
}

h4 {
	font-size: var(--tripp-font-size-h4);
}

h5 {
	font-size: var(--tripp-font-size-h5);
}

h6 {
	font-size: var(--tripp-font-size-h6);
}

p {
	margin: 1.5rem 0 0 0;
}

cite,
dfn,
em,
i {
	font-style: italic;
}

blockquote {
	clear: both;
	font-family: var(--tripp-font-primary);
	font-size: var(--tripp-font-size-lg);
	font-style: normal;
	line-height: 1.4;
	margin: 0;
	padding-top: 2rem;
	position: relative;
	z-index: 0;
}

blockquote::before {
	content: "\e208";
	font-family: tripp, sans-serif;
	font-size: 4rem;
	font-style: normal;
	line-height: 0.6;
	z-index: 0;
}

blockquote cite,
blockquote footer {
	color: inherit;
	display: block;
	font-family: var(--tripp-font-secondary);
	font-size: var(--tripp-font-size-base);
	font-style: normal;
	font-weight: 400;
	margin-top: 2rem;
	opacity: 0.8;
}

blockquote cite em {
	font-family: var(--tripp-font-secondary);
	font-style: normal;
}

address {
	margin: 0 0 1.5rem;
}

code,
kbd,
samp,
tt,
var {
	font-family: var(--tripp-font-monospace);
	font-size: var(--tripp-font-size-base);
}

code {
	color: inherit;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

ins {
	background: rgba(var(--tripp-color-primary-rgb), 0.3);
	padding: 0 0.2rem;
	text-decoration: none;
}

mark {
	color: inherit;
	text-decoration: none;
}

mark.has-inline-color {
	font-family: var(--tripp-font-highlight);
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

form {
	position: relative;
}

input:not(input:-webkit-autofill)::-webkit-contacts-auto-fill-button {
	background-color: rgb(var(--annne-color-on-surface-rgb));
}

/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/

[type="reset"],
[type="submit"],
[type="submit"].is-primary {
	background: linear-gradient(45deg, rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-secondary-rgb))) border-box;
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 400% 100%;
	border: none;
	border-radius: 0.8rem;
	color: rgb(var(--tripp-color-on-primary-rgb));
	cursor: pointer;
	font-size: var(--tripp-font-size-sm);
	font-weight: 600;
	height: 4rem;
	letter-spacing: 0.125rem;
	line-height: 1.5;
	margin: 0;
	outline: none;
	overflow: hidden;
	padding: 0 4rem;
	text-align: center;
	text-overflow: ellipsis;
	text-transform: uppercase;
	transition: background-position 0.3s var(--tripp-transition-ease);
	vertical-align: middle;
	white-space: nowrap;
}

[type="reset"]:hover,
[type="submit"]:hover,
[type="reset"]:focus,
[type="submit"]:focus,
[type="reset"]:active,
[type="submit"]:active,
[type="submit"].is-primary:hover,
[type="submit"].is-primary:active {
	background-position: 100% 0;
}

button,
.tripp-button {
	align-items: center;
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	line-height: 1.5;
	outline: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
	position: relative;
	text-overflow: ellipsis;
	z-index: 1;
}

[type="reset"]:disabled,
[type="submit"]:disabled,
button:disabled,
.tripp-button:disabled {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.tripp-button > * {
	display: inline-block;
	line-height: 1;
	margin: 0.25rem;
	position: relative;
	white-space: nowrap;
	z-index: 1;
}

.tripp-outlined {
	border: 1px solid rgba(var(--tripp-color-on-surface-rgb), 0.3);
	color: inherit;
	padding: 0.5rem 1.5rem;
	transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.tripp-outlined:hover {
	background-color: rgb(var(--tripp-color-on-surface-rgb));
	color: rgb(var(--tripp-color-surface-rgb));
}

.tripp-outlined.is-primary {
	border-color: rgba(var(--tripp-color-primary-rgb), 0.3);
}

.tripp-outlined.is-primary:hover {
	border-color: rgba(var(--tripp-color-primary-rgb), 0.3);
	color: rgb(var(--tripp-color-on-primary-rgb));
}

.tripp-rounded {
	border-radius: 0.8rem;
}

.tripp-unelevated {
	background: rgb(var(--tripp-color-on-surface-rgb));
	color: rgb(var(--tripp-color-surface-rgb));
}

.tripp-unelevated.is-primary:hover {
	background: rgba(var(--tripp-color-primary-rgb), 0.5);
	color: rgb(var(--tripp-color-on-primary-rgb));
}

/*--------------------------------------------------------------
## Icon Button
--------------------------------------------------------------*/

.tripp-icon-button {
	align-items: center;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
	display: inline-flex;
	flex-wrap: wrap;
	font-size: 140%;
	height: 5rem;
	justify-content: center;
	outline: none;
	padding: 1rem;
	position: relative;
	text-decoration: none;
	text-align: center;
	transition: color 0.25s;
	-webkit-user-select: none;
	        user-select: none;
	width: 5rem;
}

.tripp-icon-button:hover,
.tripp-icon-button:focus {
	color: rgb(var(--tripp-color-on-secondary-rgb));
}

.tripp-icon-button::before {
	background: rgb(var(--tripp-color-secondary-rgb));
	content: "";
	height: 100%;
	opacity: 0;
	position: absolute;
	transition: opacity 0.25s;
	width: 100%;
}

.tripp-icon-button:hover::before,
.tripp-icon-button:focus::before {
	opacity: 1;
}

.tripp-icon-button:active {
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.tripp-icon-button i {
	line-height: 0;
	position: relative;
	z-index: 5;
}

/*--------------------------------------------------------------
## Checkbox & Radio Button
--------------------------------------------------------------*/

input[type="checkbox"],
input[type="radio"] {
	appearance: none;
	background: rgb(var(--tripp-color-surface-rgb));
	border: 1px solid rgba(var(--tripp-color-on-surface-rgb), 0.15);
	border-radius: 0.5rem;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 1.8rem;
	line-height: 1.8rem;
	margin: 0 0.6rem 0 0;
	outline: none;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 1.8rem;
	transition: background-color 0.25s, border-color 0.25s;
}

input[type="radio"] {
	border-radius: 50%;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	border-color: rgb(var(--tripp-color-on-surface-rgb));
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
	background: rgb(var(--tripp-color-on-surface-rgb));
	border-color: rgb(var(--tripp-color-on-surface-rgb));
}

input[type="checkbox"]:checked::before {
	color: rgb(var(--tripp-color-surface-rgb));
	content: "\e831";
	display: inline-block;
	font-family: tripp, sans-serif;
	font-size: var(--tripp-font-size-sm);
	height: 100%;
	margin: 0;
	vertical-align: top;
	width: 100%;
}

input[type="radio"]:checked::before {
	border: 3px solid rgb(var(--tripp-color-surface-rgb));
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 100%;
	margin: 0;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/*--------------------------------------------------------------
## Text field
--------------------------------------------------------------*/

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	appearance: none;
	background: rgb(var(--tripp-color-surface-rgb));
	border: 1px solid rgba(var(--tripp-color-on-surface-rgb), 0.15);
	border-radius: 0.8rem;
	box-shadow: none;
	box-sizing: border-box;
	color: inherit;
	font-size: var(--tripp-font-size-base);
	font-weight: 400;
	height: 4rem;
	letter-spacing: 0.04rem;
	line-height: 1.5;
	margin: 0;
	padding: 0.5rem 1rem;
	transition: border-color 0.25s;
	outline: none;
	width: 100%;
}

textarea {
	border-radius: 0.8rem;
	border-width: 1px;
	padding: 1rem;
	resize: vertical;
	height: auto;
}

label {
	display: inline-block;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

input[type="text"]::-ms-clear {
	display: none;
	height: 0;
	width: 0;
}

input[type="text"]::-ms-reveal {
	display: none;
	height: 0;
	width: 0;
}

input[type="search"] {
	background: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

input[type="range"] {
	width: 100%;
}

/* Removes the clear button from date inputs */

input[type="date"]::-webkit-clear-button {
	display: none;
}

/* Removes the spin button */

input[type="date"]::-webkit-inner-spin-button {
	display: none;
}

input[type="file"]::file-selector-button {
	border: none;
	background-image: linear-gradient(45deg, rgb(var(--tripp-color-on-surface-rgb)), rgb(var(--tripp-color-on-surface-rgb)), rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-secondary-rgb)));
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 400% 100%;
	border-radius: 0.8rem;
	color: rgb(var(--tripp-color-surface-rgb));
	cursor: pointer;
	margin-right: 1.5rem;
	padding: 0.5rem 1.5rem;
	transition: background-position 0.3s var(--tripp-transition-ease);
}

input[type="file"]::file-selector-button:hover {
	background-position: 100% 0;
	color: rgb(var(--tripp-color-on-primary-rgb));
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: rgba(var(--tripp-color-on-surface-rgb), 0.5);
}

::placeholder {
	color: rgba(var(--tripp-color-on-surface-rgb), 0.6);
}

/*--------------------------------------------------------------
## Select
--------------------------------------------------------------*/

select {
	appearance: none;
	background-color: rgb(var(--tripp-color-surface-rgb));
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNS41cHgiIGhlaWdodD0iNi45OTNweCIgdmlld0JveD0iMCAxMjMyLjE3NCAxNS41IDYuOTkzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMTIzMi4xNzQgMTUuNSA2Ljk5MyINCgkgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cG9seWdvbiBmaWxsPSIjMDMwMTA0IiBwb2ludHM9IjEwLDEyMzIuMTc1IDAsMTIzMi4xNzQgNSwxMjM5LjEzIAkiLz4NCjwvZz4NCjwvc3ZnPg0K);
	background-position: right 1rem center;
	background-repeat: no-repeat;
	border: 1px solid rgba(var(--tripp-color-on-surface-rgb), 0.15);
	border-radius: 0.8rem;
	color: rgb(var(--tripp-color-on-surface-rgb));
	cursor: pointer;
	height: 4rem;
	margin: 0;
	max-width: 100%;
	outline: none;
	overflow: hidden;
	padding: 0.5rem 3rem 0.5rem 1.5rem;
	position: relative;
	text-indent: 0.001px;
	text-overflow: ellipsis;
	transition: border-color 0.25s;
}

.has-scheme-dark select,
.flext-has-scheme-dark select {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDE1LjUgNyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTUuNSA3OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxnPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIxMCwwIDAsMCA1LDcgCSIvPgo8L2c+Cjwvc3ZnPgo=);
	background-size: 16px;
}

select:hover,
select:focus {
	border-color: rgba(var(--tripp-color-on-surface-rgb), 0.5);
}

select option {
	background-color: rgb(var(--tripp-color-surface-rgb));
	color: rgb(var(--tripp-color-on-surface-rgb));
}

select[multiple="multiple"] {
	background-image: none;
	height: auto;
	padding: 0;
}

select[multiple="multiple"] option {
	background-color: transparent;
	color: inherit;
	padding: 0.5rem 1rem;
}

select[multiple="multiple"] option:checked {
	background-color: rgba(var(--tripp-color-on-surface-rgb), 0.1);
}

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/

body.login {
	background: rgba(var(--tripp-color-background-rgb), 0.9);
	color: rgb(var(--tripp-color-on-surface-rgb));
}

body.interim-login {
	padding: var(--tripp-spacing-horizontal);
}

.tripp-login-header {
	background: rgb(131, 209, 220);
	background-image: url(../images/login-mobile.png), linear-gradient(to top, rgba(244, 252, 253) 40%, rgb(131, 209, 220) 100%);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	color: rgb(var(--tripp-color-on-surface-rgb));
	padding: var(--tripp-spacing-vertical) var(--tripp-spacing-horizontal);
}

.has-scheme-dark .tripp-login-header {
	background-color: #0d1929;
	background-image: url(../images/login-dark-mobile.jpg);
}

.interim-login .tripp-login-header {
	display: none;
}

.tripp-login-header h1 {
	color: inherit;
	margin: 0 auto;
	max-width: 50rem;
	padding: 0 var(--tripp-spacing-horizontal);
	position: relative;
	text-align: left;
	z-index: 1;
}

.tripp-login-header h1 .site-title,
.tripp-login-header h1 .site-title a {
	color: inherit;
}

.tripp-login-header p {
	position: relative;
	z-index: 1;
}

/* Site Logo */

.site-logo {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	height: 100%;
	margin: 0 calc(var(--tripp-spacing-horizontal) / 2) 0 0;
	max-width: 10rem;
	position: relative;
	transition: opacity 0.3s var(--tripp-transition-ease), visibility 0.3s var(--tripp-transition-ease);
	visibility: visible;
	z-index: 9999;
}

.site-logo .custom-logo-link,
.site-logo .light-logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	line-height: 0;
	padding: 1rem 0;
	position: relative;
	transition: opacity 0.3s var(--tripp-transition-ease), visibility 0.3s var(--tripp-transition-ease);
	width: auto;
	z-index: 5;
}

.site-logo .light-logo-link {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	visibility: hidden;
}

.site-logo img {
	margin: auto 0;
	max-height: 100%;
	width: auto;
}

.has-scheme-dark .site-logo .custom-logo-link {
	opacity: 0;
	visibility: hidden;
}

.has-scheme-dark .site-logo .light-logo-link {
	opacity: 1;
	visibility: visible;
}

.login.has-scheme-dark form .input,
.login.has-scheme-dark input[type="text"],
.login.has-scheme-dark form input[type="checkbox"] {
	background: transparent;
}

/*--------------------------------------------------------------
# Login Form
--------------------------------------------------------------*/

a:focus {
	box-shadow: none;
}

#login {
	display: flex;
	flex-flow: row wrap;
	margin: 0 auto;
	max-width: 50rem;
	padding: var(--tripp-spacing-vertical) var(--tripp-spacing-horizontal);
	width: 100%;
}

.login h1 a {
	align-items: center;
	background-image: none;
	display: flex;
	flex-flow: row wrap;
	font-size: var(--tripp-font-size-h4);
	font-weight: 700;
	height: auto;
	margin: 0 0 var(--tripp-spacing-xs) 0;
	max-width: 100%;
	text-indent: 0;
	width: auto;
}

#login h1 {
	display: none;
}

/* stylelint-disable selector-id-pattern -- Ignore WP element ID */

.login #login_error {
	border-radius: 0.5rem;
	width: 100%;
}

.login #login_error,
.login .message,
.login .notice,
.login .success {
	background-color: rgb(var(--tripp-color-surface-rgb));
	border-left: 4px solid rgb(var(--tripp-color-primary-rgb));
	border-radius: 0.5rem;
	color: rgb(var(--tripp-color-on-surface-rgb));
	flex: 1 1 100%;
}

/* stylelint-enable selector-id-pattern */

.login .success {
	border-color: var(--tripp-color-jungle-green);
}

#login form {
	background: none;
	border: none;
	box-shadow: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.login label {
	font-size: var(--tripp-font-size-base);
	opacity: 0.6;
}

.login .tripp-login-wrapper form .button.button-large {
	align-items: center;
	background: linear-gradient(45deg, rgb(var(--tripp-color-on-surface-rgb)), rgb(var(--tripp-color-on-surface-rgb)), rgb(var(--tripp-color-secondary-rgb)), rgb(var(--tripp-color-primary-rgb))) border-box;
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 400% 100%;
	border: none;
	border-radius: 0.8rem;
	color: rgb(var(--tripp-color-surface-rgb));
	cursor: pointer;
	display: inline-flex;
	font-weight: 400;
	height: 4rem;
	justify-content: center;
	letter-spacing: 0.2rem;
	line-height: 1.5;
	margin: 0;
	outline: none;
	overflow: hidden;
	padding: 0 4rem;
	text-align: center;
	text-overflow: ellipsis;
	text-transform: uppercase;
	transition: background-position 0.3s var(--tripp-transition-ease), color 0.3s var(--tripp-transition-ease);
	vertical-align: middle;
	white-space: nowrap;
}

.login .tripp-login-wrapper form .button.button-large:hover {
	background-position: 100% 0;
	color: rgb(var(--tripp-color-on-primary-rgb));
}

.login .tripp-login-wrapper form .button.button-primary {
	background-image: linear-gradient(45deg, rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-primary-rgb)), rgb(var(--tripp-color-secondary-rgb)));
	background-position: 0% 0%;
	box-shadow: none;
	color: rgb(var(--tripp-color-on-primary-rgb));
	float: none;
}

.login .tripp-login-wrapper form .button.button-primary:hover {
	background-position: 100% 0;
	color: rgb(var(--tripp-color-on-primary-rgb));
}

.login form .input,
.login input[type="text"],
.login input[type="password"] {
	background: rgb(var(--tripp-color-surface-rgb));
	border-width: 1px;
	border-radius: 0.8rem;
	box-shadow: none;
	font-size: var(--tripp-font-size-base);
	height: 4rem;
	padding: 0.5rem 1rem;
}

.js.login input.password-input {
	padding-right: 3.6rem;
}

input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
	box-shadow: none;
}

.login .button.wp-hide-pw:focus {
	border: none;
	box-shadow: none;
}

.login .button.wp-hide-pw .dashicons {
	height: 2rem;
	width: 2rem;
}

.login .wp-pwd .wp-hide-pw span::before {
	color: rgb(var(--tripp-color-on-surface-rgb));
}

#login form p.forgetmenot {
	float: none;
	margin-bottom: 2.5rem;
	margin-top: 0.5rem;
}

#login form .forgetmenot label {
	margin-bottom: 0;
}

#login form p.submit {
	margin: 0 0 1.5rem;
}

#login form p.submit .button {
	font-size: var(--tripp-font-size-base);
	width: 100%;
}

.login #nav {
	color: transparent;
	display: flex;
	gap: 0.5rem;
	justify-content: space-between;
	flex: 0 0 auto;
	flex-flow: row nowrap;
	margin: 0;
	width: 100%;
}

.login #nav,
.login #backtoblog {
	font-size: var(--tripp-font-size-base);
	padding: 0;
}

.login #nav a {
	align-items: center;
	background-image: linear-gradient(45deg, rgb(var(--tripp-color-on-surface-rgb)), rgb(var(--tripp-color-on-surface-rgb)), rgb(var(--tripp-color-secondary-rgb)), rgb(var(--tripp-color-primary-rgb)));
	background-position: 0% 0%;
	background-size: 400% 100%;
	border-radius: 0.8rem;
	color: rgb(var(--tripp-color-surface-rgb));
	display: inline-flex;
	flex: 1 0 auto;
	height: 4rem;
	justify-content: center;
	margin: 0;
	padding: 0 1.5rem;
	transition: background-position 0.3s var(--tripp-transition-ease), color 0.3s var(--tripp-transition-ease);
}

.login #nav a:hover {
	background-position: 100% 0;
	color: rgb(var(--tripp-color-on-primary-rgb));
	text-decoration: none;

}

.interim-login #loginform input[type="checkbox"] {
	height: 1.8rem;
	width: 1.8rem;
}

.login form input[type="checkbox"]:checked,
.login form input[type="radio"]:checked {
	background: rgb(var(--tripp-color-on-surface-rgb));
	border-color: rgb(var(--tripp-color-on-surface-rgb));
}

.interim-login #loginform input[type="checkbox"]:checked::before {
	margin: 0;
}

.login #backtoblog,
.login .privacy-policy-page-link {
	flex: 1 1 50%;
	margin: var(--tripp-spacing-lg) 0 0;
	max-width: 50%;
}

.login .privacy-policy-page-link {
	text-align: right;
}

.login #backtoblog a,
.login .privacy-policy-page-link a {
	color: rgb(var(--tripp-color-on-surface-rgb));
	transition: color 0.3s;
}

.login #backtoblog a:hover,
.login .privacy-policy-page-link a:hover {
	color: rgb(var(--tripp-color-primary-rgb));
}

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/

.login .language-switcher form select {
	border-radius: 0.5rem;
}

.login .language-switcher [type="submit"] {
	display: none;
}

@media (min-width: 576px) {

	:root {

		/* Content */
		--tripp-sidebar-width: 31rem;

	}
}

@media (min-width: 768px) {

	/* Variables */
	:root {

		/* Content */
		--tripp-sidebar-width: 33rem;

		/* Typography */
		--tripp-font-size-xxxl: 5vw;

		/* Spacing */
		--tripp-spacing-sm: 2.5rem;
		--tripp-spacing-md: 3.5rem;
		--tripp-spacing-lg: 4.5rem;
		--tripp-spacing-horizontal: 3rem;
		--tripp-spacing-vertical: 6rem;

		/* Grid */
		--tripp-grid-columns: 2;
	}

	/* Grid Columns */
	.has-2-columns {
		--tripp-grid-columns: 2;
	}
}

@media (min-width: 783px) {

	.admin-bar {
		--tripp-admin-bar-height: 32px;
	}
}

@media (min-width: 1024px) {

	/* Variables */
	:root {

		/* Content */
		--tripp-sidebar-width: 35rem;

		/* Typography */

		/* Headings */

		/* Spacing */
		--tripp-spacing-horizontal: 4rem;
		--tripp-spacing-vertical: 8rem;
		--tripp-alignright-margin: calc(0.5 * (100vw - var(--tripp-content-width)) - var(--tripp-spacing-horizontal));
		--tripp-alignleft-margin: calc(0.5 * (100vw - var(--tripp-content-width)) - var(--tripp-spacing-horizontal));

		/* Grid */
		--tripp-grid-columns: 3;

		/* Misc */
		--tripp-scrollbar-width: 0.6rem;
	}

	/* Grid Columns */
	.has-3-columns {
		--tripp-grid-columns: 3;
	}

	.has-4-columns,
	.has-5-columns {
		--tripp-grid-columns: 4;
	}

	/*--------------------------------------------------------------
	# Login Page
	--------------------------------------------------------------*/
	.tripp-login-wrapper {
		align-items: center;
		color: rgb(var(--tripp-color-on-surface-rgb));
		display: flex;
		height: 100%;
		padding: 0 0 0 var(--tripp-sidebar-width);
	}

	.interim-login .tripp-login-wrapper {
		padding-left: 0;
	}

	.tripp-login-header {
		background-image: url(../images/login.png), linear-gradient(to top, rgba(244, 252, 253) 40%, rgb(131, 209, 220) 100%);
		background-size: contain;
		bottom: 0;
		left: 0;
		padding: var(--tripp-spacing-horizontal);
		position: fixed;
		top: 0;
		width: var(--tripp-sidebar-width);
	}

	.has-scheme-dark .tripp-login-header {
		background-image: url(../images/login-dark.jpg);
	}

	.tripp-login-header h1 {
		margin: 0;
		max-width: none;
		padding: 0;
	}

	.tripp-login-header p {
		font-size: var(--tripp-font-size-h4);
	}

	/*--------------------------------------------------------------
	# Login Form
	--------------------------------------------------------------*/
	#login {
		max-width: 50rem;
	}
}

@media (min-width: 1200px) {

	/* Variables */
	:root {
		--tripp-sidebar-width: 42rem;

		/* Typography */
		--tripp-font-size-xxl: 3.4rem;
		--tripp-font-size-xxxl: 7rem;

		/* Headings */
		--tripp-font-size-h1: 3.8rem;
		--tripp-font-size-h2: 3rem;

		/* Spacing */
		--tripp-spacing-xs: 2rem;
		--tripp-spacing-sm: 3rem;
		--tripp-spacing-md: 4rem;
		--tripp-spacing-lg: 5rem;
		--tripp-spacing-horizontal: 6rem;
		--tripp-spacing-vertical: 9rem;
	}

	.has-5-columns {
		--tripp-grid-columns: 5;
	}

	.has-6-columns {
		--tripp-grid-columns: 6;
	}
}

@media (prefers-color-scheme: dark) {

	.has-scheme-auto {

		--tripp-color-black-rgb: 30, 30, 30;

		--tripp-color-white-rgb: 245, 245, 245;

		--tripp-color-header: rgba(var(--tripp-color-on-surface-rgb), 0.02);

		--tripp-color-on-header: rgb(var(--tripp-color-on-surface-rgb));

		--tripp-color-background-rgb: 18, 18, 18;

		--tripp-color-on-background-rgb: var(--tripp-color-white-rgb);

		--tripp-color-surface-rgb: var(--tripp-color-black-rgb);

		--tripp-color-on-surface-rgb: var(--tripp-color-white-rgb);

		--tripp-color-menu-rgb: var(--tripp-color-surface-rgb);

		--tripp-color-on-menu-rgb: var(--tripp-color-on-surface-rgb);

		--tripp-color-black: rgb(var(--tripp-color-black-rgb));

		--tripp-color-white: rgb(var(--tripp-color-white-rgb));

		--tripp-color-alert: #d84f54;

		--tripp-color-info: #0c0;

		/* Override WordPress generated preset colors */

		--wp--preset--color--surface: rgb(var(--tripp-color-surface-rgb));

		--wp--preset--color--on-surface: rgb(var(--tripp-color-on-surface-rgb));

		--wp--preset--color--grey: rgba(var(--tripp-color-on-surface-rgb), 0.6);

		/* Override WordPress generated preset shadow colors */

		--wp--preset--shadow--natural: 6px 6px 9px rgba(var(--tripp-color-on-surface-rgb), 0.2);

		--wp--preset--shadow--deep: 12px 12px 50px rgba(var(--tripp-color-on-surface-rgb), 0.4);

		--wp--preset--shadow--sharp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 0.2);

		--wp--preset--shadow--outlined: 6px 6px 0 -3px rgb(var(--tripp-color-background-rgb)), 6px 6px 0 rgb(var(--tripp-color-on-surface-rgb));

		--wp--preset--shadow--crisp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 1);
	}
}

@media (prefers-color-scheme: light) {

	.has-scheme-auto {

		--tripp-color-black-rgb: 18, 23, 26;

		--tripp-color-white-rgb: 255, 255, 255;

		--tripp-color-black: rgb(var(--tripp-color-black-rgb));

		--tripp-color-white: rgb(var(--tripp-color-white-rgb));

		--tripp-color-primary-rgb: 131, 209, 220;

		--tripp-color-on-primary-rgb: var(--tripp-color-black-rgb);

		--tripp-color-secondary-rgb: 197, 248, 140;

		--tripp-color-on-secondary-rgb: var(--tripp-color-black-rgb);

		--tripp-color-header: rgba(var(--tripp-color-on-surface-rgb), 0.03);

		--tripp-color-on-header: rgba(var(--tripp-color-on-surface-rgb), 0.75);

		--tripp-color-background-rgb: 245, 248, 249;

		--tripp-color-on-background-rgb: var(--tripp-color-black-rgb);

		--tripp-color-surface-rgb: var(--tripp-color-white-rgb);

		--tripp-color-on-surface-rgb: var(--tripp-color-black-rgb);

		--tripp-color-menu-rgb: var(--tripp-color-surface-rgb);

		--tripp-color-on-menu-rgb: var(--tripp-color-on-surface-rgb);

		--tripp-color-red-rgb: 237, 79, 76;

		--tripp-color-alert: #fa656b;

		--tripp-color-info: #3a784a;

		/* Override WordPress generated preset colors */

		--wp--preset--color--surface: rgb(var(--tripp-color-surface-rgb));

		--wp--preset--color--on-surface: rgb(var(--tripp-color-on-surface-rgb));

		--wp--preset--color--grey: rgba(var(--tripp-color-on-surface-rgb), 0.6);

		/* Override WordPress generated preset shadow colors */

		--wp--preset--shadow--natural: 6px 6px 9px rgba(var(--tripp-color-on-surface-rgb), 0.2);

		--wp--preset--shadow--deep: 12px 12px 50px rgba(var(--tripp-color-on-surface-rgb), 0.4);

		--wp--preset--shadow--sharp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 0.2);

		--wp--preset--shadow--outlined: 6px 6px 0 -3px rgb(var(--tripp-color-background-rgb)), 6px 6px 0 rgb(var(--tripp-color-on-surface-rgb));

		--wp--preset--shadow--crisp: 6px 6px 0 rgba(var(--tripp-color-on-surface-rgb), 1);
	}
}
