﻿@charset "UTF-8";
/*

GLOBAL RESETS
=============

Standard reset styles and a few extra bits and pieces including
setting border-box on all elements.

*/
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic,600italic);
@import url(https://db.onlinewebfonts.com/c/666590a2cbf57917db412d927daafa99?family=Ikaros);

:root {
    --white: #ffffff;
    --body: #f4f4f4;
    --dark: #2f2f2f;
    --title: #5b5a5a;
    --banner: #f4f3f4;
    --body-copy: #16171f;
    --scout-blue: #4f709c;
    --scout-blue-grey: #7e8db8;
    --primary-button: #858496;
    --secondary-button: #858496;
    --scout-primary-button: #5B77A1;
    --scout-secondary-button: #a2599f;
    --scout-tertiary-button: #858496;
    --green: #739441;
    --blue: #4d6d9f;
    --purple: #8c88a4;
    --pink: #a1438f;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-family: 'Open Sans', sans-serif;
}

/* row fix form safari on mac os*/
.row:before,
row:after {
    display: inline-block;
}

body {
    background-color: var(--body) !important;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.smaller-text {
    font-size: 0.875rem;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

    nav ul {
        list-style: none;
    }

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: "";
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
}

ins,
mark {
    background: #333;
    color: #fff;
    text-decoration: none;
}

mark {
    display: inline-block;
    padding: 0.1em;
    text-shadow: none;
    background: #f2d3a9;
    color: #a93901;
    border-radius: 2px;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

::-moz-selection,
::-webkit-selection,
::-moz-selection {
    text-shadow: none;
    background: #333;
    color: #fff;
}

::-moz-selection,
::-webkit-selection,
::selection {
    text-shadow: none;
    background: #333;
    color: #fff;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
}

[type="submit"] {
    cursor: pointer;
}

* {
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* REM Font sizing with line height- http://blog.divshot.com/post/29552945105/useful-sass-mixins-for-responsive-design-font-sizing */
/* Clearfix http://codepen.io/seanseansean/blog/beginner-level-sass-the-blog/ */
/* Define Media Queries - http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/ */
/* Hover animation */
/* Gradient */
/* Visually hide element http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/ */
.texture {
    width: 100%;
}

    .texture .texture-normal {
        background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/diagonal-noise.png"), -webkit-linear-gradient(-450deg, #fbfbfb, #e9e9e9), center no-repeat #fbfbfb scroll;
        background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/diagonal-noise.png"), -webkit-linear-gradient(top, #fbfbfb, #e9e9e9), center no-repeat #fbfbfb scroll;
        background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/diagonal-noise.png"), linear-gradient(180deg, #fbfbfb, #e9e9e9), center no-repeat #fbfbfb scroll;
    }

    .texture .texture-inverted {
        background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/noise_lines.png"), -webkit-linear-gradient(-450deg, #fbfbfb, #e9e9e9), center no-repeat #fbfbfb scroll;
        background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/noise_lines.png"), -webkit-linear-gradient(top, #fbfbfb, #e9e9e9), center no-repeat #fbfbfb scroll;
        background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/noise_lines.png"), linear-gradient(180deg, #fbfbfb, #e9e9e9), center no-repeat #fbfbfb scroll;
    }

@media (min-width: 992px) {
    .banner-background {
        background: url("../assets/header-background.jpg");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (max-width: 991.98px) {
    .banner-background {
        background: url("../assets/mobile-header-background.jpg");
        background-position: center bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.btn.location {
    border: none;
    border-radius: 0px;
    border-color: transparent;
}

.btn.btn-primary {
    background-color: var(--primary-button);
    border: 0px;
    border-radius: 0px;
}

.btn.btn-secondary {
    background-color: var(--secondary-button);
    border: 0px;
    border-radius: 0px;
}

.btn.btn-danger {
    border: 0px;
    border-radius: 0px;
}

#btn-share {
    background-color: rgb(54, 149, 79) !important;
}

    #btn-share:hover,
    #btn-share:focus,
    #btn-share:active {
        background-color: rgb(68, 187, 99) !important;
    }

.btn.round {
    display: block;
    /* width: 100px; */
    /* height: 60px; */
    line-height: 54px;
    /* border-radius: 50%; */
    text-align: center;
    text-decoration: none;
}

.btn.enqiure-location {
    background-color: #5f7ca9 !important;
}

    .btn.enqiure-location:hover,
    .btn.enqiure-location:focus,
    .btn.enqiure-location:active {
        background-color: var(--scout-blue) !important;
    }

.btn-primary.location {
    background-color: transparent !important;
}

.btn-primary.location {
    color: var(--scout-primary-button) !important;
    background-color: transparent;
}

.btn-secondary.location {
    color: #ffffff !important;
    /*background-color: rgba(68, 115, 187, 0.8) !important;*/
    background-color: rgba(68, 187, 99, 0.8) !important;
}

.btn-tertiary.location {
    color: #ffffff !important;
    background-color: rgba(161, 67, 143, 0.8) !important;
    margin-bottom: 0.25rem;
}

.btn-primary.location.active {
    background-color: var(--scout-primary-button) !important;
    color: var(--white) !important;
}

.btn-secondary.location.active,
.btn-secondary.location:active,
.btn-secondary.location:hover,
.btn-secondary.location:focus {
    background-color: #4473bb !important;
    color: var(--white) !important;
}

.btn-tertiary.location.active,
.btn-tertiary.location:active,
.btn-tertiary.location:hover,
.btn-tertiary.location:focus {
    background-color: var(--pink) !important;
    color: var(--white) !important;
}

.btn-primary.location:not(:disabled):not(.disabled).active,
.btn-primary.location:not(:disabled):not(.disabled):active,
.show > .btn-primary.location.dropdown-toggle,
.btn-primary.location.focus,
.btn-primary.location:focus {
    background-color: rgba(161, 67, 143, 0.8);
    color: var(--scout-primary-button);
    box-shadow: none;
}

.btn-secondary.location:not(:disabled):not(.disabled).active,
.btn-secondary.location:not(:disabled):not(.disabled):active,
.show > .btn-secondary.location.dropdown-toggle,
.btn-secondary.location.focus,
.btn-secondary.location:focus {
    background-color: rgba(162, 89, 159, 0.8);
    color: var(--scout-secondary-button);
    box-shadow: none;
}

.btn-tertiary.location:not(:disabled):not(.disabled).active,
.btn-tertiary.location:not(:disabled):not(.disabled):active,
.show > .btn-tertiary.location.dropdown-toggle,
.btn-tertiary.location.focus,
.btn-tertiary.location:focus {
    background-color: rgba(161, 67, 143, 0.8);
    color: var(--scout-tertiary-button);
    box-shadow: none;
}

.bg-white {
    background-color: var(--white);
}

.bg-light-grey {
    background-color: var(--body);
}

.bg-dark-grey {
    background-color: var(--dark);
}

.bg-banner {
    background-color: var(--banner);
}

.bg-body {
    background-color: var(--body-copy);
}

.bg-scout-blue {
    background-color: var(--scout-blue);
}

.bg-scout-blue-grey {
    background-color: var(--scout-blue-grey);
}

.txt-title > *,
.txt-title {
    color: var(--title);
}

.txt-light-grey > *,
.txt-light-grey {
    color: var(--body);
}

.txt-dark-grey > *,
.txt-dark-grey {
    color: var(--dark);
}

.txt-banner > *,
.txt-banner {
    color: var(--banner);
}

.txt-body > *,
.txt-body {
    color: var(--body-copy);
}

.txt-blue > *,
.txt-blue {
    color: var(--blue);
}

.txt-green > *,
.txt-green {
    color: var(--green);
}

.txt-purple > *,
.txt-purple {
    color: var(--purple);
}

.txt-scout-blue > *,
.txt-scout-blue {
    color: var(--scout-blue);
}

.txt-pink > *,
.txt-pink {
    color: var(--pink);
}

.link-white a,
a.link-white {
    color: var(--white);
}

.link-light-grey a,
a.link-light-grey {
    color: var(--body);
}

.link-dark-grey a,
a.link-dark-grey {
    color: var(--dark);
}

.link-banner a,
a.link-banner {
    color: var(--banner);
}

.link-body a,
a.link-body {
    color: var(--body-copy);
}

.link-scout-blue a,
a.link-scout-blue {
    color: var(--scout-blue);
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-center {
    text-align: center;
}

.bg-ratio::after {
    content: '';
    display: block;
    width: 100%;
}

.bg-1x1::after {
    padding-top: 100%;
}

.bg-2x3::after {
    padding-top: 66.666%;
}

/* --------------------------------

Primary style

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: 'Open Sans', sans-serif;
    color: rgba(var(--body-copy), 1);
    background-color: #f8f8f8;
}

a {
    color: #242e30;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-size: 1rem;
}

    input::-ms-clear,
    textarea::-ms-clear {
        display: none;
    }

    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"],
    button,
    .button {
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        -webkit-font-smoothing: antialiased;
        background-color: #008cdf;
        border-radius: 3px;
        border: none;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        font-family: 'Open Sans', sans-serif;
        font-size: 1em;
        font-weight: 600;
        line-height: 1;
        padding: 0.75em 1em;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        vertical-align: middle;
        white-space: nowrap;
    }

        button:hover,
        button:focus,
        input[type="button"]:hover,
        input[type="button"]:focus,
        input[type="reset"]:hover,
        input[type="reset"]:focus,
        input[type="submit"]:hover,
        input[type="submit"]:focus,
        button:hover,
        button:focus,
        .button:hover,
        .button:focus {
            background-color: #2bb1ff;
            color: #fff;
        }

        button:disabled,
        input[type="button"]:disabled,
        input[type="reset"]:disabled,
        input[type="submit"]:disabled,
        button:disabled,
        .button:disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }

        .button.grey {
            background-color: #2d343a;
        }

.button-small {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    background-color: #008cdf;
    border-radius: 3px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8em;
    font-weight: 600;
    line-height: 1;
    padding: 0.5em 0.75em;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

    .button-small:hover,
    .button-small:focus {
        background-color: #2bb1ff;
        color: #fff;
    }

    .button-small:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .button-small.grey {
        background-color: #2d343a;
    }

fieldset {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    margin: 0 0 0.75em;
    padding: 1.5em;
}

input,
label,
select {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

label {
    font-weight: 400;
    margin-bottom: 0.1875em;
}

    label.required::after {
        content: "*";
    }

    label abbr {
        display: none;
    }

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea,
select[multiple="multiple"],
textarea {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    margin-bottom: 0.75em;
    padding: 0.5em;
    -webkit-transition: border-color;
    transition: border-color;
    width: 100%;
}

    input[type="color"]:hover,
    input[type="date"]:hover,
    input[type="datetime"]:hover,
    input[type="datetime-local"]:hover,
    input[type="email"]:hover,
    input[type="month"]:hover,
    input[type="number"]:hover,
    input[type="password"]:hover,
    input[type="search"]:hover,
    input[type="tel"]:hover,
    input[type="text"]:hover,
    input[type="time"]:hover,
    input[type="url"]:hover,
    input[type="week"]:hover,
    input:not([type]):hover,
    textarea:hover,
    select[multiple="multiple"]:hover,
    textarea:hover {
        border-color: #c4c4c4;
    }

    input[type="color"]:focus,
    input[type="date"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="email"]:focus,
    input[type="month"]:focus,
    input[type="number"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    input[type="tel"]:focus,
    input[type="text"]:focus,
    input[type="time"]:focus,
    input[type="url"]:focus,
    input[type="week"]:focus,
    input:not([type]):focus,
    textarea:focus,
    select[multiple="multiple"]:focus,
    textarea:focus {
        border-color: #008cdf;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(94, 196, 255, 0.7);
        outline: none;
    }

textarea {
    resize: vertical;
}

input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin-right: 0.375em;
}

input[type="file"] {
    padding-bottom: 0.75em;
    width: 100%;
}

select {
    margin-bottom: 1.5em;
    max-width: 100%;
    width: auto;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.default {
        list-style-type: disc;
        margin-bottom: 0.75em;
        padding-left: 1.5em;
    }

    ol.default {
        list-style-type: decimal;
        margin-bottom: 0.75em;
        padding-left: 1.5em;
    }

dl {
    margin-bottom: 0.75em;
}

    dl dt {
        font-weight: bold;
        margin-top: 0.75em;
    }

    dl dd {
        margin: 0;
    }

table {
    -webkit-font-feature-settings: "kern", "liga", "tnum";
    -ms-font-feature-settings: "kern", "liga", "tnum";
    font-feature-settings: "kern", "liga", "tnum";
    border-collapse: collapse;
    margin: 0.75em 0;
    table-layout: fixed;
    width: 100%;
}

th {
    border-bottom: 1px solid #b7b7b7;
    font-weight: 600;
    padding: 0.75em 0;
    text-align: left;
}

td {
    border-bottom: 1px solid #ddd;
    padding: 0.75em 0;
}

tr,
td,
th {
    vertical-align: middle;
}

/*
  If we use Google fonts, import it here. Don't include the http bit then it's safe across secure too
  @import url(//fonts.googleapis.com/css?family=Paytone+One|Roboto:400,400italic,700,700italic,900,500italic,500);
*/
/* @font-face {
  font-family: "Canadian";
  src: url("../fonts/Canadian/Canadian.ttf.woff") format("woff"),
    url("../fonts/Canadian/Canadian.ttf.svg#Canadian") format("svg"),
    url("../fonts/Canadian/Canadian.ttf.eot"),
    url("../fonts/Canadian/Canadian.ttf.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
} */

html {
    font-size: 100%;
}

body {
    -webkit-font-feature-settings: "kern", "liga", "pnum";
    -ms-font-feature-settings: "kern", "liga", "pnum";
    font-feature-settings: "kern", "liga", "pnum";
    -webkit-font-smoothing: antialiased;
    color: rgba(var(--body-copy), 1);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    line-height: 1.5;
}

/* prevent horizontal scrolling */

h1, h2, h3, h4, h5, h6 {
    color: var(--title);
    font-family: 'Lato', sans-serif;
}

p {
    margin: 0 0 0.75em;
    color: var(--body-copy)
}

a {
    color: rgba(var(--body-copy), 1);
    text-decoration: none;
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear;
}

    a:active,
    a:focus,
    a:hover {
        color: rgba(50, 61, 79, 1);
        outline: 0;
    }

    a:active,
    a:focus {
        outline: none;
    }

p a {
    font-weight: 700;
    font-style: italic;
    /* word-break: break-all; */
}

hr {
    border-bottom: 1px solid #ddd;
    border-left: none;
    border-right: none;
    border-top: none;
    margin: 1.5em 0;
}

img,
picture {
    margin: 0;
    max-width: 100%;
}

strong,
b {
    font-weight: bold;
}

pre,
code {
    font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
}

/*

    SITEWIDE LAYOUT ELEMENTS
    ========================

    Top level layout elements go in here, if you're building a module or page
    element of some sort, split it out into its own scss file and update
    styles.scss to import it.

*/
html {
    height: 100%;
}

body {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.site {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    /* 1, 3 */
}

ul,
ol {
    margin: 0;
}

li > ul,
li > ol {
    margin-bottom: 0;
}

img,
a img {
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    min-height: auto;
    vertical-align: middle;
}

footer {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    /* 2 */
    padding: 0 20px;
}

.footer-main-wrap {
    background-color: #224e6a;
}

    .footer-main-wrap a,
    .footer-main-wrap a:hover,
    .footer-main-wrap a:focus {
        color: var(--white);
    }

    .footer-main-wrap .row p:last-of-type {
        margin-bottom: 0;
    }

.footer-main {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 0;
}

    .footer-main:before,
    .footer-main:after {
        content: " ";
        display: table;
    }

    .footer-main:after {
        clear: both;
    }

.footer-left,
.footer-right {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 49.210839654%;
}

    .footer-left:last-child,
    .footer-right:last-child {
        margin-right: 0;
    }

    .footer-left p {
        font-size: 0.8em;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
        padding: 0;
        line-height: 20px;
    }

    .footer-left a:hover,
    .footer-left a:focus {
        color: #fff;
    }

.footer-2,
.footer-home {
    background: #359edb;
    background-color: #282b2e;
    background-color: #2d343a;
    padding: 0;
    width: 100%;
    display: inline-block;
}

    .footer-2 .footer-logo,
    .footer-home .footer-logo {
        margin-right: 1em;
        margin-bottom: 1em;
    }

@media screen and (min-width: 62em) {
    .footer-2 .footer-logo,
    .footer-home .footer-logo {
        float: left;
        margin-bottom: 0;
    }
}

.footer-2 .footer-logo img,
.footer-home .footer-logo img {
    height: 2em;
}

.footer-2 ul,
.footer-home ul {
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 62em) {
    .footer-2 ul,
    .footer-home ul {
        float: left;
        line-height: 1.8em;
        margin-left: 1em;
        margin-bottom: 0;
    }
}

.footer-2 ul li,
.footer-home ul li {
    list-style: none;
    padding-right: 1em;
}

@media screen and (min-width: 62em) {
    .footer-2 ul li,
    .footer-home ul li {
        display: inline;
        text-align: left;
    }
}

.footer-2 ul li a,
.footer-home ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

    .footer-2 ul li a:focus,
    .footer-2 ul li a:hover,
    .footer-home ul li a:focus,
    .footer-home ul li a:hover {
        color: white;
    }

.footer-2 ul.footer-secondary-links,
.footer-home ul.footer-secondary-links {
    clear: both;
    text-align: right;
}

@media screen and (min-width: 62em) {
    .footer-2 ul.footer-secondary-links,
    .footer-home ul.footer-secondary-links {
        float: right;
        clear: none;
    }
}

.footer-2 ul.footer-secondary-links li,
.footer-home ul.footer-secondary-links li {
    font-size: 0.8em;
    padding-right: 0;
}

@media screen and (min-width: 62em) {
    .footer-2 ul.footer-secondary-links li,
    .footer-home ul.footer-secondary-links li {
        padding-right: 1em;
    }
}

.footer-2 ul.footer-social,
.footer-home ul.footer-social {
    margin: 0 0 1em 0;
    float: right;
}

@media screen and (min-width: 62em) {
    .footer-2 ul.footer-social,
    .footer-home ul.footer-social {
        float: right;
        margin-top: 0;
        margin: 0;
    }
}

.footer-2 ul.footer-social li,
.footer-home ul.footer-social li {
    font-size: 1em;
    float: left;
    line-height: 0;
    margin: 0;
    padding-right: 0.7em;
}

    .footer-2 ul.footer-social li:last-child,
    .footer-home ul.footer-social li:last-child {
        padding-right: 0;
    }

.footer-2 ul.footer-social img,
.footer-home ul.footer-social img {
    height: 2rem;
    opacity: 1;
}

    .footer-2 ul.footer-social img:focus,
    .footer-2 ul.footer-social img:hover,
    .footer-home ul.footer-social img:focus,
    .footer-home ul.footer-social img:hover {
        opacity: 1;
    }

.footer-bottom-wrap {
    background-color: var(--dark);
}

.footer-bottom {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    *zoom: 1;
    padding: 12px 0;
    color: #ddd;
}

    .footer-bottom:before,
    .footer-bottom:after {
        content: " ";
        display: table;
    }

    .footer-bottom:after {
        clear: both;
    }

    .footer-bottom:before,
    .footer-bottom:after {
        content: " ";
        display: table;
    }

    .footer-bottom:after {
        clear: both;
    }

    .footer-bottom p {
        font-size: 0.7em;
    }

.grid-items {
    *zoom: 1;
}

    .grid-items:before,
    .grid-items:after {
        content: " ";
        display: table;
    }

    .grid-items:after {
        clear: both;
    }

    .grid-items .grid-item {
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        background: transparent;
        border-bottom: 9px solid transparent;
        border-left: 4.5px solid transparent;
        border-right: 4.5px solid transparent;
        border-top: 0;
        cursor: pointer;
        float: left;
        height: auto;
        overflow: hidden;
        outline: none;
        padding: 0;
        text-align: center;
        text-decoration: none;
        width: 100%;
    }

@media screen and (min-width: 31.875em) {
    .grid-items .grid-item {
        width: 50%;
    }
}

@media screen and (min-width: 62em) {
    .grid-items .grid-item {
        width: 25%;
    }
}

.grid-items .grid-item h1 {
    color: white;
    font-size: 1.3em;
    margin-bottom: 0.4em;
}

.grid-items .grid-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5em;
    margin: auto;
}

@media screen and (min-width: 62em) {
    .grid-items .grid-item p {
        max-width: 70%;
    }
}

@media screen and (min-width: 75em) {
    .grid-items .grid-item-big {
        width: 66.6666666667%;
    }
}

@media screen and (min-width: 62em) {
    .grid-items .grid-item-big p {
        max-width: 60%;
    }
}

.grid-items .grid-item-image {
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/mountains.png");
    background-color: transparent;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* --------------------------------

search-results

-------------------------------- */
.search-header-wrap {
    padding: 0 20px;
}

section.search-header {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 8px 0;
    margin-bottom: 0;
}

    section.search-header:before,
    section.search-header:after {
        content: " ";
        display: table;
    }

    section.search-header:after {
        clear: both;
    }

    section.search-header .title-holder {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 100%;
    }

        section.search-header .title-holder:last-child {
            margin-right: 0;
        }

@media screen and (min-width: 48em) {
    section.search-header .title-holder {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section.search-header .title-holder:last-child {
            margin-right: 0;
        }
}

section.search-header .title-holder h2.page-title {
    font-size: 1.5em;
    color: #39578a;
    margin-bottom: 0;
}

section.search-header .title-holder h1.page-title {
    font-size: 1.5em;
    color: #008cdf;
    margin-bottom: 10px;
}

section.search-header .page-actions {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    section.search-header .page-actions:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 48em) {
    section.search-header .page-actions {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section.search-header .page-actions:last-child {
            margin-right: 0;
        }
}

section.search-header .page-actions .action-wrapper {
    padding: 0.5em 0 0.25em 0;
}

@media screen and (min-width: 48em) {
    section.search-header .page-actions .action-wrapper {
        padding: 0;
        float: right;
    }
}

section.search-header .search-numbers {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
    padding-top: 0.5em;
}

    section.search-header .search-numbers:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 48em) {
    section.search-header .search-numbers {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section.search-header .search-numbers:last-child {
            margin-right: 0;
        }
}

section.search-header .search-numbers span {
    font-size: 0.8em;
    color: #000;
}

@media screen and (min-width: 48em) {
    section.search-header .search-numbers span {
        float: right;
    }
}

.location-header-wrap {
    background-color: var(--banner);
}

img.motif {
    position: absolute;
    float: right;
    right: 0px;
    top: -35px;
    z-index: -1;
    opacity: 0.07;
    visibility: hidden;
}

@media screen and (min-width: 48em) {
    img.motif {
        visibility: visible;
    }
}

/* section.location-header {
    z-index: 2;
    position: relative;
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 0 0 15px;
    margin-bottom: 0;
}

    section.location-header:before, section.location-header:after {
        content: " ";
        display: table;
    }

    section.location-header:after {
        clear: both;
    }

    section.location-header .title-holder {
        display: flex;
        width: 100%;
    }

        section.location-header .title-holder:last-child {
            margin-right: 0;
        } */

/* @media screen and (min-width: 48em) {
    section.location-header .title-holder {
        float: left;
        display: block;
        margin-right: 1.578320692%;
    }

        section.location-header .title-holder:last-child {
            margin-right: 0;
        }
} */

section.location-header .title-holder h2.page-title {
    font-size: 1.5em;
    color: var(--title);
    margin-bottom: 10px;
    font-weight: bold;
}

section.location-header .title-holder h1.page-title {
    font-size: 1.5em;
    color: var(--title);
}

    section.location-header .title-holder h1.page-title b {
        font-family: 'Lato', sans-serif
    }

    section.location-header .title-holder h1.page-title i {
        font-family: 'Lato', sans-serif
    }

section.location-header .title-holder p {
    color: var(--body-copy);
}

section.location-header .title-holder li {
    /* color: #f5f5f5; */
    list-style-type: disc;
    margin-left: 1.5em;
}

section.location-header .title-holder ul {
    margin: 0 0 0.75em;
}

section.location-header .page-actions {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    section.location-header .page-actions:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 48em) {
    section.location-header .page-actions {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section.location-header .page-actions:last-child {
            margin-right: 0;
        }
}

section.location-header .page-actions .action-wrapper {
    padding: 0.5em 0 0.25em 0;
}

@media screen and (min-width: 48em) {
    section.location-header .page-actions .action-wrapper {
        padding: 0;
        float: right;
    }
}

section.location-header .search-numbers {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
    padding-top: 0.5em;
}

    section.location-header .search-numbers:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 48em) {
    section.location-header .search-numbers {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section.location-header .search-numbers:last-child {
            margin-right: 0;
        }
}

section.location-header .search-numbers span {
    font-size: 0.8em;
    color: #000;
}

@media screen and (min-width: 48em) {
    section.location-header .search-numbers span {
        float: right;
    }
}

.location-header-texture .texture-normal {
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/diagonal-noise.png"), -webkit-linear-gradient(-450deg, #3a3e41, #202223), center no-repeat #3a3e41 scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/diagonal-noise.png"), -webkit-linear-gradient(top, #3a3e41, #202223), center no-repeat #3a3e41 scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/diagonal-noise.png"), linear-gradient(180deg, #3a3e41, #202223), center no-repeat #3a3e41 scroll;
}

.location-header-texture .texture-inverted {
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/diagonal-noise.png"), -webkit-linear-gradient(-450deg, #3a3e41, #202223), center no-repeat #3a3e41 scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/diagonal-noise.png"), -webkit-linear-gradient(top, #3a3e41, #202223), center no-repeat #3a3e41 scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/diagonal-noise.png"), linear-gradient(180deg, #3a3e41, #202223), center no-repeat #3a3e41 scroll;
}

.content-block {
    min-height: 480px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 600px) {
    .content-block {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        .content-block:last-child {
            margin-right: 0;
        }

        .content-block:nth-child(2n) {
            margin-right: 0;
        }

        .content-block:nth-child(2n + 1) {
            clear: left;
        }
}

@media only screen and (min-width: 1170px) {
    .content-block {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        .content-block:nth-child(2n) {
            margin-right: 1.578320692%;
        }

        .content-block:nth-child(2n + 1) {
            clear: none;
        }

        .content-block:last-child {
            margin-right: 0;
        }

        .content-block:nth-child(4n) {
            margin-right: 0;
        }

        .content-block:nth-child(4n + 1) {
            clear: left;
        }
}

.category-card {
    padding: 10px;
    background-color: #fff;
    margin-top: 20px;
    border: 1px solid #e1e3df;
    border-bottom-color: #cbccc9;
}

    .category-card .category-items {
        padding: 0 10px 10px 10px;
    }

    .category-card h4.group-title {
        font-size: 1.1em;
        margin-bottom: 5px;
    }

    .category-card ul li {
        font-size: 0.9em;
        line-height: 1.4em;
    }

        .category-card ul li a {
            color: #bbb;
        }

.search-results-wrap {
    padding: 10px 20px 20px;
}

section.search-results {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
}

    section.search-results:before,
    section.search-results:after {
        content: " ";
        display: table;
    }

    section.search-results:after {
        clear: both;
    }

    section.search-results .location-results {
        *zoom: 1;
    }

        section.search-results .location-results:before,
        section.search-results .location-results:after {
            content: " ";
            display: table;
        }

        section.search-results .location-results:after {
            clear: both;
        }

        section.search-results .location-results .img-wrap {
            margin-bottom: 1.5em;
            width: 100%;
        }

.result-ref-wrap {
    padding: 0 0.5em 0.5em 0.5em;
    background-color: none;
    *zoom: 1;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    display: inline-block;
}

    .result-ref-wrap:before,
    .result-ref-wrap:after {
        content: " ";
        display: table;
    }

    .result-ref-wrap:after {
        clear: both;
    }

h3.search-result-ref {
    font-size: 14px;
    padding-left: 3px;
    margin-bottom: 0;
    color: #bcbcbc;
}

    h3.search-result-ref a {
        color: #444;
    }

        h3.search-result-ref a:hover,
        h3.search-result-ref a.active {
            color: #222;
            text-decoration: none;
        }

.result-item-wrap {
    padding: 0.7em 0.4em 0.1em 0.4em;
    background-color: #f6f6f6;
    *zoom: 1;
    margin-bottom: 1.5em;
    margin-top: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.12);
}

    .result-item-wrap:before,
    .result-item-wrap:after {
        content: " ";
        display: table;
    }

    .result-item-wrap:after {
        clear: both;
    }

.search-wrap {
    padding: 10px 20px 0 20px;
    background-color: #fff;
}

section#search {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
}

    section#search:before,
    section#search:after {
        content: " ";
        display: table;
    }

    section#search:after {
        clear: both;
    }

    section#search div.logo-container {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section#search div.logo-container:last-child {
            margin-right: 0;
        }
/*
.contact-container {
  display: flex;
  align-items: center;
}

.contact-container .contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
} */

.contact-container .contact-details a {
    color: white;
}

.contact-container .contact-details .phone-us a {
    font-family: Ikaros, 'Open Sans', sans-serif;
}

.contact-container .contact-details .email-us a {
    font-size: 0.9em;
}

section#search div.contact-container:last-child {
    margin-right: 0;
}

section#search div.contact-container .contact-details {
    float: right;
    text-align: right;
    padding-top: 21px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
    section#search div.contact-container .contact-details {
        padding-top: 22px;
    }
}

@media only screen and (min-width: 600px) {
    section#search div.contact-container .contact-details {
        padding-top: 24px;
    }
}

.header-inner .phone-us {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

/* @media only screen and (min-width: 600px) {
    section#search div.contact-container .contact-details .phone-us {
        font-size: 30px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 768px) {
    section#search div.contact-container .contact-details .phone-us {
        font-size: 26px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 1170px) {
    section#search div.contact-container .contact-details .phone-us {
        font-size: 30px;
        line-height: 20px;
    }
} */

section#search div.contact-container .contact-details .phone-us a {
    color: red;
}

section#search div.contact-container .contact-details .email-us a {
    color: #fff;
    font-size: 14px;
    line-height: 12px;
}

@media only screen and (min-width: 600px) {
    section#search div.contact-container .contact-details .email-us {
        font-size: 16px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 768px) {
    section#search div.contact-container .contact-details .email-us {
        font-size: 14px;
        line-height: 12px;
    }
}

@media only screen and (min-width: 1170px) {
    section#search div.contact-container .contact-details .email-us {
        font-size: 18px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 768px) {
    section#search div.logo-container {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        section#search div.logo-container:last-child {
            margin-right: 0;
        }
}

@media only screen and (min-width: 768px) {
    section#search div.contact-container {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        section#search div.contact-container:last-child {
            margin-right: 0;
        }

        section#search div.contact-container .contact-details {
            float: left;
        }
}

