:root {
    --ui-color-accent: #c4511c;

    --ui-color-primary: #c4511c; /* Nice green: #0e8a6c */
    --ui-color-secondary: #d07449;
    --ui-color-tertiary: #6a6f7d;

    --ui-button-primary: #c4511c;
    --ui-text-links: #0b5289;

    --primary_colour: #212b36;
    --accent_colour: #ff1b45;
    --content-width: 1280px;

    --border-radius: 3px;
    --border-radius-lg: 12px;
}

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

html {
    --bg: #ecf0f1;
    --text-color: #000000;
    --text-color-muted: #212b36;
    --text-accent: #000000;
}

.svg-rocket path {
    fill: var(--text-accent);
}

.button {
    background: #000;
    padding: 0.5rem 1.5rem;
    color: #fff;
    border-radius: 0.25rem;
}
.button [type="checkbox"] {
    position: absolute;
    left: -9999px;
}
.button [type="checkbox"] + span::before {
    content: "off";
}
.button [type="checkbox"]:checked + span::before {
    content: "on";
}

body {
    background-color: var(--bg);
    color: var(--text-color-muted);
    margin: 0;
    padding: 0;
    font-family: "Figtree", "Mulish", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol";
    /*
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    /**/
    font-weight: 400;
    font-style: normal;
    font-size: 16px;

    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}

h2,
h4,
h5,
h6 {
    font-family: "Montserrat";
}

ul {
    list-style: initial;
    padding: 0 0 16px 32px;
}
.sidebox ul,
ul.support-cards {
    list-style: none;
    padding: 0;
}

/**
 * Thin UI 1.1.1
 */
