/*
Theme Name: Loki's Canine Cuts
Theme URI: https://www.lokiscaninecuts.co.uk/
Description: Bespoke Theme built using Bootstrap 3 for Clip'N'Chip
Author: Elms Creative
Author URI: http://www.elmscreative.com/
Version: 1.0
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    /* Brand Colors */
    --primary-color: #a98322;
    --dark-color: #101010;
    --light-grey: #e8e8e8;
    --medium-grey: #cecece;
    --lighter-grey: #ccc;
    --pale-grey: #e5e4e9;
    --background-grey: #eff2f7;
    --light-blue: #ddcda7;
    --accent-blue: #147efb;
    --white: #fff;
    --black: #000;

    /* Status Colors */
    --error-color: #e5090d;
    --success-color: #398f14;
    --warning-color: #ffa500;

    /* Typography */
    --font-family: "Montserrat", Arial, Helvetica, sans-serif;
    --font-family-heading: "Cinzel", serif;
    --font-size-base: 15px;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing */
    --border-radius: 125px;
    --border-radius-small: 5px;
    --transition-speed: 0.1s;
}

/* ==========================================================================
   Elements
   ========================================================================== */

html,
body {
    height: 100%;
}
html {
    overflow: auto;
    background: var(--white);
}
body {
    padding: 0;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--dark-color);
    -webkit-font-smoothing: antialiased;
    background: none;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 10px;
    padding: 0;
    color: var(--primary-color);
    text-transform: none;
    font-family: var(--font-family-heading) !important;
    font-weight: var(--font-weight-semibold);
}
.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    color: var(--black);
}

hr {
    width: 250px;
    height: 1px;
    padding: 0;
    margin: 0 auto;
    border-top: var(--primary-color) 1px solid;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

p {
    margin: 0 0 1.6em;
    line-height: 1.5;
}
span {
    color: var(--primary-color);
}
span.required,
span.forminator-required {
    color: var(--error-color);
}
small {
    font-size: 0.9em;
}
blockquote {
    padding: 10px 0;
    border-left: none;
    text-align: justify;
}
blockquote > svg {
    float: left;
    margin: 0 22px 3px 0;
    font-size: 42px;
}
blockquote > p {
    font-size: 15px;
}
i,
svg {
    color: inherit;
}
address {
    margin-bottom: 10px;
}
strong {
    font-weight: var(--font-weight-bold);
}

form {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
}
label {
    margin: 0.5em auto;
    padding: 0;
    font-size: 1em;
    display: block;
    text-align: left;
    clear: both;
    color: var(--black) !important;
}
input[type="text"],
input[type="url"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100% !important;
    padding: 10px !important;
    margin: 0 auto 12px !important;
    color: var(--dark-color) !important;
    font-size: 1em !important;
    background: var(--white) !important;
    border: var(--medium-grey) 1px solid !important;
    border-radius: 0 !important;
    font-family: var(--font-family) !important;
}
input[type="checkbox"] {
    margin: 0;
}
input[type="file"] {
    margin: 0;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    color: #2a2a2a;
}
select {
    width: 100%;
    padding: 10px;
    color: var(--dark-color);
    font-size: 1em;
    font-family: var(--font-family) !important;
    height: auto;
    appearance: none;
    box-shadow: none !important;
    background: var(--white);
    border-radius: 0;
    border: var(--medium-grey) 1px solid;
}
textarea {
    width: 100%;
    min-height: 120px;
    max-height: 120px;
    padding: 10px;
    margin: 0 auto 10px;
    font-size: 1em;
    background: var(--white);
    border: var(--medium-grey) 1px solid;
    border-radius: 0;
    font-family: var(--font-family) !important;
}

.form-control {
    padding: 6px;
}

input[type="submit"],
button {
    width: auto;
    font-size: 14px;
    padding: 12px 30px 10px;
    text-decoration: none;
    display: inline-block;
    font-weight: var(--font-weight-bold);
    color: var(--white) !important;
    text-align: center;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    border: var(--primary-color) 0px solid;
    transition: all var(--transition-speed) linear;
}
input[type="submit"]:hover,
button:hover {
    color: var(--white) !important;
    background: var(--dark-color);
}
.btn,
.forminator-ui.forminator-design--flat .forminator-button-submit {
    width: auto !important;
    font-size: 14px !important;
    padding: 12px 30px 10px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: var(--font-weight-bold) !important;
    color: var(--white) !important;
    text-align: center !important;
    background: var(--primary-color) !important;
    border-radius: var(--border-radius) !important;
    border: var(--primary-color) 0px solid !important;
    transition: all var(--transition-speed) linear !important;
    -webkit-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0) !important;
    -moz-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0) !important;
    box-shadow: 0 0 0 0 rgba(50, 50, 50, 0) !important;
}
.btn:hover,
.forminator-ui.forminator-design--flat .forminator-button-submit:hover {
    color: var(--white) !important;
    background: var(--dark-color) !important;
}

