@charset "UTF-8";

html, body {
	font-family: Lato, sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100%;
	height: 100%;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #02303A;
}

table {
	font-size: 14px;
}

th, .th {
	font-size: 15px;
	font-weight: 500;
}

h1, h2, h3, h4, h5 {
	font-weight: 500;
}

h2, h3 {
	margin-top: 1.5em;
}

a {
	text-decoration: none;
	background-color: transparent;
	color: #1BA8CB;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a:hover {
	color: #35C1E4;
}

.button {
	box-sizing: border-box !important;
	color: #FFF !important;
	font-family: Lato, sans-serif;
	font-weight: 500;
	font-size: 14px;
	border-radius: 4px;
	padding: 0 16px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	min-width: 80px;
	background: linear-gradient(135deg, #069FCE 0%, #51CBBF 100%) no-repeat -1px -1px;
	background-size: 120% 120%;
	border: 1px solid transparent;
	display: inline-block;
}

.button:hover:not([disabled]), .button:focus:not([disabled]) {
	outline: none;
	background: linear-gradient(135deg, #06aadd 0%, #5dcfc3 100%) no-repeat -1px -1px;
	background-size: 120% 120%;
	color: #FFF;
	cursor: pointer;
}

.button[disabled] {
	cursor: not-allowed !important;
	opacity: 0.5 !important;
}

.button--smaller {
	vertical-align: middle;
	border-radius: 3px;
	font-weight: 500;
	padding: 3px 5px 3px 5px;
	text-align: center;
	min-width: 30px;
	font-size: 12px;
	height: 20px;
	line-height: 12px;
}

.button--secondary {
	color: #1BA8CB !important;
	border: 1px solid #1BA8CB;
	background: white;
}

.button--secondary:hover:not([disabled]), .button--secondary:focus:not([disabled]) {
	color: #1BA8CB;
	background: #F7F7F8;
}

.ge-checkbox {
	position: relative;
	cursor: pointer;
	padding-left: 25px;
	display: inline-block;
}

.ge-checkbox input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.ge-checkbox__indicator {
	position: absolute;
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
	line-height: 13px;
	border: 1px solid #d8d8d8;
	border-radius: 3px;
	display: grid;
	place-content: center;
}

.ge-checkbox__label {
	line-height: 20px;
}

.ge-checkbox:hover input ~ .ge-checkbox__indicator {
	background: #eee;
}

.ge-checkbox input[type=checkbox]:checked ~ .ge-checkbox__indicator {
	background: #1BA8CB;
}

.ge-checkbox input[type=checkbox]:checked ~ .ge-checkbox__indicator:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	color: white;
	padding: 2px;
}

.ge-checkbox input[type=radio]:checked ~ .ge-checkbox__indicator:before {
	content: "";
	width: 0.6em;
	height: 0.6em;
	border-radius: 50%;
	transform: scale(1);
	background-color: #1BA8CB;
}

.ge-checkbox input[type=radio] ~ .ge-checkbox__indicator:before {
	transform: scale(0);
}

.ge-checkbox:hover input:not([disabled]):checked ~ .ge-checkbox__indicator {
	background: #35C1E4;
}

.ge-checkbox.disabled {
	pointer-events: none;
}

.ge-checkbox input:disabled ~ .ge-checkbox__indicator {
	cursor: not-allowed;
	opacity: 0.6;
	background: #e6e6e6;
}

.ge-checkbox input:disabled ~ span {
	cursor: not-allowed;
	opacity: 0.6;
}

.ge-checkbox input:disabled:checked ~ .ge-checkbox__indicator {
	background: #1BA8CB;
}

.ge-checkbox--checkbox input:disabled ~ .ge-checkbox__indicator:after {
	border-color: #7b7b7b;
}

.ge-checkbox--radio .ge-checkbox__indicator {
	border-radius: 50%;
}

.ge-checkbox--radio .ge-checkbox__label {
	margin-right: 10px;
}

.ge-checkbox__description {
	display: block;
	color: #757575;
	margin-top: 5px;
	margin-bottom: 20px;
	margin-left: 25px;
}

.ge-checkbox--radio input:disabled ~ .ge-checkbox__indicator:after {
	background: #7b7b7b;
}

.ge-checkbox--readonly {
	cursor: auto;
	pointer-events: none;
}

.ge-checkbox--readonly:hover input:not([disabled]):checked ~ .ge-checkbox__indicator {
	background: #1BA8CB;
}

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	color: #999;
	border-top: 1px solid #edeeef;
	font-size: 12.5px;
	text-align: center;
	padding: 17px 0;
	background-color: white;
}

form {
	margin: 0;
}

input[disabled] {
	cursor: not-allowed !important;
}

input[disabled][type=text], input[disabled][type=password] {
	background-color: #F7F7F8 !important;
}