section#search div.search-box {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    section#search div.search-box:last-child {
        margin-right: 0;
    }

@media only screen and (min-width: 768px) {
    section#search div.search-box {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section#search div.search-box:last-child {
            margin-right: 0;
        }
}

.search-box {
    display: flex;
    align-items: center;
    flex: 1 0;
}

.search-bar-container {
    position: relative;
    /* min-height: 40px; */
    width: 100%;
    /* margin-bottom: 20px; */
}
/*
@media only screen and (min-width: 768px) {
    .search-bar-container {
        height: 50px;
        margin-top: 15px;
    }
} */

form.search-bar {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
}

    form.search-bar input[type="search"] {
        color: #5B77A1;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        box-sizing: border-box;
        -webkit-transition: border-color;
        transition: border-color;
        background-color: white;
        border: none;
        border-radius: 0px;
        display: block;
        font-size: 0.8em;
        margin: 0;
        padding: 0.75em 0.75em;
        position: relative;
        width: 100%;
        box-shadow: none;
    }

#search_keyword::placeholder {
    color: #5B77A1 !important;
    opacity: 1;
}

form.search-bar input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: pink;
    opacity: 1;
}

form.search-bar input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: pink;
}

form.search-bar input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: pink;
}

form.search-bar input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: pink;
}