.col,
.grid {
    box-sizing: border-box;
}
.col-bottom,
.col-middle,
.col-top,
.grid {
    display: flex;
}
.svg-inline--fa,
svg:not(:root).svg-inline--fa {
    overflow: visible;
}
.fa-inverse,
.fad.fa-inverse {
    color: #fff;
}
.fa-fw,
.fa-li,
.thin-ui-notification-bar {
    text-align: center;
}
.grid {
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
}
.col {
    flex: 0 0 auto;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    min-width: 0;
    padding: 0;
}
.col-align-top {
    align-self: flex-start;
}
.col-align-bottom {
    align-self: flex-end;
}
.col-align-middle {
    align-self: center;
}
.col-top {
    justify-content: flex-start;
    flex-direction: column;
}
.col-bottom {
    justify-content: flex-end;
    flex-direction: column;
}
.col-middle {
    justify-content: center;
    flex-direction: column;
}
.fa-stack,
.svg-inline--fa,
.thin-ui-button {
    display: inline-block;
}
.grid-start {
    justify-content: flex-start;
}
.grid-center {
    justify-content: center;
}
.grid-end {
    justify-content: flex-end;
}
.grid-around {
    justify-content: space-around;
}
.grid-between {
    justify-content: space-between;
}
.grid-push {
    margin-bottom: 16px;
}
.col-first {
    order: -1;
}
.col-last {
    order: 1;
}
.grid-reverse {
    flex-direction: row-reverse;
}
.col-fixed {
    flex: initial;
}
.col-grow-2 {
    flex-grow: 2;
}
.col-grow-3 {
    flex-grow: 3;
}
.col-grow-4 {
    flex-grow: 4;
}
.col-grow-5 {
    flex-grow: 5;
}
.col-grow-6 {
    flex-grow: 6;
}
.col-grow-7 {
    flex-grow: 7;
}
.col-grow-8 {
    flex-grow: 8;
}
.col-grow-9 {
    flex-grow: 9;
}
.col-grow-10 {
    flex-grow: 10;
}
.col-grow-11 {
    flex-grow: 11;
}
.col-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}
.col-2 {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}
.col-3 {
    flex-basis: 25%;
    max-width: 25%;
}
.col-4 {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}
.col-5 {
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}
.col-6 {
    flex-basis: 50%;
    max-width: 50%;
}
.col-7 {
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}
.col-8 {
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}
.col-9 {
    flex-basis: 75%;
    max-width: 75%;
}
.col-10 {
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}
.col-11 {
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}
.col-12 {
    flex-basis: 100%;
    max-width: 100%;
}
@media only screen and (max-width: 480px) {
    .col-sm {
        flex: 100%;
        max-width: 100%;
    }
}
@media only screen and (max-width: 624px) {
    .col-md {
        flex: 100%;
        max-width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .col-lg {
        flex: 100%;
        max-width: 100%;
    }
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9 {
        flex-basis: 100%;
        max-width: 100%;
    }
}
:root {
    --thin-ui-primary: var(--ui-color-primary);
    --thin-ui-secondary: var(--ui-color-secondary);
    --thin-ui-tertiary: #67a0f4;
    --thin-ui-neutral: #a4b0be;
    --thin-ui-action: #4fae33;
    --thin-ui-warning: #ff7f00;
}
html {
    scroll-behavior: smooth;
}
.svg-inline--fa {
    font-size: inherit;
    height: 1em;
    vertical-align: -0.125em;
}
.svg-inline--fa.fa-lg {
    vertical-align: -0.225em;
}
.svg-inline--fa.fa-w-1 {
    width: 0.0625em;
}
.svg-inline--fa.fa-w-2 {
    width: 0.125em;
}
.svg-inline--fa.fa-w-3 {
    width: 0.1875em;
}
.svg-inline--fa.fa-w-4 {
    width: 0.25em;
}
.svg-inline--fa.fa-w-5 {
    width: 0.3125em;
}
.svg-inline--fa.fa-w-6 {
    width: 0.375em;
}
.svg-inline--fa.fa-w-7 {
    width: 0.4375em;
}
.svg-inline--fa.fa-w-8 {
    width: 0.5em;
}
.svg-inline--fa.fa-w-9 {
    width: 0.5625em;
}
.svg-inline--fa.fa-w-10 {
    width: 0.625em;
}
.svg-inline--fa.fa-w-11 {
    width: 0.6875em;
}
.svg-inline--fa.fa-w-12 {
    width: 0.75em;
}
.svg-inline--fa.fa-w-13 {
    width: 0.8125em;
}
.svg-inline--fa.fa-w-14 {
    width: 0.875em;
}
.svg-inline--fa.fa-w-15 {
    width: 0.9375em;
}
.svg-inline--fa.fa-w-16 {
    width: 1em;
}
.svg-inline--fa.fa-w-17 {
    width: 1.0625em;
}
.svg-inline--fa.fa-w-18 {
    width: 1.125em;
}
.svg-inline--fa.fa-w-19 {
    width: 1.1875em;
}
.svg-inline--fa.fa-w-20 {
    width: 1.25em;
}
.svg-inline--fa.fa-pull-left {
    margin-right: 0.3em;
    width: auto;
}
.svg-inline--fa.fa-pull-right {
    margin-left: 0.3em;
    width: auto;
}
.svg-inline--fa.fa-border {
    height: 1.5em;
}
.svg-inline--fa.fa-li {
    width: 2em;
}
.svg-inline--fa.fa-fw {
    width: 1.25em;
}
.binary-switch-container *,
.thin-ui-button {
    box-sizing: border-box;
}
.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}
.fa-xs {
    font-size: 0.75em;
}
.fa-sm {
    font-size: 0.875em;
}
.fa-1x {
    font-size: 1em;
}
.fa-2x {
    font-size: 2em;
}
.fa-3x {
    font-size: 3em;
}
.fa-4x {
    font-size: 4em;
}
.fa-5x {
    font-size: 5em;
}
.fa-6x {
    font-size: 6em;
}
.fa-7x {
    font-size: 7em;
}
.fa-8x {
    font-size: 8em;
}
.fa-9x {
    font-size: 9em;
}
.fa-10x {
    font-size: 10em;
}
.fa-fw {
    width: 1.25em;
}
.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}
.fa-ul > li {
    position: relative;
}
.fa-li {
    left: -2em;
    position: absolute;
    width: 2em;
    line-height: inherit;
}
.fa-border {
    border: 0.08em solid #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
    float: left;
}
.fa-pull-right {
    float: right;
}
.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: 0.3em;
}
.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: 0.3em;
}
.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.fa-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.fa-flip-vertical {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}
:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none;
}
.fa-stack {
    height: 2em;
    position: relative;
    width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.svg-inline--fa.fa-stack-1x {
    height: 1em;
    width: 1.25em;
}
.svg-inline--fa.fa-stack-2x {
    height: 2em;
    width: 2.5em;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
.svg-inline--fa .fa-primary {
    fill: var(--fa-primary-color, currentColor);
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa .fa-secondary {
    fill: var(--fa-secondary-color, currentColor);
    opacity: 0.4;
    opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa.fa-swap-opacity .fa-primary {
    opacity: 0.4;
    opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa.fa-swap-opacity .fa-secondary {
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
    fill: #000;
}
.thin-ui-form button,
.thin-ui-form input[type="text"],
.thin-ui-form input[type="reset"],
.thin-ui-form input[type="date"],
.thin-ui-form input[type="month"],
.thin-ui-form input[type="week"],
.thin-ui-form input[type="time"],
.thin-ui-form input[type="datetime"],
.thin-ui-form input[type="datetime-local"],
.thin-ui-form input[type="color"],
.thin-ui-form input[type="url"],
.thin-ui-form input[type="email"],
.thin-ui-form input[type="tel"],
.thin-ui-form input[type="search"],
.thin-ui-form input[type="number"],
.thin-ui-form input[type="file"],
.thin-ui-form input[type="password"],
.thin-ui-form input[type="submit"],
.thin-ui-form input[type="button"],
.thin-ui-form select,
.thin-ui-form textarea {
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 12px;
    margin: 2px;
    color: #000;
    border: 1px solid var(--thin-ui-neutral);
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    outline-color: var(--thin-ui-secondary);
    transition: 0.1s all ease-in-out;
}
.thin-ui-form button,
.thin-ui-form input[type="reset"],
.thin-ui-form input[type="file"],
.thin-ui-form input[type="submit"],
.thin-ui-form input[type="button"] {
    color: #000;
    background-color: var(--thin-ui-neutral);
    border: 0;
    cursor: pointer;
}
.thin-ui-form button:hover,
.thin-ui-form input:hover,
.thin-ui-form select:hover,
.thin-ui-form textarea:hover {
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.075);
}
.thin-ui-button {
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
    width: fit-content;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
}
.thin-ui-button:hover {
    box-shadow: inset 0 99px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
}
.thin-ui-button-primary {
    color: #ffffff !important;
    background-color: var(--thin-ui-primary);
}
.thin-ui-button-secondary {
    color: #ffffff;
    background-color: var(--thin-ui-secondary);
}
.thin-ui-button-neutral {
    color: #000;
    background-color: var(--thin-ui-neutral);
}
.thin-ui-button-action {
    color: #fff;
    background-color: var(--thin-ui-action);
}
.thin-ui-button-mini {
    padding: 4px 12px;
    font-size: 12px;
}
.thin-ui-button-small {
    padding: 6px 18px;
    font-size: 13px;
}
.thin-ui-button-regular {
    padding: 0.667em 1.667em;
    font-size: 14px;
}
.thin-ui-button-large {
    padding: 12px 32px;
    font-size: 16px;
}
.thin-ui-button-giant {
    padding: 16px 36px;
    font-size: 20px;
}
.thin-ui-button-hero {
    padding: 16px 48px;
    font-size: 18px;
    border-radius: 38px;
}
.thin-ui-button-rounded {
    border-radius: 64px;
}
.thin-ui-checkblock {
    display: none;
}
.thin-ui-checkblock + label {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--thin-ui-neutral);
    color: #000;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.thin-ui-checkblock + label:hover {
    background-color: var(--thin-ui-secondary);
    border: 1px solid rgba(0, 0, 0, 0.25);
}
.thin-ui-checkblock:checked + label {
    background-color: var(--thin-ui-primary);
    color: #fff;
    border: 1px solid var(--thin-ui-primary);
}
.thin-ui-warning {
    color: var(--thin-ui-warning);
}
nav.thin-ui-nav {
    background-color: #fff;
    box-shadow: inset 0 -2px var(--thin-ui-neutral);
}
.property-group-switch,
.property-group-switch label {
    border-radius: 2px;
    background-color: var(--thin-ui-neutral);
}
.property-group-switch {
    white-space: nowrap;
    display: inline-block;
}
.property-group-switch input {
    display: none;
}
.property-group-switch label {
    display: inline-block;
    color: #000;
    font-family: inherit;
    font-weight: 500;
    padding: 8px 12px;
    margin: 1px;
    transition: all 0.1s ease-in-out;
}
.property-group-switch label:hover {
    cursor: pointer;
}
.property-group-switch input:checked + label {
    background-color: var(--thin-ui-primary);
    color: #fff;
}
.binary-switch-container {
    display: block;
    position: relative;
    margin: 0 0 10px;
}
.binary-switch-container .binary-switch {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 14px;
    cursor: pointer;
    user-select: none;
}
.binary-switch-container .binary-switch input[type="checkbox"] {
    display: none;
}
.binary-switch-container .binary-switch .binary-switch-track {
    background-color: var(--thin-ui-secondary);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 7px;
    transition: background-color 0.1s ease;
}
.binary-switch .binary-switch-button {
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    top: 2px;
    right: 12px;
    bottom: 2px;
    left: 2px;
    border-radius: 5px;
    transition: left 0.1s ease-in-out, right 0.1s ease-in-out;
}
.binary-switch input[type="checkbox"]:checked ~ .binary-switch-track {
    background-color: var(--thin-ui-primary);
}
.binary-switch input[type="checkbox"]:checked ~ .binary-switch-button {
    right: 2px;
    left: 12px;
}
.col--inner {
    background-color: #ffffff;
    padding: 2em;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.025), 0 2px 4px rgba(0, 0, 0, 0.025),
        0 4px 8px rgba(0, 0, 0, 0.025), 0 8px 16px rgba(0, 0, 0, 0.025);
}
.col--inner-blank {
    box-shadow: none;
}
.col--inner-highlight {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05),
        0 16px 32px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(0, 0, 0, 0.05);
}
.col--inner-title {
    margin-top: 0;
    padding-top: 0;
}
.col-item--value {
    font-weight: 500;
    font-size: 16px;
}
.thin-ui-pills {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    margin: 8px 0;
    padding: 0;
}
.thin-ui-pill-name,
.thin-ui-pill-value {
    min-width: 0;
    padding: 4px 8px;
    white-space: nowrap;
}
.thin-ui-pill {
    white-space: nowrap;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.04) 0 1px 2px;
    line-height: 1.2;
    max-width: 100%;
    margin: 0 10px 10px 0;
    border-width: 1px;
    border-style: solid;
    border-color: #bdb4c7;
    border-image: initial;
    border-radius: 3px;
}
.thin-ui-pill-name {
    font-weight: 400;
}
.thin-ui-pill-value {
    font-family: "JetBrains Mono", SFMono-Regular, Consolas, "Liberation Mono",
        Menlo, monospace;
    max-width: 100%;
    background: #ffffff;
    border-left: 1px solid #bdb4c7;
    border-radius: 0 3px 3px 0;
}
.thin-ui-pill-value > a {
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}
.thin-ui-notification-bar {
    position: fixed;
    z-index: 999;
    padding: 16px 8px;
    background-color: #79c698;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease-out;
    transform: translateY(-72px);
}
label.thin-ui-popover {
    position: relative;
}
label.thin-ui-popover button[name="popover"] {
    font-family: inherit;
    font-size: inherit;
    background: 0 0;
    border: 0;
    display: inline;
    outline: 0;
    color: inherit;
    padding: unset;
    cursor: pointer;
}
label.thin-ui-popover .thin-ui-popover-body {
    display: none;
    font-size: 13px;
    border-radius: 2px;
    padding: 16px 36px 16px 16px;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: absolute;
    z-index: 128;
    top: 32px;
    left: 0;
    min-width: 320px;
    max-width: 480px;
}
label.thin-ui-popover button:focus + .thin-ui-popover-body {
    display: block;
}
.thin-ui-spacer-v {
    margin: 24px 0;
}
.thin-ui-tabstrip {
    display: flex;
    flex-wrap: wrap;
}
.thin-ui-tabstrip label {
    order: 1;
    display: block;
    margin-right: 2px;
    background-color: var(--thin-ui-neutral);
    cursor: pointer;
    white-space: nowrap;
    color: #000;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 2px 2px 0 0;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    transition: background-color 50ms ease-out;
}
.thin-ui-tabstrip label:hover {
    background-color: var(--thin-ui-secondary);
    color: #fff;
}
.thin-ui-tabstrip .thin-ui-tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1em;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.025), 0 2px 4px rgba(0, 0, 0, 0.025),
        0 4px 8px rgba(0, 0, 0, 0.025), 0 8px 16px rgba(0, 0, 0, 0.025);
}
.thin-ui-tabstrip input[type="radio"] {
    display: none;
}
.thin-ui-tabstrip input[type="radio"]:checked + label {
    background-color: var(--thin-ui-primary);
    color: #fff;
}
.thin-ui-tabstrip input[type="radio"]:checked + label + .thin-ui-tab {
    display: block;
}
@media (max-width: 45em) {
    .thin-ui-tabstrip .thin-ui-tab,
    .thin-ui-tabstrip label {
        order: initial;
    }
    .thin-ui-tabstrip label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}