input[type=number], input[type=text], input[type=password], input[type=search], select {
	display: block;
	border: 1px solid #D6D9DB;
	border-radius: 3px;
	background-color: #fff;
	height: 28px;
	padding: 3px 5px;
	font-weight: 500;
	font-family: Lato, sans-serif;
	color: #02303A;
	margin-bottom: 1em;
	margin-right: 20px;
	font-size: 13px;
}

input[type=number]:focus, input[type=text]:focus, input[type=password]:focus, input[type=search]:focus, select:focus {
	outline: none;
	border: 1px solid #1BA8CB;
}

input[type=number].error, input[type=text].error, input[type=password].error, select.error {
	border-color: #FB2F08;
}

select[disabled] {
	background-color: #F7F7F8 !important;
	color: #999 !important;
}

input[type=submit] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.ge-form__label {
	display: block;
	margin-bottom: 10px;
}

.header {
	display: flex;
	position: fixed;
	width: 100%;
	background-color: #F7F7F8;
	height: 50px;
	line-height: 50px;
	margin-bottom: 4px;
	z-index: 50;
	align-items: center;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.header .header-link {
	padding-left: 20px;
	display: flex;
	flex-grow: 0;
	align-items: center;
	width: 205px;
}

.header .header-link .header-image {
	height: 24px;
	margin-left: 6px;
}

.header .header-link .header-name {
	margin-left: 4px;
	color: #02303A;
	font-size: 20px;
	white-space: nowrap;
	line-height: 17px;
	letter-spacing: -0.66px;
	align-self: flex-end;
}

.header .spacer {
	flex-grow: 1;
}

.header .WarningBanner.hidden {
	display: none;
}

.header .WarningBanner__message {
	display: inline-block;
	white-space: nowrap;
	background: #dead22;
	line-height: 26px;
	padding: 2px 0.7em;
	margin-right: 8px;
	border-radius: 4px;
	cursor: default;
}

.header .WarningBanner__message i.fal {
	padding-right: 6px;
}

.header .WarningBanner__message span.hidden {
	display: none;
}

.WarningBanner__tooltip {
	max-width: 450px;
}

.WarningBanner__tooltip p:first-of-type {
	margin-top: 0;
}

.WarningBanner__tooltip p:last-of-type {
	margin-bottom: 0;
}

#__modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

#__modal {
	background: #FFF;
	padding: 24px;
	border-radius: 8px;
	margin: auto auto;
	width: 500px;
}

#__modal .title {
	font-weight: bold;
	font-size: 16px;
}

#__modal .content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 24px 0;
	line-height: 1.5em;
}

#__modal .buttons {
	display: flex;
	flex-direction: row-reverse;
	gap: 16px;
}

#__modal .buttons input.destructive {
	background: #FC461E;
	color: white;
}

#__modal .buttons input.destructive:hover {
	background: #e42c03;
}

.error-header {
	display: inline-block;
	padding-top: 10px;
	padding-left: 24px;
	flex: 0 0 auto;
}

.section {
	padding-top: 70px;
	padding-bottom: 60px;
	text-align: center;
	flex: 1;
}

.section--error__message {
	margin-top: 50px;
	margin-bottom: 0;
	font-size: 46px;
	color: #FF4800;
	font-weight: 600;
	line-height: 120%;
}

.section--error__message-details {
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 24px;
	color: #FF4800;
	line-height: 120%;
}

.section--error__help-link {
	margin-top: 40px;
	font-size: 16px;
	line-height: 24px;
	color: #02303A;
}

#powerTip {
	cursor: default;
	background-color: white;
	border-radius: 6px;
	border: 1px solid #222;
	color: #222;
	display: none;
	margin-right: 1em;
	padding: 6px 12px;
	position: absolute;
	z-index: 2147483647;
	line-height: 20px;
}

#powerTip:before, #powerTip.s:after {
	content: attr(class) " ";
	position: absolute;
	height: 0;
	width: 0;
	text-indent: 100%;
	overflow: hidden;
}

#powerTip.s:before {
	top: -8px;
	left: 50%;
	margin-left: -10px;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom-color: inherit;
	border-bottom-style: solid;
	border-bottom-width: 8px;
}

#powerTip.s:after {
	top: -6px;
	left: 50%;
	margin-left: -8px;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom-color: white;
	border-bottom-style: solid;
	border-bottom-width: 6px;
}

*, *:after, *:before {
	box-sizing: border-box;
}

.hidden {
	display: none;
}

body:not(.show-focus-outlines) button:focus, body:not(.show-focus-outlines) [tabindex]:focus {
	outline: none;
}

body.page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#content {
	flex: 1 0 auto;
	display: flex;
	min-height: 100%;
	position: relative;
}

#main {
	padding: 50px 40px 60px 40px;
	margin: 0 auto;
	width: 700px;
}

abbr {
	text-decoration: none;
}

section#usage {
	margin: 0 0 1.5em;
}

section#usage p:last-of-type {
	margin-bottom: 0;
}