form.search-bar button[type="submit"] {
    background-color: white;
    border-radius: 0px;
    border: 0;
    color: #333333;
    display: inline-block;
    font-size: inherit;
    font-weight: bold;
    padding: 7px 18px;
    text-decoration: none;
    background-clip: padding-box;
    border: 0;
    color: #333333;
    display: inline-block;
    font-size: inherit;
    font-weight: bold;
    padding: 7px 18px;
    text-decoration: none;
    background-clip: padding-box;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    outline: none;
    padding: 5px 12px;
    margin: 0 0 0 2px;
}

    form.search-bar button[type="submit"]:hover:not(:disabled) {
        background-color: #08a3ff;
        cursor: pointer;
    }

    form.search-bar button[type="submit"]:active:not(:disabled),
    form.search-bar button[type="submit"]:focus:not(:disabled) {
        background-color: #008cdf;
        cursor: pointer;
    }

    form.search-bar button[type="submit"]:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

    form.search-bar button[type="submit"]:hover:not(:disabled) {
        background-color: #08a3ff;
        cursor: pointer;
    }

    form.search-bar button[type="submit"]:active:not(:disabled),
    form.search-bar button[type="submit"]:focus:not(:disabled) {
        background-color: #008cdf;
        cursor: pointer;
    }

    form.search-bar button[type="submit"]:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

    form.search-bar button[type="submit"] img {
        height: 20px;
    }

form.search-bar a {
    background-color: white;
    border-radius: 0px;
    border: 0;
    color: #333333;
    display: inline-block;
    font-size: inherit;
    font-weight: bold;
    padding: 7px 18px;
    text-decoration: none;
    background-clip: padding-box;
    border: 0;
    color: #333333;
    display: inline-block;
    font-size: inherit;
    font-weight: bold;
    padding: 7px 18px;
    text-decoration: none;
    background-clip: padding-box;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    outline: none;
    padding: 5px 12px;
    margin: 0 0 0 2px;
}

    form.search-bar a:hover:not(:disabled) {
        background-color: #08a3ff;
        cursor: pointer;
    }

    form.search-bar a:active:not(:disabled),
    form.search-bar a:focus:not(:disabled) {
        background-color: #008cdf;
        cursor: pointer;
    }

    form.search-bar a:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

    form.search-bar a:hover:not(:disabled) {
        background-color: #08a3ff;
        cursor: pointer;
    }

    form.search-bar a:active:not(:disabled),
    form.search-bar a:focus:not(:disabled) {
        background-color: #008cdf;
        cursor: pointer;
    }

    form.search-bar a:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

    form.search-bar a img {
        height: 20px;
    }

@-webkit-keyframes pulse {
    0% {
        background-color: #aec6c1;
    }

    33% {
        background-color: #b4d3cd;
    }

    100% {
        background-color: #aec6c1;
    }
}

@keyframes pulse {
    0% {
        background-color: #aec6c1;
    }

    33% {
        background-color: #b4d3cd;
    }

    100% {
        background-color: #aec6c1;
    }
}

@keyframes pulse {
    0% {
        background-color: #39578a;
    }

    33% {
        background-color: #008cdf;
    }

    100% {
        background-color: #39578a;
    }
}

button.pulse {
    -webkit-animation: pulse 2s infinite normal;
    animation: pulse 2s infinite normal;
}

.expander {
    width: 100%;
}

    .expander p {
        color: #383b3e;
        line-height: 1.5;
    }

    .expander a {
        color: #000;
        text-decoration: none;
        font-size: 16px !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .expander .expander-trigger {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
        display: block;
        font-size: 1em;
    }

        .expander .expander-trigger:before {
            font-size: 1.1em;
            content: "\25BC";
            margin-right: 0.5em;
            color: #008cdf;
            color: #fff;
        }

    .expander .expander-content {
        margin-top: 0.5em;
        overflow: hidden;
    }

    .expander .expander-hidden:before {
        font-size: 1.1em;
        content: "\25B6";
    }

    .expander .expander-hidden + .expander-content {
        display: none;
    }

.select-wrap {
    padding: 3px 20px;
    background-color: #ededed;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

section.selects {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

    section.selects:before,
    section.selects:after {
        content: " ";
        display: table;
    }

    section.selects:after {
        clear: both;
    }

    section.selects div.select-menu {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
        margin-bottom: 15px;
    }

        section.selects div.select-menu:last-child {
            margin-right: 0;
        }

        section.selects div.select-menu.last {
            margin-right: 0;
        }

    section.selects article {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 74.605419827%;
    }

        section.selects article:last-child {
            margin-right: 0;
        }

    section.selects .multi-match-controls {
        clear: both;
        padding: 20px 0;
    }

        section.selects .multi-match-controls input.multi-match-button {
            background-color: #008cdf;
            margin: 0;
            border: none;
            border-radius: 4px;
            color: #fff;
            cursor: pointer;
            display: inline-block;
            font-size: 14px;
            line-height: 1.5;
            padding: 5px 20px;
            text-align: center;
            text-decoration: none;
        }

            section.selects .multi-match-controls input.multi-match-button.reset {
                margin-right: 10px;
                background-color: #39578a;
                background-color: #444;
            }

@media screen and (max-width: 62em) {
    section.selects div.select-menu {
        float: left;
        display: block;
        margin-right: 2.386312873%;
        width: 48.8068435635%;
    }

        section.selects div.select-menu:last-child {
            margin-right: 0;
        }

    section.selects div#location-type {
        margin-right: 0;
    }
}

@media screen and (max-width: 31.875em) {
    section.selects div.select-menu {
        float: left;
        display: block;
        margin-right: 4.8892997349%;
        width: 100%;
        margin-right: 0;
    }

        section.selects div.select-menu:last-child {
            margin-right: 0;
        }
}

section.selects label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

section.selects input[type="search"] {
    box-shadow: none;
    padding: 0;
    padding-top: 0.2em;
}

:focus {
    outline: 0 !important;
}

:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

select [multiple] {
    height: auto;
}

input.select2-search__field {
    margin-bottom: 0 !important;
}

li.select2-selection__choice {
    margin-bottom: 0 !important;
    font-size: 9px !important;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 20px;
}

.select2-container--default
.select2-selection--multiple
.select2-selection__rendered {
    box-sizing: border-box;
    display: block;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    padding: 0 3px 3px;
    border: none;
    border: 1px solid #dbdad6;
    border-radius: 2px;
    cursor: text;
}

    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
        background-color: #008cdf;
    }

.select2-container .select2-search--inline .select2-search__field {
    font-size: 13px;
}

.select2-container--default .select2-results__group {
    font-size: 13px;
    padding: 6px 6px 4px 8px;
}

.select2-container--default .select2-results__option .select2-results__option {
    font-size: 13px;
    line-height: 18px;
}

.select2-results__option {
    padding: 2px;
}

ul.select2-selection__rendered {
    padding: 0 !important;
}

.select2-container--open .select2-dropdown {
    top: 1px;
}

.multimatch-texture .texture-normal {
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/noisy.png"), -webkit-linear-gradient(-450deg, #7ccfff, #44baff), center no-repeat #7ccfff scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/noisy.png"), -webkit-linear-gradient(top, #7ccfff, #44baff), center no-repeat #7ccfff scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/noisy.png"), linear-gradient(180deg, #7ccfff, #44baff), center no-repeat #7ccfff scroll;
}

.multimatch-texture .texture-inverted {
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/noisy.png"), -webkit-linear-gradient(-450deg, #7ccfff, #44baff), center no-repeat #7ccfff scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/noisy.png"), -webkit-linear-gradient(top, #7ccfff, #44baff), center no-repeat #7ccfff scroll;
    background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/noisy.png"), linear-gradient(180deg, #7ccfff, #44baff), center no-repeat #7ccfff scroll;
}

.dropdown {
    line-height: 1.5;
}

    .dropdown ul {
        padding: 0;
        margin: 0;
    }

    .dropdown li {
        list-style: none;
    }

    .dropdown .dropdown-container {
        display: inline-block;
        position: relative;
        text-align: center;
    }

    .dropdown .dropdown-description {
        background: #fff;
        border-bottom-left-radius: 3px;
        border-bottom: 1px solid silver;
        border-left: 1px solid silver;
        border-top-left-radius: 3px;
        border-top: 1px solid silver;
        color: #9ca1a6;
        float: left;
        font-size: 0.7em;
        line-height: 32px;
        margin: 0;
        padding: 0 0.5em 0 1em;
    }

@media screen and (min-width: 75em) {
    .dropdown .dropdown-description {
        font-size: 0.8em;
    }
}

.dropdown .dropdown-button {
    background: #fff;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    border-top: 1px solid silver;
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    cursor: pointer;
    float: right;
    font-size: 0.7em;
    font-weight: 800;
    line-height: 32px;
    margin: 0;
    padding: 0 2.5em 0 0.5em;
    position: relative;
}

@media screen and (min-width: 75em) {
    .dropdown .dropdown-button {
        font-size: 0.8em;
        padding: 0 2.5em 0 0.5em;
    }
}

.dropdown .dropdown-button:hover {
    background-color: #f7f7f7;
}

.dropdown .dropdown-button:after {
    color: #383b3e;
    content: "\25BE";
    display: block;
    position: absolute;
    right: 1em;
    top: 0;
}

.dropdown .dropdown-menu {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
    border-radius: 3px;
    border: 1px solid silver;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    color: #383b3e;
    cursor: pointer;
    display: none;
    overflow: show;
    position: absolute;
    right: 0;
    top: 50px;
    width: 228px;
    z-index: 99999;
}

    .dropdown .dropdown-menu:before {
        position: absolute;
        top: 0;
        right: 1em;
        bottom: 0;
        left: 0;
        color: #fff;
        content: "\25b2";
        font-size: 1.4em;
        pointer-events: none;
        text-shadow: 0 -2px 2px rgba(0, 0, 0, 0.3);
        top: -0.7em;
    }

    .dropdown .dropdown-menu li {
        border-bottom: 1px solid silver;
        color: #383b3e;
        padding: 0.5em;
    }

        .dropdown .dropdown-menu li:hover {
            background: #f7f7f7;
        }

        .dropdown .dropdown-menu li:first-child {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

        .dropdown .dropdown-menu li:last-child {
            border: none;
            border-bottom-left-radius: 3px;
            border-bottom-right-radius: 3px;
        }

.dropdown .show-menu {
    display: block;
}

@media screen and (max-width: 62em) {
    section#search div.find {
        float: left;
        display: block;
        margin-right: 2.386312873%;
        width: 48.8068435635%;
        margin-right: 0;
    }

        section#search div.find:last-child {
            margin-right: 0;
        }
}