.thin-ui-badge {
    display: inline-block;
    font-size: 9px;
    text-transform: uppercase;
    line-height: 1;
    background-color: var(--thin-ui-warning);
    color: #ffffff;
    padding: 4px;
    border-radius: 2px;
}

.thin-ui--button-bar {
    margin: 1em 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25em;
}

.thin-ui-button-neutral {
    background-color: rgba(164, 176, 190, 0.45);
}

pre b,
pre strong,
code b,
code strong {
    font-weight: 600;
}
pre code {
    border: none;
    padding: 0;
    background: none;
    background-color: transparent;
    color: var(--color-link);
}

.wp-block-code,
.changelog {
    max-height: 400px;
    overflow: auto;
    line-height: 1.25;
}
.snippet {
    max-height: 600px;
    overflow: auto;
    line-height: 1.25;
}

.right {
    float: right;
}
.left {
    float: left;
}
.hide {
    display: none;
}
.clear {
    clear: both;
}
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix {
    display: block;
    clear: both;
}
/* ===[ Headings ]=== */
h1,
h2,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0;
    padding: 0;
}
h4 {
    color: var(--color-link);
}
.entry h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

figure.gallery-item {
    display: inline-block;
}

/* ===[ Content ]=== */
#content {
    position: relative;
    width: 1056px;
    margin: 24px auto 10px auto;
}
#content p {
    padding-bottom: 16px;
}
/* ===[ Page ]=== */
#page {
    padding: 16px 16px;
}
#page-full {
    padding: 24px 0;
}
#page-full h4 {
    font-size: 24px;
    font-weight: 400;
    margin: 16px 0;
}

.whiskey-fullwidth {
    box-sizing: border-box;
    position: relative;
    width: 100vw;
    max-width: initial;
    left: 50%;
    right: 50%;
    margin: 0 -50vw;
}

.wrap {
    position: relative;
    max-width: var(--content-width);
    padding: 24px 24px;
    margin: 0 auto;
}

/* ===[ Lists & General Styles ]=== */
#page ol li {
    list-style: decimal;
}
#page ul li {
    list-style: disc;
}
#page dl dt {
    margin-top: 15px;
    font-weight: 600;
}
#page dl dd {
    margin: 0;
}
#page blockquote {
    margin: 20px 0;
    color: #666666;
    padding: 8px 24px;
}
#page blockquote cite {
    font-size: 14px;
}

/* ===[ Post Meta ]=== */
#categories li,
#categories ul,
.tags li,
.postmetadata {
    display: inline;
}
#page #categories,
#page #categories ul {
    margin: 0;
    padding: 0;
}
#page #categories li {
    margin: 0;
    padding: 0;
}
#page ul.tags {
    padding: 0;
    margin: 0;
}
#page ul.tags li {
    background: none;
    padding: 0;
    margin: 0;
}

.postmetadata {
    font-size: 14px;
}

/* ===[ Caption Alignment & Roundups ]=== */
img.centered,
.aligncenter,
div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
img.alignright {
    display: inline;
}
img.alignleft {
    display: inline;
}
.alignright {
    float: right;
    margin: 0 0 25px 25px;
}
.alignleft {
    float: left;
    margin: 0 25px 25px 0;
}
.alignmiddle {
    vertical-align: middle;
}

/**
 * Gutenberg
 */
@media only screen and (min-width: 768px) {
    .alignfull {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: auto;
        max-width: 1000%;
    }
    .alignwide {
        margin-left: calc(25% - 25vw);
        margin-right: calc(25% - 25vw);
        width: auto;
        max-width: 1000%;
    }
    .alignwide img,
    .alignfull img {
        display: block;
        margin: 0 auto;
    }
}

/**
 * The class name is built appending 'has-', followed by the class name using kebab case and ending with the context name
 */
.has-signature-burgundy-color {
    color: var(--color-link);
}

.wp-caption {
    max-width: 100%;
}
.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0 none;
}
.wp-caption-text {
    padding: 2px 0 4px 0;
    color: #666666;
    font-size: 12px;
    text-align: center;
}

.sidebox {
    font-size: 16px;
    padding: 8px;
}

/* PAGINATION
   ================================================== */
.pagination {
    clear: both;
    padding: 20px 0;
    position: relative;
    font-size: 14px;
}
.pagination span,
.pagination a {
    display: block;
    float: left;
    margin: 2px 2px 2px 0;
    padding: 4px 12px;
    text-decoration: none;
    width: auto;
    color: #ffffff;
    background-color: #aaaaaa;
    white-space: nowrap;
}
.pagination a:hover {
    color: #ffffff;
    background-color: var(--color-link);
}
.pagination .current {
    background-color: var(--color-link);
    color: #ffffff;
}
/* ===[ WordPress ]=== */
.center {
    text-align: center;
}
.clear {
    clear: both;
}

.entry img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

.category .entry p {
    word-break: break-word;
}

.support-cards li {
    background-color: rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: 16px;
    margin: 2px;
}

/*
 * WordPress Microdata breadcrumbs
 */
#breadcrumbs {
    margin: 4px 0 16px 0;
    padding: 0;

    font-size: 14px;
}
.whiskey-category-description {
    width: 75%;
    font-size: 20px;
    color: #7f8c8d;
}
@media screen and (max-width: 480px) {
    .whiskey-category-description {
        width: 100%;
        font-size: 18px;
        padding: 16px;
    }
    .archive_page,
    .pagination {
        padding: 8px 16px;
    }
}

.whiskey-category-description p {
    line-height: 1.5;
}

/* take that, responsiveness!  */
@media screen and (max-width: 980px) {
    .entry img {
        max-width: 100%;
        height: auto;
    }
}

.box {
    width: 490px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 16px;
    display: inline-block;
}
.box-title {
    border-bottom: 5px solid var(--color-link);
    font-weight: 400;
    margin: 0;
    padding: 0 0 4px 0;
}
.box-title h2 {
    margin: 0;
}
.box-links {
    margin: 1px 0 16px 0;
}
.box-links a {
    color: #ffffff;
    font-size: 18px;
    background-color: var(--color-link);
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    float: left;
    margin: 0 1px 1px 0;
}
.box-preview {
    clear: both;
}
.box-preview img {
    width: auto;
    height: auto;
}
.item-new a {
    color: #eac228 !important;
    font-weight: 600;
}

ul.tabs {
    padding: 0 !important;
    border-bottom: 0 !important;
}
.tabs a:hover {
    background: none !important;
}
.sidebox li .post-date {
    display: block;
    font-size: smaller;
}
.table {
    color: #ffffff;
    background-color: #263238;
    height: 340px;
    width: 100%;
    margin: 0 0 32px 0;
}
.table ul li {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
}
.top {
    background-color: #263238;
    height: 75px;
}
.top h5 {
    padding: 0;
    text-transform: uppercase;
    margin: 0;
}
.bottom {
    margin-top: 50px;
}
.bottom p {
    font-size: 14px;
    padding: 4px !important;
}