.forminator-select-dropdown-container--open
    .forminator-dropdown--flat
    .select2-results
    .select2-results__options
    .select2-results__option.select2-results__option--selected,
.forminator-select-dropdown-container--open
    .forminator-dropdown--flat
    .select2-results
    .select2-results__options
    .select2-results__option.select2-results__option--selected
    span:not(.forminator-checkbox-box) {
    background-color: var(--black) !important;
}

.alignleft {
    float: left;
    margin: 0 10px 10px 0;
    border: none;
}
.alignright {
    float: right;
    margin: 0 10px 0 10px;
    border: none;
}
.aligncenter {
    float: none;
    margin: 10px auto;
    display: block;
    border: none;
}

.padded {
    padding: 6px 12px;
}
.no-padding {
    padding: 0 !important;
}
.no-margin {
    margin: 0;
}
.no-bullets {
    list-style: none;
}

.gap-ext2 {
    display: block;
    position: relative;
    margin: 60px 0;
    clear: both;
    overflow: hidden;
}
.gap-ext {
    display: block;
    position: relative;
    margin: 30px 0;
    clear: both;
    overflow: hidden;
}
.gap {
    display: block;
    position: relative;
    margin: 15px 0;
    clear: both;
    overflow: hidden;
}
.gap-mini {
    display: block;
    position: relative;
    margin: 8px 0;
    clear: both;
    overflow: hidden;
}
.gap-very-mini {
    display: block;
    position: relative;
    margin: 4px 0;
    clear: both;
    overflow: hidden;
}

/* ==========================================================================
   Structure
   ========================================================================== */

#banner {
    padding: 10px 24px;
    background: var(--primary-color);
}
#banner p {
    margin-bottom: 0;
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    font-size: 1.4rem;
    line-height: 1.4;
}

#wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -350px;
    padding: 0 0 350px;
    overflow: hidden;
}

header {
    width: 100%;
    height: auto;
    padding: 15px 0;
    position: relative;
    z-index: 35;
    border-bottom: #888 1px solid;
}
nav#pri {
    padding: 15px 0;
    position: relative;
    z-index: 25;
}
nav#pri .logo {
    float: left;
    max-width: 240px;
    margin: 0;
}
nav#pri .menu-primary-container {
    float: right;
    display: inline-block;
}

main#content {
    position: relative;
    z-index: 10;
}
section#hero.homepage {
    margin: 0 auto;
    position: relative;
    z-index: 25;
    background: var(--dark-color) url("img/hero-placeholder.jpg") center
        no-repeat;
    background-size: cover;
}
section#hero.homepage .inner {
    padding: 155px 0 265px;
}
section#hero.homepage .inner h1 {
    margin: 0;
    color: var(--white);
    font-size: 40px;
    text-transform: capitalize;
}
section#hero.homepage .inner p.lead {
    color: var(--white);
}
section#hero.homepage .hero-curve {
    width: 104%;
    max-width: 110%;
    position: absolute;
    left: -6px;
    right: 0;
    bottom: -2px;
    z-index: 2;
}
section#hero.homepage .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: -2px;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
}
section#hero.homepage .chev-down {
    position: absolute;
    bottom: 65px;
    color: var(--white);
}
section#hero.homepage .chev-down > svg {
    font-size: 3rem;
}