@media screen and (max-width: 31.875em) {
    section#search div.find {
        float: left;
        display: block;
        margin-right: 4.8892997349%;
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
    }

        section#search div.find:last-child {
            margin-right: 0;
        }
}

.top-wrap {
    background-color: #39578a;
    padding: 0 20px;
}

header.navigation {
    background-color: #39578a;
    min-height: 40px;
    width: 100%;
    z-index: 999;
}

    header.navigation .navigation-wrapper {
        *zoom: 1;
        *zoom: 1;
        max-width: 73.125em;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1000;
    }

        header.navigation .navigation-wrapper:before,
        header.navigation .navigation-wrapper:after {
            content: " ";
            display: table;
        }

        header.navigation .navigation-wrapper:after {
            clear: both;
        }

        header.navigation .navigation-wrapper:before,
        header.navigation .navigation-wrapper:after {
            content: " ";
            display: table;
        }

        header.navigation .navigation-wrapper:after {
            clear: both;
        }

        header.navigation .navigation-wrapper .logo {
            float: left;
            max-height: 40px;
            padding-right: 2em;
        }

            header.navigation .navigation-wrapper .logo img {
                max-height: 40px;
                padding: 0.5em 0;
                display: none;
            }

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper .logo img {
        display: block;
    }
}

header.navigation .navigation-wrapper .navigation-menu-button {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    float: right;
    font-weight: 400;
    line-height: 40px;
    margin: 0;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper .navigation-menu-button {
        display: none;
    }
}

header.navigation .navigation-wrapper .navigation-menu-button:focus,
header.navigation .navigation-wrapper .navigation-menu-button:hover {
    color: white;
}

header.navigation .navigation-wrapper nav {
    z-index: 9999999;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper nav {
        float: right;
    }
}

header.navigation .navigation-wrapper nav.globalnav {
    float: none;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper nav.globalnav {
        float: left;
    }
}

header.navigation .navigation-wrapper ul.navigation-menu {
    -webkit-transform-style: preserve-3d;
    clear: both;
    display: none;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
    width: 100%;
    z-index: 9999;
}

    header.navigation .navigation-wrapper ul.navigation-menu.show {
        display: block;
    }

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul.navigation-menu {
        display: inline;
        margin: 0;
        padding: 0;
    }
}

header.navigation .navigation-wrapper ul li.nav-link {
    background: #39578a;
    display: block;
    line-height: 40px;
    overflow: hidden;
    padding-right: 0.8em;
    width: 100%;
    z-index: 9999;
    font-size: 14px;
    font-size: 0.875rem;
    border-bottom: 1px solid #486eae;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul li.nav-link {
        background: transparent;
        display: inline;
        line-height: 40px;
        text-decoration: none;
        width: auto;
        border-bottom: none;
        padding-left: 0;
    }
}

header.navigation .navigation-wrapper ul li.nav-link a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul li.nav-link a {
        padding-right: 1em;
    }
}

header.navigation .navigation-wrapper ul li.nav-link a:focus,
header.navigation .navigation-wrapper ul li.nav-link a:hover {
    color: white;
}

header.navigation .navigation-wrapper .active-nav-item a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 3px;
}

header.navigation .navigation-wrapper li.more.nav-link {
    padding-right: 0;
}

    header.navigation .navigation-wrapper li.more.nav-link a {
        margin-right: 1em;
    }

    header.navigation .navigation-wrapper li.more.nav-link > a {
        padding-right: 0.6em;
        padding-left: 20px;
    }

        header.navigation .navigation-wrapper li.more.nav-link > a:after {
            position: absolute;
            top: auto;
            right: -0.4em;
            bottom: auto;
            left: auto;
            content: "\25BE";
            color: rgba(255, 255, 255, 0.7);
        }

header.navigation .navigation-wrapper li.more {
    overflow: visible;
    padding-right: 0;
}

    header.navigation .navigation-wrapper li.more a {
        padding-right: 0.8em;
    }

    header.navigation .navigation-wrapper li.more > a {
        padding-right: 1.6em;
        position: relative;
    }

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper li.more > a {
        margin-right: 1em;
    }
}

header.navigation .navigation-wrapper li.more > a:after {
    content: "›";
    font-size: 1.2em;
    padding-left: 0.2em;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper li.more > a:after {
        position: absolute;
        right: 0.5em;
        padding-left: 0;
    }
}

header.navigation .navigation-wrapper li.more:focus > .submenu,
header.navigation .navigation-wrapper li.more:hover > .submenu {
    display: block;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper li.more {
        padding-right: 0.8em;
        position: relative;
    }
}

header.navigation .navigation-wrapper ul.submenu {
    display: none;
    padding-left: 0;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul.submenu {
        left: -1em;
        position: absolute;
        top: 1.5em;
    }
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul.submenu .submenu {
        left: 11.8em;
        top: 0;
    }
}

header.navigation .navigation-wrapper ul.submenu li {
    display: block;
    padding-right: 0;
    background-color: #35507f;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul.submenu li {
        line-height: 40px;
        background-color: #39578a;
    }

        header.navigation .navigation-wrapper ul.submenu li:first-child > a {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

        header.navigation .navigation-wrapper ul.submenu li:last-child > a {
            border-bottom-left-radius: 3px;
            border-bottom-right-radius: 3px;
            padding-bottom: 0.5em;
        }
}

header.navigation .navigation-wrapper ul.submenu li a {
    display: inline-block;
    width: 100%;
    padding-left: 40px;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul.submenu li a {
        background-color: #39578a;
        padding-left: 1em;
        text-align: left;
        width: 12em;
    }
}

header.navigation .navigation-wrapper ul.submenu li.more ul.submenu li a {
    padding-left: 60px;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper ul.submenu li.more ul.submenu li a {
        padding-left: 1.2em;
    }
}

header.navigation .navigation-wrapper .navigation-tools {
    background: #505050;
    clear: both;
    display: block;
    height: 40px;
}

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper .navigation-tools {
        background: transparent;
        clear: none;
        float: right;
    }
}

header.navigation .navigation-wrapper .search-bar {
    float: left;
    padding: 0.85em 0.85em 0.7em 0.6em;
    width: 60%;
}

    header.navigation .navigation-wrapper .search-bar form {
        position: relative;
    }

        header.navigation .navigation-wrapper .search-bar form input[type="search"] {
            box-sizing: border-box;
            background: #40629c;
            border-radius: 6px;
            border: 1px solid #324c78;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9em;
            font-style: italic;
            margin: 0;
            padding: 0.5em 0.8em;
            width: 100%;
        }

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper .search-bar form input[type="search"] {
        width: 100%;
    }
}

header.navigation .navigation-wrapper .search-bar form button[type="submit"] {
    background: #40629c;
    border: none;
    bottom: 0.3em;
    left: auto;
    outline: none;
    padding: 0 9px;
    position: absolute;
    right: 0.3em;
    top: 0.3em;
}

    header.navigation
    .navigation-wrapper
    .search-bar
    form
    button[type="submit"]
    img {
        height: 12px;
        opacity: 0.7;
        padding: 1px;
    }

@media screen and (min-width: 62em) {
    header.navigation .navigation-wrapper .search-bar {
        display: inline-block;
        position: relative;
        width: 16em;
    }

        header.navigation .navigation-wrapper .search-bar input {
            box-sizing: border-box;
            display: block;
        }
}

header.navigation .navigation-wrapper .navigation-menu-button.left {
    float: left;
}

.controls-wrap {
    padding: 0 20px;
    /*border-top: 2px solid #ededed;*/
}

section#controls:before,
section#controls:after {
    content: " ";
    display: table;
}

section#controls:after {
    clear: both;
}

section#controls .breadcrumbs {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
    font-style: italic;
}

    section#controls .breadcrumbs:last-child {
        margin-right: 0;
    }

    section#controls .breadcrumbs a {
        font-size: 0.8em;
        padding: 0 0.8em;
        color: #000;
    }

        section#controls .breadcrumbs a:first-child {
            padding-left: 0;
        }

.location-details-wrap {
    padding: 0 20px;
    background-color: #224e6a;
}

section.location-details-top {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

    section.location-details-top:before,
    section.location-details-top:after {
        content: " ";
        display: table;
    }

    section.location-details-top:after {
        clear: both;
    }

div.location-info-grid-bg {
    *zoom: 1;
    /*background-color: #224e6a;*/
    border-radius: 3px;
}

    div.location-info-grid-bg:before,
    div.location-info-grid-bg:after {
        content: " ";
        display: table;
    }

    div.location-info-grid-bg:after {
        clear: both;
    }

li.location-info-grid {
    padding: 20px;
    color: white;
    border-left: 1px solid #444;
}

@media screen and (min-width: 48em) {
    li.location-info-grid {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        li.location-info-grid:last-child {
            margin-right: 0;
        }

        li.location-info-grid:nth-child(2n) {
            margin-right: 0;
        }

        li.location-info-grid:nth-child(2n + 1) {
            clear: left;
        }
}

@media screen and (min-width: 62em) {
    li.location-info-grid {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        li.location-info-grid:nth-child(2n) {
            margin-right: 1.578320692%;
        }

        li.location-info-grid:nth-child(2n + 1) {
            clear: none;
        }

        li.location-info-grid:last-child {
            margin-right: 0;
        }

        li.location-info-grid:nth-child(4n) {
            margin-right: 0;
        }

        li.location-info-grid:nth-child(4n + 1) {
            clear: left;
        }
}

li.location-info-grid h1 {
    font-size: 1.6em;
    font-weight: 300;
    color: #008cdf;
    margin-bottom: 0.1em;
}

li.location-info-grid p {
    font-size: 0.8em;
}

    li.location-info-grid p.additional-info {
        font-size: 0.8em;
    }

    li.location-info-grid p.image-count {
        font-size: 0.8em;
    }

li.location-info-grid h2 {
    font-size: 1em;
    color: #ddd;
}

    li.location-info-grid h2.location-title {
        color: #008cdf;
    }

    li.location-info-grid h2:after {
        content: "\2014";
        font-size: 13px;
        font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
        color: rbga(51, 51, 51, 0.78);
        display: block;
        font-weight: normal;
        position: relative;
        z-index: 2;
    }

li.location-info-grid a.action {
    font-size: 0.8em;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #008cdf;
}

li.location-info-grid a.button.action:hover {
    color: #ffffff;
    text-decoration: none;
}

li.location-info-grid-3 {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 32.2811195386%;
    padding: 20px;
    color: white;
    border-left: 1px solid #444;
}

    li.location-info-grid-3:last-child {
        margin-right: 0;
    }

    li.location-info-grid-3:nth-child(3n) {
        margin-right: 0;
    }

    li.location-info-grid-3:nth-child(3n + 1) {
        clear: left;
    }

    li.location-info-grid-3 h1 {
        font-size: 1.6em;
        font-weight: 300;
        color: #008cdf;
        margin-bottom: 0.1em;
    }

    li.location-info-grid-3 p {
        font-size: 0.8em;
    }

        li.location-info-grid-3 p.additional-info {
            font-size: 0.8em;
        }

        li.location-info-grid-3 p.image-count {
            font-size: 0.8em;
        }

    li.location-info-grid-3 h2 {
        font-size: 1em;
    }

        li.location-info-grid-3 h2.location-title {
            color: #008cdf;
        }

        li.location-info-grid-3 h2:after {
            content: "\2014";
            font-size: 13px;
            font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
            color: rbga(51, 51, 51, 0.78);
            display: block;
            font-weight: normal;
            position: relative;
            z-index: 2;
        }

    li.location-info-grid-3 a.button {
        font-size: 0.8em;
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

        li.location-info-grid-3 a.button.outline {
            color: #008cdf;
        }

            li.location-info-grid-3 a.button.outline:hover {
                color: #ffffff;
                text-decoration: none;
            }

li.location-info-grid:first-child {
    border-left: 0;
}

.image-info-wrap {
    background-color: #f6f6f6;
    padding: 0 20px;
}

section#image-info {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
    border-bottom: 1px solid #383b3e;
    margin-bottom: 0;
}

    section#image-info:before,
    section#image-info:after {
        content: " ";
        display: table;
    }

    section#image-info:after {
        clear: both;
    }

    section#image-info .image-numbers {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section#image-info .image-numbers:last-child {
            margin-right: 0;
        }

        section#image-info .image-numbers span {
            font-size: 0.8em;
            color: #000;
        }

    section#image-info .img-controls {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
        text-align: right;
        font-size: 0.8em;
        font-weight: bold;
        color: #000;
    }

        section#image-info .img-controls:last-child {
            margin-right: 0;
        }

        section#image-info .img-controls a {
            color: #000;
            padding-right: 0.8em;
            cursor: pointer;
        }

            section#image-info .img-controls a:last-child {
                padding-right: 0;
            }

/* --------------------------------

location-images.scss starts here

-------------------------------- */
.detail-images-wrap {
    padding: 10px 20px 20px;
}