/* Alert Me plugin */
.am_error,
.am_info,
.am_success,
.am_warning,
.am_note {
    font-weight: 400;
    border-left: 2px solid;
    margin: 8px 0;
    padding: 12px 12px;
    border-radius: 2px;
}
.am_error p,
.am_info p,
.am_success p,
.am_warning p,
.am_note p {
    margin: 0;
}
.am_error p small,
.am_info p small,
.am_success p small,
.am_warning p small,
.am_note p small {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    display: block;
    margin: 8px 0 0 0;
    padding: 8px 0 0 0;
}
.am_info {
    color: var(--color-link);
    background-color: #bde5f8;
}

.am_success {
    color: #ffffff;
    background-color: #1abc9c;
}

.am_warning {
    color: #e8345a;
    background-color: rgba(234, 194, 40, 0.25);
}

.am_error {
    color: var(--color-link);
    background-color: rgba(231, 76, 60, 0.15);
}

.am_note {
    color: #fafafa;
    background-color: #263238;
}

.am_error a,
.am_info a,
.am_success a,
.am_warning a,
.am_note a {
    color: inherit;
    text-decoration: underline;
}
.am_error a:hover,
.am_info a:hover,
.am_success a:hover,
.am_warning a:hover,
.am_note a:hover {
    color: inherit;
    text-decoration: none;
}

.single-post h2 {
    font-size: 32px;
    padding: 10px 0;
}
.single-post h2 a:hover {
    color: #000000;
    text-decoration: none;
}

/* ---------- MARKETPLACE (ALPHA) ---------- */

.container {
    max-width: var(--content-width);
    margin: 2em auto;
    padding: 0 1em;
}
.container.container-full {
    max-width: 100%;
}

.package-widget {
    margin: 0 0 24px 0;
}

.package-widget h3,
.package-widget h3 a {
    font-size: 16px;
    font-weight: 600;
    overflow: visible;
    vertical-align: top;
    margin: 0 0 6px 0;
    padding: 0;
    max-width: 100%;
    line-height: 1.5;
}
.package-widget a.name {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    display: block;
}
.package-widget p {
    font-size: 15px;
    margin: 0;
    max-width: 100%;
    color: rgba(0, 0, 0, 0.6);
    padding: 0;
}
.package-widget .quiet {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

h1 {
    font-weight: 400;
    margin: 0 0 16px;
    padding: 16px 0 0;
    font-size: 28px;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 24px;
        line-height: 1.45;
    }
}

h2 {
    font-weight: 600;
    margin: 0;
    padding: 20px 0 10px 0;
    font-size: 24px;
}
h2.ruled {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 32px;
    margin: 32px 0 24px 0;
}
.center,
.centered {
    text-align: center;
}

.sidebar ul,
.sidebar ul li {
    margin-left: 0;
    padding-left: 0;
}
#page .sidebar ul li,
.sidebar ul li {
    list-style: none;
    margin: 0 0 6px 0;
}

.sidebar-block--latest {
    font-size: 14px;
}
.sidebar-block--latest a {
    font-weight: 600;
}
.sidebar-block--latest small {
    font-size: 12px;
    opacity: 0.8;
}
.sidebar-block--latest small a {
    font-weight: 400;
}
.sidebar-block--latest small:hover {
    opacity: 1;
}

.wp-block-image {
    margin: 0;
}

.seo-notification {
    background-color: #ffffff;
    border-radius: 2px;
    padding: 16px 24px;
    margin: 72px 0;
}
.sidebar .seo-notification {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .sidebar {
        padding-top: 0;
    }
    .col--content {
        flex-basis: 100%;
        max-width: 100%;
    }
    .col-fixed--sidebar.col-fixed {
        width: 100% !important;
        margin: 0 0 0 0 !important;
    }
}

nav sup {
    background-color: var(--color-link);
    color: #ffffff;
    padding: 0 5px;
    height: 15px;
    margin: 0 0 0 2px;
    font-size: 10px;
    border-radius: 2px;
    display: inline-block;
    vertical-align: super;
}
nav sup.alpha {
    background-color: rgba(30, 136, 229, 0.5);
}

/* ===[ Small screens ]=== */
@media all and (max-width: 480px) {
    body {
        padding: 0;
    }

    .homepage-blog p,
    .pipes,
    .homepage-blog h4 small {
        display: none;
    }

    #page-full {
        padding: 20px 8px;
    }
    .homepage-blog h4 {
        font-size: 16pt;
        margin: 4px 0 0 0;
    }

    .package-widget,
    .package-widget p {
        padding: 0 0 0 0 !important;
    }

    .version {
        vertical-align: initial;
        float: none;
        padding: 0 0 0 0;
        margin: 0 0 16px 0;
    }
}

/**
 * SpeedFactor Onboarding (Homepage)
 */
.promo--hero {
    padding: 32px 0;
}
.promo--hero h1 {
    font-size: 48px;
    line-height: 1.35;
    margin-bottom: 0;
    padding-bottom: 0;
    letter-spacing: -0.01em;
    color: var(--text-color);
    text-align: center;
}
.promo--hero h1 b {
    font-weight: 300;
}
.promo--hero h1 small {
    display: block;
    font-size: 32px;
    font-weight: 300;
}

.promo--hero .promo-illustration {
    max-height: 240px;
}

@media all and (max-width: 480px) {
    .promo--hero h1 {
        font-size: 42px;
    }
    .promo--hero h1 small {
        font-size: 30px;
    }
    .promo--hero h1 .svg-rocket {
        width: 42px;
        height: 42px;
    }
    .promo--hero .promo-illustration {
        max-width: 100%;
        max-height: auto;
        height: auto;
    }
}

h2.font-size-medium,
.font-size-medium {
    font-size: 20px;
    text-align: center;
}
.font-heading {
    color: var(--text-color);
}
.panel-item--intro {
    font-weight: 400;
}
.panel-item--intro b {
    font-weight: 500;
}

@media all and (max-width: 480px) {
    .promo--hero {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover h2 {
    max-width: initial;
}

table {
    width: 100%;
    background-color: rgba(237, 244, 244, 0.5);
    border: solid 1px rgba(237, 244, 244, 0.75);
    border-left: 3px solid rgba(237, 244, 244, 0.75);
    border-radius: 3px;
}
table th,
table td {
    padding: 8px;
}
table th {
    font-weight: 600;
}

.fx-toc {
    margin: 0 0 48px 0;
    padding: 16px;
    border: 1px solid rgba(231, 76, 60, 0.5);
    background-color: rgba(231, 76, 60, 0.05);
    font-size: 90%;
    border-radius: 2px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.fx-toc-list li {
    list-style-type: lower-roman !important;
}
h2.fx-toc-title {
    font-size: 24px;
}
.toc-even {
    padding: 0 0 0 32px;
    font-size: 90%;
}

/*
 * Tags
 */
.tag {
    display: inline-block;
    padding: 4px 6px;
    line-height: 1.25;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 400;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

/*
 * Flexbox
 */
.flex-item {
    box-sizing: border-box;
    margin: 0;
    padding: 24px;
}

.flex-item-blog-overlay h3,
.flex-item-blog-overlay h3 a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    padding: 8px 0;
}
.flex-item-blog-overlay small {
    font-size: 12px;
    color: #546e7a;
}
.flex-item-blog-overlay ul.post-categories,
.singular-meta ul.post-categories {
    margin: 0;
    padding: 0;
}
.flex-item-blog-overlay ul.post-categories li,
.singular-meta ul.post-categories li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
}
.flex-item-blog-overlay ul.post-categories li a {
    font-size: 10px;
    padding: 2px 6px;
    background-color: #2955ee;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    border-radius: 16px;
}

@media (max-width: 768px) {
    header.wrap {
        padding: 0;
    }

    .flex-item {
        box-sizing: border-box;
        width: 100%;
        margin-top: 4px;
    }
    .flex-container--blog .flex-item {
        margin: 16px 0;
    }
}

@media (max-width: 720px) {
    body > header {
        padding: 0 0;
    }
}

/**
 * Footer
 */
#footer_wrap {
    margin: 48px 0 0 0;
    padding: 48px 0 16px 0;
    background-color: #08252b;
}
#footer {
    color: #ffffffb3;
    font-size: 14px;
}
#footer p {
    margin: 0 0 16px 0;
}
#footer .dark a {
    display: inline-block;
    padding: 0 4px 0 0;
    color: #ffffff;
    font-weight: 600;
}