section#hero {
    margin: 0 auto;
    position: relative;
    z-index: 25;
    background: var(--dark-color) url("img/hero-placeholder.jpg") center
        no-repeat;
    background-size: cover;
}
section#hero .inner {
    padding: 105px 0 215px;
}
section#hero .inner h1 {
    margin: 0;
    color: var(--white);
    font-size: 46px;
    text-align: center;
    text-transform: capitalize;
}
section#hero .container {
    position: relative;
    z-index: 5;
}
section#hero .hero-curve {
    width: 104%;
    max-width: 110%;
    position: absolute;
    left: -6px;
    right: 0;
    bottom: -2px;
    z-index: 2;
}
section#hero .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
}
section#intro.section {
    padding-top: 0;
}

footer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
    background: var(--white);
}
footer p {
    margin: 0 auto;
    color: var(--black);
}
footer .logo-alt {
    max-width: 240px;
}
footer address {
    margin: 0;
    color: var(--black);
    font-size: 14px;
}
footer hr {
    border-top: #808da2 1px solid;
}
footer a:active,
footer a:visited,
footer a:link {
    color: var(--primary-color);
    text-decoration: none;
}
footer a:hover {
    color: var(--black);
}
footer a[href^="tel"] {
    color: var(--primary-color);
    text-decoration: none;
}
footer a[href^="tel"]:hover {
    color: var(--black);
}

footer #brand {
    padding: 22px 0;
    overflow: hidden;
    background: var(--dark-color);
}
footer #brand h3 {
    margin: 0.55em 0;
    color: var(--white);
}
footer #sitemap {
    padding: 45px 0;
}
footer #sitemap p {
    font-size: 14px;
}
footer #powered {
    padding: 20px 0;
    border-top: var(--light-grey) 1px solid;
}
footer #powered p {
    font-size: 1.3rem;
}
footer #powered a:active,
footer #powered a:visited,
footer #powered a:link {
    text-decoration: none;
}
footer #powered a:hover {
    color: var(--primary-color);
}
footer #powered a[href^="tel"] {
    text-decoration: none;
}
footer #powered a[href^="tel"]:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Links and Navigation
   ========================================================================== */

nav#pri.affix + .empty {
    padding-top: 103px;
}
nav#pri.affix {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--dark-color);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
}
nav#pri.affix .logo {
    float: left;
    max-width: 160px;
    margin: 0;
    display: block;
    transition: all 0.6s ease;
}
nav#pri.affix #primary {
    float: right;
    margin: 15px 0;
    transition: all 0.6s ease;
}
nav#pri.affix #primary > li > a {
    font-size: 1.25rem;
    transition: all 0.6s ease;
}

a {
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: color var(--transition-speed) linear;
}
a:hover {
    text-decoration: none;
}
a:active,
a:visited,
a:link {
    color: var(--primary-color);
}
a:hover {
    color: var(--dark-color);
}
a[href^="tel"] {
    color: var(--primary-color);
    text-decoration: none;
}
a[href^="tel"]:hover {
    color: var(--dark-color);
    text-decoration: none;
}
a.nostyle {
    text-decoration: none;
    color: inherit;
}

.navbar-collapse {
    padding: 0 !important;
}
.navbar-toggle {
    float: right;
    width: 42px !important;
    position: relative;
    padding: 5px 10px 10px;
    margin: 20px auto !important;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    text-shadow: none;
    border: 0px solid #9c9c9c;
    border-radius: 0;
    background: none;
}
.navbar-toggle:hover {
    border: 0px solid var(--white) !important;
    background: none;
}
.navbar-toggle span {
    color: var(--lighter-grey) !important;
}
.navbar-toggle span.icon-bar {
    width: 100%;
    background: var(--lighter-grey) !important;
}
.navbar-toggle:hover span {
    color: var(--white) !important;
}
.navbar-toggle:hover span.icon-bar {
    background: var(--white) !important;
}
.navbar-toggle .icon-bar {
    height: 1px;
    margin-top: 4px;
}

#primary {
    float: left;
    width: auto;
    height: auto;
    margin: 28px auto;
    padding: 0;
    position: relative;
    list-style: none;
    text-align: left;
}
#primary > li {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 10px;
    display: inline-block;
}
#primary > li > a {
    margin: 0;
    padding: 5px 0;
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-family);
    text-transform: capitalize;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
}
#primary > li > a > svg {
    font-size: 2rem;
    color: var(--lighter-grey);
    position: relative;
    top: 2px;
}
#primary > li > a:hover {
    color: var(--primary-color);
}
#primary > li:last-child {
    margin-left: 5px;
}
#primary > li:last-child > a {
    margin-left: 5px;
    padding: 10px 24px;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 75px;
}
#primary > li:last-child > a:hover {
    color: var(--lighter-grey);
    background: var(--dark-color);
}