section.detail-images {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
}

    section.detail-images:before,
    section.detail-images:after {
        content: " ";
        display: table;
    }

    section.detail-images:after {
        clear: both;
    }

    section.detail-images .location-imgs {
        float: left;
        display: block;
        width: 101.578320692%;
        *zoom: 1;
    }

        section.detail-images .location-imgs:last-child {
            width: 100%;
        }

        section.detail-images .location-imgs:before,
        section.detail-images .location-imgs:after {
            content: " ";
            display: table;
        }

        section.detail-images .location-imgs:after {
            clear: both;
        }

@media screen and (min-width: 62em) {
    section.detail-images .location-imgs {
        float: left;
        display: block;
        width: 76.183740519%;
    }

        section.detail-images .location-imgs:last-child {
            width: 74.605419827%;
        }
}

section.detail-images .location-imgs .img-wrap {
    margin-bottom: 1.5em;
    width: 100%;
}

section.detail-images aside {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    section.detail-images aside:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 62em) {
    section.detail-images aside {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        section.detail-images aside:last-child {
            margin-right: 0;
        }
}

section.detail-images aside .location-tags,
section.detail-images aside .image-tags {
    padding: 1em 0.5em 1em 1em;
    background-color: #224e6a;
    color: white;
    border-radius: 3px;
    margin-bottom: 1em;
    *zoom: 1;
}

    section.detail-images aside .location-tags:before,
    section.detail-images aside .location-tags:after,
    section.detail-images aside .image-tags:before,
    section.detail-images aside .image-tags:after {
        content: " ";
        display: table;
    }

    section.detail-images aside .location-tags:after,
    section.detail-images aside .image-tags:after {
        clear: both;
    }

    section.detail-images aside .location-tags .tag,
    section.detail-images aside .image-tags .tag {
        float: left;
        box-sizing: border-box;
    }

        section.detail-images aside .location-tags .tag a,
        section.detail-images aside .image-tags .tag a {
            background-color: #224e6a;
            border: 1px solid #aaa;
            border-radius: 4px;
            cursor: pointer;
            padding: 0px 5px;
            color: #aaa;
            margin-right: 5px;
            margin-top: 6px;
            display: block;
        }

            section.detail-images aside .location-tags .tag a:hover,
            section.detail-images aside .location-tags .tag a.active,
            section.detail-images aside .image-tags .tag a:hover,
            section.detail-images aside .image-tags .tag a.active {
                background-color: #008cdf;
                text-decoration: none;
                border: 1px solid #008cdf;
                color: #39578a;
            }

a.enlarge {
    display: none;
}

@media screen and (min-width: 31.875em) {
    a.enlarge {
        display: inline;
    }
}

/* --------------------------------
hover-overlay starts here

-------------------------------- */
.hover {
    display: inline-block;
    position: relative;
    vertical-align: top;
    overflow: hidden;
}

.hover-img {
    display: block;
}

.hover-body {
    background: rgba(36, 39, 42, 0.85);
    bottom: 0;
    color: white;
    font-size: 1em;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 1.3em 1.3em;
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.hover:hover .hover-body {
    opacity: 1;
    top: 0;
}

.hover-body span {
    margin-top: 0;
    margin-bottom: 1em;
    color: #f5f5f5;
    font-size: 0.7em;
    display: block;
}

.hover-body a {
    margin-top: 0;
    margin-bottom: 0.3em;
    color: #008cdf;
    font-size: 0.9em;
    font-weight: bold;
}

    .hover-body a:hover {
        color: #fff;
        text-decoration: none;
    }

#top-nav .target {
    display: none;
    background: #f8f8f8;
    position: absolute;
    top: 35px;
    right: 0;
    width: 460px;
    border-radius: 8px !important;
    border: 1px solid #eee;
    z-index: 510;
    box-shadow: 0px 0px 15px 0px #ccc;
    text-align: left;
}

.login-modal {
    position: relative;
    padding: 15px;
}

#top-nav .close_login {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

#top-nav .client-hdr {
    display: block;
    width: 100px;
    padding: 3px 0px;
}

#top-nav .input {
    margin-right: 5px;
    display: inline-block;
    width: 250px;
}

#top-nav .login {
    display: inline-block;
    /* IE is so silly */
}

#top-nav a.members {
    color: #008cdf;
    font-weight: bold;
    cursor: pointer;
}

/* --------------------------------

navigation.scss starts here

-------------------------------- */
.branding-wrap {
    background-color: #dadddb;
    padding: 0 20px;
}

section.branding {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0;
}

    section.branding:before,
    section.branding:after {
        content: " ";
        display: table;
    }

    section.branding:after {
        clear: both;
    }

    section.branding .gn-logo {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
        margin-bottom: 0px;
    }

        section.branding .gn-logo:last-child {
            margin-right: 0;
        }

nav.globalnav {
    padding: 0px 0 0 0;
    float: left;
}

    nav.globalnav ul {
        padding: 0;
    }

        nav.globalnav ul li {
            color: #383b3e;
            display: inline;
            float: left;
            font-size: 0.8em;
            font-weight: normal;
            line-height: 1.1em;
            padding: 0 0.7em;
        }

            nav.globalnav ul li:first-child {
                padding-left: 0;
            }

            nav.globalnav ul li:last-child {
                border-right: 0;
                padding-right: 0;
            }

            nav.globalnav ul li a {
                color: #fff;
                line-height: 36px;
                display: inline-block;
            }

                nav.globalnav ul li a:hover {
                    color: #008cdf;
                    text-decoration: none;
                }

/* --------------------------------

login-register-modal starts here

-------------------------------- */
@media only screen and (min-width: 768px) {
    header[role="banner"] {
        position: fixed;
    }
}

@media only screen and (max-width: 768px) {
    header[role="banner"] {
        position: relative;
    }
}

header[role="banner"] {
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

    header[role="banner"] #cd-logo img {
        display: block;
    }

    header[role="banner"]::after {
        /* clearfix */
        content: "";
        display: table;
        clear: both;
    }

.main-nav {
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("../img/cd-icon-menu.svg") no-repeat center center;
    cursor: pointer;
}

    .main-nav ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

        .main-nav ul.is-visible {
            -webkit-transform: translateY(auto);
            transform: translateY(auto);
        }

    .main-nav a {
        display: block;
        height: auto;
        line-height: auto;
        padding-left: 5%;
        background: #2c2e31;
        border-top: 1px solid #3f4346;
        color: #fff;
    }

@media only screen and (min-width: 768px) {
    .main-nav {
        width: auto;
        height: auto;
        background: none;
        cursor: auto;
    }

        .main-nav ul {
            position: static;
            width: auto;
            -webkit-transform: translateY(0);
            transform: translateY(0);
            line-height: auto;
        }

            .main-nav ul.is-visible {
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }

        .main-nav li {
            display: inline-block;
            margin-left: 1em;
        }

            .main-nav li:nth-last-child(2) {
                margin-left: 2em;
            }

        .main-nav a {
            display: inline-block;
            height: auto;
            line-height: normal;
            background: transparent;
        }

            .main-nav a.cd-signin,
            .main-nav a.cd-signup {
                padding: 0.6em 1em;
                border: 1px solid rgba(255, 255, 255, 0.6);
                border-radius: 50em;
            }

            .main-nav a.cd-signup {
                background: #242e30;
                border: none;
            }
}

/* --------------------------------

xsigin/signup popup

-------------------------------- */
.cd-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 59, 62, 0.9);
    z-index: 4;
    overflow-y: auto;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
    transition: opacity 0.3s 0, visibility 0 0.3s;
}

    .cd-user-modal.is-visible {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity 0.3s 0, visibility 0 0;
        transition: opacity 0.3s 0, visibility 0 0;
    }

        .cd-user-modal.is-visible .cd-user-modal-container {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

.cd-user-modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #fff;
    margin: 3em auto 4em;
    cursor: auto;
    border-radius: 0.25em;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    *zoom: 1;
    padding: 2em;
    overflow: hidden;
}

    .cd-user-modal-container:before,
    .cd-user-modal-container:after {
        content: " ";
        display: table;
    }

    .cd-user-modal-container:after {
        clear: both;
    }

    .cd-user-modal-container .cd-switcher {
        *zoom: 1;
    }

        .cd-user-modal-container .cd-switcher:before,
        .cd-user-modal-container .cd-switcher:after {
            content: " ";
            display: table;
        }

        .cd-user-modal-container .cd-switcher:after {
            clear: both;
        }

        .cd-user-modal-container .cd-switcher li {
            width: 50%;
            float: left;
            text-align: center;
        }

            .cd-user-modal-container .cd-switcher li:first-child a {
                border-radius: 0.25em 0 0 0;
            }

            .cd-user-modal-container .cd-switcher li:last-child a {
                border-radius: 0 0.25em 0 0;
            }

        .cd-user-modal-container .cd-switcher a {
            display: block;
            width: 100%;
            height: 50px;
            line-height: 50px;
            background: #aab5b7;
            color: #5c6a6c;
        }

            .cd-user-modal-container .cd-switcher a.selected {
                background: #fff;
                color: #383b3e;
            }

@media only screen and (min-width: 600px) {
    .cd-user-modal-container {
        margin: 4em auto;
    }

        .cd-user-modal-container .cd-switcher a {
            height: 70px;
            line-height: 70px;
        }
}

.cd-form {
    padding: 1.4em;
}

    .cd-form .fieldset {
        position: relative;
        margin: 1.4em 0;
    }

        .cd-form .fieldset:first-child {
            margin-top: 0;
        }

        .cd-form .fieldset:last-child {
            margin-bottom: 0;
        }

    .cd-form label {
        font-size: 14px;
        font-size: 0.875rem;
    }

        .cd-form label.image-replace {
            /* replace text with an icon */
            display: inline-block;
            position: absolute;
            left: 15px;
            top: 50%;
            bottom: auto;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            height: 20px;
            width: 20px;
            overflow: hidden;
            text-indent: 100%;
            white-space: nowrap;
            color: transparent;
            text-shadow: none;
            background-repeat: no-repeat;
            background-position: 50% 0;
        }

        .cd-form label.cd-username {
            background-image: url("../images/login-icons/cd-icon-username.svg");
        }

        .cd-form label.cd-email {
            background-image: url("../images/login-icons/cd-icon-email.svg");
        }

        .cd-form label.cd-password {
            background-image: url("../images/login-icons/cd-icon-password.svg");
        }

    .cd-form input {
        margin: 0;
        padding: 0;
        border-radius: 0.25em;
    }

        .cd-form input.full-width {
            width: 100%;
        }

        .cd-form input.has-padding {
            padding: 12px 20px 12px 50px;
        }

        .cd-form input.has-border {
            border: 1px solid #aab5b7;
            -webkit-appearance: none;
            -moz-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            appearance: none;
        }

            .cd-form input.has-border:focus {
                border-color: #383b3e;
                box-shadow: 0 0 5px rgba(56, 59, 62, 0.1);
                outline: none;
            }

        .cd-form input.has-error {
            border: 1px solid #d76666;
        }

        .cd-form input[type="password"] {
            /* space left for the HIDE button */
            padding-right: 65px;
        }

        .cd-form input[type="submit"] {
            padding: 16px 0;
            cursor: pointer;
            background: #242e30;
            color: #fff;
            font-weight: bold;
            border: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            appearance: none;
        }

.no-touch .cd-form input[type="submit"]:hover,
.no-touch .cd-form input[type="submit"]:focus {
    background: #2f3c3f;
    outline: none;
}

.cd-form .hide-password {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 15px;
    border-left: 1px solid #aab5b7;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    font-size: 0.875rem;
    color: #383b3e;
}

.cd-form .cd-error-message {
    display: inline-block;
    position: absolute;
    left: -5px;
    bottom: -35px;
    background: rgba(215, 102, 102, 0.9);
    padding: 0.8em;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-size: 0.8125rem;
    border-radius: 0.25em;
    /* prevent click and touch events */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
    transition: opacity 0.2s 0, visibility 0 0.2s;
}

    .cd-form .cd-error-message::after {
        /* triangle */
        content: "";
        position: absolute;
        left: 22px;
        bottom: 100%;
        height: 0;
        width: 0;
        border-bottom: 8px solid rgba(215, 102, 102, 0.9);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }

    .cd-form .cd-error-message.is-visible {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.2s 0, visibility 0 0;
        transition: opacity 0.2s 0, visibility 0 0;
    }

@media only screen and (min-width: 600px) {
    .cd-form {
        padding: 2em;
    }

        .cd-form .fieldset {
            margin: 2em 0;
        }

            .cd-form .fieldset:first-child {
                margin-top: 0;
            }

            .cd-form .fieldset:last-child {
                margin-bottom: 0;
            }

        .cd-form input.has-padding {
            padding: 16px 20px 16px 50px;
        }

        .cd-form input[type="submit"] {
            padding: 16px 0;
        }
}

.cd-form-message {
    padding: 1.4em 1.4em 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .cd-form-message {
        padding: 2em 2em 0;
    }
}

.cd-form-bottom-message {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30px;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
}

    .cd-form-bottom-message a {
        color: #fff;
        text-decoration: underline;
    }

.cd-close-form {
    /* form X button on top right */
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: -40px;
    background: url("../img/cd-icon-close.svg") no-repeat center center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media only screen and (min-width: 1170px) {
    .cd-close-form {
        display: none;
    }
}

#cd-login,
#cd-signup,
#cd-reset-password {
    display: none;
}

    #cd-login.is-selected,
    #cd-signup.is-selected,
    #cd-reset-password.is-selected {
        display: block;
    }

.styled-select select {
    width: 240px;
    padding: 10px;
    font-size: 16px;
    line-height: 1;
    height: 34px;
}

.modal-close {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    height: 1.5em;
    width: 1.5em;
    background: #fff;
    cursor: pointer;
}

    .modal-close:before {
        position: absolute;
        top: 3px;
        right: 3px;
        bottom: 0;
        left: 50%;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        height: 1.5em;
        width: 0.15em;
        background: #ddd;
        content: "";
        display: block;
        margin: -3px 0 0 -1px;
    }

    .modal-close:hover:before {
        background: #c4c4c4;
    }

    /* line 81, /Users/magnus/Documents/refills/source/stylesheets/refills/_modal.scss */
    .modal-close:before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