/* ===[ 480px is the maximum screen size of smartphones that exist in the market. ]=== */
@media only screen and (max-width: var(--content-width)) {
    #header,
    #footer,
    #content,
    #page_wrap_full {
        width: 100%;
    }
    #services,
    #sidebar {
        display: none;
    }
    #header_wrap,
    #content_wrap {
        margin: 0 16px;
    }
}

@media only screen and (max-width: 480px) {
    html {
        margin: 0 !important;
    }
    #content_wrap,
    #content {
        margin: 0;
    }
    #footer {
        padding: 0 32px;
    }
}

/**
 * Demo styles
 */
.drag-container {
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 2px;
    width: 400px;
    padding: 8px;
    margin: 0 auto;
}
.drag-box {
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    padding: 4px 8px;
    margin: 4px;
    cursor: pointer;
    background-color: #fafafa;
}
.drag-box:hover {
    background-color: #ffff99;
}

.drag-helper {
    box-sizing: border-box;
    position: absolute;
    display: none;
    top: auto;
    left: auto;
}
.drag-box-dragging .drag-box {
    background-color: #ff99cc;
    opacity: 0.5;
    transform: scale(1.5);
}

.element-privacy {
    position: fixed;
    bottom: -1px;
    right: 48px;
}
.element-privacy a {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 6px 14px;
    background-color: #cccccc;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    border-radius: 2px 2px 0 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 14px;
}

.entry p.schema-how-to-total-time {
    font-size: 12px;
    margin: 0 0 0 0;
}
.entry p.schema-how-to-step-text {
    font-size: 14px;
}

.whiskey-nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    padding: 8px 24px;
    width: 100%;
    background-color: #08252b;

    position: sticky;
    top: 0;
    z-index: 1;
}
.whiskey-nav .whiskey-label {
    margin-left: auto;
}
.whiskey-nav #whiskey-tap,
.whiskey-nav .whiskey-toggle {
    display: none;
}
.whiskey-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}
.whiskey-nav ul li {
    position: relative;
    padding: 16px 0;
}
.whiskey-nav ul li a {
    text-decoration: none;
    align-self: center;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    padding: 0 12px;
}
.whiskey-nav ul li a:hover,
.whiskey-nav ul li a.active {
    color: var(--ui-color-accent);
    text-decoration: none;
}

/* Submenu */
.whiskey-nav li ul {
    background-color: #08252b;
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    align-items: flex-start;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    width: 320px;
}
.whiskey-nav li:hover > ul {
    display: block;
}
.whiskey-nav li ul li {
    padding: 0;
}
.whiskey-nav li ul li a {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    padding: 8px 48px 8px 12px;
}
.whiskey-nav li ul li a small {
    opacity: 0.75;
    font-weight: 400;
}

.whiskey-nav li.whiskey-nav--more {
    font-size: 12px;
    text-transform: uppercase;
    color: #83817f;
    opacity: 0.5;
    padding: 10px 48px 10px 12px;
}
.whiskey-nav--notification {
    position: relative;
}
.whiskey-nav--notification:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: 0;
    right: 8px;
    background-color: crimson;
    border-radius: 100%;
}

@media screen and (max-width: 768px) {
    .whiskey-nav {
        flex-direction: column;
    }
    .whiskey-nav .whiskey-label {
        width: 100%;
    }
    .whiskey-nav .whiskey-toggle {
        display: block;
        text-align: center;
        line-height: 1;
        cursor: pointer;
        width: 100%;
        font-size: 24px;
        padding: 8px 0;
        color: #595959;
        background: #dbdbdb;
        border-radius: 0 0 5px 5px;
    }
    .whiskey-nav .whiskey-toggle:hover {
        background: #cecece;
    }
    .whiskey-nav #whiskey-tap:checked + .whiskey-label ul li {
        opacity: 1;
        visibility: visible;
    }
    .whiskey-nav #whiskey-tap:checked + .whiskey-label ul {
        height: auto;
        height: fit-content;
    }
    .whiskey-nav ul {
        border-radius: 0px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 0;
    }
    .whiskey-nav ul li {
        display: flex;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        padding: 0;
    }
    .whiskey-nav ul li a {
        width: 95%;
        align-content: center;
        font-size: 16px;
        padding: 8px 12px;
    }

    /* Submenu */
    .mobile-hide {
        display: none;
    }
    .whiskey-nav li ul {
        display: flex;
        position: relative;
        width: 100%;
    }
}

/**
 * Pricing Table
 */
.price-table--wrap {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-lg);
    width: 100%;
    margin: 0 auto;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 0 none;
}
.price-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.price-table tr td {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    font-size: 14px;
}
.price-table tr td:first-child {
    border-left: 0 none;
}
.price-table tr td:not(:first-child) {
    text-align: center;
}
.price-table tr:nth-child(even) {
    background-color: #ffffff;
}
.price-table tr:hover {
    background-color: #eeeeee;
}
.price-table .fa-check,
.price-table .fa-question-circle {
    color: #1abc9c;
}
.price-table .fa-times {
    color: #d8d6e3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.25);
}
.price-table tr td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.15);
    padding: 8px 48px;
}
/**/

.price-table tr.price-table-head td {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.price-table tr.price-table-head {
    background-color: rgba(0, 0, 0, 0.05);
}
.price-table td.price {
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 600;
}
.price-table td.price-table-popular {
    border-top: 3px solid var(--thin-ui-primary);
    color: var(--thin-ui-primary);
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 48px;
    font-weight: 700;
}
.price-table .price-blank {
    background-color: #fafafa;
    border: 0 none;
}

.price-table .price svg {
    width: 90px;
    fill: var(--thin-ui-primary);
}

#page .rcp_form ul li {
    list-style: none;
}
.rcp_form .rcp_subscription_level_name {
    font-size: 20px;
}
.rcp_form .rcp_subscription_level {
    display: flex;
    padding: 16px;
}
.rcp_form .rcp_subscription_level:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05),
        0 16px 32px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(0, 0, 0, 0.05);
}
.rcp_form .rcp_subscription_level .rcp_level {
    float: none;
    margin: 0 16px;
    align-self: center;
}

.rcp-table td[data-th="Actions"] br,
.rcp-table a.rcp_sub_details_update_card {
    display: none;
}

.rcp-table a.rcp_sub_details_renew {
    padding: 8px 24px;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--thin-ui-action);
    font-weight: 400;
    display: inline-block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 2px;
    text-align: center;
}

/* Thin UI Overrides */
.home .col {
    padding: 24px 0;
}
.home .features .col {
    padding: 24px 24px;
}

.home .features .grid {
    margin: 24px 0;
}
.home .features h3 {
    font-weight: 500;
    font-size: 24px;
}
.home .features img {
    max-width: 100%;
    height: auto;
}

/**
 * WP Audit css/style.css
 */
:root {
    --color-main: #29275f;
    --color-link: #2955ee;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-purple: #5336ca;

    --color-cotton-candy: #fd95b4; /* Cotton Candy */
    --color-clear-skies: #a6daf0; /* Clear Skies */
    --color-soft-lavender: #e1bddf; /* Soft Lavender */
    --color-ripe-peach: #ea987b; /* Ripe Peach */
    --color-zest: #d3bf2b; /* Zest */

    --color-primary: #f64b53;
    --color-secondary: #cf4327;
    --color-tertiary: #4c56ba;
    --color-faded: #a9b2c8;

    --color-neon-green-transparent: rgba(5, 203, 99, 0.2);

    --color-complementary: #212b36;

    --flatui-midnight-blue: #2c3e50;
    --flatui-turquoise: #1abc9c;
    --flatui-green-sea: #16a085;
    --flatui-asbestos: #7f8c8d;

    --color-timing-dns: #009688;
}