#secondary {
    float: none;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
    list-style: none;
    text-align: left;
}
#secondary > li {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2px 0;
    display: block;
}
#secondary > li > a {
    margin: 0;
    padding: 0;
    color: var(--black);
    font-size: 14px;
    font-family: var(--font-family);
    text-transform: capitalize;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
}
#secondary > li > a > svg {
    font-size: 2rem;
    color: var(--lighter-grey);
    position: relative;
    top: 2px;
}
#secondary > li > a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    margin: 0px auto 0 !important;
    padding: 10px !important;
}
.dropdown-menu li {
    width: 100% !important;
    padding: 0px !important;
    margin: 0px auto !important;
    font-size: 0.9em !important;
    background: var(--white) !important;
    border: none !important;
}
.dropdown-menu li:hover {
    background: var(--white) !important;
}
.dropdown-menu li:nth-last-child(3) {
    padding: 0px !important;
    border: none !important;
}
.dropdown-menu li a {
    padding: 6px !important;
    margin: 0;
    line-height: 2 !important;
    text-align: left !important;
    color: var(--black) !important;
    font-size: inherit !important;
    border: none !important;
}
.dropdown-menu li.active a {
    color: #555 !important;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #555 !important;
    background: var(--white) !important;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    background: none !important;
}

.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: transparent;
}

/* ==========================================================================
   Misc
   ========================================================================== */

ul.no-style {
    margin: 0 0 20px;
    list-style: none;
}
ul.no-style > li > ol > li {
    margin-bottom: 5px;
}
ul,
ol {
    padding: 0 0 0 20px;
}

.section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}
.section-mini {
    padding: 40px 0;
    position: relative;
    z-index: 5;
}
.section-very-mini {
    padding: 20px 0;
    position: relative;
    z-index: 5;
}
.section-top {
    padding: 100px 0 0;
    position: relative;
    z-index: 5;
}
.section-bottom {
    padding: 0 0 100px;
    position: relative;
    z-index: 5;
}
.higher-up {
    position: relative;
    z-index: 15;
}

.dark-blue-bg {
    background: var(--dark-color);
}
.blue-bg {
    background: var(--primary-color);
}
.light-blue-bg {
    background: var(--light-blue);
}
.grey-bg {
    background: var(--background-grey);
}

.light-blue-bg h1,
.light-blue-bg h2,
.light-blue-bg h3,
.light-blue-bg h4,
.light-blue-bg h5,
.light-blue-bg h6 {
    color: var(--black);
}

.dark-blue-bg h1,
.dark-blue-bg h2,
.dark-blue-bg h3,
.dark-blue-bg h4,
.dark-blue-bg h5,
.dark-blue-bg h6,
.dark-blue-bg p {
    color: var(--white);
}

ul.c-details {
    margin: 0;
    text-align: left;
}
ul.c-details > li {
    padding: 0 25px 0 0;
    color: var(--white);
}
ul.c-details > li > a {
    font-size: 1.35rem;
    text-decoration: none;
    color: var(--white);
    font-weight: var(--font-weight-bold);
}
ul.c-details > li > a > svg {
    font-size: 1.45rem;
}
ul.c-details > li > a:hover {
    color: var(--primary-color);
}

ul.social-01 {
    margin: 0;
    text-align: right;
}
ul.social-01 > li > a {
    padding: 0 0 0 5px;
    color: var(--white);
}
ul.social-01 > li > a > svg {
    font-size: 1.45rem;
    color: var(--white);
}
ul.social-01 > li > a:hover > svg,
ul.social-01 > li > a > svg:hover {
    color: var(--primary-color);
}

ul.social-02 {
    margin: 14px 0;
    text-align: right;
}
ul.social-02 > li > a {
    padding: 0 0 0 10px;
    color: var(--primary-color);
}
ul.social-02 > li > a > svg {
    font-size: 2rem;
    color: var(--primary-color);
}
ul.social-02 > li > a:hover > svg,
ul.social-02 > li > a > svg:hover {
    color: var(--white);
}