page[size="A4"] {
    background: white;
    width: 21cm;
    height: 29.7cm;
    display: block;
    margin: 0 auto;
    margin-bottom: 0.5cm;
    box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
    padding: 0.5cm;
}

@media print {
    body,
    page[size="A4"] {
        margin: 0;
        box-shadow: 0;
    }
}

section.pdf-images {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
}

    section.pdf-images:before,
    section.pdf-images:after {
        content: " ";
        display: table;
    }

    section.pdf-images:after {
        clear: both;
    }

    section.pdf-images .pdf-img-grid {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        section.pdf-images .pdf-img-grid:last-child {
            margin-right: 0;
        }

        section.pdf-images .pdf-img-grid:nth-child(4n) {
            margin-right: 0;
        }

        section.pdf-images .pdf-img-grid:nth-child(4n + 1) {
            clear: left;
        }

        section.pdf-images .pdf-img-grid .img-wrap {
            margin-bottom: 0.5em;
            width: 100%;
        }

.pdf-image-id {
    font-size: 10px;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

    .mfp-container:before {
        content: "";
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

    .mfp-preloader a {
        color: #ccc;
    }

        .mfp-preloader a:hover {
            color: #fff;
        }

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

    .mfp-close:hover,
    .mfp-close:focus {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .mfp-close:active {
        top: 1px;
    }

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

    .mfp-arrow:active {
        margin-top: -54px;
    }

    .mfp-arrow:hover,
    .mfp-arrow:focus {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .mfp-arrow:before,
    .mfp-arrow:after,
    .mfp-arrow .mfp-b,
    .mfp-arrow .mfp-a {
        content: "";
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent;
    }

    .mfp-arrow:after,
    .mfp-arrow .mfp-a {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px;
    }

    .mfp-arrow:before,
    .mfp-arrow .mfp-b {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: 0.7;
    }

.mfp-arrow-left {
    left: 0;
}

    .mfp-arrow-left:after,
    .mfp-arrow-left .mfp-a {
        border-right: 17px solid #fff;
        margin-left: 31px;
    }

    .mfp-arrow-left:before,
    .mfp-arrow-left .mfp-b {
        margin-left: 25px;
        border-right: 27px solid #3f3f3f;
    }

.mfp-arrow-right {
    right: 0;
}

    .mfp-arrow-right:after,
    .mfp-arrow-right .mfp-a {
        border-left: 17px solid #fff;
        margin-left: 39px;
    }

    .mfp-arrow-right:before,
    .mfp-arrow-right .mfp-b {
        border-left: 27px solid #3f3f3f;
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px;
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px;
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000;
    }

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

    .mfp-figure:after {
        content: "";
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #444;
    }

    .mfp-figure small {
        color: #bdbdbd;
        display: block;
        font-size: 12px;
        line-height: 14px;
    }

    .mfp-figure figure {
        margin: 0;
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
   * Remove all paddings around the image on small screen
   */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0;
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

.homemain {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    /* 2 */
    padding: var(--space) var(--space) 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .homemain .divider-large {
        border-right: none;
        border-left: none;
    }

@media (min-width: 992px) {
    .homemain .divider-large {
        border-right: 2px solid var(--white);
        border-left: 2px solid var(--white);
    }
}

.homemain h1 {
    font-size: 3rem;
}

.aligner {
    display: flex;
    min-height: 400px;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.12);
}

.site.front-page .aligner {
    height: calc(100% + 80px);
}

#HomeSearchBox {
    /* box-sizing: border-box;
  max-width: 960px;
  padding: 30px 50px;
  width: 90%;
  border-radius: 3px;
  display: inline-block; */
}

    #HomeSearchBox a {
        /* text-decoration: none; */
        /* margin-bottom: 0px; */
    }

    #HomeSearchBox .search-box {
        width: 100%;
        background-color: white !important;
        border: 1px solid #ddd;
        border-radius: 3px;
        box-shadow: none;
        box-sizing: border-box;
        display: block;
        margin: 0;
        position: relative;
        *zoom: 1;
    }

        #HomeSearchBox .search-box:before,
        #HomeSearchBox .search-box:after {
            content: " ";
            display: table;
        }

        #HomeSearchBox .search-box:after {
            clear: both;
        }

    #HomeSearchBox form.search-bar {
        position: relative;
    }

        #HomeSearchBox form.search-bar button[type="submit"] {
            padding: 5px 20px;
        }

    #HomeSearchBox .search-box input[type="search"] {
        padding: 1em;
        font-size: 1em;
    }

    #HomeSearchBox .logo-container {
        min-width: 100px;
    }

        #HomeSearchBox .logo-container a {
            display: block;
        }

    #HomeSearchBox a:active, #HomeSearchBox a:focus, #HomeSearchBox a:hover {
        color: var(--white);
    }

    #HomeSearchBox p {
        text-align: center;
        margin-top: 0px;
    }

    #HomeSearchBox .company-name {
        font-size: 21px;
        color: white;
        text-shadow: 2px 2px 4px #000000;
        font-family: 'Open Sans', sans-serif;
    }

    #HomeSearchBox .company-activities {
        /*font-size: 21px;*/
        color: white;
        text-shadow: 2px 2px 4px #000000;
        font-family: 'Open Sans', sans-serif;
    }

    #HomeSearchBox .phone-us {
        display: block;
        font-size: 26px;
        line-height: 18px;
        /*font-family: "clarendon-urw";*/
        font-weight: bold;
    }

@media only screen and (min-width: 600px) {
    #HomeSearchBox .phone-us {
        font-size: 27px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 768px) {
    #HomeSearchBox .phone-us {
        font-size: 23px;
        line-height: 18px;
        /*font-family: "clarendon-urw";*/
        font-weight: bold;
    }
}

@media only screen and (min-width: 1170px) {
    #HomeSearchBox .phone-us {
        font-size: 27px;
        line-height: 20px;
        /*font-family: "clarendon-urw";*/
        font-weight: bold;
    }
}

#HomeSearchBox .phone-us a {
    color: white;
    text-shadow: 2px 2px 4px #000000;
}

#HomeSearchBox .email-us {
    font-size: 16px;
    line-height: 12px;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}

@media only screen and (min-width: 600px) {
    #HomeSearchBox .email-us {
        font-size: 18px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 768px) {
    #HomeSearchBox .email-us {
        font-size: 20px;
        line-height: 12px;
    }
}

@media only screen and (min-width: 1170px) {
    #HomeSearchBox .email-us {
        font-size: 22px;
        line-height: 14px;
    }
}

#HomeSearchBox .email-us a {
    color: white;
}

    #HomeSearchBox .email-us a:hover {
        color: #000;
    }

.ac-container {
    left: 0 !important;
    position: absolute;
    top: 25px !important;
    width: 100% !important;
}

.tabs-menu {
    height: 30px;
    float: left;
    clear: both;
}

    .tabs-menu li {
        height: 30px;
        line-height: 30px;
        float: left;
        margin-right: 10px;
        background-color: #ccc;
        border-top: 1px solid #d4d4d1;
        border-right: 1px solid #d4d4d1;
        border-left: 1px solid #d4d4d1;
    }

        .tabs-menu li.current {
            position: relative;
            background-color: #fff;
            border-bottom: 1px solid #fff;
            z-index: 5;
        }

        .tabs-menu li a {
            padding: 10px;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
        }

    .tabs-menu .current a {
        color: #2e7da3;
    }

.tab {
    border: 1px solid #d4d4d1;
    background-color: #fff;
    float: left;
    margin-bottom: 20px;
    width: auto;
}

.tab-content {
    width: 578px;
    padding: 20px;
    display: none;
}

#tab-1 {
    display: block;
}

.buttonsNew .location_adding_link,
.on_click {
    border-radius: 5px;
    display: inline-block;
    margin: 0 10px;
    padding: 9px 15px;
    position: relative;
}

    .buttonsNew .location_adding_link:hover,
    .on_click:hover {
        color: #fff;
    }

/*Chosen style*/
.chosen-wrapper {
    margin: 0 auto 25px;
    max-width: 400px;
    position: relative;
}

    .chosen-wrapper:after {
        pointer-events: none;
        content: "";
        position: absolute;
        top: 32px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9;
    }

    .chosen-wrapper.is-active:after {
        border-top: 8px solid black;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .chosen-wrapper .chosen-container .chosen-single {
        border-radius: 0;
        height: 70px;
        border: solid 2px #d9d9d9;
        font-size: 22px;
        color: rgba(0, 0, 0, 0.5);
        padding: 0 30px;
        line-height: 66px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        box-shadow: none;
        background: #fff;
    }

        .chosen-wrapper .chosen-container .chosen-single b {
            display: none !important;
        }

        .chosen-wrapper .chosen-container .chosen-single span {
            letter-spacing: 0;
            padding: 0;
            line-height: inherit;
        }

    .chosen-wrapper .chosen-container.chosen-with-drop .chosen-single {
        border-width: 2px 2px 1px;
        border-color: #000 #000 #d9d9d9;
        color: #000;
        background-image: none;
    }

    .chosen-wrapper .chosen-container.chosen-with-drop .chosen-drop {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .chosen-wrapper .chosen-container .chosen-drop {
        letter-spacing: 0;
        border-radius: 0;
        box-shadow: none;
        border-width: 0 2px 2px;
        border-color: #000;
        margin-top: 0;
        -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        opacity: 0;
    }

    .chosen-wrapper .chosen-container .chosen-results {
        font-size: 22px;
        color: #000;
        max-height: 245px;
        margin: 0;
        padding: 0;
    }

        .chosen-wrapper .chosen-container .chosen-results li {
            padding: 16px 30px 18px;
            margin: 0;
            border-bottom: 1px solid #e5e5e5;
            -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
            transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
            line-height: 20px;
        }

            .chosen-wrapper .chosen-container .chosen-results li.highlighted {
                background-color: #eeeeee !important;
                color: #000;
                background-image: none;
            }

.chosen-wrapper--style2:after {
    right: 0;
}

.chosen-wrapper--style2:before {
    content: "";
    width: 0;
    border-top: 2px solid #000;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all 0.2s cubic-bezier(0.06, 1, 0.89, 0.85);
    transition: all 0.2s cubic-bezier(0.06, 1, 0.89, 0.85);
}

.chosen-wrapper--style2.is-active:before {
    width: 100%;
}

.chosen-wrapper--style2 .chosen-container .chosen-single {
    border-width: 0 0 2px;
    padding: 0;
}

.chosen-wrapper--style2 .chosen-container.chosen-with-drop .chosen-single {
    border-width: 0 0 2px;
}

.chosen-wrapper--style2 .chosen-container.chosen-with-drop .chosen-drop {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.chosen-wrapper--style2 .chosen-container .chosen-drop {
    border-color: #d9d9d9;
    border-top: 2px solid #d9d9d9;
}

.chosen-wrapper--style2 .chosen-container .chosen-results li {
    padding: 16px 15px 18px;
}

/*ScrollBox style*/
.nicescroll-rails {
    border-left: 1px solid #d9d9d9;
    -webkit-transform: translate(-2px);
    transform: translate(-2px);
    top: 0 !important;
}

    .nicescroll-rails .nicescroll-cursors {
        width: 6px !important;
        margin-right: 2px;
    }

.link {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
}

    .link a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        color: #000;
    }

    .link .fa {
        font-size: 28px;
        margin-right: 8px;
        color: #000;
    }

/* Reset Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #2c3e50;
    background-image: none;
}

/* Country Select */
.country-select {
    position: relative;
    display: block;
    width: 15em;
    height: 2em;
    line-height: 2;
    overflow: hidden;
    border-radius: 0.25em;
    margin-top: 5px;
}

select#changecountry {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 0 0.5em;
    color: #fff;
    cursor: pointer;
    background: #555;
}

    select#changecountry::-ms-expand {
        display: none;
    }

/* Arrow */
.country-select::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 1em;
    background: #34495e;
    background: #444;
    pointer-events: none;
    color: #fff;
}

/* Transition */
.country-select:hover::after {
    color: #008cdf;
}

.country-select::after {
    -webkit-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.pattern {
    height: 6px;
    background-image: url("http://scoutproductions-ppq6.temp-dns.com/assets/images/patterns/native-pattern2.jpg");
    background-repeat: repeat-x;
    background-size: auto 6px;
}

.img-responsive {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.right {
    float: right;
}

.hidden {
    display: none;
}

.fa {
    color: #fff;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .fa {
        left: 0px;
    }
}

.send-images-container,
.submit-form-container {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
    padding: 30px;
    margin: 20px 0 0px 0px;
    text-align: left;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    background-color: #fff;
    border-color: #e1e1e1;
    *zoom: 1;
}

    .send-images-container:last-child,
    .submit-form-container:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 48em) {
    .send-images-container,
    .submit-form-container {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 32.2811195386%;
    }

        .send-images-container:last-child,
        .submit-form-container:last-child {
            margin-right: 0;
        }
}

.send-images-container:before,
.send-images-container:after,
.submit-form-container:before,
.submit-form-container:after {
    content: " ";
    display: table;
}

.send-images-container:after,
.submit-form-container:after {
    clear: both;
}

.send-images-container h2,
.submit-form-container h2 {
    font-size: 1.3em;
    color: #008cdf;
}

.send-images-container input[type="text"],
.send-images-container textarea,
.submit-form-container input[type="text"],
.submit-form-container textarea {
    background-color: #f8f8f8;
}

    .send-images-container textarea.loc-description,
    .submit-form-container textarea.loc-description {
        height: 140px;
    }

@media screen and (min-width: 48em) {
    .submit-form-container {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 66.1405597693%;
    }

        .submit-form-container:last-child {
            margin-right: 0;
        }
}

.submit-form-container .submit-form-block {
    margin: 0 0 30px 0px;
}

.submit-form-container label {
    font-weight: bold;
    font-size: 12px;
}

/* clear fix */
.isotope:after {
    content: "";
    display: block;
    clear: both;
}

/* ---- .element-item ---- */
/* 5 columns, percentage width */
.item,
.grid-sizer {
    width: 98.2%;
}