#roar-alert {
    display: flex;
    align-items: center;
    justify-content: center;
}
.roar-alert-mask {
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}
.roar-alert-message-body {
    position: fixed;
    z-index: 9999;
    min-width: 640px;
    max-width: 720px;
    top: 16%;
    background-color: #fafafc;
    border-radius: 2px;
    animation: roar-show 0.1s;
}
@media screen and (max-width: 480px) {
    .roar-alert-message-body {
        min-width: 320px;
        max-width: 100%;
    }
}
.roar-alert-message-tbf {
    padding: 0 20px;
    font-size: 16px;
}
.roar-alert-message-title {
    font-weight: 400;
    font-size: 18px;
    padding: 8px 24px;
}
.roar-alert-message-content {
    padding: 24px;
    text-align: center;
}
.roar-alert-message-button {
    position: relative;
    padding: 24px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.roar-alert-message-button a {
    display: block;
    margin: 0 24px;
    color: #3cc51f;
    text-decoration: none;
    border-radius: 3px;
    padding: 12px 24px;
}
a.roar-alert-message-button-cancel,
a.roar-alert-message-button-cancel:link {
    color: #fff;
    background-color: #95a5a6;
}
a.roar-alert-message-button-cancel:hover {
    color: #fff;
    background-color: #7f8c8d;
    text-decoration: none;
}
a.roar-alert-message-button-confirm,
a.roar-alert-message-button-confirm:link {
    color: #fff;
    background-color: #34495e;
}
a.roar-alert-message-button-confirm:hover {
    color: #fff;
    background-color: #2c3e50;
    text-decoration: none;
}
@keyframes roar-show {
    0% {
        filter: opacity(0.2);
        margin-top: -16px;
    }
    100% {
        filter: opacity(1);
        margin-top: 0;
    }
}
.roar-open {
    overflow: hidden;
}

.sf-url-size-list {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
        monospace;
    font-size: 12px;
    line-height: 1.75;
    word-break: break-all;
    margin: 24px 0 0 0;
}
.sf-url-size-list code {
    font-size: inherit;
}
.sf-url-size-list a,
.sf-url-size-list a:link,
.sf-url-size-list a:visited {
    text-decoration: none;
}
.sf-url-size-list a:hover {
    text-decoration: underline;
}
.sf-url-size-list b {
    color: var(--flatui-green-sea);
    font-weight: 700;
}
.sf-url-size-list i {
    color: #e74c3c;
    font-weight: 700;
    font-style: normal;
}

.sf-flex {
    display: flex;
    flex-direction: row;
}
.sf-flex .sf-flex-child {
    flex: 1;
}

.is-good,
.sf-color--green {
    color: var(--flatui-turquoise);
}
.is-bad,
.sf-color--red {
    color: #e74c3c;
}
.is-ugly,
.sf-color--yellow {
    color: #e67e22;
}

.sf-cwv {
    font-size: 22px;
    font-weight: 700;
}
.sf-cwv-value {
    font-size: 24px;
    font-weight: 600;
}

#scores {
    display: flex;
    flex-wrap: wrap;
}
#scores div {
    flex-basis: 31%;
    margin: 1%;
}

.progress {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: calc(25% - 2rem);
    height: 183px;
    width: 183px;
    min-width: 183px;
    position: relative;
    margin: 48px auto;
}
.progress__track,
.progress__progress {
    height: 100%;
    width: 100%;
    position: absolute;
    stroke-width: 18;
    fill: none;
}
.progress__track {
    stroke: #ccc;
}
.progress__progress {
    stroke: #e74c3c;
}
.progress__indicator {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 50%;
    width: 0;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.progress__indicator-hand {
    height: 35px;
    width: 35px;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 20px);
    background-color: #e74c3c;
    border: 3px solid #fff;
    border-radius: 50%;
}
.progress__label {
    color: #444;
    text-align: center;
}
.progress__text {
    display: block;
    font-size: 4rem;
    line-height: 0.9;
}
.progress__percent {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/**
 * User Dashboard: Sites
 *
 * @SpeedFactor
 */
.sf-row {
    display: flex;
    flex-wrap: nowrap;
}
.sf-row--header {
    display: flex;
    flex-wrap: nowrap;
    background-color: rgba(0, 0, 0, 0.05);

    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333333;
}
.sf-row--cell {
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sf-row--cell small {
    display: block;
    font-size: 12px;
    color: #a9b2c8;
}
.sf-row--cell.sf-row-domain {
    flex-basis: 60%;
}
.sf-row--cell.sf-row-latest {
    flex-basis: 40%;
}

.sf-header--primary {
    font-size: 16px;
    margin: 16px 0 12px 0;
    padding: 16px 0 12px 0;
    font-weight: 600;
}
.sf-header--secondary {
    font-size: 18px;
    margin: 24px 0 16px 0;
    color: var(--flatui-midnight-blue);
    font-weight: 400;
}
.sf-header--secondary small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #a9b2c8;
}

h2.sf-heading--secondary,
.page h2.sf-heading--secondary {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    padding: 8px 0 16px 0;
}

.sf-header--tertiary {
    font-size: 20px;
    margin: 18px 0 12px 0;
}
.sf-header--tertiary small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #a9b2c8;
}

.sf-lighthouse-result em {
    font-size: 15px;
    font-style: normal;
    white-space: nowrap;
}

.sf-progress-bars {
    display: flex;
    align-content: space-around;
    justify-content: center;
    margin: 24px 0 48px 0;
}

.progress-bar {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 168px;
}
.progress-bar svg {
    transform: rotate(-90deg);
    width: 168px;
}
.progress-bar .progress-bar__background {
    fill: none;
    stroke: #666666;
    stroke-width: 0.1;
}
.progress-bar .progress-bar__progress {
    fill: none;
    stroke: var(--flatui-turquoise);
    stroke-dasharray: 100 100;
    stroke-dashoffset: 100;
    stroke-linecap: round;
}
.progress-bar .progress-text {
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
    position: absolute;
}
.progress-bar .progress-text b {
    font-weight: 600;
}
.progress-bar--title {
    font-size: 14px;
    font-weight: 400;
}

/*
.sf-form-element,
.sf-form-wrapper input,
.sf-form input {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    padding: 8px;
    border: 1px solid #a9b2c8;
    border-radius: 2px;
}
.sf-form-wrapper label,
.sf-form--new label {
    display: block;
}
.sf-form-wrapper input[type="submit"],
.sf-form-wrapper button[type="submit"],
.sf-form-submit {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    padding: 8px 24px;
    border: 0 none;
    border-radius: 2px;
    background-color: var(--color-link);
    cursor: pointer;
}
/**/

.sf-notification {
    padding: 4px;
}
.sf-notification--success {
    background-color: var(--flatui-turquoise);
}

.label {
    color: var(--primary_colour);
    padding: 0 5px;
    height: 15px;
    margin: 0 0 0 2px;
    font-size: 10px;
    border-radius: 2px;
    font-weight: 600;
    display: inline-block;
    vertical-align: super;
}
.sf-button .label.label-beta {
    border-left: 3px solid var(--color-ripe-peach);
    background-color: #ffffff;
}
.sf-button .label.label-alpha {
    border-left: 3px solid var(--color-zest);
    background-color: #ffffff;
}

/**
 * https://cdn.jsdelivr.net/npm/chart.js@2.9.2/dist/Chart.css
 */

/*
 * DOM element rendering detection
 * https://davidwalsh.name/detect-node-insertion
 */
@keyframes chartjs-render-animation {
    from {
        opacity: 0.99;
    }
    to {
        opacity: 1;
    }
}

.chartjs-render-monitor {
    animation: chartjs-render-animation 0.001s;
}

/*
 * DOM element resizing detection
 * https://github.com/marcj/css-element-queries
 */
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink {
    position: absolute;
    direction: ltr;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}