table.opening-hours {
    margin: 0;
}
table.opening-hours > tbody > tr > td:first-child {
    width: 140px;
}
table.opening-hours > tbody > tr > td {
    padding: 2px 0;
    font-size: 14px;
    color: var(--black);
    border: none;
}

p#breadcrumbs {
    color: var(--white);
    text-align: center;
    font-size: 1.35rem;
}
p#breadcrumbs span {
    color: var(--white);
    font-weight: var(--font-weight-bold);
}
p#breadcrumbs a:active,
p#breadcrumbs a:visited,
p#breadcrumbs a:link {
    color: var(--white);
    text-decoration: none;
}
p#breadcrumbs a:hover {
    color: var(--lighter-grey);
}

#mapCanvas {
    width: 100%;
    min-height: 400px;
}
#map .box {
    margin: 150px 0;
    position: relative;
    z-index: 5;
}

.details-box {
    text-align: center;
}
.box {
    padding: 1.75em;
    margin: 0;
    background: var(--white);
    box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.35);
}
.box p {
    font-weight: var(--font-weight-normal);
}
.box *:last-child {
    margin: 0;
}
.box-middle {
    margin: 0 10px;
}

#c-boxes {
    margin: 0 auto -125px;
}
.price {
    margin: 0;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
}
.team-img {
    max-width: 240px;
}

.wp-block-image img {
    height: 100%;
}

.panel-default > .panel-heading {
    background-color: var(--light-blue);
}
.panel-body p:last-child {
    margin: 0;
}
.panel-title > a {
    color: var(--primary-color);
    font-weight: 900;
    text-decoration: none;
}

/* Testimonial Bubbles */
.quote {
    max-width: 75%;
    position: relative;
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    clear: both;
}

.quote p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.5;
}

.quote h4 {
    margin: 0;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family) !important;
    opacity: 0.7;
}

/* Right-aligned (received messages) */
.quote.r {
    float: left;
    background-color: #e5e5ea;
    color: var(--dark-color);
}

.quote.r h4 {
    color: var(--dark-color);
}

.quote.r:before {
    content: "";
    position: absolute;
    left: -8px;
    bottom: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 20px 20px;
    border-color: transparent #e5e5ea transparent transparent;
}

/* Remove the :after */
.quote.r:after {
    display: none;
}

/* Left-aligned (sent messages) */
.quote.l {
    float: right;
    margin-left: auto;
    color: var(--white);
    background-color: #0a7dfc;
}

.quote.l h4 {
    color: rgba(255, 255, 255, 0.8);
}

.quote.l:before {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 20px 20px;
    border-color: transparent transparent transparent #0a7dfc;
}

/* Remove the :after */
.quote.l:after {
    display: none;
}

/* Spacing between messages */
.quote-spacer {
    clear: both;
    height: 16px;
}

.curved-img {
    border-radius: var(--border-radius-small);
}

/* ==========================================================================
   Cookie Consent
   ========================================================================== */

.cc-window {
    opacity: 1;
    transition: opacity 1s ease;
}
.cc-window.cc-invisible {
    opacity: 0;
}
.cc-animate.cc-revoke {
    transition: transform 1s ease;
}
.cc-animate.cc-revoke.cc-top {
    transform: translateY(-2em);
}
.cc-animate.cc-revoke.cc-bottom {
    transform: translateY(2em);
}
.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-top,
.cc-revoke:hover {
    transform: translateY(0);
}
.cc-grower {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
}
.cc-link,
.cc-revoke:hover {
    text-decoration: underline;
}
.cc-revoke,
.cc-window {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica, Calibri, var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.5em;
    display: flex;
    flex-wrap: nowrap;
    z-index: 9999;
}
.cc-window.cc-static {
    position: static;
}
.cc-window.cc-floating {
    padding: 2em;
    max-width: 100%;
    flex-direction: column;
}
.cc-window.cc-banner {
    padding: 1em 1.8em;
    width: 100%;
    flex-direction: row;
}
.cc-revoke {
    padding: 0.5em;
}
.cc-header {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}
.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
    cursor: pointer;
}
.cc-link {
    opacity: 0.8;
    display: inline-block;
    padding: 0.2em;
}
.cc-link:hover {
    opacity: 1;
}
.cc-link:active,
.cc-link:visited {
    color: initial;
}
.cc-btn {
    display: block;
    padding: 0.4em 0.8em;
    font-size: 0.9em;
    font-weight: var(--font-weight-bold);
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border-radius: var(--border-radius);
}
.cc-banner .cc-btn:last-child {
    min-width: 140px;
}
.cc-highlight .cc-btn:first-child {
    background-color: transparent;
    border-color: transparent;
}
.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
    background-color: transparent;
    text-decoration: underline;
}
.cc-close {
    display: block;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    font-size: 1.6em;
    opacity: 0.9;
    line-height: 0.75;
}
.cc-close:focus,
.cc-close:hover {
    opacity: 1;
}
.cc-revoke.cc-top {
    top: 0;
    left: 3em;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}