@media screen and (min-width: 31.875em) {
    .item,
    .grid-sizer {
        width: 48.2%;
    }
}

@media screen and (min-width: 48em) {
    .item,
    .grid-sizer {
        width: 31.6%;
    }
}

.item {
    float: left;
    margin-bottom: 1em;
}

.gutter-sizer {
    width: 1.7%;
}

@media screen and (min-width: 31.875em) {
    .gutter-sizer {
        width: 1.7%;
    }
}

@media screen and (min-width: 48em) {
    .gutter-sizer {
        width: 1.7%;
    }
}

p.test {
    font-size: 16px;
    font-size: 1rem;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.overflow-hidden {
    overflow: hidden;
}

/* --------------------------------

Main components

-------------------------------- */
.logo-container {
    /* width: 100%; */
    /* padding: 5px; */
}

.cd-main-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    /* 2 */
    padding: var(--space) var(--space) 0;
    width: 100%;
    /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
    z-index: 2;
    padding-top: 0 !important;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .cd-main-content.lateral-menu-is-open {
        /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
        /* -webkit-transform: translateX(-260px); */
        /* transform: translateX(-260px); */
    }

    .cd-main-content.left-menu-is-open {
        /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
        /* -webkit-transform: translateX(260px); */
        /* transform: translateX(260px); */
    }

@media only screen and (min-width: 768px) {
    .cd-main-content {
        padding-top: 60px;
    }
}

header {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    z-index: 3;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    header.lateral-menu-is-open {
        /* translate to show the lateral menu */
        /* -webkit-transform: translateX(-260px);
        transform: translateX(-260px); */
    }

    header.left-menu-is-open {
        /* translate to show the lateral menu */
        /* -webkit-transform: translateX(260px);
        transform: translateX(260px); */
    }

    header.is-fixed {
        position: fixed;
    }
/*
@media only screen and (min-width: 768px) {
    header {
        height: 50px;
    }
} */

.fw-1 {
    width: 0.25rem;
}

.fw-2 {
    width: 0.5rem;
}

.fw-3 {
    width: 1rem;
}

.fw-4 {
    width: 1.5rem;
}

.fw-5 {
    width: 3rem;
}

.fh-1 {
    height: 0.25rem;
}

.fh-2 {
    height: 0.5rem;
}

.fh-3 {
    height: 1rem;
}

.fh-4 {
    height: 1.5rem;
}

.fh-5 {
    height: 3rem;
}

.pl-8 {
    padding-left: 8px;
}

.pr-8 {
    padding-right: 8px;
}

.pl-16 {
    padding-left: 16px;
}

.pr-16 {
    padding-right: 16px;
}

.pl-32 {
    padding-left: 32px;
}

.pr-32 {
    padding-right: 32px;
}

.topbar {
    /* *zoom: 1; */
    /* display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    justify-content: space-between; */
    /* *zoom: 1; */
    /* overflow: hidden; */
}

    .topbar .social {
        align-items: center;
    }

        .topbar .social img {
            width: 2rem
        }

    .topbar .header-inner {
        display: flex;
        margin: 16px 0;
    }

.divider-none-top {
    border-top: 0px;
}

.divider-none-right {
    border-right: 0px;
}

.divider-none-bottom {
    border-bottom: 0px;
}

.divider-none-left {
    border-left: 0px;
}

.divider-dark-top {
    border-top: 1px solid rgba(222, 226, 230, 1);
}

.divider-dark-right {
    border-right: 1px solid rgba(222, 226, 230, 1);
}

.divider-dark-bottom {
    border-bottom: 1px solid rgba(222, 226, 230, 1);
}

.divider-dark-left {
    border-left: 1px solid rgba(222, 226, 230, 1);
}

.divider-light-top {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.divider-light-right {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.divider-light-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.divider-light-left {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 576px) {
    .divider-sm-dark-top {
        border-top: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-sm-dark-right {
        border-right: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-sm-dark-bottom {
        border-bottom: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-sm-dark-left {
        border-left: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-sm-light-top {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-sm-light-right {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-sm-light-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-sm-light-left {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
}

@media (min-width: 768px) {
    .divider-md-dark-top {
        border-top: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-md-dark-right {
        border-right: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-md-dark-bottom {
        border-bottom: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-md-dark-left {
        border-left: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-md-light-top {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-md-light-right {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-md-light-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-md-light-left {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
}

@media (min-width: 992px) {
    .divider-lg-dark-top {
        border-top: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-lg-dark-right {
        border-right: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-lg-dark-bottom {
        border-bottom: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-lg-dark-left {
        border-left: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-lg-light-top {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-lg-light-right {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-lg-light-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-lg-light-left {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
}

@media (min-width: 1200px) {
    .divider-xl-dark-top {
        border-top: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-xl-dark-right {
        border-right: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-xl-dark-bottom {
        border-bottom: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-xl-dark-left {
        border-left: 1px solid rgba(222, 226, 230, 1);
    }

    .divider-xl-light-top {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-xl-light-right {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-xl-light-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .divider-xl-light-left {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
}

.topbar .col-header {
    display: flex;
}

.topbar .col-grow {
    flex: 1 0;
}

.topbar .col-shrink {
    flex: 0 1;
}

.topbar .col-space-between {
    justify-content: space-between;
}

.topbar .col-flex-end {
    justify-content: flex-end;
}

.topbar .menu-container {
    display: flex;
    padding: 9px;
    border: 3px solid white;
    border-radius: 50%;
    align-items: center;
}

    .topbar .menu-container.is-clicked {
        border: 1px solid var(--scout-primary-button);
    }

/* .topbar #cd-leftmenu-trigger {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    width: 18px;
    height: 18px;
    margin: auto;
} */

/* .topbar #cd-leftmenu-trigger .cd-menu-icon {
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #FFF;
} */

.topbar .menu-icon {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    width: 18px;
    height: 18px;
    margin: auto;
}

    .topbar .menu-icon .cd-menu-icon {
        display: inline-block;
        position: absolute;
        width: 18px;
        height: 1px;
        background-color: white;
    }

.topbar .logo-container {
    display: flex;
    align-items: center;
    padding: 0;
}

    .topbar .logo-container a#cd-logo {
        margin: 0;
        height: 3rem;
    }

        .topbar .logo-container a#cd-logo img {
            padding: 0;
            height: 3rem;
            width: auto;
        }

.topbar:before,
.topbar:after {
    content: " ";
    display: table;
}

.topbar:after {
    clear: both;
}

.topbar:before,
.topbar:after {
    content: " ";
    display: table;
}

.topbar:after {
    clear: both;
}

#cd-logo {
    display: block;
    margin-bottom: 1.5rem;
}

    #cd-logo img {
        display: block;
        height: 4rem;
        fill: #000;
        width: 100%;
    }

@media (min-width: 576px) {
    #cd-logo img {
        height: 6rem;
    }

    #cd-logo {
        margin-bottom: 1.5rem;
    }
}

.homeContact .company-name {
    font-size: 24px;
}

.homeContact a {
    font-size: 20px;
    margin-bottom: 0 !important;
    color: #39abfe;
}

.homeContact .tel {
    font-size: 20px;
}

#cd-top-nav,
.cd-top-nav {
    height: 100%;
    display: none;
}

    #cd-top-nav ul,
    .cd-top-nav ul {
        height: 100%;
        padding-top: 5px;
    }

    #cd-top-nav li,
    .cd-top-nav li {
        display: inline-block;
        margin-right: 1em;
    }

    #cd-top-nav a,
    .cd-top-nav a {
        display: inline-block;
        padding-right: 0.5em;
        padding-left: 0.5em;
        padding-top: 0.6em;
        padding-bottom: 0.5em;
        color: #ddd;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.84em;
        border: 1px solid #224e6a;
    }

        #cd-top-nav a.current,
        .cd-top-nav a.current {
            color: #008cdf;
        }

        #cd-top-nav a:hover,
        .cd-top-nav a:hover {
            color: #fff;
            cursor: pointer;
            border: 1px solid white;
            text-decoration: none;
        }

/* @media only screen and (min-width: 768px) {
    #cd-top-nav, .cd-top-nav {
        display: inline-block;
    }
} */

.menu {
    display: flex;
    align-items: center;
}

/* #cd-menu-trigger, #cd-leftmenu-trigger {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
} */

/* @media only screen and (min-width: 768px) {
    #cd-menu-trigger, #cd-leftmenu-trigger {
        background-color: transparent;
        width: auto;
    }
} */

#cd-menu-trigger .cd-menu-text,
#cd-leftmenu-trigger .cd-menu-text {
    height: 100%;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: none;
    font-size: 0.9em;
}

#cd-menu-trigger .cd-menu-icon,
#cd-leftmenu-trigger .cd-menu-icon {
    /* this span is the central line in the menu menu */
    display: inline-block;
    position: relative;
    bottom: auto;
    right: auto;
    /* -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); */
    width: 18px;
    height: 3px;
    background-color: white;
    /* these are the upper and lower lines in the menu menu */
}

    #cd-menu-trigger .cd-menu-icon::before,
    #cd-menu-trigger .cd-menu-icon:after,
    #cd-leftmenu-trigger .cd-menu-icon::before,
    #cd-leftmenu-trigger .cd-menu-icon:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: inherit;
        left: 0;
    }

    #cd-menu-trigger .cd-menu-icon::before,
    #cd-leftmenu-trigger .cd-menu-icon::before {
        bottom: 5px;
    }

    #cd-menu-trigger .cd-menu-icon::after,
    #cd-leftmenu-trigger .cd-menu-icon::after {
        top: 5px;
    }

#cd-menu-trigger.is-clicked .cd-menu-icon,
#cd-leftmenu-trigger.is-clicked .cd-menu-icon {
    background-color: rgba(255, 255, 255, 0);
}

    #cd-menu-trigger.is-clicked .cd-menu-icon::before,
    #cd-menu-trigger.is-clicked .cd-menu-icon::after,
    #cd-leftmenu-trigger.is-clicked .cd-menu-icon::before,
    #cd-leftmenu-trigger.is-clicked .cd-menu-icon::after {
        background-color: white;
    }

    #cd-menu-trigger.is-clicked .cd-menu-icon::before,
    #cd-leftmenu-trigger.is-clicked .cd-menu-icon::before {
        bottom: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        background-color: var(--scout-primary-button);
    }

    #cd-menu-trigger.is-clicked .cd-menu-icon::after,
    #cd-leftmenu-trigger.is-clicked .cd-menu-icon::after {
        top: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background-color: var(--scout-primary-button);
    }

@media only screen and (min-width: 768px) {
    /* #cd-menu-trigger, #cd-leftmenu-trigger {
        padding-left: 1.25em;
        padding-right: 1.25em;
    } */

    /* #cd-menu-trigger .cd-menu-text, #cd-leftmenu-trigger .cd-menu-text {
            display: none;
            line-height: 50px;
        } */
}

@media only screen and (min-width: 768px) and (min-width: 768px) {
    /* #cd-menu-trigger .cd-menu-text, #cd-leftmenu-trigger .cd-menu-text {
        display: inline-block;
    } */
}

/* @media only screen and (min-width: 768px) {
    #cd-menu-trigger .cd-menu-icon, #cd-leftmenu-trigger .cd-menu-icon {
        left: auto;
        right: 1.25em;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        display: none;
    }
} */

#cd-leftmenu-trigger {
    left: 0;
}

/* @media only screen and (min-width: 768px) {
    #cd-leftmenu-trigger {
        display: none;
    }
} */

#cd-lateral-nav,
#cd-left-nav {
    position: fixed;
    height: 100%;
    right: 0;
    top: 0;
    visibility: hidden;
    /* the secondary navigation is covered by the main element */
    z-index: 100;
    width: 325px;
    background-color: #ffffff;
    overflow-y: auto;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0.4s;
    -webkit-transition: visibility 0s 0.4s, -webkit-transform 0.4s 0s;
    transition: visibility 0s 0.4s, -webkit-transform 0.4s 0s;
    transition: transform 0.4s 0s, visibility 0s 0.4s;
    transition: transform 0.4s 0s, visibility 0s 0.4s, -webkit-transform 0.4s 0s;
    /* this creates the subtle slide in animation of the navigation */
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
}

    #cd-lateral-nav,
    #cd-left-nav .menu-icon .cd-menu-icon::before,
    #cd-lateral-nav,
    #cd-left-nav .menu-icon .cd-menu-icon::after {
        background-color: var(--scout-blue);
    }

        #cd-lateral-nav .cd-navigation,
        #cd-left-nav .cd-navigation {
            margin: 10px 0 16px;
        }

        #cd-lateral-nav .sub-menu,
        #cd-left-nav .sub-menu {
            padding: 0 10px 20px 15px;
            display: none;
        }

        #cd-lateral-nav a,
        #cd-left-nav a {
            display: block;
            line-height: 2;
            padding: 0 15px;
            color: var(--body-copy);
            font-size: 1.25rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
        }

.activeLink {
    color: #222323 !important;
    font-weight: 200 !important;
}

#cd-lateral-nav a.current,
#cd-left-nav a.current {
    background-color: #3a4a4d;
    color: #fff;
}

.no-touch #cd-lateral-nav a:hover,
.no-touch #cd-left-nav a:hover {
    color: #fff;
}

@media only screen and (min-width: 768px) {
    #cd-lateral-nav .cd-navigation,
    #cd-left-nav .cd-navigation {
        margin: 20px 0;
        text-align: center;
    }
}

#cd-lateral-nav .cd-navigation li a:hover,
#cd-left-nav .cd-navigation li a:hover,
.activeLink {
    text-decoration: none;
    border-left: 1px solid #5B77A1;
    font-weight: 200;
    color: #222323
}

#cd-left-nav {
    left: 0;
    -webkit-transform: translateX(-325px);
    transform: translateX(-325px);
    /* visibility: visible; */
    -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
    transition: transform 0.4s 0s, visibility 0s 0s, -webkit-transform 0.4s 0s;
    -webkit-overflow-scrolling: touch;
}

    /* #cd-lateral-nav.lateral-menu-is-open,
#cd-lateral-nav.left-menu-is-open, */
    #cd-left-nav.lateral-menu-is-open,
    #cd-left-nav.left-menu-is-open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        /* visibility: visible; */
        -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
        transition: transform 0.4s 0s, visibility 0s 0s, -webkit-transform 0.4s 0s;
        -webkit-overflow-scrolling: touch;
    }

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    /* this is the right arrow to show that the item has a submenu  */
}

    #cd-lateral-nav .item-has-children > a::after {
        content: "";
        display: block;
        height: 11px;
        width: 8px;
        position: absolute;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 1.5em;
        background: url("../images/sidenav/cd-arrow.svg") no-repeat center center;
        background-size: 8px 11px;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
    }

    #cd-lateral-nav .item-has-children > a.submenu-open::after {
        -webkit-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
    }

#cd-lateral-nav .socials {
    *zoom: 1;
    padding: 0 32px;
}

    #cd-lateral-nav .socials:before,
    #cd-lateral-nav .socials:after {
        content: " ";
        display: table;
    }

    #cd-lateral-nav .socials:after {
        clear: both;
    }

    #cd-lateral-nav .socials a {
        height: 32px;
        width: 32px;
        float: left;
        padding: 0;
        background-image: url("../images/sidenav/cd-socials.svg");
        background-repeat: no-repeat;
        background-size: 128px 64px;
        background-color: #fff;
        margin-right: 0.5em;
        border-radius: 0.25em;
    }

        #cd-lateral-nav .socials a.cd-twitter {
            background-position: 0 0;
        }

        #cd-lateral-nav .socials a.cd-github {
            background-position: -32px 0;
        }

        #cd-lateral-nav .socials a.cd-facebook {
            background-position: -64px 0;
        }

        #cd-lateral-nav .socials a.cd-google {
            background-position: -96px 0;
        }