.chartjs-size-monitor-expand > div {
    position: absolute;
    width: 1000000px;
    height: 1000000px;
    left: 0;
    top: 0;
}

.chartjs-size-monitor-shrink > div {
    position: absolute;
    width: 200%;
    height: 200%;
    left: 0;
    top: 0;
}
/**/

canvas#chartjs-key-factors,
canvas#chartjs-speed-factors,
canvas#chartjs-lcp,
canvas#chartjs-payload,
canvas#chartjs-payload-requests,
canvas#chartjs-security,
canvas#ttfb-bar-values {
    width: 100%;
    height: 300px;
    margin: 0 0 24px 0;
}
canvas#chartjs-bar-values {
    width: 100%;
    height: 250px;
}

details.sf-help-details {
}
details.sf-help-details summary {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.025);
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 2px;
}
details.sf-help-details summary .fa-fw {
    opacity: 0.5;
}
details.sf-help-details summary::-webkit-details-marker {
    display: none;
}
.sf-help-details p {
    margin: 16px 0;
    font-size: 14px;
}

/**
 * Security Headers
 */
.sf-grade {
    display: inline-block;
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05),
        0 4px 4px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.05),
        0 16px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
}
.sf-grade.sf-grade--a {
    color: #000000;
    background-color: #78e08f;
}
.sf-grade.sf-grade--b {
    color: #000000;
    background-color: #b8e994;
}
.sf-grade.sf-grade--c {
    color: #000000;
    background-color: #fad390;
}
.sf-grade.sf-grade--d {
    color: #000000;
    background-color: #f6b93b;
}
.sf-grade.sf-grade--e {
    color: #ffffff;
    background-color: #e55039;
}
.sf-grade.sf-grade--f {
    color: #ffffff;
    background-color: #eb2f06;
}

.sf-grade-headers {
    display: block;
    margin: 16px 0;
}
.sf-grade-header {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
        monospace;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    margin: 2px;
}
.sf-grade-header--enabled {
    background-color: var(--flatui-turquoise);
}
.sf-grade-header--disabled {
    background-color: #e74c3c;
}
.sf-grade-header--neutral {
    background-color: #888888;
}
.sf-grade--positive {
    color: var(--flatui-turquoise);
}
.sf-grade--negative {
    color: #e74c3c;
}
.sf-grade--positive small,
.sf-grade--negative small {
    color: var(--flatui-asbestos);
}
.sf-grade--positive code,
.sf-grade--negative code {
    font-size: inherit;
}

.seo-audit-snippet {
    max-width: 720px;
}

/**
 * SpeedFactor UI
 *
 * Contains all UI elements for the SpeedFactor app
 */
.sf {
    font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto",
        "Helvetica Neue", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.sf a:link,
.sf a:visited {
    color: var(--color-tertiary);
}

.sf-navigation {
    margin: 24px 0;
}

.sf-value--numeric {
}
.sf-font-size-36 {
    font-size: 36px;
}

/**
 * UI: Form Elements
 */
.sf input[type="text"],
.sf input[type="url"],
.sf input[type="email"],
.sf input[type="number"],
.sf input[type="file"],
.sf input[type="password"],
.sf input[type="button"],
.sf button,
.sf select,
.sf textarea {
    display: inline-block;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 12px;
    margin: 2px;
    color: #333333;
    border: 1px solid #bdc3c7;
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline-color: #3498db;
}

.sf input[type="button"],
.sf input[type="file"],
.sf button {
    color: #000000;
    background-color: #cfd6de;
    border: 0 none;
    cursor: pointer;
}

.sf input:hover,
.sf button:hover,
.sf select:hover,
.sf textarea:hover {
    border-color: #95a5a6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*
 * Buttons
 *
 * Button types: Primary, secondary, tertiary (neutral)
 * Button sizes: Hero, large, regular, small
 * Button roles: File download, (external) link, (internal) action
 *
 * Usage class: "sf sf-button sf-button-primary sf-button-regular"
 *
 * Nice UI https://www.npmjs.com/package/overlapping-marker-spiderfier-leaflet
 * Nice colours https://www.mapillary.com/
 * Nice ideas https://rigor.com/blog/analyzing-performance-using-visual-record
 * Nice ideas https://rigor.com/blog/monitoring-the-ux
 */
.sf-button {
    font-weight: 400;
    display: inline-block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 2px;
}
.sf-button:hover {
    box-shadow: inset 0 99px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
a.sf-button-primary,
.sf-button-primary {
    color: #ffffff !important;
    background-color: var(--color-primary);
}
a.sf-button-secondary,
.sf-button-secondary {
    color: #ffffff !important;
    background-color: var(--flatui-turquoise);
}
a.sf-button-tertiary,
.sf-button-tertiary {
    color: #ffffff !important;
    background-color: var(--flatui-green-sea);
}
a.sf-button-faded,
.sf-button-faded {
    color: #000000 !important;
    background-color: var(--color-neon-green-transparent);
}

.sf-wrapper--annotations .sf-link-annotations,
.sf-wrapper--overview .sf-link-overview,
.sf-wrapper--performance .sf-link-performance,
.sf-wrapper--beacon .sf-link-beacon,
.sf-wrapper--assets .sf-link-assets,
.sf-wrapper--security .sf-link-security,
.sf-wrapper--dns .sf-link-dns {
    background-color: var(--thin-ui-primary);
    color: #ffffff;
}

.sf-annotation-list div {
    font-size: 14px;
}

.sf-button-small {
    padding: 6px 10px;
    font-size: 11px;
}
.sf-button-regular {
    padding: 6px 16px;
    font-size: 14px;
}
.sf-button-large {
    padding: 12px 18px;
    font-size: 15px;
}
.sf-button-hero {
    padding: 16px 28px;
    font-size: 18px;
}

.sf-option {
    margin: 0 0 16px 0;
}

/*
 * Flex Panels
 *
 */

.sf-panel-item--dead-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-bar .progress-bar__background {
    stroke: #29275f;
    stroke-width: 2px;
}
.progress-bar .progress-bar__progress {
    stroke-linecap: initial;
}

.sf-shadow-dreamy {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05),
        0 16px 32px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(0, 0, 0, 0.05);
}
.sf-shadow-discrete {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.025), 0 2px 4px rgba(0, 0, 0, 0.025),
        0 4px 8px rgba(0, 0, 0, 0.025), 0 8px 16px rgba(0, 0, 0, 0.025);
}

/* https://flatuicolors.com/palette/es */
.sf-section {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}
.sf-section p {
    margin: 0 0 16px 0;
}
.sf-section--help {
    color: #3a414e;
}
.sf-section--help a,
.sf-section--help a:visited {
    text-decoration: none;
    color: #1195dc;
}
.sf-section--help a:active,
.sf-section--help a:focus,
.sf-section--help a:hover {
    text-decoration: none;
    color: #0e75ad;
}

.sf-grey {
    color: #84817a;
}
.sf-faded {
    opacity: 0.72;
}

.sf-badge {
    display: inline-block;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 2px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
}
.sf-badge--pro {
    background-color: #33d9b2;
}
.sf-badge--new {
    background-color: #34ace0;
}
.sf-badge--soon {
    background-color: #ff793f;
}

.binary-switch-container * {
    box-sizing: border-box;
}
.binary-switch-container {
    display: block;
    position: relative;
}
.binary-switch-container label {
    font-size: 14px;
    user-select: none;
}
.binary-switch-container .binary-switch {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 14px;
    cursor: pointer;
    margin: 0 4px 0 0;
    user-select: none;
}
.binary-switch-container .binary-switch input[type="checkbox"] {
    display: none;
}
.binary-switch-container .binary-switch .binary-switch-track {
    background-color: #9da6af;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 7px;
    transition: background-color 0.1s ease;
}
.binary-switch .binary-switch-button {
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    top: 2px;
    right: 12px;
    bottom: 2px;
    left: 2px;
    border-radius: 5px;
    transition: left 0.1s ease-in-out, right 0.1s ease-in-out;
}
.binary-switch input[type="checkbox"]:checked ~ .binary-switch-track {
    background: var(--color-link);
}
.binary-switch input[type="checkbox"]:checked ~ .binary-switch-button {
    right: 2px;
    left: 12px;
}

/**
 * Sparkline
 */
.sparkline--svg {
    margin: 16px 0 0 0;
}
.sparkline--tooltip {
    font-size: 12px;
    white-space: nowrap;
}
.sparkline--cursor {
    stroke: #29275f;
}
.sparkline--spot {
    fill: #29275f;
    stroke: #29275f;
}
.sparkline--fill {
    fill: rgba(41, 39, 95, 0.35);
}

.flex-direction-column {
    flex-direction: column;
}

.sf-boxie {
    padding: 12px;
    margin: 4px;
    border-radius: 2px;
    background-color: var(--bg);
}

/**
 * Multilevel menu
 */
.sf-menu,
.sf-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sf-menu {
    display: flex;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: inset 0 -2px #ecf0f1;
}
.sf-menu ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05),
        0 16px 32px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(0, 0, 0, 0.05);
}
.sf-menu > li > ul {
    left: 0;
    top: 100%;
}
.sf-menu li {
    list-style: none !important;
    position: relative;
    background: #ecf0f1;
}
.sf-menu li a {
    white-space: nowrap;
    font-size: 14px;
    color: #34495e;
    text-decoration: none;
    padding: 12px 16px;
    display: inline-block;
    background-color: #ffffff;
}
.sf-menu li:hover > ul {
    display: block;
    animation: moo 0.25s ease-in-out forwards;
    will-change: opacity margin;
}
.sf-menu > li > a {
    box-shadow: inset 0 -2px #ecf0f1;
}
.sf-menu li a:hover,
.sf-menu li:hover > a,
.sf-menu > li > a:hover {
    background: #bdc3c7;
    box-shadow: inset 0 -2px #34495e;
}
.sf-menu li li a {
    min-width: 180px;
    padding: 8px 16px;
    font-size: 13px;
    background: #ecf0f1;
}
.sf-menu li li a:hover {
    box-shadow: none;
}
.sf-menu > li > a:not(:only-child):after {
    opacity: 0.5;
    content: " \22EE";
}