.cc-revoke.cc-bottom {
    bottom: 0;
    left: 3em;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
}
.cc-revoke.cc-left {
    left: 3em;
    right: unset;
}
.cc-revoke.cc-right {
    right: 3em;
    left: unset;
}
.cc-top {
    top: 1em;
}
.cc-left {
    left: 1em;
}
.cc-right {
    right: 1em;
}
.cc-bottom {
    bottom: 0;
}
.cc-floating > .cc-link {
    margin-bottom: 1em;
}
.cc-floating .cc-message {
    display: block;
    margin-bottom: 1em;
}
.cc-window.cc-floating .cc-compliance {
    flex: 1;
}
.cc-window.cc-banner {
    align-items: center;
}
.cc-banner.cc-top {
    left: 0;
    right: 0;
    top: 0;
}
.cc-banner.cc-bottom {
    left: 0;
    right: 0;
    bottom: 0;
}
.cc-banner .cc-message {
    flex: 1;
    font-size: 0.9em;
}
.cc-compliance {
    display: flex;
    align-items: center;
    align-content: space-between;
}
.cc-compliance > .cc-btn {
    flex: 1;
}
.cc-btn + .cc-btn {
    margin-left: 0.5em;
}
.cc-message {
    color: var(--white);
}

.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: var(--border-radius-small);
}
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
    text-align: center;
    display: inline;
    flex: none;
}
.cc-theme-classic .cc-btn {
    border-radius: var(--border-radius-small);
}
.cc-theme-classic .cc-btn:last-child {
    min-width: 140px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
    display: inline-block;
}
.cc-theme-edgeless.cc-window {
    padding: 0;
}
.cc-floating.cc-theme-edgeless .cc-message {
    margin: 2em 2em 1.5em;
}
.cc-banner.cc-theme-edgeless .cc-btn {
    margin: 0;
    padding: 0.8em 1.8em;
    height: 100%;
}
.cc-banner.cc-theme-edgeless .cc-message {
    margin-left: 1em;
}
.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
    margin-left: 0;
}

.cc-color-override--747369826 .cc-btn {
    color: var(--white) !important;
}

/* ==========================================================================
   Google Recaptcha V3
   ========================================================================== */

.grecaptcha-badge {
    display: none !important;
}

/* ==========================================================================
   WP Page Navi
   ========================================================================== */

.wp-pagenavi {
    width: 100%;
    height: auto;
    margin: 20px auto;
    text-align: center;
    clear: both;
}
.wp-pagenavi a,
.wp-pagenavi span {
    font-size: 1em;
    text-decoration: none;
    border: 1px solid var(--white);
    padding: 3px 5px;
    margin: 2px;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: var(--primary-color);
}
.wp-pagenavi span.current {
    color: var(--dark-color);
    font-weight: 500;
}

/* ==========================================================================
   Bootstrap Queries
   ========================================================================== */