.no-touch #cd-lateral-nav .socials a:hover {
    background-color: #224e6a;
}

    .no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
        background-position: 0 -32px;
    }

    .no-touch #cd-lateral-nav .socials a:hover.cd-github {
        background-position: -32px -32px;
    }

    .no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
        background-position: -64px -32px;
    }

    .no-touch #cd-lateral-nav .socials a:hover.cd-google {
        background-position: -96px -32px;
    }

@media only screen and (min-width: 768px) {
    #cd-menu-trigger {
        position: relative;
        float: right;
        display: inline-block;
        padding-right: 0;
    }
}

.login-menu {
    float: right;
    display: inline-block;
}

.cd-top-nav {
    float: right;
    display: inline-block;
}

a.cd-signin.button {
    padding: 0.4em 1em;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 3px;
    display: inline-block;
    margin-top: 7px;
    color: #fff;
    font-size: 0.8em;
}

    a.cd-signin.button:hover {
        background-color: #008cdf;
        border: 1px solid #008cdf;
    }

li.nav-link.show_clients {
    margin: 0;
}

.main-wrap {
    padding: 0 20px;
}

.main-container {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    *zoom: 1;
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 10px;
}

    .main-container:before,
    .main-container:after {
        content: " ";
        display: table;
    }

    .main-container:after {
        clear: both;
    }

    .main-container:before,
    .main-container:after {
        content: " ";
        display: table;
    }

    .main-container:after {
        clear: both;
    }

div.project {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    *zoom: 1;
    overflow: hidden;
}

    div.project:before,
    div.project:after {
        content: " ";
        display: table;
    }

    div.project:after {
        clear: both;
    }

    div.project:before,
    div.project:after {
        content: " ";
        display: table;
    }

    div.project:after {
        clear: both;
    }

@media screen and (min-width: 62em) {
    div.project .project-info,
    div.project .project-assets {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        div.project .project-info:last-child,
        div.project .project-assets:last-child {
            margin-right: 0;
        }
}

.area-tags,
.category-tags {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    .area-tags:last-child,
    .category-tags:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 31.875em) {
    .area-tags,
    .category-tags {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        .area-tags:last-child,
        .category-tags:last-child {
            margin-right: 0;
        }

        .area-tags:nth-child(2n),
        .category-tags:nth-child(2n) {
            margin-right: 0;
        }

        .area-tags:nth-child(2n + 1),
        .category-tags:nth-child(2n + 1) {
            clear: left;
        }
}

@media screen and (min-width: 62em) {
    .area-tags,
    .category-tags {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        .area-tags:nth-child(2n),
        .category-tags:nth-child(2n) {
            margin-right: 1.578320692%;
        }

        .area-tags:nth-child(2n + 1),
        .category-tags:nth-child(2n + 1) {
            clear: none;
        }

        .area-tags:last-child,
        .category-tags:last-child {
            margin-right: 0;
        }
}

.area-tags ul li a,
.category-tags ul li a {
    color: #777;
}

h4.group-title {
    margin-bottom: 0;
    margin-top: 20px;
}

.submit-form-details {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    .submit-form-details:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 31.875em) {
    .submit-form-details {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        .submit-form-details:last-child {
            margin-right: 0;
        }

        .submit-form-details:nth-child(2n) {
            margin-right: 0;
        }

        .submit-form-details:nth-child(2n + 1) {
            clear: left;
        }
}

@media screen and (min-width: 62em) {
    .submit-form-details {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        .submit-form-details:nth-child(2n) {
            margin-right: 1.578320692%;
        }

        .submit-form-details:nth-child(2n + 1) {
            clear: none;
        }

        .submit-form-details:last-child {
            margin-right: 0;
        }
}

.omega {
    margin-right: 0;
}

.submit-btn-container {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    .submit-btn-container:last-child {
        margin-right: 0;
    }

.team-details {
    padding: 5px;
}

    .team-details .img {
        width: 100%;
    }

    .team-details h4 {
        margin: 5px 0;
        color: #008cdf;
    }

    .team-details p {
        font-size: 0.8rem;
        line-height: 1.1rem;
    }

section.services h2 strong {
    font-weight: normal;
}

section.services h2 {
    margin-bottom: 1rem;
}

section.services ul {
    margin-bottom: 1.5rem;
}

section.services .services-block {
    position: relative;
    overflow: hidden;
    padding-right: 30px;
}

    section.services .services-block h2 {
        color: #008cdf;
        font-size: 1.2rem;
    }

@media only screen and (min-width: 600px) {
    section.services .services-block {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        section.services .services-block:last-child {
            margin-right: 0;
        }

        section.services .services-block:nth-child(2n) {
            margin-right: 0;
        }

        section.services .services-block:nth-child(2n + 1) {
            clear: left;
        }
}

.clients-wrapper {
}

section.clients {
    *zoom: 1;
    max-width: 73.125em;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
}

    section.clients:before,
    section.clients:after {
        content: " ";
        display: table;
    }

    section.clients:after {
        clear: both;
    }

.clientcol {
    *zoom: 1;
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    .clientcol:before,
    .clientcol:after {
        content: " ";
        display: table;
    }

    .clientcol:after {
        clear: both;
    }

    .clientcol:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 31.875em) {
    .clientcol {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        .clientcol:last-child {
            margin-right: 0;
        }

        .clientcol:nth-child(2n) {
            margin-right: 0;
        }

        .clientcol:nth-child(2n + 1) {
            clear: left;
        }
}

@media screen and (min-width: 62em) {
    .clientcol {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        .clientcol:nth-child(2n) {
            margin-right: 1.578320692%;
        }

        .clientcol:nth-child(2n + 1) {
            clear: none;
        }

        .clientcol:last-child {
            margin-right: 0;
        }
}

.clientcol ul li a {
    color: #777;
}

.area-tags,
.category-tags {
    float: left;
    display: block;
    margin-right: 1.578320692%;
    width: 100%;
}

    .area-tags:last-child,
    .category-tags:last-child {
        margin-right: 0;
    }

@media screen and (min-width: 31.875em) {
    .area-tags,
    .category-tags {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 49.210839654%;
    }

        .area-tags:last-child,
        .category-tags:last-child {
            margin-right: 0;
        }

        .area-tags:nth-child(2n),
        .category-tags:nth-child(2n) {
            margin-right: 0;
        }

        .area-tags:nth-child(2n + 1),
        .category-tags:nth-child(2n + 1) {
            clear: left;
        }
}

@media screen and (min-width: 62em) {
    .area-tags,
    .category-tags {
        float: left;
        display: block;
        margin-right: 1.578320692%;
        width: 23.816259481%;
    }

        .area-tags:nth-child(2n),
        .category-tags:nth-child(2n) {
            margin-right: 1.578320692%;
        }

        .area-tags:nth-child(2n + 1),
        .category-tags:nth-child(2n + 1) {
            clear: none;
        }

        .area-tags:last-child,
        .category-tags:last-child {
            margin-right: 0;
        }
}

.area-tags ul li a,
.category-tags ul li a {
    color: #777;
}

#search_keyword::-webkit-input-placeholder {
    color: black;
    font-weight: normal;
}

#search_keyword:-moz-placeholder {
    color: black;
    font-weight: bold;
}

#search_keyword:-ms-input-placeholder {
    color: black;
    font-weight: bold;
}

.home-video {
    text-align: center;
    margin: 0 auto;
    display: block;
    height: 45vh;
}

.loader-active {
    display: block;
}

.loader-inactive {
    display: none;
}

.portfolio-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-h2 h2 {
    color: #007bff;
    font-size: 1.2rem;
}

.card-header.rated-location {
    background-color: rgba(68, 115, 187, 0.3);
}

.card-footer.rated-location {
    background-color: rgba(68, 115, 187, 0.3);
}

#search-content .card-footer {
    background-color: none;
    border-top: 0px;
}

.blog-image {
    max-height: 350px;
}

.card {
    border: 0px !important;
    border-radius: 0px !important;
    background-color: transparent;
}

.card-border-awaiting {
    border: 2px solid !important;
    border-radius: 0.25rem !important;
    border-color: #ffc107 !important;
    margin-bottom: 5px;
}

.card-border-available {
    border: 2px solid !important;
    border-radius: 0.25rem !important;
    border-color: #28a745 !important;
    margin-bottom: 5px;
}

.card-border-na {
    border: 2px solid !important;
    border-radius: 0.25rem !important;
    border-color: #dc3545 !important;
    margin-bottom: 5px;
}

.card-body {
    padding: 0;
}

/**************************
Client List
**************************/

.clients-wrapper {
    background: url(../assets/logo/scout-bg.svg);
    background-color: var(--scout-blue-grey);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-divider {
    border-left: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}

.rated-location .card-divider {
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.menu-overlay {
    left: 0;
    top: 0;
    height: 80px;
    position: absolute;
    z-index: 1001;
}

    .menu-overlay.is-open {
        position: fixed;
    }

.menu-placeholder {
    width: 40px;
    height: 40px;
}

.card-img {
    border-radius: 0px;
}

.social-homepage {
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
    display: flex;
}

    .social-homepage img {
        height: 40px;
    }

@media (min-width: 576px) {
    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-auto {
        width: auto !important;
    }
}

.btn.btn-secondary.remove-location:focus,
.btn.btn-secondary.remove-location:hover,
.btn.btn-secondary.remove-location:active,
.btn.btn-secondary.remove-location {
    background-color: #dc3545;
    border-color: #dc3545;
    color: var(--white);
}

.btn.btn-secondary.save-location:focus,
.btn.btn-secondary.save-location:hover,
.btn.btn-secondary.save-location:active,
.btn.btn-secondary.save-location {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.btn.btn-secondary.dd-btn:focus,
.btn.btn-secondary.dd-btn:hover,
.btn.btn-secondary.dd-btn:active,
.btn.btn-secondary.dd-btn {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

body.modal-open {
    padding: 0px !important;
}

#enquiry-modal.modal.show {
    padding: 0px !important;
}

.font-size-1 {
    font-size: 2.5rem;
}

.font-size-2 {
    font-size: 2rem;
}

.font-size-3 {
    font-size: 1.75rem;
}

.font-size-4 {
    font-size: 1.5rem;
}

.font-size-5 {
    font-size: 1.25rem;
}

.font-size-6 {
    font-size: 1;
}

.category-header.collapsed i {
    transform: rotate(0deg);
}

.category-header:not(.collapsed) i {
    transform: rotate(180deg);
}

.site.front-page {
    height: calc(100% - 80px) !important;
}

.btn {
    border-radius: 50px !important;
}

    .btn.btn-uk.location {
        color: white !important;
        background-color: rgba(90, 118, 160, 0.8) !important;
    }

        .btn.btn-uk.location:hover,
        .btn.btn-uk.location:focus,
        .btn.btn-uk.location:active,
        .btn.btn-uk.location.active {
            color: white !important;
            background-color: var(--scout-primary-button) !important;
        }

    .btn.btn-uk.image {
        color: white !important;
        background-color: #aa569a !important;
    }

        .btn.btn-uk.image:hover,
        .btn.btn-uk.image:focus,
        .btn.btn-uk.image:active,
        .btn.btn-uk.image.active {
            color: white !important;
            background-color: var(--pink) !important;
        }

    .btn.btn-international.location {
        color: white !important;
        background-color: rgba(255, 156, 7, 0.8) !important
    }

        .btn.btn-international.location:hover,
        .btn.btn-international.location:focus,
        .btn.btn-international.location:active,
        .btn.btn-international.location.active {
            color: white !important;
            background-color: #ff9c07 !important
        }

button.country-selector:hover,
button.country-selector:focus,
button.country-select {
    background-color: transparent;
}

.static-front-page {
    background: url(../assets/static-front-page.jpg) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
}

.responsive-background-image {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    object-fit: cover;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    height: 3rem;
    width: 3rem;
    border-radius: 3rem;
    background-color: #8290ba;
    color: var(--body);
    padding: 0;
}

    #btn-back-to-top i {
        display: flex;
        margin: 0;
        text-align: center;
    }

.dd {
    position: relative;
    display: inline-block;
}

.dd-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dd-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.dd-myselects {
    right: 0;
    margin-top: 2px;
}

.dd a:hover {
    background-color: #ddd;
}

.dd-show {
    display: block;
}