#msg {
	padding-left: 0.5em;
	padding-top: 0;
	vertical-align: middle;
	display: inline-block;
}

#msg.success {
	color: #00C489;
}

#msg.error {
	color: #FB2F08;
}

.msg {
	font-size: 14px;
	padding-left: 0.5em;
	font-weight: 500;
}

.msg.success {
	color: #00C489;
}

.msg.error {
	color: #FB2F08;
}

section#registration input[type=text], section#registration input[type=password] {
	width: 60%;
}

label {
	margin-top: 1.2em;
	font-weight: 500;
	display: block;
	font-family: Lato, sans-serif;
}

.explanation {
	font-size: 14px;
	color: #757575;
	margin: 0.5em 0 1em;
	line-height: 20px;
}

#status, #cache-state {
	line-height: 1.5em;
	font-weight: 500;
	font-size: 15px;
	margin-top: 0.5em;
}

#status, #storage-health {
	line-height: 1.5em;
	font-weight: 500;
	font-size: 15px;
	margin-top: 0.5em;
}

form#purge input[type=submit] {
	margin-top: 0.5em;
}

#status .connecting {
	font-weight: normal;
	color: #757575;
}

section.group {
	border-radius: 3px;
	padding: 0.25em 1em;
	margin-top: 2em;
	background-color: #F7F7F8;
	color: #02303A;
}

section.group  > :first-child {
	margin-top: 0.5em;
}

.error {
	color: #FB2F08;
}

.warning {
	color: #CB915D;
}

label.error {
	display: inline-block;
	margin-top: 0.25em;
}

.msg.error {
	padding-top: 0;
}

section.accordion .accordion-toggle {
	display: inline-block;
	font-size: 14px;
	margin-top: 0;
}

section.accordion .accordion-toggle:after {
	position: relative;
	display: inline-block;
	content: " ";
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjA0OCIgaGVpZ2h0PSIyMDQ4IiB2aWV3Qm94PSIwIDAgMjA0OCAyMDQ4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICA8cGF0aCBkPSJNMTUyMyA4NjRxMCAxMy0xMCAyM2wtNDY2IDQ2NnEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w1MC01MHExMC0xMCAyMy0xMHQyMyAxMGwzOTMgMzkzIDM5My0zOTNxMTAtMTAgMjMtMTB0MjMgMTBsNTAgNTBxMTAgMTAgMTAgMjN6IiBzdHlsZT0iZmlsbDogcmdiKDE1MywgMTUzLCAxNTMpOyIvPg0KPC9zdmc+');
	background-size: 1em 1em;
	top: 3px;
	height: 1em;
	width: 1em;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

section.accordion  > .accordion-toggle:first-child {
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

section.accordion  > .accordion-toggle:first-child:hover {
	color: #35C1E4;
}

section.accordion div.content {
	overflow: hidden;
	padding: 1em;
}

section.accordion div.content:first-child {
	margin-top: 0;
}

section.accordion div.content label:first-of-type {
	margin-top: 0;
}

section.accordion.collapsed .accordion-toggle:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

section.accordion.collapsed div.content {
	display: none;
}

#config form:not(:last-of-type) {
	margin-bottom: 2em;
}

#config form#targetCacheSize .ge-checkbox__label {
	width: 10em;
	display: inline-block;
}

#config form#targetCacheSize input[type=text] {
	display: inline-block;
}

#config form#targetCacheSize input[type=submit] {
	margin-top: 1em;
}

div#auth form#credentials table {
	border-collapse: separate;
	border-spacing: 0 0.75em;
}

div#auth form#credentials table tfoot tr {
	vertical-align: baseline;
}

div#auth form#credentials table th {
	text-align: left;
}

div#auth form#credentials table tr td:not(.delete) {
	min-width: 120px;
	margin-right: 0.5em;
}

div#auth form#credentials table tr td select, div#auth form#credentials table tr td input {
	margin: 0 0.5em 0 0;
}

div#auth form#credentials input[type=text], div#auth form#credentials input[type=password], div#auth form#credentials select {
	width: 95%;
}

div#auth #add-cred {
	padding-bottom: 0.75em;
	display: inline-block;
}

.ui-access-option {
	margin-bottom: 1em;
	padding: 0 0 1em 1em;
}

.ui-access-option label {
	cursor: pointer;
}

.ui-access-option p {
	color: #757575;
	line-height: 20px;
}

.ui-access-option p:first-of-type {
	margin-top: 0.75em;
}

.ui-access-option p:last-of-type {
	margin-bottom: 0;
}

.ui-access-option #user-pass-fields {
	margin-top: 1em;
}

.ui-access-option #user-pass-fields label {
	margin-bottom: 0.5em;
}

.ui-access-option #user-pass-fields input:last-of-type {
	margin-bottom: 0.5em;
}

.ui-access-control-change-restart-warning {
	margin-top: 0;
	margin-bottom: 1.5em;
	padding-top: 0;
}