@media (min-width: 320px) and (max-width: 767px) {
    .cc-window.cc-floating {
        width: 100% !important;
        padding: 1em !important;
    }
    .cc-floating .cc-message {
        font-size: 1rem !important;
    }

    #banner p {
        font-size: 1.25rem;
    }
    #primary,
    #primary > li {
        width: 100%;
        display: block;
    }
    #primary > li > a {
        margin: 0 auto 10px;
    }
    #primary > li:last-child {
        margin-left: 0;
    }
    #primary > li:last-child > a {
        margin-left: 0;
    }
    nav#pri .menu-primary-container {
        float: none;
        display: block;
    }
    nav#pri .logo {
        max-width: 190px;
    }
    nav#pri.affix .navbar-toggle {
        margin: 6px auto !important;
    }
    nav#pri.affix .logo {
        max-width: 100px;
    }
    nav#pri.affix #primary {
        margin: 10px auto 0;
    }
    section#hero.homepage .inner {
        padding: 75px 0 145px;
    }
    section#hero.homepage .inner h1 {
        font-size: 24px;
    }
    section#hero .inner {
        padding: 55px 0 115px;
    }
    section#hero .inner h1 {
        font-size: 24px;
    }
    section#intro.section {
        padding-top: 40px;
    }
    p.copy,
    p.credit {
        text-align: center;
    }
    .section {
        padding: 40px 0;
    }
    .box-middle {
        margin: 0;
    }
    #c-boxes {
        margin: 0 auto -95px;
    }
    footer #brand h3 {
        margin: 0.75em 0;
        font-size: 1.8rem;
    }
    footer .logo-alt {
        max-width: 240px;
        margin-bottom: 1.5em;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .cc-window.cc-floating {
        width: 100% !important;
        padding: 1em !important;
    }
    .cc-floating .cc-message {
        font-size: 1rem !important;
    }

    #banner p {
        font-size: 1.25rem;
    }
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.in {
        display: block !important;
    }
    .navbar-collapse.collapsing {
        position: relative;
        overflow: hidden;
        transition: height 0.35s ease;
    }
    #bs-example-navbar-collapse-1 {
        clear: both;
        width: 100%;
        float: none !important;
    }
    .navbar-toggle {
        display: block !important;
    }
    .navbar-header {
        float: right;
    }
    #primary {
        margin: 10px auto 0;
        float: none !important;
        width: 100% !important;
    }
    #primary,
    #primary > li {
        width: 100%;
        display: block;
    }
    #primary > li > a {
        margin: 0 auto 10px;
    }
    #primary > li:last-child {
        margin-left: 0;
    }
    #primary > li:last-child > a {
        margin-left: 0;
    }
    nav#pri .menu-primary-container {
        float: none !important;
        display: block;
        width: 100%;
    }
    nav#pri .logo {
        max-width: 190px;
    }
    nav#pri.affix .navbar-toggle {
        margin: 6px auto !important;
    }
    nav#pri.affix .logo {
        max-width: 100px;
    }
    nav#pri.affix #primary {
        margin: 10px auto 0;
    }
    section#hero.homepage .inner {
        padding: 75px 0 145px;
    }
    section#hero.homepage .inner h1 {
        font-size: 24px;
    }
    section#hero .inner {
        padding: 55px 0 115px;
    }
    section#hero .inner h1 {
        font-size: 24px;
    }
    section#intro.section {
        padding-top: 40px;
    }
    p.copy,
    p.credit {
        text-align: center;
    }
    .section {
        padding: 40px 0;
    }
    .box-middle {
        margin: 0;
    }
    #c-boxes {
        margin: 0 auto -155px;
    }
    footer #brand h3 {
        margin: 0.75em 0;
        font-size: 1.8rem;
    }
    footer .logo-alt {
        max-width: 240px;
        margin-bottom: 1.5em;
    }
    .contact-icon {
        max-width: 100px;
    }
    .box {
        padding: 1.25em;
    }
    .box,
    .box p,
    .box a,
    p,
    address {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    a[href^="mailto:"],
    a[href^="http"],
    a[href^="https"] {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    nav#pri .logo {
        max-width: 160px;
        margin: 10px 0;
    }
    nav#pri.affix .logo {
        max-width: 120px;
    }
    nav#pri.affix #primary > li > a {
        line-height: 0.5;
    }
    #primary {
        margin: 26px auto;
    }
    #primary > li {
        padding: 0 8px;
    }
    #primary > li > a {
        font-size: 12px;
    }
    section#hero.homepage .inner {
        padding: 105px 0 165px;
    }
    section#hero.homepage .inner h1 {
        font-size: 32px;
    }
    section#hero .inner {
        padding: 105px 0 165px;
    }
    section#hero .inner h1 {
        font-size: 32px;
    }
    p.copy {
        text-align: left;
    }
    p.credit {
        text-align: right;
    }
}

@media (min-width: 1201px) {
    p.copy {
        text-align: left;
    }
    p.credit {
        text-align: right;
    }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: var(--dark-color) !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .cc-revoke,
    .cc-window {
        display: none;
    }
}