@keyframes moo {
    from {
        opacity: 0;
        margin-top: 8px;
    }
    to {
        opacity: 1;
        margin-top: 0;
    }
}

/**
 * Restrict Content Pro
 * @type CSS
 */
.rcp-table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.75em;
    table-layout: fixed;
    width: 100%;
}
.rcp-table,
.rcp-table th,
.rcp-table td {
    border: 1px solid #d1d1d1;
}
.rcp-table th,
.rcp-table td {
    padding: 5px;
}

#rcp_login_form input[type="text"],
#rcp_login_form input[type="password"],
#rcp_registration_form input[type="text"],
#rcp_registration_form input[type="password"] {
    color: #000000;
    background-color: #ffffff;
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 2px;
    font-family: inherit;
    font-size: inherit;
}

#rcp_login_form input[type="text"]:focus,
#rcp_login_form input[type="password"]:focus,
#rcp_registration_form input[type="text"]:focus,
#rcp_registration_form input[type="password"] {
    background-color: #ffffff;
}

/* Remove username and passowrd (again) */
p#rcp_user_login_wrap,
p#rcp_password_again_wrap {
    display: none;
}

a.sf-button--rounded,
.sf-button--rounded {
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 12px 32px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 64px;
}

.col-item--value {
    font-weight: 500;
    font-size: 16px;
}

.grid-container {
    padding: 16px;
}

.sf-menu a sup {
    display: inline-block;
    vertical-align: unset;
    font-size: 9px;
    line-height: 1;
    padding: 3px 4px;
    top: -4px;
    color: #ffffff;
    background-color: var(--thin-ui-primary);
    position: relative;
    border-radius: 2px;
    text-transform: uppercase;
}

.chart-container .legend-dataset-text {
    fill: #000000 !important;
    font-weight: 400 !important;
}

@media screen and (max-width: 768px) {
    #on-demand-audit,
    #on-demand-email {
        max-width: 100%;
    }
}

label.thin-ui-popover .thin-ui-popover-body {
    text-align: left;
    transform: translateX(-50%);
}
label.thin-ui-popover .thin-ui-popover-body p {
    margin: 16px 0;
}
label.thin-ui-popover button[name="popover"] {
    vertical-align: middle;
}

.col--inner {
    font-size: 14px;
}

.aws-container {
    background-color: #fff;
    margin: 4px 0;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
}

.highlight {
    background: url(https://wpdublin.com/wp-content/themes/wp-whiskey-air/images/text-highlight.png)
        no-repeat center center/contain;
    filter: hue-rotate(80deg);
}

/** WP Dublin Migration */
:root {
    --ui-bg: #f8f8f8;
    --ui-fg: #222222;
    --max-width: 1280px;
    --ui-radius: 12px;
}
.ui--accent-block {
    display: flex;
    align-items: center;
    gap: 0.3343em;
    background-color: #ffffff;
    color: #000000;
    padding: 0.5em 1em;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 48px;
    font-size: 13px;
    line-height: 1;
    margin: 0 auto 2em auto;
    width: fit-content;
}
.hero-title {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1em;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    text-shadow: 0 1px 0 #ffffff, 0 4px 4px rgba(0, 0, 0, 0.25);
}
.hero-subtitle {
    font-weight: 600;
    color: #666;
}
.hero-boilerplate {
    background-color: #ffffff;
    color: #000000;
    padding: 0.5em 1.5em;
    border-radius: 48px;
    font-size: 15px;
    line-height: 1;
    margin: 0 auto 1em auto;
    width: fit-content;
}
.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 2em;
    line-height: 1.5;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.hero-description em {
    font-style: normal;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='12 38 269 90'%3E%3Cpath fill='%23ffe000' d='m12 48 1 9c3 6 13 0 20 6l-11 2c-4 3-1 11 0 15v6l18 1-1 6c-1 2-4 2-6 3-5 3-6 6-6 11l3 16c2 3 10 5 13 5h44c1-6 4-6 10-6l12 1h19l54-1c13 0 6-3 19-3h42l15-1c2-9 8-5 12-9 3-2 2-8 2-11l8-1-1-11c-3-7-14-9-21-10 7-7 18-3 17-14l-3-5c10-3 9-3 9-13l-23-2c-8-1-7-4-23-4l-46 1-12 1-18-2h-31c-11 0-8 1-15 3l-16 1-10 2-30 1-25 3H12Z'/%3E%3C/svg%3E");

    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-pricing {
    margin: 2em auto;
    text-align: center;
    font-style: italic;
    font-size: 14px;
}

/**
 * Plans
 */
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 50px auto;
}
@media (max-width: 768px) {
    .plans {
        grid-template-columns: 1fr;
    }
}

.plan {
    display: flex;
    flex-direction: column;
    margin: 2em 0;
    padding: 2em;
    text-align: center;
    background: white;
    border: 1px solid hsl(0deg 0% 0% / 0.15);
    border-radius: var(--ui-radius);

    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.015),
        0 2px 2px hsl(0deg 0% 0% / 0.015), 0 4px 4px hsl(0deg 0% 0% / 0.015),
        0 8px 8px hsl(0deg 0% 0% / 0.015), 0 16px 16px hsl(0deg 0% 0% / 0.015);

    transition: border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    &:hover {
        border-color: hsl(0deg 0% 0% / 0.35);
    }
}

[popover] {
    max-width: 768px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
}
[popover]::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
}

.ui--sq-button a {
    background-color: var(--ui-color-accent);
    color: #ffffff;
    corner-shape: squircle;
    border-radius: 48px;
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.ui--sq-button a:hover {
    background-color: color-mix(in srgb, var(--ui-color-accent), black 20%);
}
.ui--sq-button a small {
    opacity: 0.7;
}

/**
 * EOF: 2684
 * https://cssstats.com/stats/?url=https%3A%2F%2Fgetbutterfly.com
 *
 * 1. Remove all Flex CSS in favour of Thin UI
 * 2. Delete blog.php
 * 3. Refactor the blog section of index.php
 * 4. Remove `box-sizing: border-box` in favour of Thin UI
 */
