@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&display=swap");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a, a:hover, a:active, a:focus {
  background: transparent;
  outline: none; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: manual;
  -epub-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf, .comment-respond {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after, .comment-respond:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography

p {
  -ms-word-wrap: break-word;
  word-break: break-word; //non-standart css for webkit
  word-wrap: break-word;
  // cleaning up the ragged lines and breaks
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto;
  // sets a minimum number of characters before and after the break
  -webkit-hyphenate-before: 2;
   -webkit-hyphenate-after: 3;
           hyphenate-lines: 3;
  // enabling fancy ligatures when available
  -webkit-font-feature-settings: "liga", "dlig";
   -moz-font-feature-settings: "liga=1, dlig=1";
      -ms-font-feature-settings: "liga", "dlig";
       -o-font-feature-settings: "liga", "dlig";
          font-feature-settings: "liga", "dlig";
}
*/
@font-face {
  font-family: 'whisky-icons';
  src: url("../fonts/whisky-icons.ttf?o7i93g") format("truetype"), url("../fonts/whisky-icons.woff?o7i93g") format("woff"), url("../fonts/whisky-icons.svg?o7i93g#whisky-icons") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'whisky-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.text-center {
  text-align: center; }

.icon-instagram:before {
  content: "\e903"; }

.icon-print:before {
  content: "\e900"; }

.icon-envelope:before {
  content: "\e901"; }

.icon-home3:before {
  content: "\e902"; }

/* .icon-search:before {
  content: "\e986";
} */
.icon-search {
  background: url("../images/Search@3x.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 24px; }

.icon-facebook:before {
  content: "\ea90"; }

.icon-twitter:before {
  content: "\ea96"; }

.icon-youtube:before {
  content: "\ea9d"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
Rotate
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 30px;
    width: 100%;
    padding-right: 0; }

  .m-1of2 {
    float: left;
    padding-right: 30px;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 30px;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 30px;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 30px;
    width: 25%; }

  .m-1of5 {
    float: left;
    padding-right: 30px;
    width: 20%; }

  .m-3of4 {
    float: left;
    padding-right: 30px;
    width: 75%; }

  .order-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 30px;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 30px;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 30px;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 30px;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 30px;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 30px;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 30px;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 30px;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 30px;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 30px;
    width: 80%; }

  .t-1of6 {
    float: left;
    padding-right: 30px;
    width: 16.6666666667%; }

  .t-5of6 {
    float: left;
    padding-right: 30px;
    width: 83.3333333333%; }

  .t-1of7 {
    float: left;
    padding-right: 30px;
    width: 14.2857142857%; }

  .t-2of7 {
    float: left;
    padding-right: 30px;
    width: 28.5714286%; }

  .t-3of7 {
    float: left;
    padding-right: 30px;
    width: 42.8571429%; }

  .t-4of7 {
    float: left;
    padding-right: 30px;
    width: 57.1428572%; }

  .t-5of7 {
    float: left;
    padding-right: 30px;
    width: 71.4285715%; }

  .t-6of7 {
    float: left;
    padding-right: 30px;
    width: 85.7142857%; }

  .order-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 30px;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 30px;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 30px;
    width: 33.33%; }

  .ratings-grid-holder .d-1of3:nth-child(3n+1) {
    clear: left; }

  .d-2of3 {
    float: left;
    padding-right: 30px;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 30px;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 30px;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 30px;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 30px;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 30px;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 30px;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 30px;
    width: 16.6666666667%; }

  .d-5of6 {
    float: left;
    padding-right: 30px;
    width: 83.3333333333%; }

  .d-1of7 {
    float: left;
    padding-right: 30px;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 30px;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 30px;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 30px;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 30px;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 30px;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 30px;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 30px;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 30px;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 30px;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 30px;
    width: 8.33%; }

  .d-2of12 {
    float: left;
    padding-right: 30px;
    width: 16.66%; }

  .d-3of12 {
    float: left;
    padding-right: 30px;
    width: 25%; }

  .d-4of12 {
    float: left;
    padding-right: 30px;
    width: 33.33%; }

  .d-5of12 {
    float: left;
    padding-right: 30px;
    width: 41.66%; }

  .d-6of12 {
    float: left;
    padding-right: 30px;
    width: 50%; }

  .d-7of12 {
    float: left;
    padding-right: 30px;
    width: 58.33%; }

  .d-8of12 {
    float: left;
    padding-right: 30px;
    width: 66.66%; } }
@media (min-width: 768px) {
  .align-items-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }

  .align-items-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }

  .align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }

  .align-items-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }

  .align-items-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }

  .align-content-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }

  .align-content-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }

  .align-content-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important; }

  .align-content-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }

  .align-content-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }

  .align-content-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }

  .align-self-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }

  .align-self-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }

  .align-self-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }

  .align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }

  .align-self-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }

  .align-self-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; } }
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    top: 1px; }

/*********************
BUTTON
see breakboint scss for modifications
*********************/
.button.large-sm {
  width: 100%;
  text-align: center; }

a.text-button {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  display: block;
  color: #2B2B2B !important;
  text-align: center;
  padding: 18px 30px;
  margin: 10px 0 20px 0;
  border-radius: 4px;
  background-color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  a.text-button:hover {
    color: #fff !important;
    background-color: #182A5C;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5); }
  a.text-button.blue {
    color: #fff !important;
    background-color: #182A5C; }
    a.text-button.blue:hover {
      color: #2B2B2B !important;
      background-color: #fff; }
  a.text-button.gold {
    color: #182A5C !important;
    background-color: #e6b122;
    font-weight: bold; }
    a.text-button.gold:hover {
      color: #fff !important;
      background-color: #E5B022; }
  a.text-button.yellow {
    color: #fff !important;
    background-color: #E5B022; }
    a.text-button.yellow:hover {
      color: #fff !important;
      background-color: #A03C10; }
  a.text-button.short {
    padding: 5px 20px; }
  a.text-button.wide {
    padding: 10px 40px; }

.wf-event-header a.text-button {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: block;
  color: #2B2B2B !important;
  text-align: center;
  padding: 10px 15px;
  margin: 10px 0 20px 0;
  border-radius: 2px;
  background-color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .wf-event-header a.text-button:hover {
    color: #fff !important;
    background-color: #182A5C;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5); }
  .wf-event-header a.text-button.blue {
    color: #fff !important;
    background-color: #182A5C; }
    .wf-event-header a.text-button.blue:hover {
      color: #2B2B2B !important;
      background-color: #fff; }
  .wf-event-header a.text-button.gold {
    color: #182A5C !important;
    background-color: #e6b122;
    font-weight: bold; }
    .wf-event-header a.text-button.gold:hover {
      color: #fff !important;
      background-color: #E5B022; }
  .wf-event-header a.text-button.yellow {
    color: #fff !important;
    background-color: #E5B022; }
    .wf-event-header a.text-button.yellow:hover {
      color: #fff !important;
      background-color: #A03C10; }
  .wf-event-header a.text-button.short {
    padding: 5px 20px; }
  .wf-event-header a.text-button.wide {
    padding: 10px 10px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, .comment-reply-link, #submit {
  color: #fff !important;
  background-color: #182A5C !important; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    background-color: #14234c; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    background-color: #132148; }

.social-share {
  display: block;
  margin: 0 0 15px; }
  .social-share li {
    float: left; }
    .social-share li a {
      display: inline-block;
      width: 32px;
      height: 33px;
      padding: 4px 0px 0 7px;
      border: 1px solid #9B9B9B;
      border-right: 0;
      color: #9B9B9B;
      text-decoration: none;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .social-share li a:hover {
        color: #fff;
        background-color: #182A5C; }
      .single .social-share li a {
        font-size: 22px;
        width: 40px;
        height: 40px;
        padding: 4px 0px 0 8px; }
    .social-share li:last-child a {
      border-right: 1px solid #9B9B9B; }
  .single .social-share {
    margin: 20px 0; }
  @media only screen and (min-width: 768px) {
    .social-share {
      position: absolute;
      bottom: 0;
      left: 0; } }
  .featured-holder .social-share {
    position: relative;
    top: auto;
    left: auto; }
  .single .social-share {
    position: relative;
    top: auto;
    left: auto; }

.to-top {
  width: 38px;
  height: 38px;
  background-color: #8d8562 !important;
  display: inline-block;
  border-radius: 18px;
  position: fixed;
  bottom: 2em;
  left: 2em; }
  .to-top span {
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #ffffff;
    margin: 10px 11px; }
  .to-top:hover {
    background-color: #182A5C; }
  @media only screen and (max-width: 1029px) {
    .to-top {
      right: 0.5em; } }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 20px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #2B2B2B;
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: #fff;
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  /* border-right-width: 0; */
  letter-spacing: 1px; }
  .search-select .col.last-col .selectric {
    border-right-width: 1px; }
  .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 20px;
    font-size: 15px;
    line-height: 38px;
    color: #333333;
    height: 38px;
    user-select: none; }
  .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial; }
    .selectric .button:after {
      content: " ";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      width: 0;
      height: 0;
      border: 4px solid transparent;
      border-top-color: #333333;
      border-bottom: none; }

.selectric-focus .selectric {
  border-color: #aaaaaa; }

.selectric-hover .selectric {
  border-color: #c4c4c4; }
  .selectric-hover .selectric .button {
    color: #a2a2a2; }
    .selectric-hover .selectric .button:after {
      border-top-color: #a2a2a2; }

.selectric-open {
  z-index: 9999; }
  .selectric-open .selectric {
    border-color: #c4c4c4; }
  .selectric-open .selectric-items {
    display: block; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }
  .selectric-hide-select select {
    position: absolute;
    left: -100%; }
  .selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10; }
    .selectric-hide-select.selectric-is-native select {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      border: none;
      z-index: 1;
      box-sizing: border-box;
      opacity: 0; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px; }
  .selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto; }
  .selectric-above .selectric-items {
    top: auto;
    bottom: 100%; }
  .selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    min-height: 20px; }
  .selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer; }
    .selectric-items li.selected {
      background: #E0E0E0;
      color: #444; }
    .selectric-items li.highlighted {
      background: #D0D0D0;
      color: #444; }
    .selectric-items li:hover {
      background: #D5D5D5;
      color: #444; }
  .selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    user-select: none; }
  .selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    user-select: none;
    background: none;
    color: #444; }
  .selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1; }
  .selectric-items .selectric-group li {
    padding-left: 25px; }

/*********************
SEPARATE COMPONENTS
Creating a separation of concerns for new components/custom-post-types etc
*********************/
.header {
  position: relative; }
  .header #mobile_header {
    background-color: #fff; }
  .header .wrap {
    -webkit-box-shadow: 0px 2px 6px 0px #E1E2E6;
    box-shadow: 0px 2px 6px 0px #E1E2E6; }

#logo {
  margin: 15px auto;
  display: block;
  text-align: left;
  width: 137px;
  height: 48px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  #logo img {
    display: inline-block;
    width: 137px;
    height: 48px; }
  #logo.search-open {
    width: 550px; }

#logo-mobile-holder {
  display: none; }

.hamburger-toggler {
  margin-top: 10px;
  display: inline-block;
  float: left; }

.hamburger {
  padding: 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-variant-caps: inherit;
  font-variant-numeric: inherit;
  font-variant-east-asian: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0px;
  margin: 0px 10px;
  overflow-x: visible;
  overflow-y: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger-box {
  width: 27px;
  height: 27px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 27px;
  height: 2px;
  background-color: #2b2b2b;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -7px; }

.hamburger-inner::after {
  bottom: -7px; }

.hamburger--slider .hamburger-inner {
  top: 7px; }

.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }

.hamburger--slider .hamburger-inner::after {
  top: 14px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0px, 10px, 0px) rotate(45deg); }

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0px);
  opacity: 0; }

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0px, -20px, 0px) rotate(-90deg);
  top: 20px; }

.hamburger-search-holder,
.sub-search-holder {
  display: block;
  position: absolute;
  right: 0;
  top: 27px; }
  .hamburger-search-holder .blue-btn, .hamburger-search-holder .comment-reply-link, .hamburger-search-holder #submit,
  .sub-search-holder .blue-btn,
  .sub-search-holder .comment-reply-link,
  .sub-search-holder #submit {
    background-color: transparent !important;
    color: #182A5C !important; }
  .hamburger-search-holder .link-subscribe,
  .sub-search-holder .link-subscribe {
    display: block;
    position: relative;
    float: left;
    top: 6px;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 700;
    line-height: normal; }
  .hamburger-search-holder .link-search,
  .hamburger-search-holder .search-field,
  .sub-search-holder .link-search,
  .sub-search-holder .search-field {
    display: none; }

.hamburger-search-holder {
  left: 0;
  width: 120px; }
  .hamburger-search-holder .link-search {
    display: inline-block;
    position: relative;
    top: 0;
    font-size: 28px;
    color: #4A4A4A;
    margin-left: 15px;
    text-decoration: none;
    outline: none; }

/* ================================ SITE SEARCH / IN HEADER ================================ */
.modal-open {
  overflow: hidden; }

.site-search {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: absolute;
  transition: opacity 0.24s ease-in;
  margin: 0;
  z-index: 9999;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .site-search.open {
    opacity: 1;
    width: 100vw;
    height: 100%; }
  .site-search.open > .site-search__container {
    transform: translateY(0); }
  .site-search__container {
    transform: translateY(-90rem);
    background-color: #fff;
    padding: 16px;
    margin: 0;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start; }
  .site-search__form {
    width: 85%;
    margin: 0; }
    @media only screen and (min-width: 480px) {
      .site-search__form {
        width: 64%; } }
  .site-search__form-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%; }
    .site-search__form-group input[type="search"] {
      margin: 0 16px 0 0;
      padding: 9px 0;
      width: calc(100% - 60px);
      height: 42px;
      font-size: 15px;
      font-size: 0.9375rem;
      color: #262626;
      border-bottom: 2px solid #ccc;
      border-top: none;
      border-left: none;
      border-right: none;
      background-image: none;
      background-repeat: no-repeat;
      background-position: 0 8px; }
      @media only screen and (min-width: 480px) {
        .site-search__form-group input[type="search"] {
          width: calc(100% - 70px);
          padding-left: 2em;
          background-repeat: no-repeat; } }
    .site-search__form-group input[type="search"]:focus {
      outline: 0 solid #f8f8f8; }
    .site-search__form-group button[type="submit"] {
      background-color: #182A5C;
      color: #fff;
      height: 42px;
      border: 1px solid #182A5C;
      border-radius: 8px;
      width: 70px;
      padding: 0;
      margin: 0;
      cursor: pointer; }
  .site-search__close {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 15px; }
    @media only screen and (min-width: 480px) {
      .site-search__close {
        top: 15px;
        right: 72px; } }
  .site-search__close-link {
    display: inline-block; }
    .site-search__close-link svg {
      pointer-events: none; }

/* ======================== STATIC FEATURE STYLES ======================== */
.static_feature--hero-box .hero-text-box {
  position: relative;
  width: auto;
  left: auto;
  bottom: auto;
  padding: 0.56em; }
  @media only screen and (min-width: 768px) {
    .static_feature--hero-box .hero-text-box {
      left: 50%;
      top: 50%;
      position: absolute;
      width: 300px;
      padding: 1.56em;
      margin-top: -140px;
      margin-left: -150px;
      background-color: rgba(247, 243, 242, 0.8); } }
  .static_feature--hero-box .hero-text-box h1 {
    font-size: 31px;
    font-weight: 500;
    line-height: 1.2;
    float: none;
    margin: 0 0 0.56em;
    width: auto; }
    @media only screen and (min-width: 768px) {
      .static_feature--hero-box .hero-text-box h1 {
        font-size: 20px;
        font-weight: normal; } }
  .static_feature--hero-box .hero-text-box a.button {
    float: none;
    width: auto;
    font-size: 15px;
    text-align: center;
    margin: 0; }

/* ======================== TOP 20 WHISKY by YEAR PAGE ======================== */
.post-type-archive-top20whisky h1.lined-header {
  font-size: 18px;
  line-height: 1.3; }
  @media only screen and (min-width: 410px) {
    .post-type-archive-top20whisky h1.lined-header {
      font-size: 22px; } }
  @media only screen and (min-width: 768px) {
    .post-type-archive-top20whisky h1.lined-header {
      font-size: 28px; } }
.post-type-archive-top20whisky .footer {
  margin-top: 0; }

.top20-archive_header {
  color: #182A5C;
  font-size: 34px; }
  .top20-archive_header span {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 42px;
    line-height: 44px; }

/* ======================== TOP 20 ABOUT  ======================== */
.top20-about {
  margin: 0;
  padding: 2em 0 2em;
  background-color: #f9f6ed; }
  .top20-about--header {
    font-size: 22px;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    color: #182A5C;
    text-transform: uppercase; }
    @media only screen and (min-width: 768px) {
      .top20-about--header {
        font-size: 26px; } }
    .top20-about--header span {
      font-family: 'Roboto', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      font-weight: normal;
      font-size: 34px;
      line-height: 38px; }

/* ======================== TOP 20 WHISKIES LOOP  ======================== */
.top20-whisky_container {
  margin: 1em 0 1em;
  min-height: inherit; }
  @media only screen and (min-width: 1030px) {
    .top20-whisky_container {
      min-height: 400px; } }
  .top20-whisky_container--item {
    padding: 0 3px;
    float: left;
    width: 20%; }
    @media only screen and (min-width: 768px) {
      .top20-whisky_container--item {
        float: left;
        width: 10%; } }
    @media only screen and (min-width: 1030px) {
      .top20-whisky_container--item {
        float: left;
        padding-right: 30px;
        width: 10%; } }
  .top20-whisky_container .col {
    margin-bottom: 1.56em; }
    .top20-whisky_container .col:nth-child(10) {
      border-right: none; }
    .top20-whisky_container .col:nth-child(20) {
      border-right: none; }
    @media only screen and (min-width: 768px) {
      .top20-whisky_container .col {
        border-right: 1px solid #ccc; }
        .top20-whisky_container .col:nth-child(5) {
          border-right: none; }
        .top20-whisky_container .col:nth-child(15) {
          border-right: none; } }
    @media only screen and (min-width: 768px) and (max-width: 1029px) {
      .top20-whisky_container .col article {
        padding-left: 10px !important;
        padding-right: 10px !important; }
      .top20-whisky_container .col .top20-whisky_thumb span {
        font-size: 16px; }
      .top20-whisky_container .col:nth-child(5) {
        border-right: 1px solid #ccc; }
      .top20-whisky_container .col:nth-child(15) {
        border-right: 1px solid #ccc; } }
    @media only screen and (min-width: 1030px) {
      .top20-whisky_container .col:nth-child(5) {
        border-right: 1px solid #ccc; }
      .top20-whisky_container .col:nth-child(15) {
        border-right: 1px solid #ccc; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.reveal11-20 {
  color: #fff;
  background-color: #182A5C;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  display: block;
  text-align: center;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.32);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  margin: 1em auto;
  padding: 0.64em 1em;
  max-width: 300px; }
  @media only screen and (min-width: 768px) {
    .reveal11-20 {
      margin-bottom: 2em; } }
  .reveal11-20:hover {
    background-color: #fff;
    color: #444; }

.top20-animate {
  animation-duration: 1s;
  animation-fill-mode: both; }

.fadeIn {
  animation-name: fadeIn; }

.top20-whisky_thumb {
  position: relative; }
  .top20-whisky_thumb a {
    display: block; }
    .top20-whisky_thumb a:hover img {
      box-shadow: none;
      transform: none; }
  .top20-whisky_thumb span {
    position: absolute;
    top: 0;
    left: 0;
    color: #595959;
    font-size: 18px; }
    @media only screen and (min-width: 1030px) {
      .top20-whisky_thumb span {
        top: -8px;
        left: -8px;
        font-size: 24px; } }
  .top20-whisky_thumb img {
    box-shadow: none;
    transition: none; }

.top20-whisky_schedule {
  padding: 0.72em;
  margin: 1em 0 0 0;
  background-color: #7b7253;
  color: white;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(17, 17, 17, 0.24); }
  .top20-whisky_schedule ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .top20-whisky_schedule ul li {
      display: inline-block;
      margin: 0 0.56em 1.24em;
      padding: 0;
      font-size: 15px;
      font-weight: normal;
      line-height: 1; }
      .top20-whisky_schedule ul li:nth-child(5) {
        margin-bottom: 0; }
      @media only screen and (min-width: 1024px) {
        .top20-whisky_schedule ul li {
          margin-bottom: 0;
          font-size: 18px; } }
      @media only screen and (min-width: 1085px) {
        .top20-whisky_schedule ul li {
          margin: 0 1em 0; } }
      .top20-whisky_schedule ul li span {
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
        display: block;
        margin: 0.32em 0;
        padding: 0; }
        @media only screen and (min-width: 1024px) {
          .top20-whisky_schedule ul li span {
            font-size: 20px; } }

.top20-whisky_sweepstakes {
  background-color: black;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  display: block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out; }
  .top20-whisky_sweepstakes a {
    color: #fff;
    background-color: #182A5C;
    display: block;
    padding: 0.72em 2em;
    margin: 0;
    color: white;
    text-decoration: none;
    font-weight: normal; }
    .top20-whisky_sweepstakes a:visited {
      color: #fff;
      background-color: #182A5C; }
    .top20-whisky_sweepstakes a:active {
      color: #fff;
      background-color: #182A5C; }
    .top20-whisky_sweepstakes a:hover {
      background-color: rgba(24, 42, 92, 0.72);
      text-decoration: none; }

/* ======================== TOP 20 WHISKY DETAIL  ======================== */
.top20-single_title {
  font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
  font-size: 30px !important;
  line-height: 1.2;
  color: #182A5C;
  padding: 0;
  margin: 0; }
  @media only screen and (min-width: 768px) {
    .top20-single_title {
      font-size: 52px !important; } }
.top20-single_content-container {
  margin: 0.32em 0 1em; }
  @media only screen and (min-width: 768px) {
    .top20-single_content-container {
      margin: 1em 0 0 2em; } }
  .top20-single_content-container iframe {
    border: none; }
  .top20-single_content-container .ad-holder {
    margin-top: 2em; }
.top20-single_award-info {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 22px;
  padding: 0;
  margin: 0.56em 0;
  line-height: 1.2; }
  @media only screen and (min-width: 768px) {
    .top20-single_award-info {
      font-size: 30px;
      margin: 0; } }
.top20-single_bottle-info {
  margin: 1em 0 2em;
  padding: 0;
  border: 3px double #733702; }
  .top20-single_bottle-info--img {
    width: 110px;
    float: left;
    height: auto;
    box-shadow: none;
    border: none;
    padding: 1em 0;
    border-bottom: none;
    border-right: 1px solid #733702; }
    @media only screen and (min-width: 490px) {
      .top20-single_bottle-info--img {
        width: 120px; } }
    @media only screen and (min-width: 1030px) {
      .top20-single_bottle-info--img {
        width: 160px; } }
  .top20-single_bottle-info img {
    max-width: 100%;
    height: auto;
    box-shadow: none; }
  .top20-single_bottle-info ul {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 15px;
    padding: 1em;
    margin: 0;
    width: calc(100% - 110px);
    float: right;
    border-left: none; }
    .top20-single_bottle-info ul li {
      margin: 0 0 0.32em;
      padding: 0 0 0.32em;
      border-bottom: 1px solid rgba(115, 55, 2, 0.24); }
      @media only screen and (min-width: 1030px) {
        .top20-single_bottle-info ul li {
          margin-bottom: 0.56em; } }
    .top20-single_bottle-info ul li:last-of-type {
      border-bottom: none; }
    @media only screen and (min-width: 490px) {
      .top20-single_bottle-info ul {
        width: calc(100% - 120px);
        border-left: none; } }
    @media only screen and (min-width: 1030px) {
      .top20-single_bottle-info ul {
        border-left: none;
        width: calc(100% - 160px);
        font-size: 17px;
        padding: 2em 1em; } }

.top20-single_award-info.visible-mobile {
  display: block; }
  @media only screen and (min-width: 768px) {
    .top20-single_award-info.visible-mobile {
      display: none; } }
.top20-single_award-info.hidden-mobile {
  display: none; }
  @media only screen and (min-width: 768px) {
    .top20-single_award-info.hidden-mobile {
      display: block; } }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ======================== SUBSCRIBE PAGE ======================== */
#subscribe-page {
  margin: 0 0 2em;
  padding: 0; }

.subscribe-container {
  width: 100%;
  display: table;
  table-layout: fixed; }

.subscribe-container > .subscribe-container_item {
  display: table-cell;
  vertical-align: top; }

.subscribe-container {
  border-spacing: 24px; }

.subscribe-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  gap: 24px; }
  @media only screen and (min-width: 928px) {
    .subscribe-container {
      grid-template-columns: 1fr 1fr 1fr; } }
  .subscribe-container_item-link {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    padding: 0 0 0.24em 0;
    margin: 0;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(24, 42, 92, 0.32);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
  .subscribe-container_item-link:hover {
    border-color: #9f3a0e; }

/* ======================== CALL TO ACTION BANNER ======================== */
.call-to-action-banner {
  padding: 0;
  margin: 0;
  text-align: center; }
  .call-to-action-banner a {
    display: block;
    background-color: #9f3a0e;
    padding: 0.56em;
    margin: 0;
    color: white;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.04em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
    .call-to-action-banner a:hover {
      background-color: #182a5c;
      color: white; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name: Whisky Advocate
Author: David Fischetti (The Media Council)

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #2B2B2B;
  background-color: #182A5C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 100%;
  padding: 12px;
  margin: 0 auto; }

.flex-row-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

#container {
  margin: 0 auto;
  background-color: #fff; }

#container {
  padding-top: 0; }
  #container.is_fixed {
    padding-top: 50px; }

/*********************
LINK STYLES
*********************/
a {
  color: #182A5C;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus {
    color: #733702; }
  a:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }
  a.arrow {
    font-style: italic;
    padding-left: 15px; }
    a.arrow:before {
      content: " → "; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 31px;
  line-height: 38px;
  font-weight: 500; }

h1.lined-header {
  background: url(../images/header-lines2.png) repeat-x left center;
  color: #733702;
  margin: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.3; }
  h1.lined-header span {
    padding: 0 10px;
    background-color: #fff;
    display: inline-block;
    margin: 0 40px; }
  h1.lined-header a {
    color: #733702; }
    h1.lined-header a:hover {
      color: #182A5C; }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  font-size: 1.125em; }

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700; }

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px; }

/*********************
BUTTON
*********************/
.wf-event-header a.button {
  display: inline-block;
  width: auto;
  text-align: left; }

/*********************
HEADER STYLES
*********************/
.header {
  font-family: "Roboto", Helvetica, Arial, sans-serif; }
  .header .wrap {
    padding: 0;
    width: 100%; }

#logo {
  /* display:none; */ }

#logo-mobile-holder {
  position: relative;
  border-top: 1px solid #733702;
  border-bottom: 1px solid #733702;
  background-color: #fff;
  padding: 3px 0;
  text-align: center;
  margin: 0;
  overflow: hidden; }
  #logo-mobile-holder div {
    background-color: #182A5C;
    height: 38px; }
  #logo-mobile-holder .logo-mobile-icon {
    position: absolute;
    left: 0; }
    #logo-mobile-holder .logo-mobile-icon img {
      margin-top: 4px;
      height: 29px;
      display: block; }
  #logo-mobile-holder .menu-toggle {
    position: absolute;
    top: 3px;
    right: 0px;
    height: 38px;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-left: 1px solid #fff;
    display: flex;
    align-items: center; }
    #logo-mobile-holder .menu-toggle span {
      display: inline-block;
      width: 20px;
      height: 20px;
      line-height: 20px;
      border-radius: 10px;
      margin-left: 4px;
      background-color: #fff;
      color: #182A5C;
      text-align: center; }
  #logo-mobile-holder .mob-page-title {
    display: inline-block;
    height: 38px;
    padding: 9px 15px 0 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background: url(../images/Triangle@1x.png) no-repeat center -4px; }

.sub-search-holder {
  /* display: none; */ }

/*********************
NAVIGATION STYLES
*********************/
.nav-holder {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  background-color: #182A5C; }
  .nav-holder .wrap {
    padding: 0;
    width: 100%; }

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000; }

nav.sticky.fixed {
  top: 78px; }

.top-nav {
  border-bottom: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .top-nav.active {
    max-height: 350px; }
  .top-nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    /*
    so you really have to rethink your dropdowns for mobile.
    you don't want to have it expand too much because the
    screen is so small. How you manage your menu should
    depend on the project. Here's some great info on it:
    http://www.alistapart.com/articles/organizing-mobile/
    */ }
    .top-nav li a {
      display: block;
      color: #FFF;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 15px; }
    .top-nav li ul.sub-menu li a,
    .top-nav li ul.children li a {
      padding-left: 30px; }
  .top-nav li.current-menu-item,
  .top-nav li.current_page_item,
  .top-nav li.current_page_ancestor {
    background: url(../images/TriangleLeft@1x.png) no-repeat right center; }
    .top-nav li.current-menu-item a,
    .top-nav li.current_page_item a,
    .top-nav li.current_page_ancestor a {
      font-weight: bold;
      color: white;
      font-weight: 900; }

/* end .nav */
.mobile-search-form {
  display: none; }
  .mobile-search-form input {
    margin-bottom: 0;
    background-color: #182A5C;
    border-left: 0;
    border-right: 0;
    color: #fff;
    padding-left: 15px;
    font-size: 14px;
    line-height: 20px; }
    .mobile-search-form input:focus {
      background-color: #182A5C !important;
      color: #fff !important; }
    .mobile-search-form input::-moz-placeholder {
      color: #aaa;
      opacity: 1; }
    .mobile-search-form input:-ms-input-placeholder {
      color: #aaa; }
    .mobile-search-form input::-webkit-input-placeholder {
      color: #aaa; }

.wf-header-container {
  text-align: center;
  padding: 30px 0 15px 0;
  background-color: #182A5C; }
  .wf-header-container img {
    max-width: 100%;
    height: auto; }
  .wf-header-container .home-logo {
    padding: 0 30px; }

.wf article {
  font-size: 18px;
  /*
  	&.sub-hero-article, &.discover-article {
  		padding-right:30px;
  	}
  */ }
  .wf article h1 {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
    color: #2E2D2D;
    margin: 12px 0 8px;
    text-transform: uppercase; }
    .wf article h1 a {
      color: #182A5C; }
      .wf article h1 a:hover {
        color: #733702; }
  .wf article h2 {
    font-size: 26px;
    line-height: 30px;
    color: #182A5C;
    margin-top: 15px; }
  .wf article img {
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); }
    .wf article img.no-shadow {
      -webkit-box-shadow: 0px 0px 0px 0px transparent;
      -moz-box-shadow: 0px 0px 0px 0px transparent;
      box-shadow: 0px 0px 0px 0px transparent; }
  .wf article .entry-content {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #333;
    font-weight: regular; }
    .wf article .entry-content ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      margin-bottom: 20px; }
    .wf article .entry-content ul > li {
      position: relative;
      padding-left: 15px; }
    .wf article .entry-content ul > li:before {
      content: "•";
      position: absolute;
      left: 0; }
    .wf article .entry-content ol {
      list-style-type: decimal;
      list-style-position: inside;
      margin-bottom: 15px; }
    .wf article .entry-content ol ol, .wf article .entry-content ul ol {
      list-style-type: lower-latin;
      list-style-position: inside;
      margin-left: 15px; }
.wf .article-header {
  padding: 0 20px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center; }
  .wf .article-header h1 {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    margin-top: 40px; }
  .home .wf .article-header {
    padding-top: 20px; }
.wf .page-title-holder {
  padding-bottom: 20px;
  text-align: center; }
.wf .title-divider {
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 2px solid #928660;
  margin-bottom: 40px; }
.wf .event-section {
  margin: 30px 0; }
.wf .mobile-event-section {
  margin: 20px 0; }
.wf .city-nav {
  color: #E5B022;
  font-size: 17px;
  line-height: 17px;
  font-weight: 500; }
  .wf .city-nav ul {
    margin: 25px 0px 0px 0px; }
    .wf .city-nav ul li {
      display: inline-block; }
      .wf .city-nav ul li a {
        display: block;
        color: #E5B022;
        letter-spacing: 1px;
        text-transform: uppercase;
        -webkit-transition: color 0.2s ease-in-out;
        transition: color 0.2s ease-in-out; }
        .wf .city-nav ul li a:hover {
          color: #fff; }
        .wf .city-nav ul li a .event-city {
          border-right: 1px solid #E5B022;
          padding: 0 30px; }
        .wf .city-nav ul li a .event-date {
          padding-top: 5px;
          font-size: 15px;
          text-align: center; }
      .wf .city-nav ul li:last-child a .event-city {
        border-right: 0; }
  .wf .city-nav.mobile-only ul li a .event-city {
    padding: 0 15px; }
.wf article .responsive-container {
  padding-bottom: 0; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  margin-top: 1.5em;
  position: relative; }

.hentry {
  margin-bottom: 1em;
  padding-top: 0; }
  .hentry footer p {
    margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: #000000;
  margin: 15px 0 30px 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase; }
  .byline .issue a {
    text-decoration: none; }
    .byline .issue a:hover {
      text-decoration: underline; }
  .byline .entry-author a {
    text-decoration: none;
    color: #2B2B2B; }

.photo-meta, .wp-caption-text {
  font-size: 14px;
  line-height: 16px;
  color: #2B2B2B;
  text-align: left !important; }
  .photo-meta a, .wp-caption-text a {
    text-decoration: none;
    color: #2B2B2B; }
    .photo-meta a:hover, .wp-caption-text a:hover {
      text-decoration: underline; }
  .photo-meta.featured_photo_credit, .wp-caption-text.featured_photo_credit {
    margin-bottom: 5px; }

.featured-image {
  margin-bottom: 30px; }

/* entry content */
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */ }
  .entry-content p {
    margin: 0 0 1.2em;
    line-height: 1.6em; }
  .entry-content table {
    width: 100%;
    border: 1px solid #9B9B9B;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #000000;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #9B9B9B; }
    .entry-content tr:nth-child(even) {
      background-color: #f8f9fa; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #9B9B9B; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #9B9B9B;
    border-right: 1px solid #9B9B9B; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote {
    font-family: 'Domine', serif;
    font-weight: bold;
    font-size: 32px;
    font-size: 2rem;
    position: relative;
    max-width: 800px;
    margin: 40px auto; }
    .entry-content blockquote p {
      margin: 0 50px;
      font-size: 32px;
      font-size: 2rem;
      background: transparent;
      border: none;
      padding: 0 1em;
      font-size: 22px;
      font-size: 1.375rem;
      font-family: 'Domine', serif;
      font-weight: bold;
      line-height: 1.3; }
    .entry-content blockquote:before {
      position: absolute;
      left: 0;
      top: 50px;
      color: #121212;
      content: '\201C';
      font-size: 4em;
      line-height: 0.1em;
      margin-right: 4px;
      vertical-align: -0.4em;
      font-family: 'Domine', serif; }
    .entry-content blockquote:after {
      position: absolute;
      right: 0;
      color: #121212;
      content: '\201D';
      font-size: 4em;
      line-height: 0.1em;
      margin-left: 0;
      vertical-align: 0;
      font-family: 'Domine', serif; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 0.5em 0;
    width: 100%;
    height: auto; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #323944;
    color: #f8f9fa;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }
  .entry-content h2 {
    /* redmine ticket: #2714
    font-size:20px;
    color:$header-blue;
    text-transform: uppercase;
    margin-bottom:5px; */
    font-size: 22px;
    text-transform: uppercase;
    color: #733702;
    font-weight: bold;
    font-family: "Roboto"; }
  .entry-content h3 {
    font-size: 15px;
    color: #182A5C;
    text-transform: uppercase;
    margin-bottom: 5px; }

/* end .entry-content */
.wf {
  /* entry content */
  /* end .entry-content */ }
  .wf .entry-content {
    /*
    image alignment on a screen this size may be
    a bit difficult. It's set to start aligning
    and floating images at the next breakpoint,
    but it's up to you. Feel free to change it up.
    */ }
    .wf .entry-content p {
      margin: 0 0 1.2em; }
    .wf .entry-content table {
      width: 100%;
      border: 1px solid #9B9B9B;
      margin-bottom: 1.5em; }
      .wf .entry-content table caption {
        margin: 0 0 7px;
        font-size: 0.75em;
        color: #000000;
        text-transform: uppercase;
        letter-spacing: 1px; }
    .wf .entry-content tr {
      border-bottom: 1px solid #9B9B9B; }
      .wf .entry-content tr:nth-child(even) {
        background-color: #f8f9fa; }
    .wf .entry-content td {
      padding: 7px;
      border-right: 1px solid #9B9B9B; }
      .wf .entry-content td:last-child {
        border-right: 0; }
    .wf .entry-content th {
      background-color: #f8f9fa;
      border-bottom: 1px solid #9B9B9B;
      border-right: 1px solid #9B9B9B; }
      .wf .entry-content th:last-child {
        border-right: 0; }
    .wf .entry-content blockquote {
      font-family: 'Domine', serif;
      font-weight: normal;
      font-size: 32px;
      font-size: 2rem;
      position: relative;
      max-width: 800px;
      margin: 40px auto; }
      .wf .entry-content blockquote p {
        margin: 0 50px;
        font-size: 32px;
        font-size: 2rem;
        background: transparent;
        border: none;
        padding: 0 1em;
        font-size: 22px;
        font-size: 1.375rem;
        font-family: 'Domine', serif;
        font-weight: normal;
        line-height: 1.3; }
      .wf .entry-content blockquote:before {
        position: absolute;
        left: 0;
        top: 50px;
        color: #121212;
        content: '\201C';
        font-size: 4em;
        line-height: 0.1em;
        margin-right: 4px;
        vertical-align: -0.4em;
        font-family: 'Domine', serif; }
      .wf .entry-content blockquote:after {
        position: absolute;
        right: 0;
        color: #121212;
        content: '\201D';
        font-size: 4em;
        line-height: 0.1em;
        margin-left: 0;
        vertical-align: 0;
        font-family: 'Domine', serif; }
    .wf .entry-content dd {
      margin-left: 0;
      font-size: 0.9em;
      color: #787878;
      margin-bottom: 1.5em; }
    .wf .entry-content img {
      margin: 0 0 0.5em 0;
      width: 100%;
      height: auto; }
    .wf .entry-content .size-auto,
    .wf .entry-content .size-full,
    .wf .entry-content .size-large,
    .wf .entry-content .size-medium,
    .wf .entry-content .size-thumbnail {
      max-width: 100%;
      height: auto; }
    .wf .entry-content pre {
      background: #323944;
      color: #f8f9fa;
      font-size: 0.9em;
      padding: 1.5em;
      margin: 0 0 1.5em;
      border-radius: 3px; }
    .wf .entry-content h2 {
      font-size: 20px;
      color: #182A5C;
      text-transform: uppercase;
      margin-bottom: 5px; }
    .wf .entry-content h3 {
      font-size: 15px;
      color: #182A5C;
      text-transform: uppercase;
      margin-bottom: 5px; }

.wp-caption {
  max-width: 100%;
  background: transparent;
  padding: 5px;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
  padding: 10px 0; }
  .tags a {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    display: none;
    padding: 5px 24px;
    margin-bottom: 24px;
    font-size: 14px;
    background-color: #EBEBEB;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 24px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .tags a:hover {
      background-color: #dedede; }
  .tags a:nth-child(1) {
    display: inline-block; }
  .tags a:nth-child(2) {
    display: inline-block; }
  .tags a:nth-child(3) {
    display: inline-block; }
  .tags a:nth-child(4) {
    display: inline-block; }
  .tags a:nth-child(5) {
    display: inline-block; }

.home .content-section-holder {
  margin: 20px 0 0; }
  .home .content-section-holder.on-newsstands p {
    font-size: 18px; }
    .home .content-section-holder.on-newsstands p:first-child {
      margin-top: 0; }

a.text-button {
  text-transform: capitalize;
  font-weight: bold; }

.trending-box {
  margin-bottom: 32px;
  padding: 15px;
  position: relative; }
  @media only screen and (max-width: 1029px) {
    .trending-box h1.title {
      text-align: left; }
    .trending-box .btn-mobile-only.text-button.blue {
      right: 0;
      position: absolute;
      top: 30px;
      display: inline-block;
      z-index: 100;
      width: auto;
      text-transform: capitalize;
      padding: 0 15px;
      color: #2B2B2B !important;
      background-color: #fff;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
      font-weight: normal; }
    .trending-box a.btn-mobile-only.text-button.blue:hover {
      background-color: none;
      text-decoration: underline; } }
  .trending-box .row-holder div.col:first-child {
    width: 100%;
    float: none; }
  .trending-box h1.title {
    font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
    font-size: 28px;
    line-height: 42px;
    margin: 17px auto; }
  .trending-box .blue-btn, .trending-box .comment-reply-link, .trending-box #submit {
    font-size: 14px;
    line-height: 21px;
    width: 100%;
    padding: 14px;
    font-weight: bold;
    margin-bottom: 32px;
    margin-top: 1px; }
  .trending-box article {
    text-align: left;
    padding: 15px 8px !important; }
    .trending-box article header h1 {
      font-size: 20px;
      line-height: 30px;
      font-weight: 500;
      color: #182A5C; }
    .trending-box article header h2 {
      font-size: 13px;
      font-weight: bold; }
    .trending-box article .img-container {
      float: left;
      width: auto; }
      .trending-box article .img-container img {
        width: 80px;
        height: 80px; }

.line-bot-mob {
  /* Added to comply RMT #2707 */
  clear: both;
  position: relative;
  margin: 0 -12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E8E8E8; }

.pad-mob {
  padding: 0 2%; }

article {
  font-size: 18px;
  /*
  	&.sub-hero-article, &.discover-article {
  		padding-right:30px;
  	}
  */
  	/*
  	.article-img-holder {
  		width: 100%;
      	padding-bottom: 56.25%;
      	position: relative;
      	img {
      		position: absolute;
  			top: 0;
  			left: 0;
  			width: 100%;
  			height: 100%;
      	}
  	}
  	*/ }
  article h1 {
    font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
    font-size: 28px;
    line-height: 42x;
    font-weight: 500;
    color: #182a5c;
    margin: 16px 0 8px; }
    article h1 a {
      color: #182A5C; }
      article h1 a:hover {
        color: #733702; }
    .single article h1 {
      font-size: 20px;
      line-height: 24px; }
  article .entry-content h1 {
    margin: 12px 0 16px; }
  article .section-text-holder {
    margin-bottom: -8px; }
  article h2.section-text {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    color: #733702;
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    margin-top: 16px; }
    article h2.section-text a {
      color: #733702; }
      article h2.section-text a:hover {
        color: #182A5C; }
  article img {
    width: 100%;
    height: auto; }
    article img.no-shadow {
      -webkit-box-shadow: 0px 0px 0px 0px transparent;
      -moz-box-shadow: 0px 0px 0px 0px transparent;
      box-shadow: 0px 0px 0px 0px transparent; }
  article .responsive-container {
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    /* 9/16 = aspect ratio of image */
    position: relative; }
  article .responsive-container-mag {
    display: block;
    width: 100%;
    padding-bottom: 119.41%;
    /* 9/16 = aspect ratio of image */
    position: relative; }
  article .responsive-container img, article .responsive-container-mag img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  article .entry-content.main-locations .geodir_post_meta {
    font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
    font-size: 20px;
    line-height: 25px;
    color: #333;
    font-weight: regular; }
  article .entry-content.main-article {
    font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
    font-size: 20px;
    line-height: 25px;
    color: #333;
    font-weight: regular; }
    article .entry-content.main-article ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      margin-bottom: 20px; }
    article .entry-content.main-article ul > li {
      position: relative;
      padding-left: 15px; }
    article .entry-content.main-article ul > li:before {
      content: "•";
      position: absolute;
      left: 0; }
    article .entry-content.main-article ol {
      list-style-type: decimal;
      list-style-position: inside;
      margin-bottom: 15px; }
    article .entry-content.main-article ol ol, article .entry-content.main-article ul ol {
      list-style-type: lower-latin;
      list-style-position: inside;
      margin-left: 15px; }
    article .entry-content.main-article .selectric-items ul > li:before {
      content: ""; }
    article .entry-content.main-article .jwplayer {
      margin-bottom: 12px; }
  article .entry-content {
    font-family: "Roboto", Helvetica, Arial, sans-serif; }
  article .mobile-sq-img {
    float: left;
    width: 30%;
    height: auto;
    padding-right: 15px; }
    article .mobile-sq-img .mob-sq {
      display: block; }
    article .mobile-sq-img .mob-rect {
      display: none; }
  article .mobile-sq-right {
    float: left;
    width: 70%; }
    article .mobile-sq-right h1 {
      font-size: 22px;
      line-height: 28px;
      font-weight: 500;
      margin-top: 0; }
    article .mobile-sq-right .entry-content {
      font-size: 18px;
      line-height: 23px; }

.wf .article-header h1 {
  font-family: "Roboto", Helvetica, Arial, sans-serif !important;
  color: #4A4A4A !important; }
.wf .responsive-container img, .wf .responsive-container-mag img {
  position: relative;
  margin: 0 0 0.5em 0;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); }

/*
.single  {
	.entry-content.main-article {
		p:first-of-type::first-letter {
			initial-letter: 2;
			-webkit-initial-letter: 2;
			padding-right:4px;
			text-decoration: none !important;
			a {
				text-decoration: none !important;
			}
		}

	}
}
*/
.repeater-article {
  margin-bottom: 0; }
  .repeater-article h2 {
    color: #182A5C;
    font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 0; }

.page-template-page-whiskyfest h1.header-banner {
  text-align: center;
  background-color: #201b51;
  margin-bottom: 20px; }
  .page-template-page-whiskyfest h1.header-banner img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 785px;
    height: auto; }
.page-template-page-whiskyfest h2 {
  font-size: 16px;
  color: #182A5C; }

.newsletter-holder {
  margin-bottom: 40px; }
  .newsletter-holder p {
    margin: 30px; }
  .newsletter-holder .col {
    padding: 0; }
  .newsletter-holder form {
    max-width: 620px;
    margin: 0 auto; }
    .newsletter-holder form input.email-field {
      height: 56px;
      width: 100%;
      margin-right: 0; }
    .newsletter-holder form .submit-btn {
      font-family: "Roboto", Helvetica, Arial, sans-serif;
      display: block;
      height: 56px;
      width: 100% !important;
      background-color: #182A5C;
      color: #fff;
      border: 0;
      border-radius: 4px;
      padding: 15px 0;
      text-transform: uppercase;
      margin-top: 0px;
      margin-left: -6px;
      margin-right: -20px; }
      .newsletter-holder form .submit-btn:hover {
        background-color: #132148; }
    .newsletter-holder form ::-webkit-input-placeholder {
      line-height: 1.2em; }
    .newsletter-holder form :-ms-input-placeholder {
      line-height: 1.2em; }

/* Whiskyfest */
.event-container {
  margin-top: 20px; }

.event-holder {
  padding: 40px 0;
  border-top: 1px solid #979797; }

.event-nav-holder {
  position: relative;
  z-index: 2;
  background-color: #e6b122;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  .event-nav-holder a {
    color: #fff;
    white-space: nowrap;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    -webkit-transition: border-bottom 0.2s ease-in-out;
    transition: border-bottom 0.2s ease-in-out; }
    .event-nav-holder a hr {
      width: 20%;
      margin: 0 auto;
      padding: 0; }
  .event-nav-holder .cf, .event-nav-holder .comment-respond {
    margin-bottom: 20px;
    position: relative; }
    .event-nav-holder .cf .ticket-soldout, .event-nav-holder .comment-respond .ticket-soldout {
      color: #fff;
      font-size: 30px;
      width: 90%;
      left: 5%;
      top: 15%;
      margin: 0;
      padding: 1px 0;
      position: absolute;
      background-color: rgba(146, 2, 2, 0.8);
      -webkit-transform: rotate(-10deg);
      -moz-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
      -o-transform: rotate(-10deg);
      transform: rotate(-10deg); }
  .event-nav-holder .cf.last-col, .event-nav-holder .last-col.comment-respond {
    margin-bottom: 0; }

.event-nav {
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  .event-nav li {
    display: inline-block;
    padding: 10px 0; }
    .event-nav li a {
      color: #fff;
      font-family: "Roboto", Helvetica, Arial, sans-serif;
      font-size: 18px;
      font-weight: 500;
      margin: 0 15px;
      padding-bottom: 3px;
      text-transform: uppercase;
      border-bottom: 3px solid transparent;
      -webkit-transition: border-bottom 0.2s ease-in-out;
      transition: border-bottom 0.2s ease-in-out; }
      .event-nav li a:hover {
        border-bottom: 3px solid #fff; }
    .event-nav li.current_page_item a {
      border-bottom: 3px solid #182A5C; }

.wf-event-nav-holder {
  position: relative;
  z-index: 2;
  background-color: #e6b122; }
  .wf-event-nav-holder .event-nav {
    text-align: center;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
    .wf-event-nav-holder .event-nav li {
      display: inline-block;
      padding: 15px 0; }
      .wf-event-nav-holder .event-nav li a {
        color: #182A5C;
        font-size: 18px;
        font-weight: 500;
        margin: 0 15px;
        padding-bottom: 3px;
        text-transform: uppercase;
        border-bottom: 3px solid transparent;
        -webkit-transition: border-bottom 0.2s ease-in-out;
        transition: border-bottom 0.2s ease-in-out; }
        .wf-event-nav-holder .event-nav li a:hover {
          border-bottom: 3px solid #182A5C; }
      .wf-event-nav-holder .event-nav li.current_page_item a {
        border-bottom: 3px solid #182A5C; }

/* City Header */
.event-header {
  position: relative;
  background-size: cover;
  background-color: #ccc;
  background-position: center top;
  border: 5px solid #e6b122; }
  .event-header .event-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 158px;
    padding: 10px 0;
    background-color: rgba(24, 42, 93, 0.7); }
  .event-header .ticket-button {
    margin-top: 20px; }
  .event-header .ticket-btn-frontpage {
    border: 5px solid #e6b122;
    background-color: rgba(24, 42, 93, 0.8);
    width: 80%;
    margin-left: auto;
    margin-right: auto; }
    .event-header .ticket-btn-frontpage img {
      padding: 20px 5px 0;
      -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5); }
    .event-header .ticket-btn-frontpage a {
      font-size: 24px; }
  .event-header .ticket-btn-frontpage {
    border-color: #fff;
    padding: 30px 0;
    height: auto; }
    .event-header .ticket-btn-frontpage img {
      width: 90%;
      vertical-align: middle;
      padding-bottom: 0;
      padding-top: 0; }
  .event-header .event-detail-holder {
    position: relative;
    z-index: 2;
    height: 350px;
    text-align: center;
    padding: 20px 20px 0;
    width: 100%; }
    .event-header .event-detail-holder .event-date {
      display: block;
      color: #fff;
      font-size: 26px;
      font-weight: 400;
      font-family: "Roboto", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      margin-bottom: 10px; }
    .event-header .event-detail-holder h1 {
      color: #E5B022;
      font-size: 40px;
      font-weight: 400;
      font-family: "Playfair Display", Times New Roman, Times, serif;
      line-height: 60px;
      margin: 0;
      text-transform: none; }
      .event-header .event-detail-holder h1 a {
        color: #E5B022;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
        .event-header .event-detail-holder h1 a:hover {
          color: #fff; }
    .event-header .event-detail-holder .event-venue {
      color: #fff;
      font-size: 21px;
      font-weight: 500;
      font-family: "Roboto", Helvetica, Arial, sans-serif; }
    .event-header .event-detail-holder .ticket-button a {
      font-weight: 500; }

.wf-event-header {
  position: relative;
  background-size: cover;
  background-color: #ccc;
  background-position: center top;
  border: 5px solid #e6b122; }
  .wf-event-header .event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: rgba(24, 42, 93, 0.7);
    z-index: 1; }
  .wf-event-header .ticket-button {
    margin-bottom: 20px; }
  .wf-event-header .ticket-btn-frontpage, .wf-event-header .ticket-btn-nofrontpage {
    border: 5px solid #e6b122;
    background-color: rgba(24, 42, 93, 0.8);
    width: 70%;
    margin-left: auto;
    margin-right: auto; }
    .wf-event-header .ticket-btn-frontpage img, .wf-event-header .ticket-btn-nofrontpage img {
      padding: 20px 15px 0;
      -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5); }
  .wf-event-header .ticket-btn-nofrontpage {
    border-color: #fff;
    border-left: 0;
    border-right: 0;
    width: 100%;
    padding: 30px 0;
    width: 100%;
    height: auto; }
    .wf-event-header .ticket-btn-nofrontpage img {
      width: 80%;
      vertical-align: middle;
      padding-bottom: 0;
      padding-top: 0; }
    .wf-event-header .ticket-btn-nofrontpage a.text-button {
      display: block;
      width: 40%;
      margin: 12px auto -62px;
      text-align: center; }
  .wf-event-header .event-detail-holder {
    position: relative;
    z-index: 2;
    height: 350px;
    text-align: center;
    padding: 20px;
    width: 100%; }
    .wf-event-header .event-detail-holder .event-date {
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: 10px; }
    .wf-event-header .event-detail-holder h1 {
      color: #E5B022;
      font-size: 38px;
      font-weight: 400;
      font-family: "Montserrat", "Roboto", Helvetica, Arial, sans-serif;
      margin: 0;
      text-transform: uppercase; }
      .wf-event-header .event-detail-holder h1 a {
        color: #E5B022;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
        .wf-event-header .event-detail-holder h1 a:hover {
          color: #fff; }
      .wf-event-header .event-detail-holder h1 span {
        white-space: nowrap; }
    .wf-event-header .event-detail-holder .event-venue {
      color: #fff;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 400; }
  .wf-event-header .event-nofrontpage {
    padding: 20px 0; }

.wf {
  /* Whisky List */
  /* seminars */
  /* faq */
  /* testimonials */ }
  .wf .whiskylist-section {
    font-size: 24px; }
    .wf .whiskylist-section h2 {
      margin-top: 0;
      font-size: 32px;
      color: #A03C10; }
    .wf .whiskylist-section .col {
      margin-top: 30px; }
  .wf .whiskylist-footer {
    margin-top: 50px;
    font-size: 14px;
    text-align: center; }
  .wf .speaker-section .time-block {
    background-color: #fafafc; }
  .wf .speaker-section h1 .icon-clock {
    display: inline-block;
    margin-left: 20px; }
  .wf .speaker-holder {
    margin: 20px 0; }
    .wf .speaker-holder h2 {
      margin-top: 10px;
      color: #9F3A0E;
      text-transform: uppercase; }
    .wf .speaker-holder .speaker-image img {
      border: 5px solid #fff;
      max-width: 125px;
      position: relative;
      -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); }
    .wf .speaker-holder .speaker-meta {
      font-size: 18px;
      font-weight: normal; }
    .wf .speaker-holder .seminar-title {
      text-decoration: underline;
      font-size: 20px;
      font-style: italic;
      font-weight: bold;
      padding: 10px 0; }
    .wf .speaker-holder .seminar-location {
      font-size: 20px; }
    .wf .speaker-holder .bio-button a {
      position: relative;
      margin-top: 0;
      letter-spacing: 1px;
      padding-right: 55px; }
      .wf .speaker-holder .bio-button a span {
        position: absolute;
        width: 22px;
        height: 20px;
        right: 24px;
        top: 12px;
        font-size: 24px;
        line-height: 20px;
        -webkit-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out; }
      .wf .speaker-holder .bio-button a.active span {
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg); }
    .wf .speaker-holder .speaker-bio {
      display: none; }
  .wf .faq-section {
    margin-top: 40px; }
    .wf .faq-section h2 {
      margin-top: 0; }
  .wf .testimonials-section h2 {
    font-size: 30px; }
  .wf .testimonials-section .col {
    margin: 20px 0; }
  .wf .testimonials-section .testimonial-text {
    text-align: center;
    font-weight: normal; }
    .wf .testimonials-section .testimonial-text blockquote {
      margin-top: 10px;
      text-align: left;
      margin-right: 30px; }

.gallery-section .col {
  margin: 10px 0; }

.fest-event {
  padding-top: 60px;
  margin-top: -60px; }

.event-meta {
  margin-bottom: 20px; }

.ticket-location, .next-up {
  color: #182A5C;
  text-transform: uppercase; }

.event-description {
  margin-bottom: 30px;
  line-height: 30px; }
  .event-description strong.itin-head {
    color: #182A5C;
    display: block;
    margin-top: 30px;
    margin-bottom: 5px;
    text-decoration: underline;
    line-height: 24px; }
  .event-description .ev-desc {
    margin-bottom: 10px; }

.ticket-options {
  list-style: none;
  margin: 25px 0 0; }
  .ticket-options li {
    position: relative;
    width: 100%;
    margin: 0 auto 20px;
    padding-left: 0 !important;
    background-color: #182A5C;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    -webkit-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transform: scale(1); }
    .ticket-options li a {
      position: relative;
      display: block;
      padding: 20px 5px 70px;
      color: #e6b122;
      border: 5px solid #e6b122;
      font-size: 28px;
      font-family: "Roboto", Helvetica, Arial, sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none; }
      .ticket-options li a .ticket-price {
        display: block;
        font-size: 37px; }
    .ticket-options li .ticket-bottom {
      position: absolute;
      bottom: 5%;
      left: 10%;
      width: 80%;
      display: block;
      background-color: #e6b122;
      border: 2px solid #fff;
      color: #182A5C;
      font-family: "Roboto", Helvetica, Arial, sans-serif;
      font-size: 27px;
      font-weight: normal;
      letter-spacing: 2px;
      padding: 10px;
      line-height: 26px;
      -webkit-font-smoothing: antialiased; }
    .ticket-options li .ticket-soldout {
      color: #fff;
      font-size: 36px;
      width: 90%;
      left: 50%;
      top: 40%;
      margin: 0 -45%;
      padding: 5px 0;
      position: absolute;
      background-color: #920202;
      -webkit-transform: rotate(-10deg);
      -moz-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
      -o-transform: rotate(-10deg);
      transform: rotate(-10deg); }
    .ticket-options li:hover {
      transform: translate(0, -3px) translate3d(0, 0, 0);
      -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.7);
      -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.7);
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.7); }
  .ticket-options > li:before {
    content: "" !important;
    position: relative !important; }

.ticket-footer {
  text-align: center;
  font-size: 14px;
  padding: 0 20px; }

.whiskyfest-text {
  margin-top: 30px;
  font-size: 20px; }

.event-footer {
  border-top: 1px solid rgba(155, 155, 155, 0.5);
  padding: 40px 20px; }

.ticket-bottom-holder ul.bottom-social {
  margin-top: 8px;
  margin-left: -2px; }
  .ticket-bottom-holder ul.bottom-social li {
    display: inline-block;
    margin: 0;
    padding: 0; }
    .ticket-bottom-holder ul.bottom-social li a {
      color: #182A5C;
      text-decoration: none;
      font-size: 40px;
      padding: 0 15px;
      -webkit-transition: color 0.2s ease-in-out;
      transition: color 0.2s ease-in-out; }
      .ticket-bottom-holder ul.bottom-social li a:hover {
        color: #A03C10; }
.ticket-bottom-holder .ticket-button {
  margin-top: 20px; }

.magazine-archive-holder article {
  margin-bottom: 50px; }

.atozmenu-off:hover {
  background-color: #eee; }

.glossary-atoz-wrapper {
  margin-bottom: 40px; }

.glossary-menu-atoz {
  border-bottom: 0; }

.glossary-text {
  padding: 0 20px 20px 20px;
  font-size: 20px; }

.wpg-please-select {
  display: none !important; }

/* Whisky Life */
.hero-box-holder {
  position: relative; }
  .hero-box-holder .hentry {
    margin-bottom: 0; }

.hero-text-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 10px;
  backdrop-filter: blur(10px); }
  .hero-text-box h1 {
    font-size: 14px;
    line-height: 20px;
    float: left;
    margin: 0;
    width: 70%; }
  .hero-text-box a.button {
    float: left;
    width: 28%;
    font-size: 11px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 2%; }
  .ratings-hero-box-holder .hero-text-box {
    position: relative;
    width: auto;
    left: auto;
    bottom: auto;
    padding: 30px;
    backdrop-filter: none; }
    .ratings-hero-box-holder .hero-text-box h1 {
      font-size: 20px;
      line-height: 24px;
      float: none;
      margin: 0;
      width: auto; }
    .ratings-hero-box-holder .hero-text-box a.button {
      float: none;
      width: auto;
      font-size: 15px;
      text-align: center;
      margin-top: 0;
      margin-bottom: 0; }

.cocktail-holder {
  margin-top: 25px; }

ul.ingredients {
  margin-top: 0;
  margin-bottom: 30px; }

.single .bottle-holder img {
  margin-top: 20px; }

/* 404 */
#post-not-found h1 {
  color: #182A5C;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 40px 0 20px; }
#post-not-found .no-shadow img {
  display: block;
  -webkit-box-shadow: 0px 0px 0px 0px transparent;
  -moz-box-shadow: 0px 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px 0px transparent; }

.error404 #content .hentry {
  margin-bottom: 0; }

.error404 .footer {
  margin-top: 0; }

/*********************
Ratings/Review Form
*********************/
form.ratings-review-search {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin: 10px 0 30px; }
  form.ratings-review-search .col {
    padding-right: 0; }
  form.ratings-review-search .search-text-holder {
    position: relative; }
  form.ratings-review-search .search-text {
    margin-bottom: 0;
    border-bottom: 0;
    font-size: 16px;
    color: #333; }
  form.ratings-review-search .search-select-row2 {
    position: relative;
    top: -1px; }
  form.ratings-review-search .review-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 47px;
    height: 40px;
    border: 0;
    background-color: transparent;
    border-left: 1px solid #e8e8e8; }
  form.ratings-review-search .icon-search {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background-color: transparent;
    font-size: 24px;
    line-height: 1em; }
  form.ratings-review-search .clear-btn {
    position: absolute;
    top: 13px;
    right: 60px;
    color: #999999;
    font-size: 14px;
    line-height: 1em;
    z-index: 1000;
    text-transform: uppercase;
    text-decoration: none; }
  form.ratings-review-search ::-webkit-input-placeholder {
    line-height: 1.2em;
    color: #333333; }
  form.ratings-review-search ::-moz-placeholder {
    color: #333333; }
  form.ratings-review-search :-ms-input-placeholder {
    line-height: 1.2em;
    color: #333333; }
  form.ratings-review-search :-moz-placeholder {
    color: #333333; }
  form.ratings-review-search .price-col .selectric {
    border-right-width: 1px; }
  form.ratings-review-search .filter-m-row2 {
    position: relative;
    top: -1px; }
  form.ratings-review-search .selectric .label {
    margin: 0 18px 0 10px; }

.ratings-grid-holder .review-top {
  position: relative; }
.ratings-grid-holder .showmore {
  display: none; }
.ratings-grid-holder h1 {
  color: #9F3A0E; }
.ratings-grid-holder h2 {
  font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
  font-size: 30px;
  line-height: 25px;
  border-bottom: 1px solid #182A5C;
  color: #182A5C;
  margin-bottom: 0; }
.ratings-grid-holder .ratings-util {
  position: absolute;
  right: 0;
  bottom: 0; }
  .ratings-grid-holder .ratings-util a {
    display: block;
    float: left;
    width: 32px;
    height: 33px;
    padding: 4px 0px 0 8px;
    border: 1px solid #182A5C;
    border-right: 0;
    color: #182A5C;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .ratings-grid-holder .ratings-util a:hover {
      color: #fff;
      background-color: #182A5C; }
    .single .ratings-grid-holder .ratings-util a {
      font-size: 36px;
      width: 66px;
      height: 66px;
      padding: 6px 0px 0 14px; }
    .ratings-grid-holder .ratings-util a:last-child {
      border-right: 1px solid #182A5C; }
.ratings-grid-holder h1 {
  margin: 20px 0; }
.ratings-grid-holder .entry-meta {
  font-weight: bold;
  font-size: 17px; }
.ratings-grid-holder .review-text {
  font-size: 14px; }

/*********************
BRAND TEMPLATE
*********************/
.brand-holder .brand-logo img {
  padding: 60px 40px 0; }

.trophy-case-holder .awards-holder {
  margin-top: 20px; }

.brand-btn-holder a {
  margin-top: 30px; }

.award {
  margin-bottom: 30px;
  display: table; }
  .award .award-image {
    display: table-cell;
    width: 35%;
    height: 100%;
    vertical-align: middle; }
  .award .award-text {
    display: table-cell;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 18px;
    width: 55%;
    padding-left: 5%;
    padding-right: 5%;
    height: 100%;
    vertical-align: middle; }
  .award img {
    max-width: 80px;
    height: auto; }

/*********************
Adverisements
*********************/
.header-ad {
  display: none; }

.ad-holder {
  margin-bottom: 1.5em; }

.ad-image {
  padding-left: 15px;
  padding-right: 15px; }
  .ad-image img {
    width: 100%;
    height: auto; }
  .ad-image.ad300 img {
    max-width: 300px; }
  .ad-image.ad728 img {
    max-width: 728px; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #9B9B9B; }
  .pagination li.last {
    border-right: none; }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #182A5C; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #182A5C;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #2B2B2B; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #2B2B2B; }

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }
.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */ }

.commentlist {
  margin: 0;
  list-style-type: none; }

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  .comment .comment-author {
    padding: 7px;
    border: 0; }
  .comment .vcard {
    margin-left: 50px; }
    .comment .vcard cite.fn {
      font-weight: 700;
      font-style: normal; }
    .comment .vcard time {
      display: block;
      font-size: 0.9em;
      font-style: italic; }
      .comment .vcard time a {
        color: #000000;
        text-decoration: none; }
        .comment .vcard time a:hover {
          text-decoration: underline; }
    .comment .vcard .avatar {
      position: absolute;
      left: 16px;
      border-radius: 50%;
      max-width: 50px; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */ }
  .comment[class*=depth-] {
    margin-top: 1.1em; }
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0; }
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px; }
  .comment.odd {
    background-color: #fff; }
  .comment.even {
    background: #f8f9fa; }

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em; }

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa; }

#reply-title {
  margin: 0; }

.logged-in-as {
  color: #000000;
  font-style: italic;
  margin: 0; }
  .logged-in-as a {
    color: #2B2B2B; }

.comment-form-comment {
  margin: 1.5em 0 0.75em; }

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

/* no comments */
.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */ }

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #182A5C;
  color: #f8f9fa;
  margin-top: 10px;
  padding-top: 10px; }
  .footer #inner-footer.wrap {
    padding: 0 10px; }
  .footer h2 {
    color: #fff;
    font-size: 22px;
    font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
    font-weight: bold;
    line-height: 33px; }

.footer-links ul {
  margin-top: 4px; }
  .footer-links ul li {
    line-height: 24px;
    padding-bottom: 24px; }
    .footer-links ul li a {
      font-family: "Roboto", Helvetica, Arial, sans-serif;
      color: #fff;
      font-size: 16px;
      text-decoration: none; }
      .footer-links ul li a:hover {
        text-decoration: underline; }

/* end .footer-links */
ul.footer-social {
  margin-top: 8px;
  margin-left: -2px; }
  ul.footer-social li {
    float: left;
    margin: 0;
    padding: 0; }
    ul.footer-social li a {
      color: #fff;
      text-decoration: none;
      font-size: 24px;
      padding: 0 10px 0 0; }

.copyright {
  text-align: center;
  font-size: 14px;
  font-family: "Roboto", Helvetica, Arial, sans-serif; }

/*********************
UTILITY STYLES
*********************/
.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.mobile-only {
  display: block; }

.desktop-only {
  display: none; }

.frm_ajax_loading {
  width: 16px !important; }

.textTruncate {
  max-width: 70%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
        plan your menus and drop-downs wisely.
        */ }
        .menu ul li a {
          /*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */ }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left;
      max-width: none;
      width: auto; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right;
      max-width: none;
      width: auto; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both;
      max-width: none;
      width: auto; }

  /* end .entry-content */
  .wf {
    /* entry content */
    /* end .entry-content */ }
    .wf .entry-content {
      /* at this larger size, we can start to align images */ }
      .wf .entry-content .alignleft, .wf .entry-content img.alignleft {
        margin-right: 1.5em;
        display: inline;
        float: left;
        max-width: none;
        width: auto; }
      .wf .entry-content .alignright, .wf .entry-content img.alignright {
        margin-left: 1.5em;
        display: inline;
        float: right;
        max-width: none;
        width: auto; }
      .wf .entry-content .aligncenter, .wf .entry-content img.aligncenter {
        margin-right: auto;
        margin-left: auto;
        display: block;
        clear: both;
        max-width: none;
        width: auto; }

  .event-header .event-detail-holder .event-date {
    font-size: 30px; }
  .event-header .event-detail-holder h1 {
    font-size: 60px;
    line-height: 70px; }
  .event-header .event-detail-holder .event-venue {
    font-size: 21px; }
  .event-header .ticket-btn-nofrontpage img {
    width: 70%; }
  .event-header .ticket-btn-nofrontpage a.text-button {
    width: 30%; }

  .wf-event-header .event-overlay {
    height: 30%; }
  .wf-event-header .event-detail-holder {
    height: 400px; }
    .wf-event-header .event-detail-holder .event-date {
      font-size: 21px; }
    .wf-event-header .event-detail-holder h1 {
      font-size: 46px;
      line-height: 70px; }
    .wf-event-header .event-detail-holder .event-venue {
      font-size: 21px; }
  .wf-event-header .ticket-btn-nofrontpage img {
    width: 70%; }
  .wf-event-header .ticket-btn-nofrontpage a.text-button {
    width: 30%; } }
@media only screen and (min-width: 481px) and (min-width: 580px) {
  .ticket-options {
    margin-top: 20px; }
    .ticket-options li {
      width: 49%;
      float: left;
      margin: 0 1% 15px; }
      .ticket-options li:first-child {
        margin-left: 0; }
      .ticket-options li:last-child {
        margin-right: 0; }
      .ticket-options li a {
        padding-bottom: 90px; } }
@media only screen and (min-width: 481px) {
  .wf .speaker-holder .speaker-image img {
    max-width: 255px; }

  form.ratings-review-search .selectric .label {
    margin: 0 38px 0 20px; }

  /*********************
  BUTTON
  *********************/
  a.button {
    display: inline-block;
    width: auto;
    text-align: left; }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */ }
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  #container {
    padding-top: 0; }
    #container.is_fixed {
      padding-top: 50px; }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    padding: 0 20px;
    margin: 0 auto; }

  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h1.lined-header {
    margin: 30px auto 40px;
    font-size: 24px; }
    h1.lined-header span {
      padding: 0 15px;
      background-color: #fff;
      display: inline;
      margin: auto; }

  /*********************
  HEADER STYLES
  *********************/
  .header {
    background-color: transparent; }
    .header .wrap {
      width: 96%;
      padding: 0;
      position: relative;
      -webkit-box-shadow: none;
      box-shadow: none; }

  #logo {
    margin: 15px auto;
    display: block;
    text-align: left;
    width: 231px;
    height: 81px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    #logo img {
      display: inline-block;
      width: 231px;
      height: 81px; }
    #logo.search-open {
      width: 600px; }

  #logo-mobile-holder {
    display: none; }

  .hamburger-search-holder {
    display: none; }

  .sub-search-holder {
    display: block;
    position: absolute;
    right: 10px;
    top: 30px; }
    .sub-search-holder button {
      border: none;
      position: absolute;
      top: 14px;
      right: 10px; }
    .sub-search-holder .blue-btn, .sub-search-holder .comment-reply-link, .sub-search-holder #submit {
      color: #fff !important;
      background-color: #182A5C !important; }
    .sub-search-holder .link-subscribe {
      display: block;
      position: relative;
      float: left;
      top: 6px;
      color: #FFF;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      line-height: normal;
      margin-right: 8px;
      padding: 12px 32px; } }
    @media only screen and (min-width: 768px) and (min-width: 753px) and (max-width: 991px) {
      .sub-search-holder .link-subscribe {
        padding: 11px 16px;
        margin-right: 8px; } }
@media only screen and (min-width: 768px) {
    .sub-search-holder .link-search {
      position: absolute;
      display: block;
      float: right;
      top: 14px;
      right: 11px;
      font-size: 28px;
      color: #4A4A4A;
      text-decoration: none;
      outline: none; } }
    @media only screen and (min-width: 768px) and (min-width: 753px) and (max-width: 991px) {
      .sub-search-holder .link-search {
        margin-left: 8px; } }
@media only screen and (min-width: 768px) {
    .sub-search-holder .search-field {
      display: inline-block;
      max-width: 0;
      padding: 2px 2px 2px 4px;
      margin-left: 0;
      overflow: hidden;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      .sub-search-holder .search-field form {
        margin: 0;
        padding: 4px; }
        .sub-search-holder .search-field form input {
          margin-bottom: 0;
          padding: 0 33px 0 10px; }
      .sub-search-holder .search-field.active {
        max-width: 200px; } }
      @media only screen and (min-width: 768px) and (min-width: 753px) and (max-width: 991px) {
        .sub-search-holder .search-field.active {
          max-width: 150px; } }
@media only screen and (min-width: 768px) {
    .sub-search-holder a:hover {
      color: #182A5C; }

  /*********************
  NAVIGATION STYLES
  *********************/
  #inner-header nav {
    padding: 3px 0;
    border-top: 1px solid #733702;
    border-bottom: 1px solid #733702;
    background-color: rgba(255, 255, 255, 0.9); }

  .nav-holder .wrap {
    padding: 0;
    width: 97%; }

  .site_search_holder {
    order: 4; }

  .fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; }

  nav.sticky.fixed {
    top: 0px; }

  .top-nav {
    display: block;
    border: 0;
    padding: 0;
    width: 100%;
    max-height: 44px;
    max-width: 832px;
    margin: 0 auto;
    margin-top: -4px;
    padding-top: 4px;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .top-nav li {
      display: block;
      float: left;
      position: relative;
      z-index: 100;
      border-top: 0;
      margin-top: -4px;
      padding: 4px 1.3% 0;
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ } }
    @media only screen and (min-width: 768px) and (min-width: 890px) {
      .top-nav li {
        padding-left: 16px;
        padding-right: 16px; } }
@media only screen and (min-width: 768px) {
      .top-nav li a {
        border-bottom: 0;
        padding: 8px 0;
        text-align: center;
        font-size: 15px;
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
        .top-nav li a:hover, .top-nav li a:focus {
          color: #fff;
          font-weight: 700; }
      .top-nav li.nav-home {
        display: none; }
      .top-nav li ul.sub-menu,
      .top-nav li ul.children {
        margin-top: 0;
        border: 1px solid #ccc;
        border-top: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .top-nav li ul.sub-menu li,
        .top-nav li ul.children li {
          /*
          if you need to go deeper, go nuts
          just remember deeper menus suck
          for usability. k, bai.
          */ }
          .top-nav li ul.sub-menu li a,
          .top-nav li ul.children li a {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px solid #ccc; }
          .top-nav li ul.sub-menu li:last-child a,
          .top-nav li ul.children li:last-child a {
            border-bottom: 0; }
          .top-nav li ul.sub-menu li ul,
          .top-nav li ul.children li ul {
            top: 0;
            left: 100%; }
      .top-nav li:hover > ul {
        top: auto;
        visibility: visible; }
    .top-nav li.current-menu-item,
    .top-nav li.current_page_item,
    .top-nav li.current_page_ancestor {
      background: url(../images/Triangle@1x.png) no-repeat center 0; }
      .fixed .top-nav li.current-menu-item, .fixed
      .top-nav li.current_page_item, .fixed
      .top-nav li.current_page_ancestor {
        background-position: center 1px; }
    .top-nav .mobile-nav-only {
      display: none; }

  /* end .nav */
  .mobile-search-form {
    display: none !important; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .trending-box .col:not(:first-child):nth-child(odd) article {
    margin-left: 16px; }
  .trending-box .col:not(:first-child):nth-child(even) article {
    margin-right: 16px; }

  .content-pad {
    padding: 0 20px; }

  .hentry {
    margin-bottom: 2em; }
    .hentry.hero-article {
      margin-bottom: 1.5em; }

  .line-bot-mob {
    /* display:none; */ }

  .pad-mob {
    padding: 0; }

  /* Column Padding */
  .row-holder .col {
    padding: 0; }
    .row-holder .col article {
      padding-left: 30px;
      padding-right: 30px;
      border-right: 1px solid #E8E8E8; }
  .row-holder .last-col article {
    border-right: 0; }
  .row-holder article .col {
    padding-right: 30px; }
    .row-holder article .col:first-child {
      margin-left: 0; }
    .row-holder article .col:last-child {
      margin-right: 0; }
    .home .row-holder article .col.home-hero {
      padding-right: 10px; }
    .home .row-holder article .col.home-hero-text {
      padding-left: 10px; }
  .row-holder.row-div {
    margin-left: -30px;
    margin-right: -30px; }
  .row-holder .top-line {
    border-top: 1px solid #E8E8E8;
    padding-top: 30px;
    margin: 0 30px; }
  .row-holder .bot-line {
    border-bottom: 1px solid #E8E8E8;
    padding-top: 30px;
    margin: 0 30px; }
  .row-holder.no-line {
    margin-left: -15px;
    margin-right: -15px; }
    .row-holder.no-line .col article {
      padding-left: 15px;
      padding-right: 15px;
      border-right: 0; }
  .row-holder.no-line10 {
    margin-left: -10px;
    margin-right: -10px; }
    .row-holder.no-line10 .col article {
      padding-left: 10px;
      padding-right: 10px;
      border-right: 0; }

  .single article h1 {
    font-size: 25px;
    line-height: 28px; }
  article .mobile-sq-img {
    float: none;
    width: auto;
    height: auto;
    padding-right: 0; }
    article .mobile-sq-img .mob-sq {
      display: none; }
    article .mobile-sq-img .mob-rect {
      display: block; }
  article .mobile-sq-right {
    width: auto;
    float: none; }
    article .mobile-sq-right h1 {
      font-size: 31px;
      line-height: 38px;
      margin-top: 12px; }
    article .mobile-sq-right .entry-content {
      font-size: 20px;
      line-height: 25px; }
  article a img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  article a:hover img {
    transform: translate(0, -3px);
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.6); }
  article .article-text-holder {
    position: relative; }
    article .article-text-holder.social-pad {
      padding-bottom: 30px; }
  article .featured-image.image-left {
    float: left;
    max-width: 500px;
    padding-right: 30px; }

  .article-header h1 {
    line-height: 44px; }

  .home .content-section-holder.on-newsstands .article-img {
    padding-left: 0; }
    .home .content-section-holder.on-newsstands .article-img img {
      max-width: 340px; }

  .whiskyfest-header {
    margin: 40px auto 60px; }

  .ratings-intro-copy {
    padding-right: 40px; }

  /* WHISKYFEST */
  .event-header .event-detail-holder {
    height: 450px; }
    .event-header .event-detail-holder .event-date {
      font-size: 40px; }
    .event-header .event-detail-holder h1 {
      font-size: 60px;
      line-height: 70px; }
    .event-header .event-detail-holder .event-venue {
      font-size: 31px; }
  .event-header .event-nofrontpage .event-date {
    font-size: 30px; }
  .event-header .event-nofrontpage .event-venue {
    font-size: 30px; }
  .event-header .ticket-btn-nofrontpage img {
    width: auto; }
  .event-header .ticket-btn-nofrontpage a.text-button {
    width: 20%; }
  .event-header .event-overlay {
    height: 88px; }

  .event-nav-holder a hr {
    width: 40%; }
  .event-nav-holder .cf, .event-nav-holder .comment-respond {
    margin-bottom: 0; }

  .event-nav li {
    padding: 10px 0; }
    .event-nav li a {
      font-size: 20px;
      margin: 0 20px; }

  .wf-event-header .event-overlay {
    height: 26%; }
  .wf-event-header .event-detail-holder {
    height: 450px; }
    .wf-event-header .event-detail-holder .event-date {
      font-size: 21px; }
    .wf-event-header .event-detail-holder h1 {
      font-size: 47px;
      line-height: 60px; }
    .wf-event-header .event-detail-holder .event-venue {
      font-size: 21px; }
  .wf-event-header .event-nofrontpage .event-date {
    font-size: 30px; }
  .wf-event-header .event-nofrontpage .event-venue {
    font-size: 30px; }
  .wf-event-header .ticket-btn-nofrontpage img {
    width: auto; }
  .wf-event-header .ticket-btn-nofrontpage a.text-button {
    width: 20%; }

  .wf article h2 {
    font-size: 30px;
    line-height: 34px;
    margin-top: 0; }

  .ticket-options {
    margin-top: 0; }
    .ticket-options li {
      width: 100%;
      float: none;
      margin: 0 0 30px; }
      .ticket-options li a {
        font-size: 22px;
        padding: 20px 5px 90px; }
        .ticket-options li a .ticket-price {
          font-size: 30px; }
      .ticket-options li .ticket-bottom {
        font-size: 20px;
        padding: 10px 5px; }
      .ticket-options li .ticket-soldout {
        font-size: 30px;
        top: 40%;
        margin: 0 -45%;
        padding: 5px 0;
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg); }
      .ticket-options li:last-child {
        margin-bottom: 15px; }

  .speaker-holder {
    margin: 60px 40px; }
    .speaker-holder h2 {
      margin-top: 0; }

  /* end WHISKYFEST */
  .hero-text-box {
    position: absolute;
    width: 250px;
    left: 50%;
    top: 50%;
    bottom: auto;
    margin-top: -125px;
    margin-left: -125px;
    padding: 30px 40px; }
    .hero-text-box h1 {
      font-size: 20px;
      line-height: 26px;
      float: none;
      width: auto;
      margin: 15px 0; }
    .hero-text-box a.button {
      float: none;
      width: auto;
      font-size: 15px;
      margin-top: 15px;
      margin-bottom: 20px;
      margin-left: 0; }
    .ratings-hero-box-holder .hero-text-box {
      width: 100%;
      left: 50%;
      top: 50%;
      position: absolute;
      width: 300px;
      padding: 30px;
      margin-top: -140px;
      margin-left: -150px;
      backdrop-filter: blur(10px); }

  form.ratings-review-search {
    margin: 50px 0 50px; }
    form.ratings-review-search .price-col .selectric {
      border-right-width: 0; }
    form.ratings-review-search .filter-m-row2 {
      top: 0; }

  /*********************
  Adverisements
  *********************/
  .header-ad {
    display: block;
    text-align: center; }
    .header-ad > div {
      margin: 16px auto 40px auto; }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em; }

  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em; }

  .widget {
    padding: 0 10px;
    margin: 2.2em 0; }
    .widget ul li {
      margin-bottom: 0.75em;
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  .footer #inner-footer.wrap {
    padding: 0 20px; }

  .footer-links ul li {
    padding-bottom: 10px;
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */ }

  /* end .footer-links */
  /*********************
  BUTTON
  *********************/
  .social-share {
    margin: 0; }

  .button.large-sm, .button.large-md {
    text-align: center; }
  .button.large-sm {
    width: auto; }
  .button.large-md {
    width: 100%; }

  /*********************
  UTILITIES DESKTOP ONLY
  *********************/
  .text-center-d {
    text-align: center; }

  .text-left-d {
    text-align: left; }

  .text-right-d {
    text-align: right; }

  .valign-m-table,
  .valign-m,
  .valign-b {
    height: 100%; }

  .valign-m-table {
    display: table; }

  .valign-m, .valign-b {
    display: table-cell;
    vertical-align: middle; }

  .valign-b {
    vertical-align: bottom; }

  .mobile-only {
    display: none; }

  .desktop-only {
    display: block; } }
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /*
  .wrap {
    width: 1040px;
  }
  
  .nav-holder {
  	.wrap {
  		width:1040px;
  	}
  }
  */
  #logo {
    margin: 15px auto; }
    #logo.search-open {
      width: 231px; }

  .wrap {
    padding: 0 40px; }

  .content-pad {
    padding: 0 40px; }

  .ratings-intro-copy {
    padding-right: 80px; }

  .buying-guide-text-holder {
    padding: 0 40px; }

  .on-newsstands .text-button {
    letter-spacing: 0; }

  .home .content-section-holder.on-newsstands .article-img {
    padding: 10px 60px; }

  /* WHISKYFEST */
  .event-header .event-detail-holder h1 {
    font-size: 80px;
    line-height: 90px; }
  .event-header .event-detail-holder .ticket-button a:first-child {
    margin-right: 10px; }
  .event-header .event-detail-holder .ticket-button a:last-child {
    margin-left: 10px; }

  .wf-event-header .event-overlay {
    height: 30%; }
  .wf-event-header .event-detail-holder h1 {
    font-size: 55px;
    line-height: 90px; }

  .event-nav li {
    padding: 20px 0; }
    .event-nav li a {
      font-size: 22px;
      margin: 0 15px; }

  .wf .event-nav li {
    padding: 30px 0; }
    .wf .event-nav li a {
      font-size: 26px;
      margin: 0 30px; }

  .event-header .ticket-btn-nofrontpage {
    padding: 55px 0; }

  .event-header .ticket-btn-nofrontpage a.text-button {
    margin-bottom: -82px; }

  .wf-event-header .ticket-btn-nofrontpage {
    padding: 55px 0; }

  .wf-event-header .ticket-btn-nofrontpage a.text-button {
    margin-bottom: -82px; }

  .ticket-options li a {
    font-size: 28px;
    padding: 20px 5px 90px; }
    .ticket-options li a .ticket-price {
      font-size: 37px; }
  .ticket-options li .ticket-bottom {
    font-size: 27px;
    padding: 15px 10px; }
  .ticket-options li .ticket-soldout {
    font-size: 36px;
    top: 40%;
    margin: 0 -45%;
    padding: 5px 0;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); }

  .trending-box {
    background-color: #F8F8F8;
    padding: 15px;
    margin-bottom: 32px; }
    .trending-box article {
      margin: 0 !important; }
    .trending-box a.text-button {
      margin-top: 0;
      padding-top: 14px;
      padding-bottom: 14px; }
    .trending-box .trending-holder {
      overflow-x: none; }
    .trending-box .row-holder {
      width: 100%; }
    .trending-box h1.title {
      font-family: "Frank Ruhl Libre", Times New Roman, Times, serif;
      font-size: 28px;
      line-height: 42px;
      margin: 17px auto; }
    .trending-box .blue-btn, .trending-box .comment-reply-link, .trending-box #submit {
      font-size: 14px;
      line-height: 21px;
      width: 100%;
      padding: 14px;
      font-weight: bold;
      margin-bottom: 32px;
      margin-top: 1px; }
    .trending-box .col:first-child article {
      display: flex;
      align-self: start;
      padding: 16px; }
      .trending-box .col:first-child article .responsive-container {
        flex: 2;
        padding-bottom: 30%; }
        .trending-box .col:first-child article .responsive-container img {
          height: auto; }
      .trending-box .col:first-child article header {
        flex: 5;
        margin-left: 16px; }
        .trending-box .col:first-child article header h1, .trending-box .col:first-child article header h2 {
          margin-top: 0; }

  .footer #inner-footer.wrap {
    padding: 0 40px; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/ }
@media only screen and (min-width: 1240px) and (min-width: 1300px) {
  .wrap {
    width: 1300px; }

  .nav-holder .wrap, .header .wrap {
    width: 1300px; } }
@media only screen and (min-width: 1240px) {
  .on-newsstands .text-button {
    letter-spacing: 1px; } }
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (minpixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/ }
@media only screen and (minpixel-ratio: 1.5) and (min-width: 768px), only screen and (min-device-pixel-ratio: 1.5) and (min-width: 768px), only screen and (min-device-pixel-ratio: 1.5) and (min-width: 768px) {
  .top-nav li.current-menu-item,
  .top-nav li.current_page_item,
  .top-nav li.current_page_ancestor {
    background: url(../images/Triangle@2x.png) no-repeat top center;
    background-size: 17px 12px; } }
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
.main-locations {
  /*!
   * Bootstrap v4.5.3 (https://getbootstrap.com/)
   * Copyright 2011-2020 The Bootstrap Authors
   * Copyright 2011-2020 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
  /*
  Grid view hide secondary info.
  */
  /*
  Set images and videos to fit a certain way.
  */
  /*
  SCSS is not using the Autoprefixer so we add what we need manually for now.
  */
  /*
  AyeCode UI Select2
  Theme: https://github.com/ttskch/select2-bootstrap4-theme
  */ }
  .main-locations :root {
    --blue: #2980b9;
    --indigo: #502c6c;
    --purple: #ad6edd;
    --pink: #ff0266;
    --red: #ff5916;
    --orange: #fbb500;
    --yellow: #E5B022;
    --green: #7dd667;
    --teal: #09ebaf;
    --cyan: #35bdff;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #1e73be;
    --secondary: #6c757d;
    --success: #7dd667;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #fff;
    --purple: #ad6edd;
    --salmon: #ff977a;
    --cyan: #35bdff;
    --gray: #ced4da;
    --indigo: #502c6c;
    --orange: #fbb500;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  .main-locations .img-fluid {
    max-width: 100%;
    height: auto; }
  .main-locations .img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto; }
  .main-locations .figure {
    display: inline-block; }
  .main-locations .figure-img {
    margin-bottom: 0.5rem;
    line-height: 1; }
  .main-locations .figure-caption {
    font-size: 90%;
    color: #6c757d; }
  .main-locations .container,
  .main-locations .container-fluid,
  .main-locations .container-sm,
  .main-locations .container-md,
  .main-locations .container-lg,
  .main-locations .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
  @media (min-width: 576px) {
    .main-locations .container, .main-locations .container-sm {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .main-locations .container, .main-locations .container-sm, .main-locations .container-md {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .main-locations .container, .main-locations .container-sm, .main-locations .container-md, .main-locations .container-lg {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .main-locations .container, .main-locations .container-sm, .main-locations .container-md, .main-locations .container-lg, .main-locations .container-xl {
      max-width: 1140px; } }
  .main-locations .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .main-locations .no-gutters {
    margin-right: 0;
    margin-left: 0; }
    .main-locations .no-gutters > .col,
    .main-locations .no-gutters > [class*="col-"] {
      padding-right: 0;
      padding-left: 0; }
  .main-locations .col-1, .main-locations .col-2, .main-locations .col-3, .main-locations .col-4, .main-locations .col-5, .main-locations .col-6, .main-locations .col-7, .main-locations .col-8, .main-locations .col-9, .main-locations .col-10, .main-locations .col-11, .main-locations .col-12, .main-locations .col,
  .main-locations .col-auto, .main-locations .col-sm-1, .main-locations .col-sm-2, .main-locations .col-sm-3, .main-locations .col-sm-4, .main-locations .col-sm-5, .main-locations .col-sm-6, .main-locations .col-sm-7, .main-locations .col-sm-8, .main-locations .col-sm-9, .main-locations .col-sm-10, .main-locations .col-sm-11, .main-locations .col-sm-12, .main-locations .col-sm,
  .main-locations .col-sm-auto, .main-locations .col-md-1, .main-locations .col-md-2, .main-locations .col-md-3, .main-locations .col-md-4, .main-locations .col-md-5, .main-locations .col-md-6, .main-locations .col-md-7, .main-locations .col-md-8, .main-locations .col-md-9, .main-locations .col-md-10, .main-locations .col-md-11, .main-locations .col-md-12, .main-locations .col-md,
  .main-locations .col-md-auto, .main-locations .col-lg-1, .main-locations .col-lg-2, .main-locations .col-lg-3, .main-locations .col-lg-4, .main-locations .col-lg-5, .main-locations .col-lg-6, .main-locations .col-lg-7, .main-locations .col-lg-8, .main-locations .col-lg-9, .main-locations .col-lg-10, .main-locations .col-lg-11, .main-locations .col-lg-12, .main-locations .col-lg,
  .main-locations .col-lg-auto, .main-locations .col-xl-1, .main-locations .col-xl-2, .main-locations .col-xl-3, .main-locations .col-xl-4, .main-locations .col-xl-5, .main-locations .col-xl-6, .main-locations .col-xl-7, .main-locations .col-xl-8, .main-locations .col-xl-9, .main-locations .col-xl-10, .main-locations .col-xl-11, .main-locations .col-xl-12, .main-locations .col-xl,
  .main-locations .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; }
  .main-locations .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .main-locations .row-cols-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .main-locations .row-cols-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .main-locations .row-cols-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .main-locations .row-cols-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .main-locations .row-cols-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .main-locations .row-cols-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .main-locations .col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .main-locations .col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .main-locations .col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .main-locations .col-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .main-locations .col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .main-locations .col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .main-locations .col-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .main-locations .col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .main-locations .col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .main-locations .col-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .main-locations .col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .main-locations .col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .main-locations .col-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .main-locations .order-first {
    order: -1; }
  .main-locations .order-last {
    order: 13; }
  .main-locations .order-0 {
    order: 0; }
  .main-locations .order-1 {
    order: 1; }
  .main-locations .order-2 {
    order: 2; }
  .main-locations .order-3 {
    order: 3; }
  .main-locations .order-4 {
    order: 4; }
  .main-locations .order-5 {
    order: 5; }
  .main-locations .order-6 {
    order: 6; }
  .main-locations .order-7 {
    order: 7; }
  .main-locations .order-8 {
    order: 8; }
  .main-locations .order-9 {
    order: 9; }
  .main-locations .order-10 {
    order: 10; }
  .main-locations .order-11 {
    order: 11; }
  .main-locations .order-12 {
    order: 12; }
  .main-locations .offset-1 {
    margin-left: 8.33333%; }
  .main-locations .offset-2 {
    margin-left: 16.66667%; }
  .main-locations .offset-3 {
    margin-left: 25%; }
  .main-locations .offset-4 {
    margin-left: 33.33333%; }
  .main-locations .offset-5 {
    margin-left: 41.66667%; }
  .main-locations .offset-6 {
    margin-left: 50%; }
  .main-locations .offset-7 {
    margin-left: 58.33333%; }
  .main-locations .offset-8 {
    margin-left: 66.66667%; }
  .main-locations .offset-9 {
    margin-left: 75%; }
  .main-locations .offset-10 {
    margin-left: 83.33333%; }
  .main-locations .offset-11 {
    margin-left: 91.66667%; }
  @media (min-width: 576px) {
    .main-locations .col-sm {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .main-locations .row-cols-sm-1 > * {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .row-cols-sm-2 > * {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .row-cols-sm-3 > * {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .row-cols-sm-4 > * {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .row-cols-sm-5 > * {
      flex: 0 0 20%;
      max-width: 20%; }
    .main-locations .row-cols-sm-6 > * {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-sm-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .main-locations .col-sm-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .main-locations .col-sm-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-sm-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .col-sm-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .col-sm-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .main-locations .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .col-sm-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .main-locations .col-sm-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .main-locations .col-sm-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .main-locations .col-sm-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .main-locations .col-sm-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .main-locations .col-sm-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .order-sm-first {
      order: -1; }
    .main-locations .order-sm-last {
      order: 13; }
    .main-locations .order-sm-0 {
      order: 0; }
    .main-locations .order-sm-1 {
      order: 1; }
    .main-locations .order-sm-2 {
      order: 2; }
    .main-locations .order-sm-3 {
      order: 3; }
    .main-locations .order-sm-4 {
      order: 4; }
    .main-locations .order-sm-5 {
      order: 5; }
    .main-locations .order-sm-6 {
      order: 6; }
    .main-locations .order-sm-7 {
      order: 7; }
    .main-locations .order-sm-8 {
      order: 8; }
    .main-locations .order-sm-9 {
      order: 9; }
    .main-locations .order-sm-10 {
      order: 10; }
    .main-locations .order-sm-11 {
      order: 11; }
    .main-locations .order-sm-12 {
      order: 12; }
    .main-locations .offset-sm-0 {
      margin-left: 0; }
    .main-locations .offset-sm-1 {
      margin-left: 8.33333%; }
    .main-locations .offset-sm-2 {
      margin-left: 16.66667%; }
    .main-locations .offset-sm-3 {
      margin-left: 25%; }
    .main-locations .offset-sm-4 {
      margin-left: 33.33333%; }
    .main-locations .offset-sm-5 {
      margin-left: 41.66667%; }
    .main-locations .offset-sm-6 {
      margin-left: 50%; }
    .main-locations .offset-sm-7 {
      margin-left: 58.33333%; }
    .main-locations .offset-sm-8 {
      margin-left: 66.66667%; }
    .main-locations .offset-sm-9 {
      margin-left: 75%; }
    .main-locations .offset-sm-10 {
      margin-left: 83.33333%; }
    .main-locations .offset-sm-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 768px) {
    .main-locations .col-md {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .main-locations .row-cols-md-1 > * {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .row-cols-md-2 > * {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .row-cols-md-3 > * {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .row-cols-md-4 > * {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .row-cols-md-5 > * {
      flex: 0 0 20%;
      max-width: 20%; }
    .main-locations .row-cols-md-6 > * {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-md-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .main-locations .col-md-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .main-locations .col-md-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-md-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .col-md-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .col-md-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .main-locations .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .col-md-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .main-locations .col-md-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .main-locations .col-md-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .main-locations .col-md-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .main-locations .col-md-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .main-locations .col-md-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .order-md-first {
      order: -1; }
    .main-locations .order-md-last {
      order: 13; }
    .main-locations .order-md-0 {
      order: 0; }
    .main-locations .order-md-1 {
      order: 1; }
    .main-locations .order-md-2 {
      order: 2; }
    .main-locations .order-md-3 {
      order: 3; }
    .main-locations .order-md-4 {
      order: 4; }
    .main-locations .order-md-5 {
      order: 5; }
    .main-locations .order-md-6 {
      order: 6; }
    .main-locations .order-md-7 {
      order: 7; }
    .main-locations .order-md-8 {
      order: 8; }
    .main-locations .order-md-9 {
      order: 9; }
    .main-locations .order-md-10 {
      order: 10; }
    .main-locations .order-md-11 {
      order: 11; }
    .main-locations .order-md-12 {
      order: 12; }
    .main-locations .offset-md-0 {
      margin-left: 0; }
    .main-locations .offset-md-1 {
      margin-left: 8.33333%; }
    .main-locations .offset-md-2 {
      margin-left: 16.66667%; }
    .main-locations .offset-md-3 {
      margin-left: 25%; }
    .main-locations .offset-md-4 {
      margin-left: 33.33333%; }
    .main-locations .offset-md-5 {
      margin-left: 41.66667%; }
    .main-locations .offset-md-6 {
      margin-left: 50%; }
    .main-locations .offset-md-7 {
      margin-left: 58.33333%; }
    .main-locations .offset-md-8 {
      margin-left: 66.66667%; }
    .main-locations .offset-md-9 {
      margin-left: 75%; }
    .main-locations .offset-md-10 {
      margin-left: 83.33333%; }
    .main-locations .offset-md-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 992px) {
    .main-locations .col-lg {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .main-locations .row-cols-lg-1 > * {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .row-cols-lg-2 > * {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .row-cols-lg-3 > * {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .row-cols-lg-4 > * {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .row-cols-lg-5 > * {
      flex: 0 0 20%;
      max-width: 20%; }
    .main-locations .row-cols-lg-6 > * {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .main-locations .col-lg-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .main-locations .col-lg-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-lg-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .col-lg-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .col-lg-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .main-locations .col-lg-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .col-lg-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .main-locations .col-lg-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .main-locations .col-lg-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .main-locations .col-lg-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .main-locations .col-lg-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .main-locations .col-lg-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .order-lg-first {
      order: -1; }
    .main-locations .order-lg-last {
      order: 13; }
    .main-locations .order-lg-0 {
      order: 0; }
    .main-locations .order-lg-1 {
      order: 1; }
    .main-locations .order-lg-2 {
      order: 2; }
    .main-locations .order-lg-3 {
      order: 3; }
    .main-locations .order-lg-4 {
      order: 4; }
    .main-locations .order-lg-5 {
      order: 5; }
    .main-locations .order-lg-6 {
      order: 6; }
    .main-locations .order-lg-7 {
      order: 7; }
    .main-locations .order-lg-8 {
      order: 8; }
    .main-locations .order-lg-9 {
      order: 9; }
    .main-locations .order-lg-10 {
      order: 10; }
    .main-locations .order-lg-11 {
      order: 11; }
    .main-locations .order-lg-12 {
      order: 12; }
    .main-locations .offset-lg-0 {
      margin-left: 0; }
    .main-locations .offset-lg-1 {
      margin-left: 8.33333%; }
    .main-locations .offset-lg-2 {
      margin-left: 16.66667%; }
    .main-locations .offset-lg-3 {
      margin-left: 25%; }
    .main-locations .offset-lg-4 {
      margin-left: 33.33333%; }
    .main-locations .offset-lg-5 {
      margin-left: 41.66667%; }
    .main-locations .offset-lg-6 {
      margin-left: 50%; }
    .main-locations .offset-lg-7 {
      margin-left: 58.33333%; }
    .main-locations .offset-lg-8 {
      margin-left: 66.66667%; }
    .main-locations .offset-lg-9 {
      margin-left: 75%; }
    .main-locations .offset-lg-10 {
      margin-left: 83.33333%; }
    .main-locations .offset-lg-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 1200px) {
    .main-locations .col-xl {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .main-locations .row-cols-xl-1 > * {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .row-cols-xl-2 > * {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .row-cols-xl-3 > * {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .row-cols-xl-4 > * {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .row-cols-xl-5 > * {
      flex: 0 0 20%;
      max-width: 20%; }
    .main-locations .row-cols-xl-6 > * {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-xl-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .main-locations .col-xl-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .main-locations .col-xl-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .main-locations .col-xl-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .main-locations .col-xl-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .main-locations .col-xl-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .main-locations .col-xl-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .main-locations .col-xl-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .main-locations .col-xl-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .main-locations .col-xl-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .main-locations .col-xl-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .main-locations .col-xl-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .main-locations .col-xl-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .main-locations .order-xl-first {
      order: -1; }
    .main-locations .order-xl-last {
      order: 13; }
    .main-locations .order-xl-0 {
      order: 0; }
    .main-locations .order-xl-1 {
      order: 1; }
    .main-locations .order-xl-2 {
      order: 2; }
    .main-locations .order-xl-3 {
      order: 3; }
    .main-locations .order-xl-4 {
      order: 4; }
    .main-locations .order-xl-5 {
      order: 5; }
    .main-locations .order-xl-6 {
      order: 6; }
    .main-locations .order-xl-7 {
      order: 7; }
    .main-locations .order-xl-8 {
      order: 8; }
    .main-locations .order-xl-9 {
      order: 9; }
    .main-locations .order-xl-10 {
      order: 10; }
    .main-locations .order-xl-11 {
      order: 11; }
    .main-locations .order-xl-12 {
      order: 12; }
    .main-locations .offset-xl-0 {
      margin-left: 0; }
    .main-locations .offset-xl-1 {
      margin-left: 8.33333%; }
    .main-locations .offset-xl-2 {
      margin-left: 16.66667%; }
    .main-locations .offset-xl-3 {
      margin-left: 25%; }
    .main-locations .offset-xl-4 {
      margin-left: 33.33333%; }
    .main-locations .offset-xl-5 {
      margin-left: 41.66667%; }
    .main-locations .offset-xl-6 {
      margin-left: 50%; }
    .main-locations .offset-xl-7 {
      margin-left: 58.33333%; }
    .main-locations .offset-xl-8 {
      margin-left: 66.66667%; }
    .main-locations .offset-xl-9 {
      margin-left: 75%; }
    .main-locations .offset-xl-10 {
      margin-left: 83.33333%; }
    .main-locations .offset-xl-11 {
      margin-left: 91.66667%; } }
  .main-locations .form-control {
    display: block;
    width: 100%;
    height: calc(1.6em + 0.9rem + 2px);
    padding: 0.45rem 1.2rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .form-control {
        transition: none; } }
    .main-locations .form-control::-ms-expand {
      background-color: transparent;
      border: 0; }
    .main-locations .form-control:-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #495057; }
    .main-locations .form-control:focus {
      color: #495057;
      background-color: #fff;
      border-color: #73b1e9;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.25); }
    .main-locations .form-control::placeholder {
      color: #6c757d;
      opacity: 1; }
    .main-locations .form-control:disabled, .main-locations .form-control[readonly] {
      background-color: #e9ecef;
      opacity: 1; }
  .main-locations input[type="date"].form-control,
  .main-locations input[type="time"].form-control,
  .main-locations input[type="datetime-local"].form-control,
  .main-locations input[type="month"].form-control {
    appearance: none; }
  .main-locations select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff; }
  .main-locations .form-control-file,
  .main-locations .form-control-range {
    display: block;
    width: 100%; }
  .main-locations .col-form-label {
    padding-top: calc(0.45rem + 1px);
    padding-bottom: calc(0.45rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.6; }
  .main-locations .col-form-label-lg {
    padding-top: calc(0.65rem + 1px);
    padding-bottom: calc(0.65rem + 1px);
    font-size: 1.15rem;
    line-height: 1.5; }
  .main-locations .col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5; }
  .main-locations .form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.45rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0; }
    .main-locations .form-control-plaintext.form-control-sm, .main-locations .form-control-plaintext.form-control-lg {
      padding-right: 0;
      padding-left: 0; }
  .main-locations .form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .main-locations .form-control-lg {
    height: calc(1.5em + 1.3rem + 2px);
    padding: 0.65rem 2rem;
    font-size: 1.15rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .main-locations select.form-control[size], .main-locations select.form-control[multiple] {
    height: auto; }
  .main-locations textarea.form-control {
    height: auto; }
  .main-locations .form-group {
    margin-bottom: 1rem; }
  .main-locations .form-text {
    display: block;
    margin-top: 0.25rem; }
  .main-locations .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px; }
    .main-locations .form-row > .col,
    .main-locations .form-row > [class*="col-"] {
      padding-right: 5px;
      padding-left: 5px; }
  .main-locations .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem; }
  .main-locations .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem; }
    .main-locations .form-check-input[disabled] ~ .form-check-label, .main-locations .form-check-input:disabled ~ .form-check-label {
      color: #6c757d; }
  .main-locations .form-check-label {
    margin-bottom: 0; }
  .main-locations .form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem; }
    .main-locations .form-check-inline .form-check-input {
      position: static;
      margin-top: 0;
      margin-right: 0.3125rem;
      margin-left: 0; }
  .main-locations .valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 85%;
    color: #7dd667; }
  .main-locations .valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #212529;
    background-color: rgba(125, 214, 103, 0.9);
    border-radius: 0.25rem; }
  .was-validated .main-locations:valid ~ .valid-feedback,
  .was-validated .main-locations:valid ~ .valid-tooltip, .main-locations.is-valid ~ .valid-feedback,
  .main-locations.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .main-locations .form-control:valid, .main-locations .form-control.is-valid {
    border-color: #7dd667;
    padding-right: calc(1.6em + 0.9rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%237dd667' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.4em + 0.225rem) center;
    background-size: calc(0.8em + 0.45rem) calc(0.8em + 0.45rem); }
    .was-validated .main-locations .form-control:valid:focus, .main-locations .form-control.is-valid:focus {
      border-color: #7dd667;
      box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.25); }
  .was-validated .main-locations textarea.form-control:valid, .main-locations textarea.form-control.is-valid {
    padding-right: calc(1.6em + 0.9rem);
    background-position: top calc(0.4em + 0.225rem) right calc(0.4em + 0.225rem); }
  .was-validated .main-locations .custom-select:valid, .main-locations .custom-select.is-valid {
    border-color: #7dd667;
    padding-right: calc(0.75em + 2.875rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.2rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%237dd667' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 2.2rem/calc(0.8em + 0.45rem) calc(0.8em + 0.45rem); }
    .was-validated .main-locations .custom-select:valid:focus, .main-locations .custom-select.is-valid:focus {
      border-color: #7dd667;
      box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.25); }
  .was-validated .main-locations .form-check-input:valid ~ .form-check-label, .main-locations .form-check-input.is-valid ~ .form-check-label {
    color: #7dd667; }
  .was-validated .main-locations .form-check-input:valid ~ .valid-feedback,
  .was-validated .main-locations .form-check-input:valid ~ .valid-tooltip, .main-locations .form-check-input.is-valid ~ .valid-feedback,
  .main-locations .form-check-input.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .main-locations .custom-control-input:valid ~ .custom-control-label, .main-locations .custom-control-input.is-valid ~ .custom-control-label {
    color: #7dd667; }
    .was-validated .main-locations .custom-control-input:valid ~ .custom-control-label::before, .main-locations .custom-control-input.is-valid ~ .custom-control-label::before {
      border-color: #7dd667; }
  .was-validated .main-locations .custom-control-input:valid:checked ~ .custom-control-label::before, .main-locations .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #9fe18f;
    background-color: #9fe18f; }
  .was-validated .main-locations .custom-control-input:valid:focus ~ .custom-control-label::before, .main-locations .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.25); }
  .was-validated .main-locations .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .main-locations .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #7dd667; }
  .was-validated .main-locations .custom-file-input:valid ~ .custom-file-label, .main-locations .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #7dd667; }
  .was-validated .main-locations .custom-file-input:valid:focus ~ .custom-file-label, .main-locations .custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #7dd667;
    box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.25); }
  .main-locations .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 85%;
    color: #dc3545; }
  .main-locations .invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem; }
  .was-validated .main-locations:invalid ~ .invalid-feedback,
  .was-validated .main-locations:invalid ~ .invalid-tooltip, .main-locations.is-invalid ~ .invalid-feedback,
  .main-locations.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .main-locations .form-control:invalid, .main-locations .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.6em + 0.9rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.4em + 0.225rem) center;
    background-size: calc(0.8em + 0.45rem) calc(0.8em + 0.45rem); }
    .was-validated .main-locations .form-control:invalid:focus, .main-locations .form-control.is-invalid:focus {
      border-color: #dc3545;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .main-locations textarea.form-control:invalid, .main-locations textarea.form-control.is-invalid {
    padding-right: calc(1.6em + 0.9rem);
    background-position: top calc(0.4em + 0.225rem) right calc(0.4em + 0.225rem); }
  .was-validated .main-locations .custom-select:invalid, .main-locations .custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(0.75em + 2.875rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.2rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 2.2rem/calc(0.8em + 0.45rem) calc(0.8em + 0.45rem); }
    .was-validated .main-locations .custom-select:invalid:focus, .main-locations .custom-select.is-invalid:focus {
      border-color: #dc3545;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .main-locations .form-check-input:invalid ~ .form-check-label, .main-locations .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545; }
  .was-validated .main-locations .form-check-input:invalid ~ .invalid-feedback,
  .was-validated .main-locations .form-check-input:invalid ~ .invalid-tooltip, .main-locations .form-check-input.is-invalid ~ .invalid-feedback,
  .main-locations .form-check-input.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .main-locations .custom-control-input:invalid ~ .custom-control-label, .main-locations .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545; }
    .was-validated .main-locations .custom-control-input:invalid ~ .custom-control-label::before, .main-locations .custom-control-input.is-invalid ~ .custom-control-label::before {
      border-color: #dc3545; }
  .was-validated .main-locations .custom-control-input:invalid:checked ~ .custom-control-label::before, .main-locations .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d; }
  .was-validated .main-locations .custom-control-input:invalid:focus ~ .custom-control-label::before, .main-locations .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .main-locations .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .main-locations .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545; }
  .was-validated .main-locations .custom-file-input:invalid ~ .custom-file-label, .main-locations .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545; }
  .was-validated .main-locations .custom-file-input:invalid:focus ~ .custom-file-label, .main-locations .custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .main-locations .form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center; }
    .main-locations .form-inline .form-check {
      width: 100%; }
    @media (min-width: 576px) {
      .main-locations .form-inline label {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0; }
      .main-locations .form-inline .form-group {
        display: flex;
        flex: 0 0 auto;
        flex-flow: row wrap;
        align-items: center;
        margin-bottom: 0; }
      .main-locations .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle; }
      .main-locations .form-inline .form-control-plaintext {
        display: inline-block; }
      .main-locations .form-inline .input-group,
      .main-locations .form-inline .custom-select {
        width: auto; }
      .main-locations .form-inline .form-check {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding-left: 0; }
      .main-locations .form-inline .form-check-input {
        position: relative;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0; }
      .main-locations .form-inline .custom-control {
        align-items: center;
        justify-content: center; }
      .main-locations .form-inline .custom-control-label {
        margin-bottom: 0; } }
  .main-locations .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.45rem 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .btn {
        transition: none; } }
    .main-locations .btn:hover {
      color: #212529;
      text-decoration: none; }
    .main-locations .btn:focus, .main-locations .btn.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.25); }
    .main-locations .btn.disabled, .main-locations .btn:disabled {
      opacity: 0.65; }
    .main-locations .btn:not(:disabled):not(.disabled) {
      cursor: pointer; }
  .main-locations a.btn.disabled,
  .main-locations fieldset:disabled a.btn {
    pointer-events: none; }
  .main-locations .btn-primary {
    color: #fff;
    background-color: #1e73be;
    border-color: #1e73be; }
    .main-locations .btn-primary:hover {
      color: #fff;
      background-color: #195f9d;
      border-color: #175892; }
    .main-locations .btn-primary:focus, .main-locations .btn-primary.focus {
      color: #fff;
      background-color: #195f9d;
      border-color: #175892;
      box-shadow: 0 0 0 0.2rem rgba(64, 136, 200, 0.5); }
    .main-locations .btn-primary.disabled, .main-locations .btn-primary:disabled {
      color: #fff;
      background-color: #1e73be;
      border-color: #1e73be; }
    .main-locations .btn-primary:not(:disabled):not(.disabled):active, .main-locations .btn-primary:not(:disabled):not(.disabled).active, .show > .main-locations .btn-primary.dropdown-toggle {
      color: #fff;
      background-color: #175892;
      border-color: #155287; }
      .main-locations .btn-primary:not(:disabled):not(.disabled):active:focus, .main-locations .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(64, 136, 200, 0.5); }
  .main-locations .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
    .main-locations .btn-secondary:hover {
      color: #fff;
      background-color: #5a6268;
      border-color: #545b62; }
    .main-locations .btn-secondary:focus, .main-locations .btn-secondary.focus {
      color: #fff;
      background-color: #5a6268;
      border-color: #545b62;
      box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
    .main-locations .btn-secondary.disabled, .main-locations .btn-secondary:disabled {
      color: #fff;
      background-color: #6c757d;
      border-color: #6c757d; }
    .main-locations .btn-secondary:not(:disabled):not(.disabled):active, .main-locations .btn-secondary:not(:disabled):not(.disabled).active, .show > .main-locations .btn-secondary.dropdown-toggle {
      color: #fff;
      background-color: #545b62;
      border-color: #4e555b; }
      .main-locations .btn-secondary:not(:disabled):not(.disabled):active:focus, .main-locations .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-secondary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
  .main-locations .btn-success {
    color: #212529;
    background-color: #7dd667;
    border-color: #7dd667; }
    .main-locations .btn-success:hover {
      color: #212529;
      background-color: #63ce49;
      border-color: #5bcb3f; }
    .main-locations .btn-success:focus, .main-locations .btn-success.focus {
      color: #212529;
      background-color: #63ce49;
      border-color: #5bcb3f;
      box-shadow: 0 0 0 0.2rem rgba(111, 187, 94, 0.5); }
    .main-locations .btn-success.disabled, .main-locations .btn-success:disabled {
      color: #212529;
      background-color: #7dd667;
      border-color: #7dd667; }
    .main-locations .btn-success:not(:disabled):not(.disabled):active, .main-locations .btn-success:not(:disabled):not(.disabled).active, .show > .main-locations .btn-success.dropdown-toggle {
      color: #212529;
      background-color: #5bcb3f;
      border-color: #53c736; }
      .main-locations .btn-success:not(:disabled):not(.disabled):active:focus, .main-locations .btn-success:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-success.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(111, 187, 94, 0.5); }
  .main-locations .btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
    .main-locations .btn-info:hover {
      color: #fff;
      background-color: #138496;
      border-color: #117a8b; }
    .main-locations .btn-info:focus, .main-locations .btn-info.focus {
      color: #fff;
      background-color: #138496;
      border-color: #117a8b;
      box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
    .main-locations .btn-info.disabled, .main-locations .btn-info:disabled {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
    .main-locations .btn-info:not(:disabled):not(.disabled):active, .main-locations .btn-info:not(:disabled):not(.disabled).active, .show > .main-locations .btn-info.dropdown-toggle {
      color: #fff;
      background-color: #117a8b;
      border-color: #10707f; }
      .main-locations .btn-info:not(:disabled):not(.disabled):active:focus, .main-locations .btn-info:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-info.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
  .main-locations .btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107; }
    .main-locations .btn-warning:hover {
      color: #212529;
      background-color: #e0a800;
      border-color: #d39e00; }
    .main-locations .btn-warning:focus, .main-locations .btn-warning.focus {
      color: #212529;
      background-color: #e0a800;
      border-color: #d39e00;
      box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
    .main-locations .btn-warning.disabled, .main-locations .btn-warning:disabled {
      color: #212529;
      background-color: #ffc107;
      border-color: #ffc107; }
    .main-locations .btn-warning:not(:disabled):not(.disabled):active, .main-locations .btn-warning:not(:disabled):not(.disabled).active, .show > .main-locations .btn-warning.dropdown-toggle {
      color: #212529;
      background-color: #d39e00;
      border-color: #c69500; }
      .main-locations .btn-warning:not(:disabled):not(.disabled):active:focus, .main-locations .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-warning.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
  .main-locations .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
    .main-locations .btn-danger:hover {
      color: #fff;
      background-color: #c82333;
      border-color: #bd2130; }
    .main-locations .btn-danger:focus, .main-locations .btn-danger.focus {
      color: #fff;
      background-color: #c82333;
      border-color: #bd2130;
      box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
    .main-locations .btn-danger.disabled, .main-locations .btn-danger:disabled {
      color: #fff;
      background-color: #dc3545;
      border-color: #dc3545; }
    .main-locations .btn-danger:not(:disabled):not(.disabled):active, .main-locations .btn-danger:not(:disabled):not(.disabled).active, .show > .main-locations .btn-danger.dropdown-toggle {
      color: #fff;
      background-color: #bd2130;
      border-color: #b21f2d; }
      .main-locations .btn-danger:not(:disabled):not(.disabled):active:focus, .main-locations .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-danger.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
  .main-locations .btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .main-locations .btn-light:hover {
      color: #212529;
      background-color: #e2e6ea;
      border-color: #dae0e5; }
    .main-locations .btn-light:focus, .main-locations .btn-light.focus {
      color: #212529;
      background-color: #e2e6ea;
      border-color: #dae0e5;
      box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
    .main-locations .btn-light.disabled, .main-locations .btn-light:disabled {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
    .main-locations .btn-light:not(:disabled):not(.disabled):active, .main-locations .btn-light:not(:disabled):not(.disabled).active, .show > .main-locations .btn-light.dropdown-toggle {
      color: #212529;
      background-color: #dae0e5;
      border-color: #d3d9df; }
      .main-locations .btn-light:not(:disabled):not(.disabled):active:focus, .main-locations .btn-light:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-light.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
  .main-locations .btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
    .main-locations .btn-dark:hover {
      color: #fff;
      background-color: #23272b;
      border-color: #1d2124; }
    .main-locations .btn-dark:focus, .main-locations .btn-dark.focus {
      color: #fff;
      background-color: #23272b;
      border-color: #1d2124;
      box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
    .main-locations .btn-dark.disabled, .main-locations .btn-dark:disabled {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
    .main-locations .btn-dark:not(:disabled):not(.disabled):active, .main-locations .btn-dark:not(:disabled):not(.disabled).active, .show > .main-locations .btn-dark.dropdown-toggle {
      color: #fff;
      background-color: #1d2124;
      border-color: #171a1d; }
      .main-locations .btn-dark:not(:disabled):not(.disabled):active:focus, .main-locations .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-dark.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
  .main-locations .btn-white {
    color: #212529;
    background-color: #fff;
    border-color: #fff; }
    .main-locations .btn-white:hover {
      color: #212529;
      background-color: #ececec;
      border-color: #e6e6e6; }
    .main-locations .btn-white:focus, .main-locations .btn-white.focus {
      color: #212529;
      background-color: #ececec;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
    .main-locations .btn-white.disabled, .main-locations .btn-white:disabled {
      color: #212529;
      background-color: #fff;
      border-color: #fff; }
    .main-locations .btn-white:not(:disabled):not(.disabled):active, .main-locations .btn-white:not(:disabled):not(.disabled).active, .show > .main-locations .btn-white.dropdown-toggle {
      color: #212529;
      background-color: #e6e6e6;
      border-color: #dfdfdf; }
      .main-locations .btn-white:not(:disabled):not(.disabled):active:focus, .main-locations .btn-white:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-white.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
  .main-locations .btn-purple {
    color: #fff;
    background-color: #ad6edd;
    border-color: #ad6edd; }
    .main-locations .btn-purple:hover {
      color: #fff;
      background-color: #9b4fd6;
      border-color: #9645d3; }
    .main-locations .btn-purple:focus, .main-locations .btn-purple.focus {
      color: #fff;
      background-color: #9b4fd6;
      border-color: #9645d3;
      box-shadow: 0 0 0 0.2rem rgba(185, 132, 226, 0.5); }
    .main-locations .btn-purple.disabled, .main-locations .btn-purple:disabled {
      color: #fff;
      background-color: #ad6edd;
      border-color: #ad6edd; }
    .main-locations .btn-purple:not(:disabled):not(.disabled):active, .main-locations .btn-purple:not(:disabled):not(.disabled).active, .show > .main-locations .btn-purple.dropdown-toggle {
      color: #fff;
      background-color: #9645d3;
      border-color: #903ad1; }
      .main-locations .btn-purple:not(:disabled):not(.disabled):active:focus, .main-locations .btn-purple:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-purple.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(185, 132, 226, 0.5); }
  .main-locations .btn-salmon {
    color: #212529;
    background-color: #ff977a;
    border-color: #ff977a; }
    .main-locations .btn-salmon:hover {
      color: #212529;
      background-color: #ff7954;
      border-color: #ff6f47; }
    .main-locations .btn-salmon:focus, .main-locations .btn-salmon.focus {
      color: #212529;
      background-color: #ff7954;
      border-color: #ff6f47;
      box-shadow: 0 0 0 0.2rem rgba(222, 134, 110, 0.5); }
    .main-locations .btn-salmon.disabled, .main-locations .btn-salmon:disabled {
      color: #212529;
      background-color: #ff977a;
      border-color: #ff977a; }
    .main-locations .btn-salmon:not(:disabled):not(.disabled):active, .main-locations .btn-salmon:not(:disabled):not(.disabled).active, .show > .main-locations .btn-salmon.dropdown-toggle {
      color: #fff;
      background-color: #ff6f47;
      border-color: #ff653a; }
      .main-locations .btn-salmon:not(:disabled):not(.disabled):active:focus, .main-locations .btn-salmon:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-salmon.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(222, 134, 110, 0.5); }
  .main-locations .btn-cyan {
    color: #212529;
    background-color: #35bdff;
    border-color: #35bdff; }
    .main-locations .btn-cyan:hover {
      color: #fff;
      background-color: #0fb1ff;
      border-color: #02acff; }
    .main-locations .btn-cyan:focus, .main-locations .btn-cyan.focus {
      color: #fff;
      background-color: #0fb1ff;
      border-color: #02acff;
      box-shadow: 0 0 0 0.2rem rgba(50, 166, 223, 0.5); }
    .main-locations .btn-cyan.disabled, .main-locations .btn-cyan:disabled {
      color: #212529;
      background-color: #35bdff;
      border-color: #35bdff; }
    .main-locations .btn-cyan:not(:disabled):not(.disabled):active, .main-locations .btn-cyan:not(:disabled):not(.disabled).active, .show > .main-locations .btn-cyan.dropdown-toggle {
      color: #fff;
      background-color: #02acff;
      border-color: #00a4f4; }
      .main-locations .btn-cyan:not(:disabled):not(.disabled):active:focus, .main-locations .btn-cyan:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-cyan.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(50, 166, 223, 0.5); }
  .main-locations .btn-gray {
    color: #212529;
    background-color: #ced4da;
    border-color: #ced4da; }
    .main-locations .btn-gray:hover {
      color: #212529;
      background-color: #b8c1ca;
      border-color: #b1bbc4; }
    .main-locations .btn-gray:focus, .main-locations .btn-gray.focus {
      color: #212529;
      background-color: #b8c1ca;
      border-color: #b1bbc4;
      box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5); }
    .main-locations .btn-gray.disabled, .main-locations .btn-gray:disabled {
      color: #212529;
      background-color: #ced4da;
      border-color: #ced4da; }
    .main-locations .btn-gray:not(:disabled):not(.disabled):active, .main-locations .btn-gray:not(:disabled):not(.disabled).active, .show > .main-locations .btn-gray.dropdown-toggle {
      color: #212529;
      background-color: #b1bbc4;
      border-color: #aab4bf; }
      .main-locations .btn-gray:not(:disabled):not(.disabled):active:focus, .main-locations .btn-gray:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-gray.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5); }
  .main-locations .btn-indigo {
    color: #fff;
    background-color: #502c6c;
    border-color: #502c6c; }
    .main-locations .btn-indigo:hover {
      color: #fff;
      background-color: #3c2151;
      border-color: #351d48; }
    .main-locations .btn-indigo:focus, .main-locations .btn-indigo.focus {
      color: #fff;
      background-color: #3c2151;
      border-color: #351d48;
      box-shadow: 0 0 0 0.2rem rgba(106, 76, 130, 0.5); }
    .main-locations .btn-indigo.disabled, .main-locations .btn-indigo:disabled {
      color: #fff;
      background-color: #502c6c;
      border-color: #502c6c; }
    .main-locations .btn-indigo:not(:disabled):not(.disabled):active, .main-locations .btn-indigo:not(:disabled):not(.disabled).active, .show > .main-locations .btn-indigo.dropdown-toggle {
      color: #fff;
      background-color: #351d48;
      border-color: #2e1a3f; }
      .main-locations .btn-indigo:not(:disabled):not(.disabled):active:focus, .main-locations .btn-indigo:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-indigo.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(106, 76, 130, 0.5); }
  .main-locations .btn-orange {
    color: #212529;
    background-color: #fbb500;
    border-color: #fbb500; }
    .main-locations .btn-orange:hover {
      color: #212529;
      background-color: #d59900;
      border-color: #c89000; }
    .main-locations .btn-orange:focus, .main-locations .btn-orange.focus {
      color: #212529;
      background-color: #d59900;
      border-color: #c89000;
      box-shadow: 0 0 0 0.2rem rgba(218, 159, 6, 0.5); }
    .main-locations .btn-orange.disabled, .main-locations .btn-orange:disabled {
      color: #212529;
      background-color: #fbb500;
      border-color: #fbb500; }
    .main-locations .btn-orange:not(:disabled):not(.disabled):active, .main-locations .btn-orange:not(:disabled):not(.disabled).active, .show > .main-locations .btn-orange.dropdown-toggle {
      color: #fff;
      background-color: #c89000;
      border-color: #bb8700; }
      .main-locations .btn-orange:not(:disabled):not(.disabled):active:focus, .main-locations .btn-orange:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-orange.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(218, 159, 6, 0.5); }
  .main-locations .btn-outline-primary {
    color: #1e73be;
    border-color: #1e73be; }
    .main-locations .btn-outline-primary:hover {
      color: #fff;
      background-color: #1e73be;
      border-color: #1e73be; }
    .main-locations .btn-outline-primary:focus, .main-locations .btn-outline-primary.focus {
      box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.5); }
    .main-locations .btn-outline-primary.disabled, .main-locations .btn-outline-primary:disabled {
      color: #1e73be;
      background-color: transparent; }
    .main-locations .btn-outline-primary:not(:disabled):not(.disabled):active, .main-locations .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-primary.dropdown-toggle {
      color: #fff;
      background-color: #1e73be;
      border-color: #1e73be; }
      .main-locations .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.5); }
  .main-locations .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d; }
    .main-locations .btn-outline-secondary:hover {
      color: #fff;
      background-color: #6c757d;
      border-color: #6c757d; }
    .main-locations .btn-outline-secondary:focus, .main-locations .btn-outline-secondary.focus {
      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
    .main-locations .btn-outline-secondary.disabled, .main-locations .btn-outline-secondary:disabled {
      color: #6c757d;
      background-color: transparent; }
    .main-locations .btn-outline-secondary:not(:disabled):not(.disabled):active, .main-locations .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-secondary.dropdown-toggle {
      color: #fff;
      background-color: #6c757d;
      border-color: #6c757d; }
      .main-locations .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-secondary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  .main-locations .btn-outline-success {
    color: #7dd667;
    border-color: #7dd667; }
    .main-locations .btn-outline-success:hover {
      color: #212529;
      background-color: #7dd667;
      border-color: #7dd667; }
    .main-locations .btn-outline-success:focus, .main-locations .btn-outline-success.focus {
      box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.5); }
    .main-locations .btn-outline-success.disabled, .main-locations .btn-outline-success:disabled {
      color: #7dd667;
      background-color: transparent; }
    .main-locations .btn-outline-success:not(:disabled):not(.disabled):active, .main-locations .btn-outline-success:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-success.dropdown-toggle {
      color: #212529;
      background-color: #7dd667;
      border-color: #7dd667; }
      .main-locations .btn-outline-success:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-success.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.5); }
  .main-locations .btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8; }
    .main-locations .btn-outline-info:hover {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
    .main-locations .btn-outline-info:focus, .main-locations .btn-outline-info.focus {
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
    .main-locations .btn-outline-info.disabled, .main-locations .btn-outline-info:disabled {
      color: #17a2b8;
      background-color: transparent; }
    .main-locations .btn-outline-info:not(:disabled):not(.disabled):active, .main-locations .btn-outline-info:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-info.dropdown-toggle {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
      .main-locations .btn-outline-info:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-info.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .main-locations .btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107; }
    .main-locations .btn-outline-warning:hover {
      color: #212529;
      background-color: #ffc107;
      border-color: #ffc107; }
    .main-locations .btn-outline-warning:focus, .main-locations .btn-outline-warning.focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
    .main-locations .btn-outline-warning.disabled, .main-locations .btn-outline-warning:disabled {
      color: #ffc107;
      background-color: transparent; }
    .main-locations .btn-outline-warning:not(:disabled):not(.disabled):active, .main-locations .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-warning.dropdown-toggle {
      color: #212529;
      background-color: #ffc107;
      border-color: #ffc107; }
      .main-locations .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-warning.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  .main-locations .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545; }
    .main-locations .btn-outline-danger:hover {
      color: #fff;
      background-color: #dc3545;
      border-color: #dc3545; }
    .main-locations .btn-outline-danger:focus, .main-locations .btn-outline-danger.focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
    .main-locations .btn-outline-danger.disabled, .main-locations .btn-outline-danger:disabled {
      color: #dc3545;
      background-color: transparent; }
    .main-locations .btn-outline-danger:not(:disabled):not(.disabled):active, .main-locations .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-danger.dropdown-toggle {
      color: #fff;
      background-color: #dc3545;
      border-color: #dc3545; }
      .main-locations .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-danger.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .main-locations .btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa; }
    .main-locations .btn-outline-light:hover {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
    .main-locations .btn-outline-light:focus, .main-locations .btn-outline-light.focus {
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
    .main-locations .btn-outline-light.disabled, .main-locations .btn-outline-light:disabled {
      color: #f8f9fa;
      background-color: transparent; }
    .main-locations .btn-outline-light:not(:disabled):not(.disabled):active, .main-locations .btn-outline-light:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-light.dropdown-toggle {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
      .main-locations .btn-outline-light:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-light.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .main-locations .btn-outline-dark {
    color: #343a40;
    border-color: #343a40; }
    .main-locations .btn-outline-dark:hover {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
    .main-locations .btn-outline-dark:focus, .main-locations .btn-outline-dark.focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
    .main-locations .btn-outline-dark.disabled, .main-locations .btn-outline-dark:disabled {
      color: #343a40;
      background-color: transparent; }
    .main-locations .btn-outline-dark:not(:disabled):not(.disabled):active, .main-locations .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-dark.dropdown-toggle {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
      .main-locations .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-dark.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .main-locations .btn-outline-white {
    color: #fff;
    border-color: #fff; }
    .main-locations .btn-outline-white:hover {
      color: #212529;
      background-color: #fff;
      border-color: #fff; }
    .main-locations .btn-outline-white:focus, .main-locations .btn-outline-white.focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-outline-white.disabled, .main-locations .btn-outline-white:disabled {
      color: #fff;
      background-color: transparent; }
    .main-locations .btn-outline-white:not(:disabled):not(.disabled):active, .main-locations .btn-outline-white:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-white.dropdown-toggle {
      color: #212529;
      background-color: #fff;
      border-color: #fff; }
      .main-locations .btn-outline-white:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-white.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-outline-purple {
    color: #ad6edd;
    border-color: #ad6edd; }
    .main-locations .btn-outline-purple:hover {
      color: #fff;
      background-color: #ad6edd;
      border-color: #ad6edd; }
    .main-locations .btn-outline-purple:focus, .main-locations .btn-outline-purple.focus {
      box-shadow: 0 0 0 0.2rem rgba(173, 110, 221, 0.5); }
    .main-locations .btn-outline-purple.disabled, .main-locations .btn-outline-purple:disabled {
      color: #ad6edd;
      background-color: transparent; }
    .main-locations .btn-outline-purple:not(:disabled):not(.disabled):active, .main-locations .btn-outline-purple:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-purple.dropdown-toggle {
      color: #fff;
      background-color: #ad6edd;
      border-color: #ad6edd; }
      .main-locations .btn-outline-purple:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-purple:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-purple.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(173, 110, 221, 0.5); }
  .main-locations .btn-outline-salmon {
    color: #ff977a;
    border-color: #ff977a; }
    .main-locations .btn-outline-salmon:hover {
      color: #212529;
      background-color: #ff977a;
      border-color: #ff977a; }
    .main-locations .btn-outline-salmon:focus, .main-locations .btn-outline-salmon.focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 151, 122, 0.5); }
    .main-locations .btn-outline-salmon.disabled, .main-locations .btn-outline-salmon:disabled {
      color: #ff977a;
      background-color: transparent; }
    .main-locations .btn-outline-salmon:not(:disabled):not(.disabled):active, .main-locations .btn-outline-salmon:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-salmon.dropdown-toggle {
      color: #212529;
      background-color: #ff977a;
      border-color: #ff977a; }
      .main-locations .btn-outline-salmon:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-salmon:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-salmon.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 151, 122, 0.5); }
  .main-locations .btn-outline-cyan {
    color: #35bdff;
    border-color: #35bdff; }
    .main-locations .btn-outline-cyan:hover {
      color: #212529;
      background-color: #35bdff;
      border-color: #35bdff; }
    .main-locations .btn-outline-cyan:focus, .main-locations .btn-outline-cyan.focus {
      box-shadow: 0 0 0 0.2rem rgba(53, 189, 255, 0.5); }
    .main-locations .btn-outline-cyan.disabled, .main-locations .btn-outline-cyan:disabled {
      color: #35bdff;
      background-color: transparent; }
    .main-locations .btn-outline-cyan:not(:disabled):not(.disabled):active, .main-locations .btn-outline-cyan:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-cyan.dropdown-toggle {
      color: #212529;
      background-color: #35bdff;
      border-color: #35bdff; }
      .main-locations .btn-outline-cyan:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-cyan:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-cyan.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(53, 189, 255, 0.5); }
  .main-locations .btn-outline-gray {
    color: #ced4da;
    border-color: #ced4da; }
    .main-locations .btn-outline-gray:hover {
      color: #212529;
      background-color: #ced4da;
      border-color: #ced4da; }
    .main-locations .btn-outline-gray:focus, .main-locations .btn-outline-gray.focus {
      box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5); }
    .main-locations .btn-outline-gray.disabled, .main-locations .btn-outline-gray:disabled {
      color: #ced4da;
      background-color: transparent; }
    .main-locations .btn-outline-gray:not(:disabled):not(.disabled):active, .main-locations .btn-outline-gray:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-gray.dropdown-toggle {
      color: #212529;
      background-color: #ced4da;
      border-color: #ced4da; }
      .main-locations .btn-outline-gray:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-gray:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-gray.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5); }
  .main-locations .btn-outline-indigo {
    color: #502c6c;
    border-color: #502c6c; }
    .main-locations .btn-outline-indigo:hover {
      color: #fff;
      background-color: #502c6c;
      border-color: #502c6c; }
    .main-locations .btn-outline-indigo:focus, .main-locations .btn-outline-indigo.focus {
      box-shadow: 0 0 0 0.2rem rgba(80, 44, 108, 0.5); }
    .main-locations .btn-outline-indigo.disabled, .main-locations .btn-outline-indigo:disabled {
      color: #502c6c;
      background-color: transparent; }
    .main-locations .btn-outline-indigo:not(:disabled):not(.disabled):active, .main-locations .btn-outline-indigo:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-indigo.dropdown-toggle {
      color: #fff;
      background-color: #502c6c;
      border-color: #502c6c; }
      .main-locations .btn-outline-indigo:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-indigo:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-indigo.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(80, 44, 108, 0.5); }
  .main-locations .btn-outline-orange {
    color: #fbb500;
    border-color: #fbb500; }
    .main-locations .btn-outline-orange:hover {
      color: #212529;
      background-color: #fbb500;
      border-color: #fbb500; }
    .main-locations .btn-outline-orange:focus, .main-locations .btn-outline-orange.focus {
      box-shadow: 0 0 0 0.2rem rgba(251, 181, 0, 0.5); }
    .main-locations .btn-outline-orange.disabled, .main-locations .btn-outline-orange:disabled {
      color: #fbb500;
      background-color: transparent; }
    .main-locations .btn-outline-orange:not(:disabled):not(.disabled):active, .main-locations .btn-outline-orange:not(:disabled):not(.disabled).active, .show > .main-locations .btn-outline-orange.dropdown-toggle {
      color: #212529;
      background-color: #fbb500;
      border-color: #fbb500; }
      .main-locations .btn-outline-orange:not(:disabled):not(.disabled):active:focus, .main-locations .btn-outline-orange:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-outline-orange.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(251, 181, 0, 0.5); }
  .main-locations .btn-link {
    font-weight: 400;
    color: #182A5C;
    text-decoration: none; }
    .main-locations .btn-link:hover {
      color: #080e1f;
      text-decoration: underline; }
    .main-locations .btn-link:focus, .main-locations .btn-link.focus {
      text-decoration: underline; }
    .main-locations .btn-link:disabled, .main-locations .btn-link.disabled {
      color: #6c757d;
      pointer-events: none; }
  .main-locations .btn-lg, .main-locations .btn-group-lg > .btn {
    padding: 0.65rem 2rem;
    font-size: 1.15rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .main-locations .btn-sm, .main-locations .btn-group-sm > .btn {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .main-locations .btn-block {
    display: block;
    width: 100%; }
    .main-locations .btn-block + .btn-block {
      margin-top: 0.5rem; }
  .main-locations input[type="submit"].btn-block,
  .main-locations input[type="reset"].btn-block,
  .main-locations input[type="button"].btn-block {
    width: 100%; }
  .main-locations .fade {
    transition: opacity 0.15s linear; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .fade {
        transition: none; } }
    .main-locations .fade:not(.show) {
      opacity: 0; }
  .main-locations .collapse:not(.show) {
    display: none; }
  .main-locations .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .collapsing {
        transition: none; } }
  .main-locations .dropup,
  .main-locations .dropright,
  .main-locations .dropdown,
  .main-locations .dropleft {
    position: relative; }
  .main-locations .dropdown-toggle {
    white-space: nowrap; }
    .main-locations .dropdown-toggle::after {
      display: inline-block;
      margin-left: 0.255em;
      vertical-align: 0.255em;
      content: "";
      border-top: 0.3em solid;
      border-right: 0.3em solid transparent;
      border-bottom: 0;
      border-left: 0.3em solid transparent; }
    .main-locations .dropdown-toggle:empty::after {
      margin-left: 0; }
  .main-locations .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(50, 57, 68, 0.15);
    border-radius: 0.25rem; }
  .main-locations .dropdown-menu-left {
    right: auto;
    left: 0; }
  .main-locations .dropdown-menu-right {
    right: 0;
    left: auto; }
  @media (min-width: 576px) {
    .main-locations .dropdown-menu-sm-left {
      right: auto;
      left: 0; }
    .main-locations .dropdown-menu-sm-right {
      right: 0;
      left: auto; } }
  @media (min-width: 768px) {
    .main-locations .dropdown-menu-md-left {
      right: auto;
      left: 0; }
    .main-locations .dropdown-menu-md-right {
      right: 0;
      left: auto; } }
  @media (min-width: 992px) {
    .main-locations .dropdown-menu-lg-left {
      right: auto;
      left: 0; }
    .main-locations .dropdown-menu-lg-right {
      right: 0;
      left: auto; } }
  @media (min-width: 1200px) {
    .main-locations .dropdown-menu-xl-left {
      right: auto;
      left: 0; }
    .main-locations .dropdown-menu-xl-right {
      right: 0;
      left: auto; } }
  .main-locations .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem; }
  .main-locations .dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent; }
  .main-locations .dropup .dropdown-toggle:empty::after {
    margin-left: 0; }
  .main-locations .dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem; }
  .main-locations .dropright .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid; }
  .main-locations .dropright .dropdown-toggle:empty::after {
    margin-left: 0; }
  .main-locations .dropright .dropdown-toggle::after {
    vertical-align: 0; }
  .main-locations .dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem; }
  .main-locations .dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: ""; }
  .main-locations .dropleft .dropdown-toggle::after {
    display: none; }
  .main-locations .dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent; }
  .main-locations .dropleft .dropdown-toggle:empty::after {
    margin-left: 0; }
  .main-locations .dropleft .dropdown-toggle::before {
    vertical-align: 0; }
  .main-locations .dropdown-menu[x-placement^="top"], .main-locations .dropdown-menu[x-placement^="right"], .main-locations .dropdown-menu[x-placement^="bottom"], .main-locations .dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto; }
  .main-locations .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef; }
  .main-locations .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.45rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0; }
    .main-locations .dropdown-item:hover, .main-locations .dropdown-item:focus {
      color: #16181b;
      text-decoration: none;
      background-color: #f8f9fa; }
    .main-locations .dropdown-item.active, .main-locations .dropdown-item:active {
      color: #fff;
      text-decoration: none;
      background-color: #1e73be; }
    .main-locations .dropdown-item.disabled, .main-locations .dropdown-item:disabled {
      color: #6c757d;
      pointer-events: none;
      background-color: transparent; }
  .main-locations .dropdown-menu.show {
    display: block; }
  .main-locations .dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap; }
  .main-locations .dropdown-item-text {
    display: block;
    padding: 0.45rem 1.5rem;
    color: #212529; }
  .main-locations .btn-group,
  .main-locations .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle; }
    .main-locations .btn-group > .btn,
    .main-locations .btn-group-vertical > .btn {
      position: relative;
      flex: 1 1 auto; }
      .main-locations .btn-group > .btn:hover,
      .main-locations .btn-group-vertical > .btn:hover {
        z-index: 1; }
      .main-locations .btn-group > .btn:focus, .main-locations .btn-group > .btn:active, .main-locations .btn-group > .btn.active,
      .main-locations .btn-group-vertical > .btn:focus,
      .main-locations .btn-group-vertical > .btn:active,
      .main-locations .btn-group-vertical > .btn.active {
        z-index: 1; }
  .main-locations .btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; }
    .main-locations .btn-toolbar .input-group {
      width: auto; }
  .main-locations .btn-group > .btn:not(:first-child),
  .main-locations .btn-group > .btn-group:not(:first-child) {
    margin-left: -1px; }
  .main-locations .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  .main-locations .btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .main-locations .btn-group > .btn:not(:first-child),
  .main-locations .btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .main-locations .dropdown-toggle-split {
    padding-right: 0.9rem;
    padding-left: 0.9rem; }
    .main-locations .dropdown-toggle-split::after, .dropup .main-locations .dropdown-toggle-split::after, .dropright .main-locations .dropdown-toggle-split::after {
      margin-left: 0; }
    .dropleft .main-locations .dropdown-toggle-split::before {
      margin-right: 0; }
  .main-locations .btn-sm + .dropdown-toggle-split, .main-locations .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem; }
  .main-locations .btn-lg + .dropdown-toggle-split, .main-locations .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 1.5rem;
    padding-left: 1.5rem; }
  .main-locations .btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    .main-locations .btn-group-vertical > .btn,
    .main-locations .btn-group-vertical > .btn-group {
      width: 100%; }
    .main-locations .btn-group-vertical > .btn:not(:first-child),
    .main-locations .btn-group-vertical > .btn-group:not(:first-child) {
      margin-top: -1px; }
    .main-locations .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
    .main-locations .btn-group-vertical > .btn-group:not(:last-child) > .btn {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
    .main-locations .btn-group-vertical > .btn:not(:first-child),
    .main-locations .btn-group-vertical > .btn-group:not(:first-child) > .btn {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .main-locations .btn-group-toggle > .btn,
  .main-locations .btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0; }
    .main-locations .btn-group-toggle > .btn input[type="radio"],
    .main-locations .btn-group-toggle > .btn input[type="checkbox"],
    .main-locations .btn-group-toggle > .btn-group > .btn input[type="radio"],
    .main-locations .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
      position: absolute;
      clip: rect(0, 0, 0, 0);
      pointer-events: none; }
  .main-locations .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  .main-locations .nav-link {
    display: block;
    padding: 0.8rem 1rem; }
    .main-locations .nav-link:hover, .main-locations .nav-link:focus {
      text-decoration: none; }
    .main-locations .nav-link.disabled {
      color: #6c757d;
      pointer-events: none;
      cursor: default; }
  .main-locations .nav-tabs {
    border-bottom: 1px solid #dee2e6; }
    .main-locations .nav-tabs .nav-item {
      margin-bottom: -1px; }
    .main-locations .nav-tabs .nav-link {
      border: 1px solid transparent;
      border-top-left-radius: 0.25rem;
      border-top-right-radius: 0.25rem; }
      .main-locations .nav-tabs .nav-link:hover, .main-locations .nav-tabs .nav-link:focus {
        border-color: #e9ecef #e9ecef #dee2e6; }
      .main-locations .nav-tabs .nav-link.disabled {
        color: #6c757d;
        background-color: transparent;
        border-color: transparent; }
    .main-locations .nav-tabs .nav-link.active,
    .main-locations .nav-tabs .nav-item.show .nav-link {
      color: #495057;
      background-color: #fff;
      border-color: #dee2e6 #dee2e6 #fff; }
    .main-locations .nav-tabs .dropdown-menu {
      margin-top: -1px;
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .main-locations .nav-pills .nav-link {
    border-radius: 0.25rem; }
  .main-locations .nav-pills .nav-link.active,
  .main-locations .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1e73be; }
  .main-locations .nav-fill > .nav-link,
  .main-locations .nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center; }
  .main-locations .nav-justified > .nav-link,
  .main-locations .nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center; }
  .main-locations .tab-content > .tab-pane {
    display: none; }
  .main-locations .tab-content > .active {
    display: block; }
  .main-locations .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem; }
    .main-locations .navbar .container,
    .main-locations .navbar .container-fluid,
    .main-locations .navbar .container-sm,
    .main-locations .navbar .container-md,
    .main-locations .navbar .container-lg,
    .main-locations .navbar .container-xl {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
  .main-locations .navbar-brand {
    display: inline-block;
    padding-top: 0.68rem;
    padding-bottom: 0.68rem;
    margin-right: 1rem;
    font-size: 1.15rem;
    line-height: inherit;
    white-space: nowrap; }
    .main-locations .navbar-brand:hover, .main-locations .navbar-brand:focus {
      text-decoration: none; }
  .main-locations .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .main-locations .navbar-nav .nav-link {
      padding-right: 0;
      padding-left: 0; }
    .main-locations .navbar-nav .dropdown-menu {
      position: static;
      float: none; }
  .main-locations .navbar-text {
    display: inline-block;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem; }
  .main-locations .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center; }
  .main-locations .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.15rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem; }
    .main-locations .navbar-toggler:hover, .main-locations .navbar-toggler:focus {
      text-decoration: none; }
  .main-locations .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%; }
  @media (max-width: 575.98px) {
    .main-locations .navbar-expand-sm > .container,
    .main-locations .navbar-expand-sm > .container-fluid,
    .main-locations .navbar-expand-sm > .container-sm,
    .main-locations .navbar-expand-sm > .container-md,
    .main-locations .navbar-expand-sm > .container-lg,
    .main-locations .navbar-expand-sm > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 576px) {
    .main-locations .navbar-expand-sm {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .main-locations .navbar-expand-sm .navbar-nav {
        flex-direction: row; }
        .main-locations .navbar-expand-sm .navbar-nav .dropdown-menu {
          position: absolute; }
        .main-locations .navbar-expand-sm .navbar-nav .nav-link {
          padding-right: 0.9rem;
          padding-left: 0.9rem; }
      .main-locations .navbar-expand-sm > .container,
      .main-locations .navbar-expand-sm > .container-fluid,
      .main-locations .navbar-expand-sm > .container-sm,
      .main-locations .navbar-expand-sm > .container-md,
      .main-locations .navbar-expand-sm > .container-lg,
      .main-locations .navbar-expand-sm > .container-xl {
        flex-wrap: nowrap; }
      .main-locations .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .main-locations .navbar-expand-sm .navbar-toggler {
        display: none; } }
  @media (max-width: 767.98px) {
    .main-locations .navbar-expand-md > .container,
    .main-locations .navbar-expand-md > .container-fluid,
    .main-locations .navbar-expand-md > .container-sm,
    .main-locations .navbar-expand-md > .container-md,
    .main-locations .navbar-expand-md > .container-lg,
    .main-locations .navbar-expand-md > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 768px) {
    .main-locations .navbar-expand-md {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .main-locations .navbar-expand-md .navbar-nav {
        flex-direction: row; }
        .main-locations .navbar-expand-md .navbar-nav .dropdown-menu {
          position: absolute; }
        .main-locations .navbar-expand-md .navbar-nav .nav-link {
          padding-right: 0.9rem;
          padding-left: 0.9rem; }
      .main-locations .navbar-expand-md > .container,
      .main-locations .navbar-expand-md > .container-fluid,
      .main-locations .navbar-expand-md > .container-sm,
      .main-locations .navbar-expand-md > .container-md,
      .main-locations .navbar-expand-md > .container-lg,
      .main-locations .navbar-expand-md > .container-xl {
        flex-wrap: nowrap; }
      .main-locations .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .main-locations .navbar-expand-md .navbar-toggler {
        display: none; } }
  @media (max-width: 991.98px) {
    .main-locations .navbar-expand-lg > .container,
    .main-locations .navbar-expand-lg > .container-fluid,
    .main-locations .navbar-expand-lg > .container-sm,
    .main-locations .navbar-expand-lg > .container-md,
    .main-locations .navbar-expand-lg > .container-lg,
    .main-locations .navbar-expand-lg > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 992px) {
    .main-locations .navbar-expand-lg {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .main-locations .navbar-expand-lg .navbar-nav {
        flex-direction: row; }
        .main-locations .navbar-expand-lg .navbar-nav .dropdown-menu {
          position: absolute; }
        .main-locations .navbar-expand-lg .navbar-nav .nav-link {
          padding-right: 0.9rem;
          padding-left: 0.9rem; }
      .main-locations .navbar-expand-lg > .container,
      .main-locations .navbar-expand-lg > .container-fluid,
      .main-locations .navbar-expand-lg > .container-sm,
      .main-locations .navbar-expand-lg > .container-md,
      .main-locations .navbar-expand-lg > .container-lg,
      .main-locations .navbar-expand-lg > .container-xl {
        flex-wrap: nowrap; }
      .main-locations .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .main-locations .navbar-expand-lg .navbar-toggler {
        display: none; } }
  @media (max-width: 1199.98px) {
    .main-locations .navbar-expand-xl > .container,
    .main-locations .navbar-expand-xl > .container-fluid,
    .main-locations .navbar-expand-xl > .container-sm,
    .main-locations .navbar-expand-xl > .container-md,
    .main-locations .navbar-expand-xl > .container-lg,
    .main-locations .navbar-expand-xl > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 1200px) {
    .main-locations .navbar-expand-xl {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .main-locations .navbar-expand-xl .navbar-nav {
        flex-direction: row; }
        .main-locations .navbar-expand-xl .navbar-nav .dropdown-menu {
          position: absolute; }
        .main-locations .navbar-expand-xl .navbar-nav .nav-link {
          padding-right: 0.9rem;
          padding-left: 0.9rem; }
      .main-locations .navbar-expand-xl > .container,
      .main-locations .navbar-expand-xl > .container-fluid,
      .main-locations .navbar-expand-xl > .container-sm,
      .main-locations .navbar-expand-xl > .container-md,
      .main-locations .navbar-expand-xl > .container-lg,
      .main-locations .navbar-expand-xl > .container-xl {
        flex-wrap: nowrap; }
      .main-locations .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .main-locations .navbar-expand-xl .navbar-toggler {
        display: none; } }
  .main-locations .navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .main-locations .navbar-expand > .container,
    .main-locations .navbar-expand > .container-fluid,
    .main-locations .navbar-expand > .container-sm,
    .main-locations .navbar-expand > .container-md,
    .main-locations .navbar-expand > .container-lg,
    .main-locations .navbar-expand > .container-xl {
      padding-right: 0;
      padding-left: 0; }
    .main-locations .navbar-expand .navbar-nav {
      flex-direction: row; }
      .main-locations .navbar-expand .navbar-nav .dropdown-menu {
        position: absolute; }
      .main-locations .navbar-expand .navbar-nav .nav-link {
        padding-right: 0.9rem;
        padding-left: 0.9rem; }
    .main-locations .navbar-expand > .container,
    .main-locations .navbar-expand > .container-fluid,
    .main-locations .navbar-expand > .container-sm,
    .main-locations .navbar-expand > .container-md,
    .main-locations .navbar-expand > .container-lg,
    .main-locations .navbar-expand > .container-xl {
      flex-wrap: nowrap; }
    .main-locations .navbar-expand .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .main-locations .navbar-expand .navbar-toggler {
      display: none; }
  .main-locations .navbar-light .navbar-brand {
    color: rgba(50, 57, 68, 0.9); }
    .main-locations .navbar-light .navbar-brand:hover, .main-locations .navbar-light .navbar-brand:focus {
      color: rgba(50, 57, 68, 0.9); }
  .main-locations .navbar-light .navbar-nav .nav-link {
    color: rgba(50, 57, 68, 0.5); }
    .main-locations .navbar-light .navbar-nav .nav-link:hover, .main-locations .navbar-light .navbar-nav .nav-link:focus {
      color: rgba(50, 57, 68, 0.7); }
    .main-locations .navbar-light .navbar-nav .nav-link.disabled {
      color: rgba(50, 57, 68, 0.3); }
  .main-locations .navbar-light .navbar-nav .show > .nav-link,
  .main-locations .navbar-light .navbar-nav .active > .nav-link,
  .main-locations .navbar-light .navbar-nav .nav-link.show,
  .main-locations .navbar-light .navbar-nav .nav-link.active {
    color: rgba(50, 57, 68, 0.9); }
  .main-locations .navbar-light .navbar-toggler {
    color: rgba(50, 57, 68, 0.5);
    border-color: rgba(50, 57, 68, 0.1); }
  .main-locations .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2850, 57, 68, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  .main-locations .navbar-light .navbar-text {
    color: rgba(50, 57, 68, 0.5); }
    .main-locations .navbar-light .navbar-text a {
      color: rgba(50, 57, 68, 0.9); }
      .main-locations .navbar-light .navbar-text a:hover, .main-locations .navbar-light .navbar-text a:focus {
        color: rgba(50, 57, 68, 0.9); }
  .main-locations .navbar-dark .navbar-brand {
    color: #fff; }
    .main-locations .navbar-dark .navbar-brand:hover, .main-locations .navbar-dark .navbar-brand:focus {
      color: #fff; }
  .main-locations .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85); }
    .main-locations .navbar-dark .navbar-nav .nav-link:hover, .main-locations .navbar-dark .navbar-nav .nav-link:focus {
      color: white; }
    .main-locations .navbar-dark .navbar-nav .nav-link.disabled {
      color: rgba(255, 255, 255, 0.25); }
  .main-locations .navbar-dark .navbar-nav .show > .nav-link,
  .main-locations .navbar-dark .navbar-nav .active > .nav-link,
  .main-locations .navbar-dark .navbar-nav .nav-link.show,
  .main-locations .navbar-dark .navbar-nav .nav-link.active {
    color: #fff; }
  .main-locations .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.1); }
  .main-locations .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  .main-locations .navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.85); }
    .main-locations .navbar-dark .navbar-text a {
      color: #fff; }
      .main-locations .navbar-dark .navbar-text a:hover, .main-locations .navbar-dark .navbar-text a:focus {
        color: #fff; }
  .main-locations .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(50, 57, 68, 0.125);
    border-radius: 0.25rem; }
    .main-locations .card > hr {
      margin-right: 0;
      margin-left: 0; }
    .main-locations .card > .list-group {
      border-top: inherit;
      border-bottom: inherit; }
      .main-locations .card > .list-group:first-child {
        border-top-width: 0;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px); }
      .main-locations .card > .list-group:last-child {
        border-bottom-width: 0;
        border-bottom-right-radius: calc(0.25rem - 1px);
        border-bottom-left-radius: calc(0.25rem - 1px); }
    .main-locations .card > .card-header + .list-group,
    .main-locations .card > .list-group + .card-footer {
      border-top: 0; }
  .main-locations .card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem; }
  .main-locations .card-title {
    margin-bottom: 0.75rem; }
  .main-locations .card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0; }
  .main-locations .card-text:last-child {
    margin-bottom: 0; }
  .main-locations .card-link:hover {
    text-decoration: none; }
  .main-locations .card-link + .card-link {
    margin-left: 1.25rem; }
  .main-locations .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(50, 57, 68, 0.03);
    border-bottom: 1px solid rgba(50, 57, 68, 0.125); }
    .main-locations .card-header:first-child {
      border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
  .main-locations .card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(50, 57, 68, 0.03);
    border-top: 1px solid rgba(50, 57, 68, 0.125); }
    .main-locations .card-footer:last-child {
      border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
  .main-locations .card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0; }
  .main-locations .card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
  .main-locations .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 1px); }
  .main-locations .card-img,
  .main-locations .card-img-top,
  .main-locations .card-img-bottom {
    flex-shrink: 0;
    width: 100%; }
  .main-locations .card-img,
  .main-locations .card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px); }
  .main-locations .card-img,
  .main-locations .card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px); }
  .main-locations .card-deck .card {
    margin-bottom: 15px; }
  @media (min-width: 576px) {
    .main-locations .card-deck {
      display: flex;
      flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px; }
      .main-locations .card-deck .card {
        flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px; } }
  .main-locations .card-group > .card {
    margin-bottom: 15px; }
  @media (min-width: 576px) {
    .main-locations .card-group {
      display: flex;
      flex-flow: row wrap; }
      .main-locations .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0; }
        .main-locations .card-group > .card + .card {
          margin-left: 0;
          border-left: 0; }
        .main-locations .card-group > .card:not(:last-child) {
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
          .main-locations .card-group > .card:not(:last-child) .card-img-top,
          .main-locations .card-group > .card:not(:last-child) .card-header {
            border-top-right-radius: 0; }
          .main-locations .card-group > .card:not(:last-child) .card-img-bottom,
          .main-locations .card-group > .card:not(:last-child) .card-footer {
            border-bottom-right-radius: 0; }
        .main-locations .card-group > .card:not(:first-child) {
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
          .main-locations .card-group > .card:not(:first-child) .card-img-top,
          .main-locations .card-group > .card:not(:first-child) .card-header {
            border-top-left-radius: 0; }
          .main-locations .card-group > .card:not(:first-child) .card-img-bottom,
          .main-locations .card-group > .card:not(:first-child) .card-footer {
            border-bottom-left-radius: 0; } }
  .main-locations .card-columns .card {
    margin-bottom: 0.75rem; }
  @media (min-width: 576px) {
    .main-locations .card-columns {
      column-count: 3;
      column-gap: 1.25rem;
      orphans: 1;
      widows: 1; }
      .main-locations .card-columns .card {
        display: inline-block;
        width: 100%; } }
  .main-locations .accordion {
    overflow-anchor: none; }
    .main-locations .accordion > .card {
      overflow: hidden; }
      .main-locations .accordion > .card:not(:last-of-type) {
        border-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0; }
      .main-locations .accordion > .card:not(:first-of-type) {
        border-top-left-radius: 0;
        border-top-right-radius: 0; }
      .main-locations .accordion > .card > .card-header {
        border-radius: 0;
        margin-bottom: -1px; }
  .main-locations .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem; }
  .main-locations .page-link {
    position: relative;
    display: block;
    padding: 0.75rem 1rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #182A5C;
    background-color: #fff;
    border: 1px solid #dee2e6; }
    .main-locations .page-link:hover {
      z-index: 2;
      color: #080e1f;
      text-decoration: none;
      background-color: #e9ecef;
      border-color: #dee2e6; }
    .main-locations .page-link:focus {
      z-index: 3;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.25); }
  .main-locations .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .main-locations .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem; }
  .main-locations .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #1e73be;
    border-color: #1e73be; }
  .main-locations .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6; }
  .main-locations .pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.15rem;
    line-height: 1.5; }
  .main-locations .pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem; }
  .main-locations .pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem; }
  .main-locations .pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5; }
  .main-locations .pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem; }
  .main-locations .pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem; }
  .main-locations .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 84%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .badge {
        transition: none; } }
    .main-locations a.badge:hover, .main-locations a.badge:focus {
      text-decoration: none; }
    .main-locations .badge:empty {
      display: none; }
  .main-locations .btn .badge {
    position: relative;
    top: -1px; }
  .main-locations .badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem; }
  .main-locations .badge-primary {
    color: #fff;
    background-color: #1e73be; }
    .main-locations a.badge-primary:hover, .main-locations a.badge-primary:focus {
      color: #fff;
      background-color: #175892; }
    .main-locations a.badge-primary:focus, .main-locations a.badge-primary.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.5); }
  .main-locations .badge-secondary {
    color: #fff;
    background-color: #6c757d; }
    .main-locations a.badge-secondary:hover, .main-locations a.badge-secondary:focus {
      color: #fff;
      background-color: #545b62; }
    .main-locations a.badge-secondary:focus, .main-locations a.badge-secondary.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  .main-locations .badge-success {
    color: #212529;
    background-color: #7dd667; }
    .main-locations a.badge-success:hover, .main-locations a.badge-success:focus {
      color: #212529;
      background-color: #5bcb3f; }
    .main-locations a.badge-success:focus, .main-locations a.badge-success.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, 0.5); }
  .main-locations .badge-info {
    color: #fff;
    background-color: #17a2b8; }
    .main-locations a.badge-info:hover, .main-locations a.badge-info:focus {
      color: #fff;
      background-color: #117a8b; }
    .main-locations a.badge-info:focus, .main-locations a.badge-info.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .main-locations .badge-warning {
    color: #212529;
    background-color: #ffc107; }
    .main-locations a.badge-warning:hover, .main-locations a.badge-warning:focus {
      color: #212529;
      background-color: #d39e00; }
    .main-locations a.badge-warning:focus, .main-locations a.badge-warning.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  .main-locations .badge-danger {
    color: #fff;
    background-color: #dc3545; }
    .main-locations a.badge-danger:hover, .main-locations a.badge-danger:focus {
      color: #fff;
      background-color: #bd2130; }
    .main-locations a.badge-danger:focus, .main-locations a.badge-danger.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .main-locations .badge-light {
    color: #212529;
    background-color: #f8f9fa; }
    .main-locations a.badge-light:hover, .main-locations a.badge-light:focus {
      color: #212529;
      background-color: #dae0e5; }
    .main-locations a.badge-light:focus, .main-locations a.badge-light.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .main-locations .badge-dark {
    color: #fff;
    background-color: #343a40; }
    .main-locations a.badge-dark:hover, .main-locations a.badge-dark:focus {
      color: #fff;
      background-color: #1d2124; }
    .main-locations a.badge-dark:focus, .main-locations a.badge-dark.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .main-locations .badge-white {
    color: #212529;
    background-color: #fff; }
    .main-locations a.badge-white:hover, .main-locations a.badge-white:focus {
      color: #212529;
      background-color: #e6e6e6; }
    .main-locations a.badge-white:focus, .main-locations a.badge-white.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .badge-purple {
    color: #fff;
    background-color: #ad6edd; }
    .main-locations a.badge-purple:hover, .main-locations a.badge-purple:focus {
      color: #fff;
      background-color: #9645d3; }
    .main-locations a.badge-purple:focus, .main-locations a.badge-purple.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(173, 110, 221, 0.5); }
  .main-locations .badge-salmon {
    color: #212529;
    background-color: #ff977a; }
    .main-locations a.badge-salmon:hover, .main-locations a.badge-salmon:focus {
      color: #212529;
      background-color: #ff6f47; }
    .main-locations a.badge-salmon:focus, .main-locations a.badge-salmon.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(255, 151, 122, 0.5); }
  .main-locations .badge-cyan {
    color: #212529;
    background-color: #35bdff; }
    .main-locations a.badge-cyan:hover, .main-locations a.badge-cyan:focus {
      color: #212529;
      background-color: #02acff; }
    .main-locations a.badge-cyan:focus, .main-locations a.badge-cyan.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(53, 189, 255, 0.5); }
  .main-locations .badge-gray {
    color: #212529;
    background-color: #ced4da; }
    .main-locations a.badge-gray:hover, .main-locations a.badge-gray:focus {
      color: #212529;
      background-color: #b1bbc4; }
    .main-locations a.badge-gray:focus, .main-locations a.badge-gray.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5); }
  .main-locations .badge-indigo {
    color: #fff;
    background-color: #502c6c; }
    .main-locations a.badge-indigo:hover, .main-locations a.badge-indigo:focus {
      color: #fff;
      background-color: #351d48; }
    .main-locations a.badge-indigo:focus, .main-locations a.badge-indigo.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(80, 44, 108, 0.5); }
  .main-locations .badge-orange {
    color: #212529;
    background-color: #fbb500; }
    .main-locations a.badge-orange:hover, .main-locations a.badge-orange:focus {
      color: #212529;
      background-color: #c89000; }
    .main-locations a.badge-orange:focus, .main-locations a.badge-orange.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(251, 181, 0, 0.5); }
  .main-locations .list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem; }
  .main-locations .list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit; }
    .main-locations .list-group-item-action:hover, .main-locations .list-group-item-action:focus {
      z-index: 1;
      color: #495057;
      text-decoration: none;
      background-color: #f8f9fa; }
    .main-locations .list-group-item-action:active {
      color: #212529;
      background-color: #e9ecef; }
  .main-locations .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(50, 57, 68, 0.125); }
    .main-locations .list-group-item:first-child {
      border-top-left-radius: inherit;
      border-top-right-radius: inherit; }
    .main-locations .list-group-item:last-child {
      border-bottom-right-radius: inherit;
      border-bottom-left-radius: inherit; }
    .main-locations .list-group-item.disabled, .main-locations .list-group-item:disabled {
      color: #6c757d;
      pointer-events: none;
      background-color: #fff; }
    .main-locations .list-group-item.active {
      z-index: 2;
      color: #fff;
      background-color: #1e73be;
      border-color: #1e73be; }
    .main-locations .list-group-item + .list-group-item {
      border-top-width: 0; }
      .main-locations .list-group-item + .list-group-item.active {
        margin-top: -1px;
        border-top-width: 1px; }
  .main-locations .list-group-horizontal {
    flex-direction: row; }
    .main-locations .list-group-horizontal > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .main-locations .list-group-horizontal > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .main-locations .list-group-horizontal > .list-group-item.active {
      margin-top: 0; }
    .main-locations .list-group-horizontal > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .main-locations .list-group-horizontal > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; }
  @media (min-width: 576px) {
    .main-locations .list-group-horizontal-sm {
      flex-direction: row; }
      .main-locations .list-group-horizontal-sm > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .main-locations .list-group-horizontal-sm > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .main-locations .list-group-horizontal-sm > .list-group-item.active {
        margin-top: 0; }
      .main-locations .list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .main-locations .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  @media (min-width: 768px) {
    .main-locations .list-group-horizontal-md {
      flex-direction: row; }
      .main-locations .list-group-horizontal-md > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .main-locations .list-group-horizontal-md > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .main-locations .list-group-horizontal-md > .list-group-item.active {
        margin-top: 0; }
      .main-locations .list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .main-locations .list-group-horizontal-md > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  @media (min-width: 992px) {
    .main-locations .list-group-horizontal-lg {
      flex-direction: row; }
      .main-locations .list-group-horizontal-lg > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .main-locations .list-group-horizontal-lg > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .main-locations .list-group-horizontal-lg > .list-group-item.active {
        margin-top: 0; }
      .main-locations .list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .main-locations .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  @media (min-width: 1200px) {
    .main-locations .list-group-horizontal-xl {
      flex-direction: row; }
      .main-locations .list-group-horizontal-xl > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .main-locations .list-group-horizontal-xl > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .main-locations .list-group-horizontal-xl > .list-group-item.active {
        margin-top: 0; }
      .main-locations .list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .main-locations .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  .main-locations .list-group-flush {
    border-radius: 0; }
    .main-locations .list-group-flush > .list-group-item {
      border-width: 0 0 1px; }
      .main-locations .list-group-flush > .list-group-item:last-child {
        border-bottom-width: 0; }
  .main-locations .list-group-item-primary {
    color: #285783;
    background-color: #c0d8ed; }
    .main-locations .list-group-item-primary.list-group-item-action:hover, .main-locations .list-group-item-primary.list-group-item-action:focus {
      color: #285783;
      background-color: #accce7; }
    .main-locations .list-group-item-primary.list-group-item-action.active {
      color: #fff;
      background-color: #285783;
      border-color: #285783; }
  .main-locations .list-group-item-secondary {
    color: #505862;
    background-color: #d6d8db; }
    .main-locations .list-group-item-secondary.list-group-item-action:hover, .main-locations .list-group-item-secondary.list-group-item-action:focus {
      color: #505862;
      background-color: #c8cbcf; }
    .main-locations .list-group-item-secondary.list-group-item-action.active {
      color: #fff;
      background-color: #505862;
      border-color: #505862; }
  .main-locations .list-group-item-success {
    color: #598b56;
    background-color: #dbf4d4; }
    .main-locations .list-group-item-success.list-group-item-action:hover, .main-locations .list-group-item-success.list-group-item-action:focus {
      color: #598b56;
      background-color: #caefc0; }
    .main-locations .list-group-item-success.list-group-item-action.active {
      color: #fff;
      background-color: #598b56;
      border-color: #598b56; }
  .main-locations .list-group-item-info {
    color: #247080;
    background-color: #bee5eb; }
    .main-locations .list-group-item-info.list-group-item-action:hover, .main-locations .list-group-item-info.list-group-item-action:focus {
      color: #247080;
      background-color: #abdde5; }
    .main-locations .list-group-item-info.list-group-item-action.active {
      color: #fff;
      background-color: #247080;
      border-color: #247080; }
  .main-locations .list-group-item-warning {
    color: #9d8024;
    background-color: #ffeeba; }
    .main-locations .list-group-item-warning.list-group-item-action:hover, .main-locations .list-group-item-warning.list-group-item-action:focus {
      color: #9d8024;
      background-color: #ffe8a1; }
    .main-locations .list-group-item-warning.list-group-item-action.active {
      color: #fff;
      background-color: #9d8024;
      border-color: #9d8024; }
  .main-locations .list-group-item-danger {
    color: #8a3745;
    background-color: #f5c6cb; }
    .main-locations .list-group-item-danger.list-group-item-action:hover, .main-locations .list-group-item-danger.list-group-item-action:focus {
      color: #8a3745;
      background-color: #f1b0b7; }
    .main-locations .list-group-item-danger.list-group-item-action.active {
      color: #fff;
      background-color: #8a3745;
      border-color: #8a3745; }
  .main-locations .list-group-item-light {
    color: #999da3;
    background-color: #fdfdfe; }
    .main-locations .list-group-item-light.list-group-item-action:hover, .main-locations .list-group-item-light.list-group-item-action:focus {
      color: #999da3;
      background-color: #ececf6; }
    .main-locations .list-group-item-light.list-group-item-action.active {
      color: #fff;
      background-color: #999da3;
      border-color: #999da3; }
  .main-locations .list-group-item-dark {
    color: #333a42;
    background-color: #c6c8ca; }
    .main-locations .list-group-item-dark.list-group-item-action:hover, .main-locations .list-group-item-dark.list-group-item-action:focus {
      color: #333a42;
      background-color: #b9bbbe; }
    .main-locations .list-group-item-dark.list-group-item-action.active {
      color: #fff;
      background-color: #333a42;
      border-color: #333a42; }
  .main-locations .list-group-item-white {
    color: #9da0a5;
    background-color: white; }
    .main-locations .list-group-item-white.list-group-item-action:hover, .main-locations .list-group-item-white.list-group-item-action:focus {
      color: #9da0a5;
      background-color: #f2f2f2; }
    .main-locations .list-group-item-white.list-group-item-action.active {
      color: #fff;
      background-color: #9da0a5;
      border-color: #9da0a5; }
  .main-locations .list-group-item-purple {
    color: #725594;
    background-color: #e8d6f5; }
    .main-locations .list-group-item-purple.list-group-item-action:hover, .main-locations .list-group-item-purple.list-group-item-action:focus {
      color: #725594;
      background-color: #ddc2f0; }
    .main-locations .list-group-item-purple.list-group-item-action.active {
      color: #fff;
      background-color: #725594;
      border-color: #725594; }
  .main-locations .list-group-item-salmon {
    color: #9d6a60;
    background-color: #ffe2da; }
    .main-locations .list-group-item-salmon.list-group-item-action:hover, .main-locations .list-group-item-salmon.list-group-item-action:focus {
      color: #9d6a60;
      background-color: #ffcec1; }
    .main-locations .list-group-item-salmon.list-group-item-action.active {
      color: #fff;
      background-color: #9d6a60;
      border-color: #9d6a60; }
  .main-locations .list-group-item-cyan {
    color: #347ea5;
    background-color: #c6edff; }
    .main-locations .list-group-item-cyan.list-group-item-action:hover, .main-locations .list-group-item-cyan.list-group-item-action:focus {
      color: #347ea5;
      background-color: #ade5ff; }
    .main-locations .list-group-item-cyan.list-group-item-action.active {
      color: #fff;
      background-color: #347ea5;
      border-color: #347ea5; }
  .main-locations .list-group-item-gray {
    color: #838a92;
    background-color: #f1f3f5; }
    .main-locations .list-group-item-gray.list-group-item-action:hover, .main-locations .list-group-item-gray.list-group-item-action:focus {
      color: #838a92;
      background-color: #e2e6ea; }
    .main-locations .list-group-item-gray.list-group-item-action.active {
      color: #fff;
      background-color: #838a92;
      border-color: #838a92; }
  .main-locations .list-group-item-indigo {
    color: #423259;
    background-color: #cec4d6; }
    .main-locations .list-group-item-indigo.list-group-item-action:hover, .main-locations .list-group-item-indigo.list-group-item-action:focus {
      color: #423259;
      background-color: #c2b5cc; }
    .main-locations .list-group-item-indigo.list-group-item-action.active {
      color: #fff;
      background-color: #423259;
      border-color: #423259; }
  .main-locations .list-group-item-orange {
    color: #9b7921;
    background-color: #feeab8; }
    .main-locations .list-group-item-orange.list-group-item-action:hover, .main-locations .list-group-item-orange.list-group-item-action:focus {
      color: #9b7921;
      background-color: #fee39f; }
    .main-locations .list-group-item-orange.list-group-item-action.active {
      color: #fff;
      background-color: #9b7921;
      border-color: #9b7921; }
  .main-locations .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #323944;
    text-shadow: 0 1px 0 #fff;
    opacity: .5; }
    .main-locations .close:hover {
      color: #323944;
      text-decoration: none; }
    .main-locations .close:not(:disabled):not(.disabled):hover, .main-locations .close:not(:disabled):not(.disabled):focus {
      opacity: .75; }
  .main-locations button.close {
    padding: 0;
    background-color: transparent;
    border: 0; }
  .main-locations a.close.disabled {
    pointer-events: none; }
  .main-locations .carousel {
    position: relative; }
  .main-locations .carousel.pointer-event {
    touch-action: pan-y; }
  .main-locations .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden; }
    .main-locations .carousel-inner::after {
      display: block;
      clear: both;
      content: ""; }
  .main-locations .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .carousel-item {
        transition: none; } }
  .main-locations .carousel-item.active,
  .main-locations .carousel-item-next,
  .main-locations .carousel-item-prev {
    display: block; }
  .main-locations .carousel-item-next:not(.carousel-item-left),
  .main-locations .active.carousel-item-right {
    transform: translateX(100%); }
  .main-locations .carousel-item-prev:not(.carousel-item-right),
  .main-locations .active.carousel-item-left {
    transform: translateX(-100%); }
  .main-locations .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none; }
  .main-locations .carousel-fade .carousel-item.active,
  .main-locations .carousel-fade .carousel-item-next.carousel-item-left,
  .main-locations .carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1; }
  .main-locations .carousel-fade .active.carousel-item-left,
  .main-locations .carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .carousel-fade .active.carousel-item-left,
      .main-locations .carousel-fade .active.carousel-item-right {
        transition: none; } }
  .main-locations .carousel-control-prev,
  .main-locations .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .carousel-control-prev,
      .main-locations .carousel-control-next {
        transition: none; } }
    .main-locations .carousel-control-prev:hover, .main-locations .carousel-control-prev:focus,
    .main-locations .carousel-control-next:hover,
    .main-locations .carousel-control-next:focus {
      color: #fff;
      text-decoration: none;
      outline: 0;
      opacity: 0.9; }
  .main-locations .carousel-control-prev {
    left: 0; }
  .main-locations .carousel-control-next {
    right: 0; }
  .main-locations .carousel-control-prev-icon,
  .main-locations .carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%; }
  .main-locations .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); }
  .main-locations .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); }
  .main-locations .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none; }
    .main-locations .carousel-indicators li {
      box-sizing: content-box;
      flex: 0 1 auto;
      width: 30px;
      height: 3px;
      margin-right: 3px;
      margin-left: 3px;
      text-indent: -999px;
      cursor: pointer;
      background-color: #fff;
      background-clip: padding-box;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      opacity: .5;
      transition: opacity 0.6s ease; }
      @media (prefers-reduced-motion: reduce) {
        .main-locations .carousel-indicators li {
          transition: none; } }
    .main-locations .carousel-indicators .active {
      opacity: 1; }
  .main-locations .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center; }
@keyframes spinner-border {
  to {
    transform: rotate(360deg); } }
  .main-locations .spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite; }
  .main-locations .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em; }
@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }
  .main-locations .spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite; }
  .main-locations .spinner-grow-sm {
    width: 1rem;
    height: 1rem; }
  .main-locations .align-baseline {
    vertical-align: baseline !important; }
  .main-locations .align-top {
    vertical-align: top !important; }
  .main-locations .align-middle {
    vertical-align: middle !important; }
  .main-locations .align-bottom {
    vertical-align: bottom !important; }
  .main-locations .align-text-bottom {
    vertical-align: text-bottom !important; }
  .main-locations .align-text-top {
    vertical-align: text-top !important; }
  .main-locations .bg-primary {
    background-color: #1e73be !important; }
  .main-locations a.bg-primary:hover, .main-locations a.bg-primary:focus,
  .main-locations button.bg-primary:hover,
  .main-locations button.bg-primary:focus {
    background-color: #175892 !important; }
  .main-locations .bg-secondary {
    background-color: #6c757d !important; }
  .main-locations a.bg-secondary:hover, .main-locations a.bg-secondary:focus,
  .main-locations button.bg-secondary:hover,
  .main-locations button.bg-secondary:focus {
    background-color: #545b62 !important; }
  .main-locations .bg-success {
    background-color: #7dd667 !important; }
  .main-locations a.bg-success:hover, .main-locations a.bg-success:focus,
  .main-locations button.bg-success:hover,
  .main-locations button.bg-success:focus {
    background-color: #5bcb3f !important; }
  .main-locations .bg-info {
    background-color: #17a2b8 !important; }
  .main-locations a.bg-info:hover, .main-locations a.bg-info:focus,
  .main-locations button.bg-info:hover,
  .main-locations button.bg-info:focus {
    background-color: #117a8b !important; }
  .main-locations .bg-warning {
    background-color: #ffc107 !important; }
  .main-locations a.bg-warning:hover, .main-locations a.bg-warning:focus,
  .main-locations button.bg-warning:hover,
  .main-locations button.bg-warning:focus {
    background-color: #d39e00 !important; }
  .main-locations .bg-danger {
    background-color: #dc3545 !important; }
  .main-locations a.bg-danger:hover, .main-locations a.bg-danger:focus,
  .main-locations button.bg-danger:hover,
  .main-locations button.bg-danger:focus {
    background-color: #bd2130 !important; }
  .main-locations .bg-light {
    background-color: #f8f9fa !important; }
  .main-locations a.bg-light:hover, .main-locations a.bg-light:focus,
  .main-locations button.bg-light:hover,
  .main-locations button.bg-light:focus {
    background-color: #dae0e5 !important; }
  .main-locations .bg-dark {
    background-color: #343a40 !important; }
  .main-locations a.bg-dark:hover, .main-locations a.bg-dark:focus,
  .main-locations button.bg-dark:hover,
  .main-locations button.bg-dark:focus {
    background-color: #1d2124 !important; }
  .main-locations .bg-white {
    background-color: #fff !important; }
  .main-locations a.bg-white:hover, .main-locations a.bg-white:focus,
  .main-locations button.bg-white:hover,
  .main-locations button.bg-white:focus {
    background-color: #e6e6e6 !important; }
  .main-locations .bg-purple {
    background-color: #ad6edd !important; }
  .main-locations a.bg-purple:hover, .main-locations a.bg-purple:focus,
  .main-locations button.bg-purple:hover,
  .main-locations button.bg-purple:focus {
    background-color: #9645d3 !important; }
  .main-locations .bg-salmon {
    background-color: #ff977a !important; }
  .main-locations a.bg-salmon:hover, .main-locations a.bg-salmon:focus,
  .main-locations button.bg-salmon:hover,
  .main-locations button.bg-salmon:focus {
    background-color: #ff6f47 !important; }
  .main-locations .bg-cyan {
    background-color: #35bdff !important; }
  .main-locations a.bg-cyan:hover, .main-locations a.bg-cyan:focus,
  .main-locations button.bg-cyan:hover,
  .main-locations button.bg-cyan:focus {
    background-color: #02acff !important; }
  .main-locations .bg-gray {
    background-color: #ced4da !important; }
  .main-locations a.bg-gray:hover, .main-locations a.bg-gray:focus,
  .main-locations button.bg-gray:hover,
  .main-locations button.bg-gray:focus {
    background-color: #b1bbc4 !important; }
  .main-locations .bg-indigo {
    background-color: #502c6c !important; }
  .main-locations a.bg-indigo:hover, .main-locations a.bg-indigo:focus,
  .main-locations button.bg-indigo:hover,
  .main-locations button.bg-indigo:focus {
    background-color: #351d48 !important; }
  .main-locations .bg-orange {
    background-color: #fbb500 !important; }
  .main-locations a.bg-orange:hover, .main-locations a.bg-orange:focus,
  .main-locations button.bg-orange:hover,
  .main-locations button.bg-orange:focus {
    background-color: #c89000 !important; }
  .main-locations .bg-white {
    background-color: #fff !important; }
  .main-locations .bg-transparent {
    background-color: transparent !important; }
  .main-locations .border {
    border: 1px solid #ccc !important; }
  .main-locations .border-top {
    border-top: 1px solid #ccc !important; }
  .main-locations .border-right {
    border-right: 1px solid #ccc !important; }
  .main-locations .border-bottom {
    border-bottom: 1px solid #ccc !important; }
  .main-locations .border-left {
    border-left: 1px solid #ccc !important; }
  .main-locations .border-0 {
    border: 0 !important; }
  .main-locations .border-top-0 {
    border-top: 0 !important; }
  .main-locations .border-right-0 {
    border-right: 0 !important; }
  .main-locations .border-bottom-0 {
    border-bottom: 0 !important; }
  .main-locations .border-left-0 {
    border-left: 0 !important; }
  .main-locations .border-primary {
    border-color: #1e73be !important; }
  .main-locations .border-secondary {
    border-color: #6c757d !important; }
  .main-locations .border-success {
    border-color: #7dd667 !important; }
  .main-locations .border-info {
    border-color: #17a2b8 !important; }
  .main-locations .border-warning {
    border-color: #ffc107 !important; }
  .main-locations .border-danger {
    border-color: #dc3545 !important; }
  .main-locations .border-light {
    border-color: #f8f9fa !important; }
  .main-locations .border-dark {
    border-color: #343a40 !important; }
  .main-locations .border-white {
    border-color: #fff !important; }
  .main-locations .border-purple {
    border-color: #ad6edd !important; }
  .main-locations .border-salmon {
    border-color: #ff977a !important; }
  .main-locations .border-cyan {
    border-color: #35bdff !important; }
  .main-locations .border-gray {
    border-color: #ced4da !important; }
  .main-locations .border-indigo {
    border-color: #502c6c !important; }
  .main-locations .border-orange {
    border-color: #fbb500 !important; }
  .main-locations .border-white {
    border-color: #fff !important; }
  .main-locations .rounded-sm {
    border-radius: 0.2rem !important; }
  .main-locations .rounded {
    border-radius: 0.25rem !important; }
  .main-locations .rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important; }
  .main-locations .rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important; }
  .main-locations .rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important; }
  .main-locations .rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important; }
  .main-locations .rounded-lg {
    border-radius: 0.3rem !important; }
  .main-locations .rounded-circle {
    border-radius: 50% !important; }
  .main-locations .rounded-pill {
    border-radius: 50rem !important; }
  .main-locations .rounded-0 {
    border-radius: 0 !important; }
  .main-locations .clearfix::after {
    display: block;
    clear: both;
    content: ""; }
  .main-locations .d-none {
    display: none !important; }
  .main-locations .d-inline {
    display: inline !important; }
  .main-locations .d-inline-block {
    display: inline-block !important; }
  .main-locations .d-block {
    display: block !important; }
  .main-locations .d-table {
    display: table !important; }
  .main-locations .d-table-row {
    display: table-row !important; }
  .main-locations .d-table-cell {
    display: table-cell !important; }
  .main-locations .d-flex {
    display: flex !important; }
  .main-locations .d-inline-flex {
    display: inline-flex !important; }
  @media (min-width: 576px) {
    .main-locations .d-sm-none {
      display: none !important; }
    .main-locations .d-sm-inline {
      display: inline !important; }
    .main-locations .d-sm-inline-block {
      display: inline-block !important; }
    .main-locations .d-sm-block {
      display: block !important; }
    .main-locations .d-sm-table {
      display: table !important; }
    .main-locations .d-sm-table-row {
      display: table-row !important; }
    .main-locations .d-sm-table-cell {
      display: table-cell !important; }
    .main-locations .d-sm-flex {
      display: flex !important; }
    .main-locations .d-sm-inline-flex {
      display: inline-flex !important; } }
  @media (min-width: 768px) {
    .main-locations .d-md-none {
      display: none !important; }
    .main-locations .d-md-inline {
      display: inline !important; }
    .main-locations .d-md-inline-block {
      display: inline-block !important; }
    .main-locations .d-md-block {
      display: block !important; }
    .main-locations .d-md-table {
      display: table !important; }
    .main-locations .d-md-table-row {
      display: table-row !important; }
    .main-locations .d-md-table-cell {
      display: table-cell !important; }
    .main-locations .d-md-flex {
      display: flex !important; }
    .main-locations .d-md-inline-flex {
      display: inline-flex !important; } }
  @media (min-width: 992px) {
    .main-locations .d-lg-none {
      display: none !important; }
    .main-locations .d-lg-inline {
      display: inline !important; }
    .main-locations .d-lg-inline-block {
      display: inline-block !important; }
    .main-locations .d-lg-block {
      display: block !important; }
    .main-locations .d-lg-table {
      display: table !important; }
    .main-locations .d-lg-table-row {
      display: table-row !important; }
    .main-locations .d-lg-table-cell {
      display: table-cell !important; }
    .main-locations .d-lg-flex {
      display: flex !important; }
    .main-locations .d-lg-inline-flex {
      display: inline-flex !important; } }
  @media (min-width: 1200px) {
    .main-locations .d-xl-none {
      display: none !important; }
    .main-locations .d-xl-inline {
      display: inline !important; }
    .main-locations .d-xl-inline-block {
      display: inline-block !important; }
    .main-locations .d-xl-block {
      display: block !important; }
    .main-locations .d-xl-table {
      display: table !important; }
    .main-locations .d-xl-table-row {
      display: table-row !important; }
    .main-locations .d-xl-table-cell {
      display: table-cell !important; }
    .main-locations .d-xl-flex {
      display: flex !important; }
    .main-locations .d-xl-inline-flex {
      display: inline-flex !important; } }
  @media print {
    .main-locations .d-print-none {
      display: none !important; }
    .main-locations .d-print-inline {
      display: inline !important; }
    .main-locations .d-print-inline-block {
      display: inline-block !important; }
    .main-locations .d-print-block {
      display: block !important; }
    .main-locations .d-print-table {
      display: table !important; }
    .main-locations .d-print-table-row {
      display: table-row !important; }
    .main-locations .d-print-table-cell {
      display: table-cell !important; }
    .main-locations .d-print-flex {
      display: flex !important; }
    .main-locations .d-print-inline-flex {
      display: inline-flex !important; } }
  .main-locations .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden; }
    .main-locations .embed-responsive::before {
      display: block;
      content: ""; }
    .main-locations .embed-responsive .embed-responsive-item,
    .main-locations .embed-responsive iframe,
    .main-locations .embed-responsive embed,
    .main-locations .embed-responsive object,
    .main-locations .embed-responsive video {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }
  .main-locations .embed-responsive-21by9::before {
    padding-top: 42.85714%; }
  .main-locations .embed-responsive-16by9::before {
    padding-top: 56.25%; }
  .main-locations .embed-responsive-4by3::before {
    padding-top: 75%; }
  .main-locations .embed-responsive-1by1::before {
    padding-top: 100%; }
  .main-locations .flex-row {
    flex-direction: row !important; }
  .main-locations .flex-column {
    flex-direction: column !important; }
  .main-locations .flex-row-reverse {
    flex-direction: row-reverse !important; }
  .main-locations .flex-column-reverse {
    flex-direction: column-reverse !important; }
  .main-locations .flex-wrap {
    flex-wrap: wrap !important; }
  .main-locations .flex-nowrap {
    flex-wrap: nowrap !important; }
  .main-locations .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .main-locations .flex-fill {
    flex: 1 1 auto !important; }
  .main-locations .flex-grow-0 {
    flex-grow: 0 !important; }
  .main-locations .flex-grow-1 {
    flex-grow: 1 !important; }
  .main-locations .flex-shrink-0 {
    flex-shrink: 0 !important; }
  .main-locations .flex-shrink-1 {
    flex-shrink: 1 !important; }
  .main-locations .justify-content-start {
    justify-content: flex-start !important; }
  .main-locations .justify-content-end {
    justify-content: flex-end !important; }
  .main-locations .justify-content-center {
    justify-content: center !important; }
  .main-locations .justify-content-between {
    justify-content: space-between !important; }
  .main-locations .justify-content-around {
    justify-content: space-around !important; }
  .main-locations .align-items-start {
    align-items: flex-start !important; }
  .main-locations .align-items-end {
    align-items: flex-end !important; }
  .main-locations .align-items-center {
    align-items: center !important; }
  .main-locations .align-items-baseline {
    align-items: baseline !important; }
  .main-locations .align-items-stretch {
    align-items: stretch !important; }
  .main-locations .align-content-start {
    align-content: flex-start !important; }
  .main-locations .align-content-end {
    align-content: flex-end !important; }
  .main-locations .align-content-center {
    align-content: center !important; }
  .main-locations .align-content-between {
    align-content: space-between !important; }
  .main-locations .align-content-around {
    align-content: space-around !important; }
  .main-locations .align-content-stretch {
    align-content: stretch !important; }
  .main-locations .align-self-auto {
    align-self: auto !important; }
  .main-locations .align-self-start {
    align-self: flex-start !important; }
  .main-locations .align-self-end {
    align-self: flex-end !important; }
  .main-locations .align-self-center {
    align-self: center !important; }
  .main-locations .align-self-baseline {
    align-self: baseline !important; }
  .main-locations .align-self-stretch {
    align-self: stretch !important; }
  @media (min-width: 576px) {
    .main-locations .flex-sm-row {
      flex-direction: row !important; }
    .main-locations .flex-sm-column {
      flex-direction: column !important; }
    .main-locations .flex-sm-row-reverse {
      flex-direction: row-reverse !important; }
    .main-locations .flex-sm-column-reverse {
      flex-direction: column-reverse !important; }
    .main-locations .flex-sm-wrap {
      flex-wrap: wrap !important; }
    .main-locations .flex-sm-nowrap {
      flex-wrap: nowrap !important; }
    .main-locations .flex-sm-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .main-locations .flex-sm-fill {
      flex: 1 1 auto !important; }
    .main-locations .flex-sm-grow-0 {
      flex-grow: 0 !important; }
    .main-locations .flex-sm-grow-1 {
      flex-grow: 1 !important; }
    .main-locations .flex-sm-shrink-0 {
      flex-shrink: 0 !important; }
    .main-locations .flex-sm-shrink-1 {
      flex-shrink: 1 !important; }
    .main-locations .justify-content-sm-start {
      justify-content: flex-start !important; }
    .main-locations .justify-content-sm-end {
      justify-content: flex-end !important; }
    .main-locations .justify-content-sm-center {
      justify-content: center !important; }
    .main-locations .justify-content-sm-between {
      justify-content: space-between !important; }
    .main-locations .justify-content-sm-around {
      justify-content: space-around !important; }
    .main-locations .align-items-sm-start {
      align-items: flex-start !important; }
    .main-locations .align-items-sm-end {
      align-items: flex-end !important; }
    .main-locations .align-items-sm-center {
      align-items: center !important; }
    .main-locations .align-items-sm-baseline {
      align-items: baseline !important; }
    .main-locations .align-items-sm-stretch {
      align-items: stretch !important; }
    .main-locations .align-content-sm-start {
      align-content: flex-start !important; }
    .main-locations .align-content-sm-end {
      align-content: flex-end !important; }
    .main-locations .align-content-sm-center {
      align-content: center !important; }
    .main-locations .align-content-sm-between {
      align-content: space-between !important; }
    .main-locations .align-content-sm-around {
      align-content: space-around !important; }
    .main-locations .align-content-sm-stretch {
      align-content: stretch !important; }
    .main-locations .align-self-sm-auto {
      align-self: auto !important; }
    .main-locations .align-self-sm-start {
      align-self: flex-start !important; }
    .main-locations .align-self-sm-end {
      align-self: flex-end !important; }
    .main-locations .align-self-sm-center {
      align-self: center !important; }
    .main-locations .align-self-sm-baseline {
      align-self: baseline !important; }
    .main-locations .align-self-sm-stretch {
      align-self: stretch !important; } }
  @media (min-width: 768px) {
    .main-locations .flex-md-row {
      flex-direction: row !important; }
    .main-locations .flex-md-column {
      flex-direction: column !important; }
    .main-locations .flex-md-row-reverse {
      flex-direction: row-reverse !important; }
    .main-locations .flex-md-column-reverse {
      flex-direction: column-reverse !important; }
    .main-locations .flex-md-wrap {
      flex-wrap: wrap !important; }
    .main-locations .flex-md-nowrap {
      flex-wrap: nowrap !important; }
    .main-locations .flex-md-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .main-locations .flex-md-fill {
      flex: 1 1 auto !important; }
    .main-locations .flex-md-grow-0 {
      flex-grow: 0 !important; }
    .main-locations .flex-md-grow-1 {
      flex-grow: 1 !important; }
    .main-locations .flex-md-shrink-0 {
      flex-shrink: 0 !important; }
    .main-locations .flex-md-shrink-1 {
      flex-shrink: 1 !important; }
    .main-locations .justify-content-md-start {
      justify-content: flex-start !important; }
    .main-locations .justify-content-md-end {
      justify-content: flex-end !important; }
    .main-locations .justify-content-md-center {
      justify-content: center !important; }
    .main-locations .justify-content-md-between {
      justify-content: space-between !important; }
    .main-locations .justify-content-md-around {
      justify-content: space-around !important; }
    .main-locations .align-items-md-start {
      align-items: flex-start !important; }
    .main-locations .align-items-md-end {
      align-items: flex-end !important; }
    .main-locations .align-items-md-center {
      align-items: center !important; }
    .main-locations .align-items-md-baseline {
      align-items: baseline !important; }
    .main-locations .align-items-md-stretch {
      align-items: stretch !important; }
    .main-locations .align-content-md-start {
      align-content: flex-start !important; }
    .main-locations .align-content-md-end {
      align-content: flex-end !important; }
    .main-locations .align-content-md-center {
      align-content: center !important; }
    .main-locations .align-content-md-between {
      align-content: space-between !important; }
    .main-locations .align-content-md-around {
      align-content: space-around !important; }
    .main-locations .align-content-md-stretch {
      align-content: stretch !important; }
    .main-locations .align-self-md-auto {
      align-self: auto !important; }
    .main-locations .align-self-md-start {
      align-self: flex-start !important; }
    .main-locations .align-self-md-end {
      align-self: flex-end !important; }
    .main-locations .align-self-md-center {
      align-self: center !important; }
    .main-locations .align-self-md-baseline {
      align-self: baseline !important; }
    .main-locations .align-self-md-stretch {
      align-self: stretch !important; } }
  @media (min-width: 992px) {
    .main-locations .flex-lg-row {
      flex-direction: row !important; }
    .main-locations .flex-lg-column {
      flex-direction: column !important; }
    .main-locations .flex-lg-row-reverse {
      flex-direction: row-reverse !important; }
    .main-locations .flex-lg-column-reverse {
      flex-direction: column-reverse !important; }
    .main-locations .flex-lg-wrap {
      flex-wrap: wrap !important; }
    .main-locations .flex-lg-nowrap {
      flex-wrap: nowrap !important; }
    .main-locations .flex-lg-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .main-locations .flex-lg-fill {
      flex: 1 1 auto !important; }
    .main-locations .flex-lg-grow-0 {
      flex-grow: 0 !important; }
    .main-locations .flex-lg-grow-1 {
      flex-grow: 1 !important; }
    .main-locations .flex-lg-shrink-0 {
      flex-shrink: 0 !important; }
    .main-locations .flex-lg-shrink-1 {
      flex-shrink: 1 !important; }
    .main-locations .justify-content-lg-start {
      justify-content: flex-start !important; }
    .main-locations .justify-content-lg-end {
      justify-content: flex-end !important; }
    .main-locations .justify-content-lg-center {
      justify-content: center !important; }
    .main-locations .justify-content-lg-between {
      justify-content: space-between !important; }
    .main-locations .justify-content-lg-around {
      justify-content: space-around !important; }
    .main-locations .align-items-lg-start {
      align-items: flex-start !important; }
    .main-locations .align-items-lg-end {
      align-items: flex-end !important; }
    .main-locations .align-items-lg-center {
      align-items: center !important; }
    .main-locations .align-items-lg-baseline {
      align-items: baseline !important; }
    .main-locations .align-items-lg-stretch {
      align-items: stretch !important; }
    .main-locations .align-content-lg-start {
      align-content: flex-start !important; }
    .main-locations .align-content-lg-end {
      align-content: flex-end !important; }
    .main-locations .align-content-lg-center {
      align-content: center !important; }
    .main-locations .align-content-lg-between {
      align-content: space-between !important; }
    .main-locations .align-content-lg-around {
      align-content: space-around !important; }
    .main-locations .align-content-lg-stretch {
      align-content: stretch !important; }
    .main-locations .align-self-lg-auto {
      align-self: auto !important; }
    .main-locations .align-self-lg-start {
      align-self: flex-start !important; }
    .main-locations .align-self-lg-end {
      align-self: flex-end !important; }
    .main-locations .align-self-lg-center {
      align-self: center !important; }
    .main-locations .align-self-lg-baseline {
      align-self: baseline !important; }
    .main-locations .align-self-lg-stretch {
      align-self: stretch !important; } }
  @media (min-width: 1200px) {
    .main-locations .flex-xl-row {
      flex-direction: row !important; }
    .main-locations .flex-xl-column {
      flex-direction: column !important; }
    .main-locations .flex-xl-row-reverse {
      flex-direction: row-reverse !important; }
    .main-locations .flex-xl-column-reverse {
      flex-direction: column-reverse !important; }
    .main-locations .flex-xl-wrap {
      flex-wrap: wrap !important; }
    .main-locations .flex-xl-nowrap {
      flex-wrap: nowrap !important; }
    .main-locations .flex-xl-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .main-locations .flex-xl-fill {
      flex: 1 1 auto !important; }
    .main-locations .flex-xl-grow-0 {
      flex-grow: 0 !important; }
    .main-locations .flex-xl-grow-1 {
      flex-grow: 1 !important; }
    .main-locations .flex-xl-shrink-0 {
      flex-shrink: 0 !important; }
    .main-locations .flex-xl-shrink-1 {
      flex-shrink: 1 !important; }
    .main-locations .justify-content-xl-start {
      justify-content: flex-start !important; }
    .main-locations .justify-content-xl-end {
      justify-content: flex-end !important; }
    .main-locations .justify-content-xl-center {
      justify-content: center !important; }
    .main-locations .justify-content-xl-between {
      justify-content: space-between !important; }
    .main-locations .justify-content-xl-around {
      justify-content: space-around !important; }
    .main-locations .align-items-xl-start {
      align-items: flex-start !important; }
    .main-locations .align-items-xl-end {
      align-items: flex-end !important; }
    .main-locations .align-items-xl-center {
      align-items: center !important; }
    .main-locations .align-items-xl-baseline {
      align-items: baseline !important; }
    .main-locations .align-items-xl-stretch {
      align-items: stretch !important; }
    .main-locations .align-content-xl-start {
      align-content: flex-start !important; }
    .main-locations .align-content-xl-end {
      align-content: flex-end !important; }
    .main-locations .align-content-xl-center {
      align-content: center !important; }
    .main-locations .align-content-xl-between {
      align-content: space-between !important; }
    .main-locations .align-content-xl-around {
      align-content: space-around !important; }
    .main-locations .align-content-xl-stretch {
      align-content: stretch !important; }
    .main-locations .align-self-xl-auto {
      align-self: auto !important; }
    .main-locations .align-self-xl-start {
      align-self: flex-start !important; }
    .main-locations .align-self-xl-end {
      align-self: flex-end !important; }
    .main-locations .align-self-xl-center {
      align-self: center !important; }
    .main-locations .align-self-xl-baseline {
      align-self: baseline !important; }
    .main-locations .align-self-xl-stretch {
      align-self: stretch !important; } }
  .main-locations .float-left {
    float: left !important; }
  .main-locations .float-right {
    float: right !important; }
  .main-locations .float-none {
    float: none !important; }
  @media (min-width: 576px) {
    .main-locations .float-sm-left {
      float: left !important; }
    .main-locations .float-sm-right {
      float: right !important; }
    .main-locations .float-sm-none {
      float: none !important; } }
  @media (min-width: 768px) {
    .main-locations .float-md-left {
      float: left !important; }
    .main-locations .float-md-right {
      float: right !important; }
    .main-locations .float-md-none {
      float: none !important; } }
  @media (min-width: 992px) {
    .main-locations .float-lg-left {
      float: left !important; }
    .main-locations .float-lg-right {
      float: right !important; }
    .main-locations .float-lg-none {
      float: none !important; } }
  @media (min-width: 1200px) {
    .main-locations .float-xl-left {
      float: left !important; }
    .main-locations .float-xl-right {
      float: right !important; }
    .main-locations .float-xl-none {
      float: none !important; } }
  .main-locations .user-select-all {
    user-select: all !important; }
  .main-locations .user-select-auto {
    user-select: auto !important; }
  .main-locations .user-select-none {
    user-select: none !important; }
  .main-locations .overflow-auto {
    overflow: auto !important; }
  .main-locations .overflow-hidden {
    overflow: hidden !important; }
  .main-locations .position-static {
    position: static !important; }
  .main-locations .position-relative {
    position: relative !important; }
  .main-locations .position-absolute {
    position: absolute !important; }
  .main-locations .position-fixed {
    position: fixed !important; }
  .main-locations .position-sticky {
    position: sticky !important; }
  .main-locations .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
  .main-locations .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030; }
  @supports (position: sticky) {
    .main-locations .sticky-top {
      position: sticky;
      top: 0;
      z-index: 1020; } }
  .main-locations .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0; }
  .main-locations .sr-only-focusable:active, .main-locations .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal; }
  .main-locations .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(50, 57, 68, 0.075) !important; }
  .main-locations .shadow {
    box-shadow: 0 0.5rem 1rem rgba(50, 57, 68, 0.15) !important; }
  .main-locations .shadow-lg {
    box-shadow: 0 10px 25px 0 rgba(50, 57, 68, 0.3) !important; }
  .main-locations .shadow-none {
    box-shadow: none !important; }
  .main-locations .w-25 {
    width: 25% !important; }
  .main-locations .w-50 {
    width: 50% !important; }
  .main-locations .w-75 {
    width: 75% !important; }
  .main-locations .w-100 {
    width: 100% !important; }
  .main-locations .w-auto {
    width: auto !important; }
  .main-locations .h-25 {
    height: 25% !important; }
  .main-locations .h-50 {
    height: 50% !important; }
  .main-locations .h-75 {
    height: 75% !important; }
  .main-locations .h-100 {
    height: 100% !important; }
  .main-locations .h-auto {
    height: auto !important; }
  .main-locations .mw-100 {
    max-width: 100% !important; }
  .main-locations .mh-100 {
    max-height: 100% !important; }
  .main-locations .min-vw-100 {
    min-width: 100vw !important; }
  .main-locations .min-vh-100 {
    min-height: 100vh !important; }
  .main-locations .vw-100 {
    width: 100vw !important; }
  .main-locations .vh-100 {
    height: 100vh !important; }
  .main-locations .m-0 {
    margin: 0 !important; }
  .main-locations .mt-0,
  .main-locations .my-0 {
    margin-top: 0 !important; }
  .main-locations .mr-0,
  .main-locations .mx-0 {
    margin-right: 0 !important; }
  .main-locations .mb-0,
  .main-locations .my-0 {
    margin-bottom: 0 !important; }
  .main-locations .ml-0,
  .main-locations .mx-0 {
    margin-left: 0 !important; }
  .main-locations .m-1 {
    margin: 0.25rem !important; }
  .main-locations .mt-1,
  .main-locations .my-1 {
    margin-top: 0.25rem !important; }
  .main-locations .mr-1,
  .main-locations .mx-1 {
    margin-right: 0.25rem !important; }
  .main-locations .mb-1,
  .main-locations .my-1 {
    margin-bottom: 0.25rem !important; }
  .main-locations .ml-1,
  .main-locations .mx-1 {
    margin-left: 0.25rem !important; }
  .main-locations .m-2 {
    margin: 0.5rem !important; }
  .main-locations .mt-2,
  .main-locations .my-2 {
    margin-top: 0.5rem !important; }
  .main-locations .mr-2,
  .main-locations .mx-2 {
    margin-right: 0.5rem !important; }
  .main-locations .mb-2,
  .main-locations .my-2 {
    margin-bottom: 0.5rem !important; }
  .main-locations .ml-2,
  .main-locations .mx-2 {
    margin-left: 0.5rem !important; }
  .main-locations .m-3 {
    margin: 1rem !important; }
  .main-locations .mt-3,
  .main-locations .my-3 {
    margin-top: 1rem !important; }
  .main-locations .mr-3,
  .main-locations .mx-3 {
    margin-right: 1rem !important; }
  .main-locations .mb-3,
  .main-locations .my-3 {
    margin-bottom: 1rem !important; }
  .main-locations .ml-3,
  .main-locations .mx-3 {
    margin-left: 1rem !important; }
  .main-locations .m-4 {
    margin: 1.5rem !important; }
  .main-locations .mt-4,
  .main-locations .my-4 {
    margin-top: 1.5rem !important; }
  .main-locations .mr-4,
  .main-locations .mx-4 {
    margin-right: 1.5rem !important; }
  .main-locations .mb-4,
  .main-locations .my-4 {
    margin-bottom: 1.5rem !important; }
  .main-locations .ml-4,
  .main-locations .mx-4 {
    margin-left: 1.5rem !important; }
  .main-locations .m-5 {
    margin: 3rem !important; }
  .main-locations .mt-5,
  .main-locations .my-5 {
    margin-top: 3rem !important; }
  .main-locations .mr-5,
  .main-locations .mx-5 {
    margin-right: 3rem !important; }
  .main-locations .mb-5,
  .main-locations .my-5 {
    margin-bottom: 3rem !important; }
  .main-locations .ml-5,
  .main-locations .mx-5 {
    margin-left: 3rem !important; }
  .main-locations .p-0 {
    padding: 0 !important; }
  .main-locations .pt-0,
  .main-locations .py-0 {
    padding-top: 0 !important; }
  .main-locations .pr-0,
  .main-locations .px-0 {
    padding-right: 0 !important; }
  .main-locations .pb-0,
  .main-locations .py-0 {
    padding-bottom: 0 !important; }
  .main-locations .pl-0,
  .main-locations .px-0 {
    padding-left: 0 !important; }
  .main-locations .p-1 {
    padding: 0.25rem !important; }
  .main-locations .pt-1,
  .main-locations .py-1 {
    padding-top: 0.25rem !important; }
  .main-locations .pr-1,
  .main-locations .px-1 {
    padding-right: 0.25rem !important; }
  .main-locations .pb-1,
  .main-locations .py-1 {
    padding-bottom: 0.25rem !important; }
  .main-locations .pl-1,
  .main-locations .px-1 {
    padding-left: 0.25rem !important; }
  .main-locations .p-2 {
    padding: 0.5rem !important; }
  .main-locations .pt-2,
  .main-locations .py-2 {
    padding-top: 0.5rem !important; }
  .main-locations .pr-2,
  .main-locations .px-2 {
    padding-right: 0.5rem !important; }
  .main-locations .pb-2,
  .main-locations .py-2 {
    padding-bottom: 0.5rem !important; }
  .main-locations .pl-2,
  .main-locations .px-2 {
    padding-left: 0.5rem !important; }
  .main-locations .p-3 {
    padding: 1rem !important; }
  .main-locations .pt-3,
  .main-locations .py-3 {
    padding-top: 1rem !important; }
  .main-locations .pr-3,
  .main-locations .px-3 {
    padding-right: 1rem !important; }
  .main-locations .pb-3,
  .main-locations .py-3 {
    padding-bottom: 1rem !important; }
  .main-locations .pl-3,
  .main-locations .px-3 {
    padding-left: 1rem !important; }
  .main-locations .p-4 {
    padding: 1.5rem !important; }
  .main-locations .pt-4,
  .main-locations .py-4 {
    padding-top: 1.5rem !important; }
  .main-locations .pr-4,
  .main-locations .px-4 {
    padding-right: 1.5rem !important; }
  .main-locations .pb-4,
  .main-locations .py-4 {
    padding-bottom: 1.5rem !important; }
  .main-locations .pl-4,
  .main-locations .px-4 {
    padding-left: 1.5rem !important; }
  .main-locations .p-5 {
    padding: 3rem !important; }
  .main-locations .pt-5,
  .main-locations .py-5 {
    padding-top: 3rem !important; }
  .main-locations .pr-5,
  .main-locations .px-5 {
    padding-right: 3rem !important; }
  .main-locations .pb-5,
  .main-locations .py-5 {
    padding-bottom: 3rem !important; }
  .main-locations .pl-5,
  .main-locations .px-5 {
    padding-left: 3rem !important; }
  .main-locations .m-n1 {
    margin: -0.25rem !important; }
  .main-locations .mt-n1,
  .main-locations .my-n1 {
    margin-top: -0.25rem !important; }
  .main-locations .mr-n1,
  .main-locations .mx-n1 {
    margin-right: -0.25rem !important; }
  .main-locations .mb-n1,
  .main-locations .my-n1 {
    margin-bottom: -0.25rem !important; }
  .main-locations .ml-n1,
  .main-locations .mx-n1 {
    margin-left: -0.25rem !important; }
  .main-locations .m-n2 {
    margin: -0.5rem !important; }
  .main-locations .mt-n2,
  .main-locations .my-n2 {
    margin-top: -0.5rem !important; }
  .main-locations .mr-n2,
  .main-locations .mx-n2 {
    margin-right: -0.5rem !important; }
  .main-locations .mb-n2,
  .main-locations .my-n2 {
    margin-bottom: -0.5rem !important; }
  .main-locations .ml-n2,
  .main-locations .mx-n2 {
    margin-left: -0.5rem !important; }
  .main-locations .m-n3 {
    margin: -1rem !important; }
  .main-locations .mt-n3,
  .main-locations .my-n3 {
    margin-top: -1rem !important; }
  .main-locations .mr-n3,
  .main-locations .mx-n3 {
    margin-right: -1rem !important; }
  .main-locations .mb-n3,
  .main-locations .my-n3 {
    margin-bottom: -1rem !important; }
  .main-locations .ml-n3,
  .main-locations .mx-n3 {
    margin-left: -1rem !important; }
  .main-locations .m-n4 {
    margin: -1.5rem !important; }
  .main-locations .mt-n4,
  .main-locations .my-n4 {
    margin-top: -1.5rem !important; }
  .main-locations .mr-n4,
  .main-locations .mx-n4 {
    margin-right: -1.5rem !important; }
  .main-locations .mb-n4,
  .main-locations .my-n4 {
    margin-bottom: -1.5rem !important; }
  .main-locations .ml-n4,
  .main-locations .mx-n4 {
    margin-left: -1.5rem !important; }
  .main-locations .m-n5 {
    margin: -3rem !important; }
  .main-locations .mt-n5,
  .main-locations .my-n5 {
    margin-top: -3rem !important; }
  .main-locations .mr-n5,
  .main-locations .mx-n5 {
    margin-right: -3rem !important; }
  .main-locations .mb-n5,
  .main-locations .my-n5 {
    margin-bottom: -3rem !important; }
  .main-locations .ml-n5,
  .main-locations .mx-n5 {
    margin-left: -3rem !important; }
  .main-locations .m-auto {
    margin: auto !important; }
  .main-locations .mt-auto,
  .main-locations .my-auto {
    margin-top: auto !important; }
  .main-locations .mr-auto,
  .main-locations .mx-auto {
    margin-right: auto !important; }
  .main-locations .mb-auto,
  .main-locations .my-auto {
    margin-bottom: auto !important; }
  .main-locations .ml-auto,
  .main-locations .mx-auto {
    margin-left: auto !important; }
  @media (min-width: 576px) {
    .main-locations .m-sm-0 {
      margin: 0 !important; }
    .main-locations .mt-sm-0,
    .main-locations .my-sm-0 {
      margin-top: 0 !important; }
    .main-locations .mr-sm-0,
    .main-locations .mx-sm-0 {
      margin-right: 0 !important; }
    .main-locations .mb-sm-0,
    .main-locations .my-sm-0 {
      margin-bottom: 0 !important; }
    .main-locations .ml-sm-0,
    .main-locations .mx-sm-0 {
      margin-left: 0 !important; }
    .main-locations .m-sm-1 {
      margin: 0.25rem !important; }
    .main-locations .mt-sm-1,
    .main-locations .my-sm-1 {
      margin-top: 0.25rem !important; }
    .main-locations .mr-sm-1,
    .main-locations .mx-sm-1 {
      margin-right: 0.25rem !important; }
    .main-locations .mb-sm-1,
    .main-locations .my-sm-1 {
      margin-bottom: 0.25rem !important; }
    .main-locations .ml-sm-1,
    .main-locations .mx-sm-1 {
      margin-left: 0.25rem !important; }
    .main-locations .m-sm-2 {
      margin: 0.5rem !important; }
    .main-locations .mt-sm-2,
    .main-locations .my-sm-2 {
      margin-top: 0.5rem !important; }
    .main-locations .mr-sm-2,
    .main-locations .mx-sm-2 {
      margin-right: 0.5rem !important; }
    .main-locations .mb-sm-2,
    .main-locations .my-sm-2 {
      margin-bottom: 0.5rem !important; }
    .main-locations .ml-sm-2,
    .main-locations .mx-sm-2 {
      margin-left: 0.5rem !important; }
    .main-locations .m-sm-3 {
      margin: 1rem !important; }
    .main-locations .mt-sm-3,
    .main-locations .my-sm-3 {
      margin-top: 1rem !important; }
    .main-locations .mr-sm-3,
    .main-locations .mx-sm-3 {
      margin-right: 1rem !important; }
    .main-locations .mb-sm-3,
    .main-locations .my-sm-3 {
      margin-bottom: 1rem !important; }
    .main-locations .ml-sm-3,
    .main-locations .mx-sm-3 {
      margin-left: 1rem !important; }
    .main-locations .m-sm-4 {
      margin: 1.5rem !important; }
    .main-locations .mt-sm-4,
    .main-locations .my-sm-4 {
      margin-top: 1.5rem !important; }
    .main-locations .mr-sm-4,
    .main-locations .mx-sm-4 {
      margin-right: 1.5rem !important; }
    .main-locations .mb-sm-4,
    .main-locations .my-sm-4 {
      margin-bottom: 1.5rem !important; }
    .main-locations .ml-sm-4,
    .main-locations .mx-sm-4 {
      margin-left: 1.5rem !important; }
    .main-locations .m-sm-5 {
      margin: 3rem !important; }
    .main-locations .mt-sm-5,
    .main-locations .my-sm-5 {
      margin-top: 3rem !important; }
    .main-locations .mr-sm-5,
    .main-locations .mx-sm-5 {
      margin-right: 3rem !important; }
    .main-locations .mb-sm-5,
    .main-locations .my-sm-5 {
      margin-bottom: 3rem !important; }
    .main-locations .ml-sm-5,
    .main-locations .mx-sm-5 {
      margin-left: 3rem !important; }
    .main-locations .p-sm-0 {
      padding: 0 !important; }
    .main-locations .pt-sm-0,
    .main-locations .py-sm-0 {
      padding-top: 0 !important; }
    .main-locations .pr-sm-0,
    .main-locations .px-sm-0 {
      padding-right: 0 !important; }
    .main-locations .pb-sm-0,
    .main-locations .py-sm-0 {
      padding-bottom: 0 !important; }
    .main-locations .pl-sm-0,
    .main-locations .px-sm-0 {
      padding-left: 0 !important; }
    .main-locations .p-sm-1 {
      padding: 0.25rem !important; }
    .main-locations .pt-sm-1,
    .main-locations .py-sm-1 {
      padding-top: 0.25rem !important; }
    .main-locations .pr-sm-1,
    .main-locations .px-sm-1 {
      padding-right: 0.25rem !important; }
    .main-locations .pb-sm-1,
    .main-locations .py-sm-1 {
      padding-bottom: 0.25rem !important; }
    .main-locations .pl-sm-1,
    .main-locations .px-sm-1 {
      padding-left: 0.25rem !important; }
    .main-locations .p-sm-2 {
      padding: 0.5rem !important; }
    .main-locations .pt-sm-2,
    .main-locations .py-sm-2 {
      padding-top: 0.5rem !important; }
    .main-locations .pr-sm-2,
    .main-locations .px-sm-2 {
      padding-right: 0.5rem !important; }
    .main-locations .pb-sm-2,
    .main-locations .py-sm-2 {
      padding-bottom: 0.5rem !important; }
    .main-locations .pl-sm-2,
    .main-locations .px-sm-2 {
      padding-left: 0.5rem !important; }
    .main-locations .p-sm-3 {
      padding: 1rem !important; }
    .main-locations .pt-sm-3,
    .main-locations .py-sm-3 {
      padding-top: 1rem !important; }
    .main-locations .pr-sm-3,
    .main-locations .px-sm-3 {
      padding-right: 1rem !important; }
    .main-locations .pb-sm-3,
    .main-locations .py-sm-3 {
      padding-bottom: 1rem !important; }
    .main-locations .pl-sm-3,
    .main-locations .px-sm-3 {
      padding-left: 1rem !important; }
    .main-locations .p-sm-4 {
      padding: 1.5rem !important; }
    .main-locations .pt-sm-4,
    .main-locations .py-sm-4 {
      padding-top: 1.5rem !important; }
    .main-locations .pr-sm-4,
    .main-locations .px-sm-4 {
      padding-right: 1.5rem !important; }
    .main-locations .pb-sm-4,
    .main-locations .py-sm-4 {
      padding-bottom: 1.5rem !important; }
    .main-locations .pl-sm-4,
    .main-locations .px-sm-4 {
      padding-left: 1.5rem !important; }
    .main-locations .p-sm-5 {
      padding: 3rem !important; }
    .main-locations .pt-sm-5,
    .main-locations .py-sm-5 {
      padding-top: 3rem !important; }
    .main-locations .pr-sm-5,
    .main-locations .px-sm-5 {
      padding-right: 3rem !important; }
    .main-locations .pb-sm-5,
    .main-locations .py-sm-5 {
      padding-bottom: 3rem !important; }
    .main-locations .pl-sm-5,
    .main-locations .px-sm-5 {
      padding-left: 3rem !important; }
    .main-locations .m-sm-n1 {
      margin: -0.25rem !important; }
    .main-locations .mt-sm-n1,
    .main-locations .my-sm-n1 {
      margin-top: -0.25rem !important; }
    .main-locations .mr-sm-n1,
    .main-locations .mx-sm-n1 {
      margin-right: -0.25rem !important; }
    .main-locations .mb-sm-n1,
    .main-locations .my-sm-n1 {
      margin-bottom: -0.25rem !important; }
    .main-locations .ml-sm-n1,
    .main-locations .mx-sm-n1 {
      margin-left: -0.25rem !important; }
    .main-locations .m-sm-n2 {
      margin: -0.5rem !important; }
    .main-locations .mt-sm-n2,
    .main-locations .my-sm-n2 {
      margin-top: -0.5rem !important; }
    .main-locations .mr-sm-n2,
    .main-locations .mx-sm-n2 {
      margin-right: -0.5rem !important; }
    .main-locations .mb-sm-n2,
    .main-locations .my-sm-n2 {
      margin-bottom: -0.5rem !important; }
    .main-locations .ml-sm-n2,
    .main-locations .mx-sm-n2 {
      margin-left: -0.5rem !important; }
    .main-locations .m-sm-n3 {
      margin: -1rem !important; }
    .main-locations .mt-sm-n3,
    .main-locations .my-sm-n3 {
      margin-top: -1rem !important; }
    .main-locations .mr-sm-n3,
    .main-locations .mx-sm-n3 {
      margin-right: -1rem !important; }
    .main-locations .mb-sm-n3,
    .main-locations .my-sm-n3 {
      margin-bottom: -1rem !important; }
    .main-locations .ml-sm-n3,
    .main-locations .mx-sm-n3 {
      margin-left: -1rem !important; }
    .main-locations .m-sm-n4 {
      margin: -1.5rem !important; }
    .main-locations .mt-sm-n4,
    .main-locations .my-sm-n4 {
      margin-top: -1.5rem !important; }
    .main-locations .mr-sm-n4,
    .main-locations .mx-sm-n4 {
      margin-right: -1.5rem !important; }
    .main-locations .mb-sm-n4,
    .main-locations .my-sm-n4 {
      margin-bottom: -1.5rem !important; }
    .main-locations .ml-sm-n4,
    .main-locations .mx-sm-n4 {
      margin-left: -1.5rem !important; }
    .main-locations .m-sm-n5 {
      margin: -3rem !important; }
    .main-locations .mt-sm-n5,
    .main-locations .my-sm-n5 {
      margin-top: -3rem !important; }
    .main-locations .mr-sm-n5,
    .main-locations .mx-sm-n5 {
      margin-right: -3rem !important; }
    .main-locations .mb-sm-n5,
    .main-locations .my-sm-n5 {
      margin-bottom: -3rem !important; }
    .main-locations .ml-sm-n5,
    .main-locations .mx-sm-n5 {
      margin-left: -3rem !important; }
    .main-locations .m-sm-auto {
      margin: auto !important; }
    .main-locations .mt-sm-auto,
    .main-locations .my-sm-auto {
      margin-top: auto !important; }
    .main-locations .mr-sm-auto,
    .main-locations .mx-sm-auto {
      margin-right: auto !important; }
    .main-locations .mb-sm-auto,
    .main-locations .my-sm-auto {
      margin-bottom: auto !important; }
    .main-locations .ml-sm-auto,
    .main-locations .mx-sm-auto {
      margin-left: auto !important; } }
  @media (min-width: 768px) {
    .main-locations .m-md-0 {
      margin: 0 !important; }
    .main-locations .mt-md-0,
    .main-locations .my-md-0 {
      margin-top: 0 !important; }
    .main-locations .mr-md-0,
    .main-locations .mx-md-0 {
      margin-right: 0 !important; }
    .main-locations .mb-md-0,
    .main-locations .my-md-0 {
      margin-bottom: 0 !important; }
    .main-locations .ml-md-0,
    .main-locations .mx-md-0 {
      margin-left: 0 !important; }
    .main-locations .m-md-1 {
      margin: 0.25rem !important; }
    .main-locations .mt-md-1,
    .main-locations .my-md-1 {
      margin-top: 0.25rem !important; }
    .main-locations .mr-md-1,
    .main-locations .mx-md-1 {
      margin-right: 0.25rem !important; }
    .main-locations .mb-md-1,
    .main-locations .my-md-1 {
      margin-bottom: 0.25rem !important; }
    .main-locations .ml-md-1,
    .main-locations .mx-md-1 {
      margin-left: 0.25rem !important; }
    .main-locations .m-md-2 {
      margin: 0.5rem !important; }
    .main-locations .mt-md-2,
    .main-locations .my-md-2 {
      margin-top: 0.5rem !important; }
    .main-locations .mr-md-2,
    .main-locations .mx-md-2 {
      margin-right: 0.5rem !important; }
    .main-locations .mb-md-2,
    .main-locations .my-md-2 {
      margin-bottom: 0.5rem !important; }
    .main-locations .ml-md-2,
    .main-locations .mx-md-2 {
      margin-left: 0.5rem !important; }
    .main-locations .m-md-3 {
      margin: 1rem !important; }
    .main-locations .mt-md-3,
    .main-locations .my-md-3 {
      margin-top: 1rem !important; }
    .main-locations .mr-md-3,
    .main-locations .mx-md-3 {
      margin-right: 1rem !important; }
    .main-locations .mb-md-3,
    .main-locations .my-md-3 {
      margin-bottom: 1rem !important; }
    .main-locations .ml-md-3,
    .main-locations .mx-md-3 {
      margin-left: 1rem !important; }
    .main-locations .m-md-4 {
      margin: 1.5rem !important; }
    .main-locations .mt-md-4,
    .main-locations .my-md-4 {
      margin-top: 1.5rem !important; }
    .main-locations .mr-md-4,
    .main-locations .mx-md-4 {
      margin-right: 1.5rem !important; }
    .main-locations .mb-md-4,
    .main-locations .my-md-4 {
      margin-bottom: 1.5rem !important; }
    .main-locations .ml-md-4,
    .main-locations .mx-md-4 {
      margin-left: 1.5rem !important; }
    .main-locations .m-md-5 {
      margin: 3rem !important; }
    .main-locations .mt-md-5,
    .main-locations .my-md-5 {
      margin-top: 3rem !important; }
    .main-locations .mr-md-5,
    .main-locations .mx-md-5 {
      margin-right: 3rem !important; }
    .main-locations .mb-md-5,
    .main-locations .my-md-5 {
      margin-bottom: 3rem !important; }
    .main-locations .ml-md-5,
    .main-locations .mx-md-5 {
      margin-left: 3rem !important; }
    .main-locations .p-md-0 {
      padding: 0 !important; }
    .main-locations .pt-md-0,
    .main-locations .py-md-0 {
      padding-top: 0 !important; }
    .main-locations .pr-md-0,
    .main-locations .px-md-0 {
      padding-right: 0 !important; }
    .main-locations .pb-md-0,
    .main-locations .py-md-0 {
      padding-bottom: 0 !important; }
    .main-locations .pl-md-0,
    .main-locations .px-md-0 {
      padding-left: 0 !important; }
    .main-locations .p-md-1 {
      padding: 0.25rem !important; }
    .main-locations .pt-md-1,
    .main-locations .py-md-1 {
      padding-top: 0.25rem !important; }
    .main-locations .pr-md-1,
    .main-locations .px-md-1 {
      padding-right: 0.25rem !important; }
    .main-locations .pb-md-1,
    .main-locations .py-md-1 {
      padding-bottom: 0.25rem !important; }
    .main-locations .pl-md-1,
    .main-locations .px-md-1 {
      padding-left: 0.25rem !important; }
    .main-locations .p-md-2 {
      padding: 0.5rem !important; }
    .main-locations .pt-md-2,
    .main-locations .py-md-2 {
      padding-top: 0.5rem !important; }
    .main-locations .pr-md-2,
    .main-locations .px-md-2 {
      padding-right: 0.5rem !important; }
    .main-locations .pb-md-2,
    .main-locations .py-md-2 {
      padding-bottom: 0.5rem !important; }
    .main-locations .pl-md-2,
    .main-locations .px-md-2 {
      padding-left: 0.5rem !important; }
    .main-locations .p-md-3 {
      padding: 1rem !important; }
    .main-locations .pt-md-3,
    .main-locations .py-md-3 {
      padding-top: 1rem !important; }
    .main-locations .pr-md-3,
    .main-locations .px-md-3 {
      padding-right: 1rem !important; }
    .main-locations .pb-md-3,
    .main-locations .py-md-3 {
      padding-bottom: 1rem !important; }
    .main-locations .pl-md-3,
    .main-locations .px-md-3 {
      padding-left: 1rem !important; }
    .main-locations .p-md-4 {
      padding: 1.5rem !important; }
    .main-locations .pt-md-4,
    .main-locations .py-md-4 {
      padding-top: 1.5rem !important; }
    .main-locations .pr-md-4,
    .main-locations .px-md-4 {
      padding-right: 1.5rem !important; }
    .main-locations .pb-md-4,
    .main-locations .py-md-4 {
      padding-bottom: 1.5rem !important; }
    .main-locations .pl-md-4,
    .main-locations .px-md-4 {
      padding-left: 1.5rem !important; }
    .main-locations .p-md-5 {
      padding: 3rem !important; }
    .main-locations .pt-md-5,
    .main-locations .py-md-5 {
      padding-top: 3rem !important; }
    .main-locations .pr-md-5,
    .main-locations .px-md-5 {
      padding-right: 3rem !important; }
    .main-locations .pb-md-5,
    .main-locations .py-md-5 {
      padding-bottom: 3rem !important; }
    .main-locations .pl-md-5,
    .main-locations .px-md-5 {
      padding-left: 3rem !important; }
    .main-locations .m-md-n1 {
      margin: -0.25rem !important; }
    .main-locations .mt-md-n1,
    .main-locations .my-md-n1 {
      margin-top: -0.25rem !important; }
    .main-locations .mr-md-n1,
    .main-locations .mx-md-n1 {
      margin-right: -0.25rem !important; }
    .main-locations .mb-md-n1,
    .main-locations .my-md-n1 {
      margin-bottom: -0.25rem !important; }
    .main-locations .ml-md-n1,
    .main-locations .mx-md-n1 {
      margin-left: -0.25rem !important; }
    .main-locations .m-md-n2 {
      margin: -0.5rem !important; }
    .main-locations .mt-md-n2,
    .main-locations .my-md-n2 {
      margin-top: -0.5rem !important; }
    .main-locations .mr-md-n2,
    .main-locations .mx-md-n2 {
      margin-right: -0.5rem !important; }
    .main-locations .mb-md-n2,
    .main-locations .my-md-n2 {
      margin-bottom: -0.5rem !important; }
    .main-locations .ml-md-n2,
    .main-locations .mx-md-n2 {
      margin-left: -0.5rem !important; }
    .main-locations .m-md-n3 {
      margin: -1rem !important; }
    .main-locations .mt-md-n3,
    .main-locations .my-md-n3 {
      margin-top: -1rem !important; }
    .main-locations .mr-md-n3,
    .main-locations .mx-md-n3 {
      margin-right: -1rem !important; }
    .main-locations .mb-md-n3,
    .main-locations .my-md-n3 {
      margin-bottom: -1rem !important; }
    .main-locations .ml-md-n3,
    .main-locations .mx-md-n3 {
      margin-left: -1rem !important; }
    .main-locations .m-md-n4 {
      margin: -1.5rem !important; }
    .main-locations .mt-md-n4,
    .main-locations .my-md-n4 {
      margin-top: -1.5rem !important; }
    .main-locations .mr-md-n4,
    .main-locations .mx-md-n4 {
      margin-right: -1.5rem !important; }
    .main-locations .mb-md-n4,
    .main-locations .my-md-n4 {
      margin-bottom: -1.5rem !important; }
    .main-locations .ml-md-n4,
    .main-locations .mx-md-n4 {
      margin-left: -1.5rem !important; }
    .main-locations .m-md-n5 {
      margin: -3rem !important; }
    .main-locations .mt-md-n5,
    .main-locations .my-md-n5 {
      margin-top: -3rem !important; }
    .main-locations .mr-md-n5,
    .main-locations .mx-md-n5 {
      margin-right: -3rem !important; }
    .main-locations .mb-md-n5,
    .main-locations .my-md-n5 {
      margin-bottom: -3rem !important; }
    .main-locations .ml-md-n5,
    .main-locations .mx-md-n5 {
      margin-left: -3rem !important; }
    .main-locations .m-md-auto {
      margin: auto !important; }
    .main-locations .mt-md-auto,
    .main-locations .my-md-auto {
      margin-top: auto !important; }
    .main-locations .mr-md-auto,
    .main-locations .mx-md-auto {
      margin-right: auto !important; }
    .main-locations .mb-md-auto,
    .main-locations .my-md-auto {
      margin-bottom: auto !important; }
    .main-locations .ml-md-auto,
    .main-locations .mx-md-auto {
      margin-left: auto !important; } }
  @media (min-width: 992px) {
    .main-locations .m-lg-0 {
      margin: 0 !important; }
    .main-locations .mt-lg-0,
    .main-locations .my-lg-0 {
      margin-top: 0 !important; }
    .main-locations .mr-lg-0,
    .main-locations .mx-lg-0 {
      margin-right: 0 !important; }
    .main-locations .mb-lg-0,
    .main-locations .my-lg-0 {
      margin-bottom: 0 !important; }
    .main-locations .ml-lg-0,
    .main-locations .mx-lg-0 {
      margin-left: 0 !important; }
    .main-locations .m-lg-1 {
      margin: 0.25rem !important; }
    .main-locations .mt-lg-1,
    .main-locations .my-lg-1 {
      margin-top: 0.25rem !important; }
    .main-locations .mr-lg-1,
    .main-locations .mx-lg-1 {
      margin-right: 0.25rem !important; }
    .main-locations .mb-lg-1,
    .main-locations .my-lg-1 {
      margin-bottom: 0.25rem !important; }
    .main-locations .ml-lg-1,
    .main-locations .mx-lg-1 {
      margin-left: 0.25rem !important; }
    .main-locations .m-lg-2 {
      margin: 0.5rem !important; }
    .main-locations .mt-lg-2,
    .main-locations .my-lg-2 {
      margin-top: 0.5rem !important; }
    .main-locations .mr-lg-2,
    .main-locations .mx-lg-2 {
      margin-right: 0.5rem !important; }
    .main-locations .mb-lg-2,
    .main-locations .my-lg-2 {
      margin-bottom: 0.5rem !important; }
    .main-locations .ml-lg-2,
    .main-locations .mx-lg-2 {
      margin-left: 0.5rem !important; }
    .main-locations .m-lg-3 {
      margin: 1rem !important; }
    .main-locations .mt-lg-3,
    .main-locations .my-lg-3 {
      margin-top: 1rem !important; }
    .main-locations .mr-lg-3,
    .main-locations .mx-lg-3 {
      margin-right: 1rem !important; }
    .main-locations .mb-lg-3,
    .main-locations .my-lg-3 {
      margin-bottom: 1rem !important; }
    .main-locations .ml-lg-3,
    .main-locations .mx-lg-3 {
      margin-left: 1rem !important; }
    .main-locations .m-lg-4 {
      margin: 1.5rem !important; }
    .main-locations .mt-lg-4,
    .main-locations .my-lg-4 {
      margin-top: 1.5rem !important; }
    .main-locations .mr-lg-4,
    .main-locations .mx-lg-4 {
      margin-right: 1.5rem !important; }
    .main-locations .mb-lg-4,
    .main-locations .my-lg-4 {
      margin-bottom: 1.5rem !important; }
    .main-locations .ml-lg-4,
    .main-locations .mx-lg-4 {
      margin-left: 1.5rem !important; }
    .main-locations .m-lg-5 {
      margin: 3rem !important; }
    .main-locations .mt-lg-5,
    .main-locations .my-lg-5 {
      margin-top: 3rem !important; }
    .main-locations .mr-lg-5,
    .main-locations .mx-lg-5 {
      margin-right: 3rem !important; }
    .main-locations .mb-lg-5,
    .main-locations .my-lg-5 {
      margin-bottom: 3rem !important; }
    .main-locations .ml-lg-5,
    .main-locations .mx-lg-5 {
      margin-left: 3rem !important; }
    .main-locations .p-lg-0 {
      padding: 0 !important; }
    .main-locations .pt-lg-0,
    .main-locations .py-lg-0 {
      padding-top: 0 !important; }
    .main-locations .pr-lg-0,
    .main-locations .px-lg-0 {
      padding-right: 0 !important; }
    .main-locations .pb-lg-0,
    .main-locations .py-lg-0 {
      padding-bottom: 0 !important; }
    .main-locations .pl-lg-0,
    .main-locations .px-lg-0 {
      padding-left: 0 !important; }
    .main-locations .p-lg-1 {
      padding: 0.25rem !important; }
    .main-locations .pt-lg-1,
    .main-locations .py-lg-1 {
      padding-top: 0.25rem !important; }
    .main-locations .pr-lg-1,
    .main-locations .px-lg-1 {
      padding-right: 0.25rem !important; }
    .main-locations .pb-lg-1,
    .main-locations .py-lg-1 {
      padding-bottom: 0.25rem !important; }
    .main-locations .pl-lg-1,
    .main-locations .px-lg-1 {
      padding-left: 0.25rem !important; }
    .main-locations .p-lg-2 {
      padding: 0.5rem !important; }
    .main-locations .pt-lg-2,
    .main-locations .py-lg-2 {
      padding-top: 0.5rem !important; }
    .main-locations .pr-lg-2,
    .main-locations .px-lg-2 {
      padding-right: 0.5rem !important; }
    .main-locations .pb-lg-2,
    .main-locations .py-lg-2 {
      padding-bottom: 0.5rem !important; }
    .main-locations .pl-lg-2,
    .main-locations .px-lg-2 {
      padding-left: 0.5rem !important; }
    .main-locations .p-lg-3 {
      padding: 1rem !important; }
    .main-locations .pt-lg-3,
    .main-locations .py-lg-3 {
      padding-top: 1rem !important; }
    .main-locations .pr-lg-3,
    .main-locations .px-lg-3 {
      padding-right: 1rem !important; }
    .main-locations .pb-lg-3,
    .main-locations .py-lg-3 {
      padding-bottom: 1rem !important; }
    .main-locations .pl-lg-3,
    .main-locations .px-lg-3 {
      padding-left: 1rem !important; }
    .main-locations .p-lg-4 {
      padding: 1.5rem !important; }
    .main-locations .pt-lg-4,
    .main-locations .py-lg-4 {
      padding-top: 1.5rem !important; }
    .main-locations .pr-lg-4,
    .main-locations .px-lg-4 {
      padding-right: 1.5rem !important; }
    .main-locations .pb-lg-4,
    .main-locations .py-lg-4 {
      padding-bottom: 1.5rem !important; }
    .main-locations .pl-lg-4,
    .main-locations .px-lg-4 {
      padding-left: 1.5rem !important; }
    .main-locations .p-lg-5 {
      padding: 3rem !important; }
    .main-locations .pt-lg-5,
    .main-locations .py-lg-5 {
      padding-top: 3rem !important; }
    .main-locations .pr-lg-5,
    .main-locations .px-lg-5 {
      padding-right: 3rem !important; }
    .main-locations .pb-lg-5,
    .main-locations .py-lg-5 {
      padding-bottom: 3rem !important; }
    .main-locations .pl-lg-5,
    .main-locations .px-lg-5 {
      padding-left: 3rem !important; }
    .main-locations .m-lg-n1 {
      margin: -0.25rem !important; }
    .main-locations .mt-lg-n1,
    .main-locations .my-lg-n1 {
      margin-top: -0.25rem !important; }
    .main-locations .mr-lg-n1,
    .main-locations .mx-lg-n1 {
      margin-right: -0.25rem !important; }
    .main-locations .mb-lg-n1,
    .main-locations .my-lg-n1 {
      margin-bottom: -0.25rem !important; }
    .main-locations .ml-lg-n1,
    .main-locations .mx-lg-n1 {
      margin-left: -0.25rem !important; }
    .main-locations .m-lg-n2 {
      margin: -0.5rem !important; }
    .main-locations .mt-lg-n2,
    .main-locations .my-lg-n2 {
      margin-top: -0.5rem !important; }
    .main-locations .mr-lg-n2,
    .main-locations .mx-lg-n2 {
      margin-right: -0.5rem !important; }
    .main-locations .mb-lg-n2,
    .main-locations .my-lg-n2 {
      margin-bottom: -0.5rem !important; }
    .main-locations .ml-lg-n2,
    .main-locations .mx-lg-n2 {
      margin-left: -0.5rem !important; }
    .main-locations .m-lg-n3 {
      margin: -1rem !important; }
    .main-locations .mt-lg-n3,
    .main-locations .my-lg-n3 {
      margin-top: -1rem !important; }
    .main-locations .mr-lg-n3,
    .main-locations .mx-lg-n3 {
      margin-right: -1rem !important; }
    .main-locations .mb-lg-n3,
    .main-locations .my-lg-n3 {
      margin-bottom: -1rem !important; }
    .main-locations .ml-lg-n3,
    .main-locations .mx-lg-n3 {
      margin-left: -1rem !important; }
    .main-locations .m-lg-n4 {
      margin: -1.5rem !important; }
    .main-locations .mt-lg-n4,
    .main-locations .my-lg-n4 {
      margin-top: -1.5rem !important; }
    .main-locations .mr-lg-n4,
    .main-locations .mx-lg-n4 {
      margin-right: -1.5rem !important; }
    .main-locations .mb-lg-n4,
    .main-locations .my-lg-n4 {
      margin-bottom: -1.5rem !important; }
    .main-locations .ml-lg-n4,
    .main-locations .mx-lg-n4 {
      margin-left: -1.5rem !important; }
    .main-locations .m-lg-n5 {
      margin: -3rem !important; }
    .main-locations .mt-lg-n5,
    .main-locations .my-lg-n5 {
      margin-top: -3rem !important; }
    .main-locations .mr-lg-n5,
    .main-locations .mx-lg-n5 {
      margin-right: -3rem !important; }
    .main-locations .mb-lg-n5,
    .main-locations .my-lg-n5 {
      margin-bottom: -3rem !important; }
    .main-locations .ml-lg-n5,
    .main-locations .mx-lg-n5 {
      margin-left: -3rem !important; }
    .main-locations .m-lg-auto {
      margin: auto !important; }
    .main-locations .mt-lg-auto,
    .main-locations .my-lg-auto {
      margin-top: auto !important; }
    .main-locations .mr-lg-auto,
    .main-locations .mx-lg-auto {
      margin-right: auto !important; }
    .main-locations .mb-lg-auto,
    .main-locations .my-lg-auto {
      margin-bottom: auto !important; }
    .main-locations .ml-lg-auto,
    .main-locations .mx-lg-auto {
      margin-left: auto !important; } }
  @media (min-width: 1200px) {
    .main-locations .m-xl-0 {
      margin: 0 !important; }
    .main-locations .mt-xl-0,
    .main-locations .my-xl-0 {
      margin-top: 0 !important; }
    .main-locations .mr-xl-0,
    .main-locations .mx-xl-0 {
      margin-right: 0 !important; }
    .main-locations .mb-xl-0,
    .main-locations .my-xl-0 {
      margin-bottom: 0 !important; }
    .main-locations .ml-xl-0,
    .main-locations .mx-xl-0 {
      margin-left: 0 !important; }
    .main-locations .m-xl-1 {
      margin: 0.25rem !important; }
    .main-locations .mt-xl-1,
    .main-locations .my-xl-1 {
      margin-top: 0.25rem !important; }
    .main-locations .mr-xl-1,
    .main-locations .mx-xl-1 {
      margin-right: 0.25rem !important; }
    .main-locations .mb-xl-1,
    .main-locations .my-xl-1 {
      margin-bottom: 0.25rem !important; }
    .main-locations .ml-xl-1,
    .main-locations .mx-xl-1 {
      margin-left: 0.25rem !important; }
    .main-locations .m-xl-2 {
      margin: 0.5rem !important; }
    .main-locations .mt-xl-2,
    .main-locations .my-xl-2 {
      margin-top: 0.5rem !important; }
    .main-locations .mr-xl-2,
    .main-locations .mx-xl-2 {
      margin-right: 0.5rem !important; }
    .main-locations .mb-xl-2,
    .main-locations .my-xl-2 {
      margin-bottom: 0.5rem !important; }
    .main-locations .ml-xl-2,
    .main-locations .mx-xl-2 {
      margin-left: 0.5rem !important; }
    .main-locations .m-xl-3 {
      margin: 1rem !important; }
    .main-locations .mt-xl-3,
    .main-locations .my-xl-3 {
      margin-top: 1rem !important; }
    .main-locations .mr-xl-3,
    .main-locations .mx-xl-3 {
      margin-right: 1rem !important; }
    .main-locations .mb-xl-3,
    .main-locations .my-xl-3 {
      margin-bottom: 1rem !important; }
    .main-locations .ml-xl-3,
    .main-locations .mx-xl-3 {
      margin-left: 1rem !important; }
    .main-locations .m-xl-4 {
      margin: 1.5rem !important; }
    .main-locations .mt-xl-4,
    .main-locations .my-xl-4 {
      margin-top: 1.5rem !important; }
    .main-locations .mr-xl-4,
    .main-locations .mx-xl-4 {
      margin-right: 1.5rem !important; }
    .main-locations .mb-xl-4,
    .main-locations .my-xl-4 {
      margin-bottom: 1.5rem !important; }
    .main-locations .ml-xl-4,
    .main-locations .mx-xl-4 {
      margin-left: 1.5rem !important; }
    .main-locations .m-xl-5 {
      margin: 3rem !important; }
    .main-locations .mt-xl-5,
    .main-locations .my-xl-5 {
      margin-top: 3rem !important; }
    .main-locations .mr-xl-5,
    .main-locations .mx-xl-5 {
      margin-right: 3rem !important; }
    .main-locations .mb-xl-5,
    .main-locations .my-xl-5 {
      margin-bottom: 3rem !important; }
    .main-locations .ml-xl-5,
    .main-locations .mx-xl-5 {
      margin-left: 3rem !important; }
    .main-locations .p-xl-0 {
      padding: 0 !important; }
    .main-locations .pt-xl-0,
    .main-locations .py-xl-0 {
      padding-top: 0 !important; }
    .main-locations .pr-xl-0,
    .main-locations .px-xl-0 {
      padding-right: 0 !important; }
    .main-locations .pb-xl-0,
    .main-locations .py-xl-0 {
      padding-bottom: 0 !important; }
    .main-locations .pl-xl-0,
    .main-locations .px-xl-0 {
      padding-left: 0 !important; }
    .main-locations .p-xl-1 {
      padding: 0.25rem !important; }
    .main-locations .pt-xl-1,
    .main-locations .py-xl-1 {
      padding-top: 0.25rem !important; }
    .main-locations .pr-xl-1,
    .main-locations .px-xl-1 {
      padding-right: 0.25rem !important; }
    .main-locations .pb-xl-1,
    .main-locations .py-xl-1 {
      padding-bottom: 0.25rem !important; }
    .main-locations .pl-xl-1,
    .main-locations .px-xl-1 {
      padding-left: 0.25rem !important; }
    .main-locations .p-xl-2 {
      padding: 0.5rem !important; }
    .main-locations .pt-xl-2,
    .main-locations .py-xl-2 {
      padding-top: 0.5rem !important; }
    .main-locations .pr-xl-2,
    .main-locations .px-xl-2 {
      padding-right: 0.5rem !important; }
    .main-locations .pb-xl-2,
    .main-locations .py-xl-2 {
      padding-bottom: 0.5rem !important; }
    .main-locations .pl-xl-2,
    .main-locations .px-xl-2 {
      padding-left: 0.5rem !important; }
    .main-locations .p-xl-3 {
      padding: 1rem !important; }
    .main-locations .pt-xl-3,
    .main-locations .py-xl-3 {
      padding-top: 1rem !important; }
    .main-locations .pr-xl-3,
    .main-locations .px-xl-3 {
      padding-right: 1rem !important; }
    .main-locations .pb-xl-3,
    .main-locations .py-xl-3 {
      padding-bottom: 1rem !important; }
    .main-locations .pl-xl-3,
    .main-locations .px-xl-3 {
      padding-left: 1rem !important; }
    .main-locations .p-xl-4 {
      padding: 1.5rem !important; }
    .main-locations .pt-xl-4,
    .main-locations .py-xl-4 {
      padding-top: 1.5rem !important; }
    .main-locations .pr-xl-4,
    .main-locations .px-xl-4 {
      padding-right: 1.5rem !important; }
    .main-locations .pb-xl-4,
    .main-locations .py-xl-4 {
      padding-bottom: 1.5rem !important; }
    .main-locations .pl-xl-4,
    .main-locations .px-xl-4 {
      padding-left: 1.5rem !important; }
    .main-locations .p-xl-5 {
      padding: 3rem !important; }
    .main-locations .pt-xl-5,
    .main-locations .py-xl-5 {
      padding-top: 3rem !important; }
    .main-locations .pr-xl-5,
    .main-locations .px-xl-5 {
      padding-right: 3rem !important; }
    .main-locations .pb-xl-5,
    .main-locations .py-xl-5 {
      padding-bottom: 3rem !important; }
    .main-locations .pl-xl-5,
    .main-locations .px-xl-5 {
      padding-left: 3rem !important; }
    .main-locations .m-xl-n1 {
      margin: -0.25rem !important; }
    .main-locations .mt-xl-n1,
    .main-locations .my-xl-n1 {
      margin-top: -0.25rem !important; }
    .main-locations .mr-xl-n1,
    .main-locations .mx-xl-n1 {
      margin-right: -0.25rem !important; }
    .main-locations .mb-xl-n1,
    .main-locations .my-xl-n1 {
      margin-bottom: -0.25rem !important; }
    .main-locations .ml-xl-n1,
    .main-locations .mx-xl-n1 {
      margin-left: -0.25rem !important; }
    .main-locations .m-xl-n2 {
      margin: -0.5rem !important; }
    .main-locations .mt-xl-n2,
    .main-locations .my-xl-n2 {
      margin-top: -0.5rem !important; }
    .main-locations .mr-xl-n2,
    .main-locations .mx-xl-n2 {
      margin-right: -0.5rem !important; }
    .main-locations .mb-xl-n2,
    .main-locations .my-xl-n2 {
      margin-bottom: -0.5rem !important; }
    .main-locations .ml-xl-n2,
    .main-locations .mx-xl-n2 {
      margin-left: -0.5rem !important; }
    .main-locations .m-xl-n3 {
      margin: -1rem !important; }
    .main-locations .mt-xl-n3,
    .main-locations .my-xl-n3 {
      margin-top: -1rem !important; }
    .main-locations .mr-xl-n3,
    .main-locations .mx-xl-n3 {
      margin-right: -1rem !important; }
    .main-locations .mb-xl-n3,
    .main-locations .my-xl-n3 {
      margin-bottom: -1rem !important; }
    .main-locations .ml-xl-n3,
    .main-locations .mx-xl-n3 {
      margin-left: -1rem !important; }
    .main-locations .m-xl-n4 {
      margin: -1.5rem !important; }
    .main-locations .mt-xl-n4,
    .main-locations .my-xl-n4 {
      margin-top: -1.5rem !important; }
    .main-locations .mr-xl-n4,
    .main-locations .mx-xl-n4 {
      margin-right: -1.5rem !important; }
    .main-locations .mb-xl-n4,
    .main-locations .my-xl-n4 {
      margin-bottom: -1.5rem !important; }
    .main-locations .ml-xl-n4,
    .main-locations .mx-xl-n4 {
      margin-left: -1.5rem !important; }
    .main-locations .m-xl-n5 {
      margin: -3rem !important; }
    .main-locations .mt-xl-n5,
    .main-locations .my-xl-n5 {
      margin-top: -3rem !important; }
    .main-locations .mr-xl-n5,
    .main-locations .mx-xl-n5 {
      margin-right: -3rem !important; }
    .main-locations .mb-xl-n5,
    .main-locations .my-xl-n5 {
      margin-bottom: -3rem !important; }
    .main-locations .ml-xl-n5,
    .main-locations .mx-xl-n5 {
      margin-left: -3rem !important; }
    .main-locations .m-xl-auto {
      margin: auto !important; }
    .main-locations .mt-xl-auto,
    .main-locations .my-xl-auto {
      margin-top: auto !important; }
    .main-locations .mr-xl-auto,
    .main-locations .mx-xl-auto {
      margin-right: auto !important; }
    .main-locations .mb-xl-auto,
    .main-locations .my-xl-auto {
      margin-bottom: auto !important; }
    .main-locations .ml-xl-auto,
    .main-locations .mx-xl-auto {
      margin-left: auto !important; } }
  .main-locations .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent; }
  .main-locations .text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
  .main-locations .text-justify {
    text-align: justify !important; }
  .main-locations .text-wrap {
    white-space: normal !important; }
  .main-locations .text-nowrap {
    white-space: nowrap !important; }
  .main-locations .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .main-locations .text-left {
    text-align: left !important; }
  .main-locations .text-right {
    text-align: right !important; }
  .main-locations .text-center {
    text-align: center !important; }
  @media (min-width: 576px) {
    .main-locations .text-sm-left {
      text-align: left !important; }
    .main-locations .text-sm-right {
      text-align: right !important; }
    .main-locations .text-sm-center {
      text-align: center !important; } }
  @media (min-width: 768px) {
    .main-locations .text-md-left {
      text-align: left !important; }
    .main-locations .text-md-right {
      text-align: right !important; }
    .main-locations .text-md-center {
      text-align: center !important; } }
  @media (min-width: 992px) {
    .main-locations .text-lg-left {
      text-align: left !important; }
    .main-locations .text-lg-right {
      text-align: right !important; }
    .main-locations .text-lg-center {
      text-align: center !important; } }
  @media (min-width: 1200px) {
    .main-locations .text-xl-left {
      text-align: left !important; }
    .main-locations .text-xl-right {
      text-align: right !important; }
    .main-locations .text-xl-center {
      text-align: center !important; } }
  .main-locations .text-lowercase {
    text-transform: lowercase !important; }
  .main-locations .text-uppercase {
    text-transform: uppercase !important; }
  .main-locations .text-capitalize {
    text-transform: capitalize !important; }
  .main-locations .font-weight-light {
    font-weight: 300 !important; }
  .main-locations .font-weight-lighter {
    font-weight: lighter !important; }
  .main-locations .font-weight-normal {
    font-weight: 400 !important; }
  .main-locations .font-weight-bold {
    font-weight: 700 !important; }
  .main-locations .font-weight-bolder {
    font-weight: bolder !important; }
  .main-locations .font-italic {
    font-style: italic !important; }
  .main-locations .text-white {
    color: #fff !important; }
  .main-locations .text-primary {
    color: #1e73be !important; }
  .main-locations a.text-primary:hover, .main-locations a.text-primary:focus {
    color: #144b7c !important; }
  .main-locations .text-secondary {
    color: #6c757d !important; }
  .main-locations a.text-secondary:hover, .main-locations a.text-secondary:focus {
    color: #494f54 !important; }
  .main-locations .text-success {
    color: #7dd667 !important; }
  .main-locations a.text-success:hover, .main-locations a.text-success:focus {
    color: #4fbd33 !important; }
  .main-locations .text-info {
    color: #17a2b8 !important; }
  .main-locations a.text-info:hover, .main-locations a.text-info:focus {
    color: #0f6674 !important; }
  .main-locations .text-warning {
    color: #ffc107 !important; }
  .main-locations a.text-warning:hover, .main-locations a.text-warning:focus {
    color: #ba8b00 !important; }
  .main-locations .text-danger {
    color: #dc3545 !important; }
  .main-locations a.text-danger:hover, .main-locations a.text-danger:focus {
    color: #a71d2a !important; }
  .main-locations .text-light {
    color: #f8f9fa !important; }
  .main-locations a.text-light:hover, .main-locations a.text-light:focus {
    color: #cbd3da !important; }
  .main-locations .text-dark {
    color: #343a40 !important; }
  .main-locations a.text-dark:hover, .main-locations a.text-dark:focus {
    color: #121416 !important; }
  .main-locations .text-white {
    color: #fff !important; }
  .main-locations a.text-white:hover, .main-locations a.text-white:focus {
    color: #d9d9d9 !important; }
  .main-locations .text-purple {
    color: #ad6edd !important; }
  .main-locations a.text-purple:hover, .main-locations a.text-purple:focus {
    color: #8a30ce !important; }
  .main-locations .text-salmon {
    color: #ff977a !important; }
  .main-locations a.text-salmon:hover, .main-locations a.text-salmon:focus {
    color: #ff5b2e !important; }
  .main-locations .text-cyan {
    color: #35bdff !important; }
  .main-locations a.text-cyan:hover, .main-locations a.text-cyan:focus {
    color: #009ce8 !important; }
  .main-locations .text-gray {
    color: #ced4da !important; }
  .main-locations a.text-gray:hover, .main-locations a.text-gray:focus {
    color: #a2aeb9 !important; }
  .main-locations .text-indigo {
    color: #502c6c !important; }
  .main-locations a.text-indigo:hover, .main-locations a.text-indigo:focus {
    color: #281636 !important; }
  .main-locations .text-orange {
    color: #fbb500 !important; }
  .main-locations a.text-orange:hover, .main-locations a.text-orange:focus {
    color: #af7e00 !important; }
  .main-locations .text-body {
    color: #212529 !important; }
  .main-locations .text-muted {
    color: #6c757d !important; }
  .main-locations .text-black-50 {
    color: rgba(50, 57, 68, 0.5) !important; }
  .main-locations .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important; }
  .main-locations .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  .main-locations .text-decoration-none {
    text-decoration: none !important; }
  .main-locations .text-break {
    word-break: break-word !important;
    word-wrap: break-word !important; }
  .main-locations .text-reset {
    color: inherit !important; }
  .main-locations .visible {
    visibility: visible !important; }
  .main-locations .invisible {
    visibility: hidden !important; }
  @media print {
    .main-locations *,
    .main-locations *::before,
    .main-locations *::after {
      text-shadow: none !important;
      box-shadow: none !important; }
    .main-locations a:not(.btn) {
      text-decoration: underline; }
    .main-locations abbr[title]::after {
      content: " (" attr(title) ")"; }
    .main-locations pre {
      white-space: pre-wrap !important; }
    .main-locations pre,
    .main-locations blockquote {
      border: 1px solid #adb5bd;
      page-break-inside: avoid; }
    .main-locations thead {
      display: table-header-group; }
    .main-locations tr,
    .main-locations img {
      page-break-inside: avoid; }
    .main-locations p,
    .main-locations h2,
    .main-locations h3 {
      orphans: 3;
      widows: 3; }
    .main-locations h2,
    .main-locations h3 {
      page-break-after: avoid; }
    @page {
      .main-locations {
        size: a3; } }
    .main-locations body {
      min-width: 992px !important; }
    .main-locations .container {
      min-width: 992px !important; }
    .main-locations .navbar {
      display: none; }
    .main-locations .badge {
      border: 1px solid #323944; }
    .main-locations .table {
      border-collapse: collapse !important; }
      .main-locations .table td,
      .main-locations .table th {
        background-color: #fff !important; }
    .main-locations .table-bordered th,
    .main-locations .table-bordered td {
      border: 1px solid #dee2e6 !important; }
    .main-locations .table-dark {
      color: inherit; }
      .main-locations .table-dark th,
      .main-locations .table-dark td,
      .main-locations .table-dark thead th,
      .main-locations .table-dark tbody + tbody {
        border-color: #ccc; }
    .main-locations .table .thead-dark th {
      color: inherit;
      border-color: #ccc; } }
  .main-locations .tofront {
    position: relative;
    z-index: 1; }
  .main-locations .full-width {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%; }
  .main-locations .c-pointer:hover {
    cursor: pointer; }
  .main-locations .c-move:hover {
    cursor: move; }
  .main-locations .z-index-1 {
    z-index: 1; }
  @media (max-width: 991.98px) {
    .main-locations .display-3 {
      font-size: 3.5rem; } }
  @media (max-width: 767.98px) {
    .main-locations .display-3 {
      font-size: 2rem; } }
  .main-locations .row.gap-y > .col, .main-locations .row.gap-y > [class*="col-"] {
    padding-top: 15px;
    padding-bottom: 15px; }
  .main-locations .mt-neg5 {
    margin-top: -5rem; }
  .main-locations .ml-neg5 {
    margin-left: -5rem; }
  @media (min-width: 768px) {
    .main-locations .h-md-100-v {
      height: 100vh; }
    .main-locations .h-md-100 {
      height: 100vh; } }
  @media (min-width: 1200px) {
    .main-locations .h-xl-300 {
      height: 300px; }
    .main-locations .h-max-380 {
      max-height: 380px; } }
  .main-locations .btn-round {
    border-radius: 30px !important; }
  .main-locations .btn {
    padding: 0.45rem 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 0.25rem;
    position: relative; }
    .main-locations .btn:hover, .main-locations .btn:focus {
      box-shadow: 0 0.5rem 1rem rgba(50, 57, 68, 0.15);
      outline: 0 !important; }
  .main-locations .btn-lg, .main-locations .btn-group-lg > .btn {
    padding: 0.65rem 2rem;
    font-size: 1.15rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .main-locations .btn-sm, .main-locations .btn-group-sm > .btn {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .main-locations .btn-link:hover, .main-locations .btn-link:focus {
    box-shadow: none; }
  .main-locations .btn-link.btn-primary {
    color: #1e73be;
    border-color: transparent; }
  .main-locations .btn-link.btn-secondary {
    color: #6c757d;
    border-color: transparent; }
  .main-locations .btn-link.btn-success {
    color: #7dd667;
    border-color: transparent; }
  .main-locations .btn-link.btn-info {
    color: #17a2b8;
    border-color: transparent; }
  .main-locations .btn-link.btn-warning {
    color: #ffc107;
    border-color: transparent; }
  .main-locations .btn-link.btn-danger {
    color: #dc3545;
    border-color: transparent; }
  .main-locations .btn-link.btn-light {
    color: #f8f9fa;
    border-color: transparent; }
  .main-locations .btn-link.btn-dark {
    color: #343a40;
    border-color: transparent; }
  .main-locations .btn-link.btn-white {
    color: #fff;
    border-color: transparent; }
  .main-locations .btn-link.btn-purple {
    color: #ad6edd;
    border-color: transparent; }
  .main-locations .btn-link.btn-salmon {
    color: #ff977a;
    border-color: transparent; }
  .main-locations .btn-link.btn-cyan {
    color: #35bdff;
    border-color: transparent; }
  .main-locations .btn-link.btn-gray {
    color: #ced4da;
    border-color: transparent; }
  .main-locations .btn-link.btn-indigo {
    color: #502c6c;
    border-color: transparent; }
  .main-locations .btn-link.btn-orange {
    color: #fbb500;
    border-color: transparent; }
  .main-locations .btn-white {
    background-color: #fff; }
  .main-locations .input-round {
    border-radius: 30px !important; }
  .main-locations .input-group.input-round input:first-child {
    border-radius: 30px 0 0 30px; }
  .main-locations .input-group.input-round input:last-child {
    border-radius: 0px 30px 30px 0px; }
  .main-locations .navbar {
    font-weight: 400; }
  .main-locations .navbar-brand {
    margin-right: 2rem;
    font-size: 1.25rem; }
  .main-locations .dropdown-item {
    font-weight: 300; }
  .main-locations .dropdown-menu {
    border: 0;
    text-transform: none;
    box-shadow: 0 10px 25px 0 rgba(50, 57, 68, 0.3); }
    @media (min-width: 768px) {
      .main-locations .dropdown-menu:before {
        content: '';
        top: -8px;
        position: absolute;
        left: 50px;
        border-top: 16px solid #fff;
        border-left: 16px solid #fff;
        transform: rotate(45deg);
        z-index: -1; } }
    @media (min-width: 768px) {
      .main-locations .dropdown-menu.dropdown-menu-right:before {
        left: unset;
        right: 50px; } }
    .main-locations .dropdown-menu.dropdown-caret-0:before {
      content: none; }
  .main-locations .navbar-light .navbar-brand {
    color: rgba(50, 57, 68, 0.9); }
    .main-locations .navbar-light .navbar-brand:hover, .main-locations .navbar-light .navbar-brand:focus {
      color: rgba(50, 57, 68, 0.9); }
  .main-locations .navbar-light .navbar-nav .nav-link {
    color: rgba(50, 57, 68, 0.5); }
    .main-locations .navbar-light .navbar-nav .nav-link:hover, .main-locations .navbar-light .navbar-nav .nav-link:focus {
      color: rgba(50, 57, 68, 0.7); }
    .main-locations .navbar-light .navbar-nav .nav-link.disabled {
      color: rgba(50, 57, 68, 0.3); }
  .main-locations .navbar-light .navbar-nav .show > .nav-link,
  .main-locations .navbar-light .navbar-nav .active > .nav-link,
  .main-locations .navbar-light .navbar-nav .nav-link.show,
  .main-locations .navbar-light .navbar-nav .nav-link.active {
    color: rgba(50, 57, 68, 0.9); }
  .main-locations .navbar-light .navbar-toggler {
    color: rgba(50, 57, 68, 0.5);
    border-color: rgba(50, 57, 68, 0.1); }
  .main-locations .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='rgba(50, 57, 68, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>"); }
  .main-locations .navbar-light .navbar-text {
    color: rgba(50, 57, 68, 0.5); }
    .main-locations .navbar-light .navbar-text a {
      color: rgba(50, 57, 68, 0.9); }
      .main-locations .navbar-light .navbar-text a:hover, .main-locations .navbar-light .navbar-text a:focus {
        color: rgba(50, 57, 68, 0.9); }
  .main-locations .jumbotron {
    background-size: cover;
    padding: 7rem 1rem; }
  @media (min-width: 992px) {
    .main-locations .jumbotron-lg-withnav {
      padding-bottom: calc(10rem - 70px); }
    .main-locations .jumbotron-lg {
      padding: 10rem 0; }
    .main-locations .jumbotron-xl {
      padding: 15rem 0; }
    .main-locations .jumbotron-xl {
      min-height: 100vh; }
    .main-locations .bottom-align-text-absolute {
      position: absolute;
      bottom: 30px;
      margin: auto;
      left: 0;
      right: 0; } }
  .main-locations .bg-black {
    background-color: #323944; }
  .main-locations .overlay {
    position: relative; }
    .main-locations .overlay .container {
      position: relative; }
    .main-locations .overlay:before {
      content: "";
      display: block;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      width: 100%; }
  .main-locations .overlay-black:before {
    background-color: rgba(0, 0, 0, 0.5); }
  .main-locations .overlay-blue:before {
    background-color: rgba(23, 29, 90, 0.5); }
  .main-locations .overlay-red:before {
    background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6)); }
  .main-locations .overlay-blue:before {
    background-color: rgba(23, 29, 90, 0.5); }
  .main-locations .bg-primary {
    fill: #1e73be !important; }
  .main-locations .bg-secondary {
    fill: #6c757d !important; }
  .main-locations .bg-success {
    fill: #7dd667 !important; }
  .main-locations .bg-info {
    fill: #17a2b8 !important; }
  .main-locations .bg-warning {
    fill: #ffc107 !important; }
  .main-locations .bg-danger {
    fill: #dc3545 !important; }
  .main-locations .bg-light {
    fill: #f8f9fa !important; }
  .main-locations .bg-dark {
    fill: #343a40 !important; }
  .main-locations .bg-white {
    fill: #fff !important; }
  .main-locations .bg-purple {
    fill: #ad6edd !important; }
  .main-locations .bg-salmon {
    fill: #ff977a !important; }
  .main-locations .bg-cyan {
    fill: #35bdff !important; }
  .main-locations .bg-gray {
    fill: #ced4da !important; }
  .main-locations .bg-indigo {
    fill: #502c6c !important; }
  .main-locations .bg-orange {
    fill: #fbb500 !important; }
  .main-locations .iconbox {
    border: 1px solid;
    text-align: center;
    display: inline-block; }
  .main-locations .iconbox.iconsmall {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem; }
  .main-locations .iconbox.iconmedium {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem; }
  .main-locations .iconbox.iconlarge {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2.2rem; }
  .main-locations .alert-primary {
    color: #fff;
    background-color: #1e73be;
    border-color: #1e73be; }
    .main-locations .alert-primary hr {
      border-top-color: #1b66a8; }
    .main-locations .alert-primary .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
    .main-locations .alert-secondary hr {
      border-top-color: #60686f; }
    .main-locations .alert-secondary .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-success {
    color: #fff;
    background-color: #7dd667;
    border-color: #7dd667; }
    .main-locations .alert-success hr {
      border-top-color: #6cd153; }
    .main-locations .alert-success .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
    .main-locations .alert-info hr {
      border-top-color: #148ea1; }
    .main-locations .alert-info .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-warning {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107; }
    .main-locations .alert-warning hr {
      border-top-color: #edb100; }
    .main-locations .alert-warning .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
    .main-locations .alert-danger hr {
      border-top-color: #d32535; }
    .main-locations .alert-danger .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-light {
    color: #fff;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .main-locations .alert-light hr {
      border-top-color: #e9ecef; }
    .main-locations .alert-light .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
    .main-locations .alert-dark hr {
      border-top-color: #292d32; }
    .main-locations .alert-dark .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-white {
    color: #fff;
    background-color: white;
    border-color: white; }
    .main-locations .alert-white hr {
      border-top-color: #f2f2f2; }
    .main-locations .alert-white .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-purple {
    color: #fff;
    background-color: #ad6edd;
    border-color: #ad6edd; }
    .main-locations .alert-purple hr {
      border-top-color: #a159d8; }
    .main-locations .alert-purple .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-salmon {
    color: #fff;
    background-color: #ff977a;
    border-color: #ff977a; }
    .main-locations .alert-salmon hr {
      border-top-color: #ff8361; }
    .main-locations .alert-salmon .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-cyan {
    color: #fff;
    background-color: #35bdff;
    border-color: #35bdff; }
    .main-locations .alert-cyan hr {
      border-top-color: #1cb5ff; }
    .main-locations .alert-cyan .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-gray {
    color: #fff;
    background-color: #ced4da;
    border-color: #ced4da; }
    .main-locations .alert-gray hr {
      border-top-color: #bfc7cf; }
    .main-locations .alert-gray .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-indigo {
    color: #fff;
    background-color: #502c6c;
    border-color: #502c6c; }
    .main-locations .alert-indigo hr {
      border-top-color: #43255a; }
    .main-locations .alert-indigo .alert-link {
      color: #e6e6e6; }
  .main-locations .alert-orange {
    color: #fff;
    background-color: #fbb500;
    border-color: #fbb500; }
    .main-locations .alert-orange hr {
      border-top-color: #e2a300; }
    .main-locations .alert-orange .alert-link {
      color: #e6e6e6; }
  .main-locations ul.list-unstyled li {
    margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .main-locations .loginarea {
      z-index: 1111; } }
  .main-locations .iconbox {
    border: 1px solid;
    text-align: center;
    display: inline-block; }
    .main-locations .iconbox.iconsmall {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 1rem; }
    .main-locations .iconbox.iconmedium {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 1.8rem; }
    .main-locations .iconbox.iconlarge {
      width: 80px;
      height: 80px;
      line-height: 80px;
      font-size: 2.2rem; }
  .main-locations .btn-round {
    border-radius: 30px !important; }
  .main-locations .btn-facebook {
    color: #fff;
    background-color: #3b5998;
    border-color: #fff; }
    .main-locations .btn-facebook:hover {
      color: #fff;
      background-color: #30497c;
      border-color: #e6e6e6; }
    .main-locations .btn-facebook:focus, .main-locations .btn-facebook.focus {
      color: #fff;
      background-color: #30497c;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-facebook.disabled, .main-locations .btn-facebook:disabled {
      color: #fff;
      background-color: #3b5998;
      border-color: #fff; }
    .main-locations .btn-facebook:not(:disabled):not(.disabled):active, .main-locations .btn-facebook:not(:disabled):not(.disabled).active, .show > .main-locations .btn-facebook.dropdown-toggle {
      color: #fff;
      background-color: #2d4373;
      border-color: #dfdfdf; }
      .main-locations .btn-facebook:not(:disabled):not(.disabled):active:focus, .main-locations .btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-facebook.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-twitter {
    color: #212529;
    background-color: #55acee;
    border-color: #fff;
    color: #fff; }
    .main-locations .btn-twitter:hover {
      color: #fff;
      background-color: #329beb;
      border-color: #e6e6e6; }
    .main-locations .btn-twitter:focus, .main-locations .btn-twitter.focus {
      color: #fff;
      background-color: #329beb;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
    .main-locations .btn-twitter.disabled, .main-locations .btn-twitter:disabled {
      color: #212529;
      background-color: #55acee;
      border-color: #fff; }
    .main-locations .btn-twitter:not(:disabled):not(.disabled):active, .main-locations .btn-twitter:not(:disabled):not(.disabled).active, .show > .main-locations .btn-twitter.dropdown-toggle {
      color: #fff;
      background-color: #2795e9;
      border-color: #dfdfdf; }
      .main-locations .btn-twitter:not(:disabled):not(.disabled):active:focus, .main-locations .btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-twitter.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
  .main-locations .btn-instagram {
    color: #fff;
    background-color: #125688;
    border-color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
    .main-locations .btn-instagram:hover {
      color: #fff;
      background-color: #0e4166;
      border-color: #e6e6e6; }
    .main-locations .btn-instagram:focus, .main-locations .btn-instagram.focus {
      color: #fff;
      background-color: #0e4166;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-instagram.disabled, .main-locations .btn-instagram:disabled {
      color: #fff;
      background-color: #125688;
      border-color: #fff; }
    .main-locations .btn-instagram:not(:disabled):not(.disabled):active, .main-locations .btn-instagram:not(:disabled):not(.disabled).active, .show > .main-locations .btn-instagram.dropdown-toggle {
      color: #fff;
      background-color: #0c3a5b;
      border-color: #dfdfdf; }
      .main-locations .btn-instagram:not(:disabled):not(.disabled):active:focus, .main-locations .btn-instagram:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-instagram.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-instagram:hover {
      background: radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
  .main-locations .btn-linkedin {
    color: #fff;
    background-color: #0976b4;
    border-color: #fff; }
    .main-locations .btn-linkedin:hover {
      color: #fff;
      background-color: #075e90;
      border-color: #e6e6e6; }
    .main-locations .btn-linkedin:focus, .main-locations .btn-linkedin.focus {
      color: #fff;
      background-color: #075e90;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-linkedin.disabled, .main-locations .btn-linkedin:disabled {
      color: #fff;
      background-color: #0976b4;
      border-color: #fff; }
    .main-locations .btn-linkedin:not(:disabled):not(.disabled):active, .main-locations .btn-linkedin:not(:disabled):not(.disabled).active, .show > .main-locations .btn-linkedin.dropdown-toggle {
      color: #fff;
      background-color: #075683;
      border-color: #dfdfdf; }
      .main-locations .btn-linkedin:not(:disabled):not(.disabled):active:focus, .main-locations .btn-linkedin:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-linkedin.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-flickr {
    color: #fff;
    background-color: #f8457e;
    border-color: #fff; }
    .main-locations .btn-flickr:hover {
      color: #fff;
      background-color: #f72064;
      border-color: #e6e6e6; }
    .main-locations .btn-flickr:focus, .main-locations .btn-flickr.focus {
      color: #fff;
      background-color: #f72064;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-flickr.disabled, .main-locations .btn-flickr:disabled {
      color: #fff;
      background-color: #f8457e;
      border-color: #fff; }
    .main-locations .btn-flickr:not(:disabled):not(.disabled):active, .main-locations .btn-flickr:not(:disabled):not(.disabled).active, .show > .main-locations .btn-flickr.dropdown-toggle {
      color: #fff;
      background-color: #f6145c;
      border-color: #dfdfdf; }
      .main-locations .btn-flickr:not(:disabled):not(.disabled):active:focus, .main-locations .btn-flickr:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-flickr.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-github {
    color: #fff;
    background-color: #333;
    border-color: #fff; }
    .main-locations .btn-github:hover {
      color: #fff;
      background-color: #202020;
      border-color: #e6e6e6; }
    .main-locations .btn-github:focus, .main-locations .btn-github.focus {
      color: #fff;
      background-color: #202020;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-github.disabled, .main-locations .btn-github:disabled {
      color: #fff;
      background-color: #333;
      border-color: #fff; }
    .main-locations .btn-github:not(:disabled):not(.disabled):active, .main-locations .btn-github:not(:disabled):not(.disabled).active, .show > .main-locations .btn-github.dropdown-toggle {
      color: #fff;
      background-color: #1a1a1a;
      border-color: #dfdfdf; }
      .main-locations .btn-github:not(:disabled):not(.disabled):active:focus, .main-locations .btn-github:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-github.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-youtube {
    color: #fff;
    background-color: #e52d27;
    border-color: #fff; }
    .main-locations .btn-youtube:hover {
      color: #fff;
      background-color: #cd1e19;
      border-color: #e6e6e6; }
    .main-locations .btn-youtube:focus, .main-locations .btn-youtube.focus {
      color: #fff;
      background-color: #cd1e19;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-youtube.disabled, .main-locations .btn-youtube:disabled {
      color: #fff;
      background-color: #e52d27;
      border-color: #fff; }
    .main-locations .btn-youtube:not(:disabled):not(.disabled):active, .main-locations .btn-youtube:not(:disabled):not(.disabled).active, .show > .main-locations .btn-youtube.dropdown-toggle {
      color: #fff;
      background-color: #c21d17;
      border-color: #dfdfdf; }
      .main-locations .btn-youtube:not(:disabled):not(.disabled):active:focus, .main-locations .btn-youtube:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-youtube.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-wordpress {
    color: #fff;
    background-color: #207297;
    border-color: #fff; }
    .main-locations .btn-wordpress:hover {
      color: #fff;
      background-color: #195a77;
      border-color: #e6e6e6; }
    .main-locations .btn-wordpress:focus, .main-locations .btn-wordpress.focus {
      color: #fff;
      background-color: #195a77;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-wordpress.disabled, .main-locations .btn-wordpress:disabled {
      color: #fff;
      background-color: #207297;
      border-color: #fff; }
    .main-locations .btn-wordpress:not(:disabled):not(.disabled):active, .main-locations .btn-wordpress:not(:disabled):not(.disabled).active, .show > .main-locations .btn-wordpress.dropdown-toggle {
      color: #fff;
      background-color: #17526d;
      border-color: #dfdfdf; }
      .main-locations .btn-wordpress:not(:disabled):not(.disabled):active:focus, .main-locations .btn-wordpress:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-wordpress.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-google {
    color: #fff;
    background-color: #ea4335;
    border-color: #fff; }
    .main-locations .btn-google:hover {
      color: #fff;
      background-color: #e12717;
      border-color: #e6e6e6; }
    .main-locations .btn-google:focus, .main-locations .btn-google.focus {
      color: #fff;
      background-color: #e12717;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-google.disabled, .main-locations .btn-google:disabled {
      color: #fff;
      background-color: #ea4335;
      border-color: #fff; }
    .main-locations .btn-google:not(:disabled):not(.disabled):active, .main-locations .btn-google:not(:disabled):not(.disabled).active, .show > .main-locations .btn-google.dropdown-toggle {
      color: #fff;
      background-color: #d62516;
      border-color: #dfdfdf; }
      .main-locations .btn-google:not(:disabled):not(.disabled):active:focus, .main-locations .btn-google:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-google.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-yahoo {
    color: #fff;
    background-color: #6040d2;
    border-color: #fff; }
    .main-locations .btn-yahoo:hover {
      color: #fff;
      background-color: #4d2dbf;
      border-color: #e6e6e6; }
    .main-locations .btn-yahoo:focus, .main-locations .btn-yahoo.focus {
      color: #fff;
      background-color: #4d2dbf;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-yahoo.disabled, .main-locations .btn-yahoo:disabled {
      color: #fff;
      background-color: #6040d2;
      border-color: #fff; }
    .main-locations .btn-yahoo:not(:disabled):not(.disabled):active, .main-locations .btn-yahoo:not(:disabled):not(.disabled).active, .show > .main-locations .btn-yahoo.dropdown-toggle {
      color: #fff;
      background-color: #492bb4;
      border-color: #dfdfdf; }
      .main-locations .btn-yahoo:not(:disabled):not(.disabled):active:focus, .main-locations .btn-yahoo:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-yahoo.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-vkontakte {
    color: #fff;
    background-color: #4a76a8;
    border-color: #fff; }
    .main-locations .btn-vkontakte:hover {
      color: #fff;
      background-color: #3e638d;
      border-color: #e6e6e6; }
    .main-locations .btn-vkontakte:focus, .main-locations .btn-vkontakte.focus {
      color: #fff;
      background-color: #3e638d;
      border-color: #e6e6e6;
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    .main-locations .btn-vkontakte.disabled, .main-locations .btn-vkontakte:disabled {
      color: #fff;
      background-color: #4a76a8;
      border-color: #fff; }
    .main-locations .btn-vkontakte:not(:disabled):not(.disabled):active, .main-locations .btn-vkontakte:not(:disabled):not(.disabled).active, .show > .main-locations .btn-vkontakte.dropdown-toggle {
      color: #fff;
      background-color: #3a5d85;
      border-color: #dfdfdf; }
      .main-locations .btn-vkontakte:not(:disabled):not(.disabled):active:focus, .main-locations .btn-vkontakte:not(:disabled):not(.disabled).active:focus, .show > .main-locations .btn-vkontakte.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .main-locations .btn-circle {
    border-radius: 100%;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; }
    .main-locations .btn-circle.btn-sm, .main-locations .btn-group-sm > .btn-circle.btn {
      height: 1.8rem;
      width: 1.8rem;
      font-size: 0.75rem; }
    .main-locations .btn-circle.btn-lg, .main-locations .btn-group-lg > .btn-circle.btn {
      height: 3.5rem;
      width: 3.5rem;
      font-size: 1.35rem; }
  .main-locations .btn-square {
    border-radius: 0;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; }
    .main-locations .btn-square.btn-sm, .main-locations .btn-group-sm > .btn-square.btn {
      height: 1.8rem;
      width: 1.8rem;
      font-size: 0.75rem; }
    .main-locations .btn-square.btn-lg, .main-locations .btn-group-lg > .btn-square.btn {
      height: 3.5rem;
      width: 3.5rem;
      font-size: 1.35rem; }
  .main-locations .btn-icon-split {
    padding: 0;
    overflow: hidden;
    display: inline-flex;
    align-items: stretch;
    justify-content: center; }
    .main-locations .btn-icon-split .icon {
      background: rgba(50, 57, 68, 0.15);
      display: inline-block;
      padding: 0.45rem 1.2rem; }
    .main-locations .btn-icon-split .text {
      display: inline-block;
      padding: 0.45rem 1.2rem; }
    .main-locations .btn-icon-split.btn-sm .icon, .main-locations .btn-group-sm > .btn-icon-split.btn .icon {
      padding: 0.25rem 1rem; }
    .main-locations .btn-icon-split.btn-sm .text, .main-locations .btn-group-sm > .btn-icon-split.btn .text {
      padding: 0.25rem 1rem; }
    .main-locations .btn-icon-split.btn-lg .icon, .main-locations .btn-group-lg > .btn-icon-split.btn .icon {
      padding: 0.65rem 2rem; }
    .main-locations .btn-icon-split.btn-lg .text, .main-locations .btn-group-lg > .btn-icon-split.btn .text {
      padding: 0.65rem 2rem; }
  .main-locations .alert a {
    color: inherit;
    text-decoration: underline; }
    .main-locations .alert a:hover {
      color: inherit;
      text-decoration: underline;
      opacity: 0.9; }
  @media (min-width: 576px) {
    .main-locations .row.row-cols-md-0 {
      display: block; }
      .main-locations .row.row-cols-md-0 > * {
        flex: 0 0 100%;
        max-width: 100%; }
      .main-locations .row.row-cols-md-0 .card {
        width: 100%;
        display: inline-flex;
        flex-flow: row wrap; }
        .main-locations .row.row-cols-md-0 .card .embed-responsive {
          max-width: 30%;
          display: inline-block; }
          .main-locations .row.row-cols-md-0 .card .embed-responsive img {
            border-top-right-radius: unset;
            object-fit: cover; }
        .main-locations .row.row-cols-md-0 .card .card-img-top {
          max-width: 30%;
          height: 100%;
          display: inline-block; }
          .main-locations .row.row-cols-md-0 .card .card-img-top .embed-responsive {
            max-width: none; }
            .main-locations .row.row-cols-md-0 .card .card-img-top .embed-responsive:before {
              padding-top: 100%; }
        .main-locations .row.row-cols-md-0 .card .card-body {
          display: inline-block;
          vertical-align: top;
          max-width: 69%; }
        .main-locations .row.row-cols-md-0 .card .card-footer {
          flex: 1 100%; } }
  .main-locations .row-cols-md-2 .gv-hide-2 {
    display: none; }
  .main-locations .row-cols-md-2 .gv-hide-s-2 .gv-secondary {
    display: none; }
  .main-locations .row-cols-md-3 .gv-hide-2, .main-locations .row-cols-md-3 .gv-hide-3 {
    display: none; }
  .main-locations .row-cols-md-3 .gv-hide-s-2 .gv-secondary, .main-locations .row-cols-md-3 .gv-hide-s-3 .gv-secondary {
    display: none; }
  .main-locations .row-cols-md-4 .gv-hide-2, .main-locations .row-cols-md-4 .gv-hide-3, .main-locations .row-cols-md-4 .gv-hide-4 {
    display: none; }
  .main-locations .row-cols-md-4 .gv-hide-s-2 .gv-secondary, .main-locations .row-cols-md-4 .gv-hide-s-3 .gv-secondary, .main-locations .row-cols-md-4 .gv-hide-s-4 .gv-secondary {
    display: none; }
  .main-locations .row-cols-md-5 .gv-hide-2, .main-locations .row-cols-md-5 .gv-hide-3, .main-locations .row-cols-md-5 .gv-hide-4, .main-locations .row-cols-md-5 .gv-hide-5 {
    display: none; }
  .main-locations .row-cols-md-5 .gv-hide-s-2 .gv-secondary, .main-locations .row-cols-md-5 .gv-hide-s-3 .gv-secondary, .main-locations .row-cols-md-5 .gv-hide-s-4 .gv-secondary, .main-locations .row-cols-md-5 .gv-hide-s-5 .gv-secondary {
    display: none; }
  @media (max-width: 576px) {
    .main-locations .row .gv-hide-2, .main-locations .row .gv-hide-3, .main-locations .row .gv-hide-4, .main-locations .row .gv-hide-5 {
      display: none; }
    .main-locations .row .gv-hide-s-2 .gv-secondary, .main-locations .row .gv-hide-s-3 .gv-secondary, .main-locations .row .gv-hide-s-4 .gv-secondary, .main-locations .row .gv-hide-s-5 .gv-secondary {
      display: none; } }
  .main-locations .border-width-1 {
    border-width: 1px !important; }
  .main-locations .border-width-2 {
    border-width: 2px !important; }
  .main-locations .border-width-3 {
    border-width: 3px !important; }
  .main-locations .border-width-4 {
    border-width: 4px !important; }
  .main-locations .border-width-5 {
    border-width: 5px !important; }
  .main-locations .bg-shadow-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60128) 0%, rgba(255, 255, 255, 0) 30%) !important; }
@-webkit-keyframes bsui_shimmer {
  0% {
    background-position: -400px; }
  100% {
    background-position: 400px; } }
@-moz-keyframes bsui_shimmer {
  0% {
    background-position: -400px; }
  100% {
    background-position: 400px; } }
@keyframes bsui_shimmer {
  0% {
    background-position: -400px; }
  100% {
    background-position: 400px; } }
  .main-locations .bg-loading {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;
    -webkit-animation: bsui_shimmer 1s linear infinite forwards;
    -moz-animation: bsui_shimmer 1s linear infinite forwards;
    animation: bsui_shimmer 1s linear infinite forwards; }
  .main-locations .hover-content {
    display: none; }
    .main-locations .hover-content.fas {
      display: none; }
  .main-locations .btn:hover .hover-content, .main-locations .badge:hover .hover-content, .main-locations .hover-swap:hover .hover-content {
    display: initial; }
  .main-locations .btn:hover .hover-content-original, .main-locations .badge:hover .hover-content-original, .main-locations .hover-swap:hover .hover-content-original {
    display: none; }
  .main-locations .overflow-visible {
    overflow: visible; }
  .main-locations .scrollbars-ios::-webkit-scrollbar {
    width: 5px;
    /* for vertical scrollbars */
    height: 5px;
    /* for horizontal scrollbars */ }
  .main-locations .scrollbars-ios::-webkit-scrollbar-track {
    background: rgba(128, 128, 128, 0.1); }
  .main-locations .scrollbars-ios::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.5);
    border-radius: 2px; }
  .main-locations .embed-item-cover-xy {
    object-fit: cover;
    height: 100%; }
  .main-locations .embed-item-cover-x {
    height: auto !important; }
  .main-locations .embed-item-cover-y {
    object-fit: contain;
    height: 100%;
    width: auto;
    max-width: none; }
  .main-locations .embed-item-contain {
    object-fit: contain; }
  .main-locations .embed-has-action {
    transition: transform .5s;
    transition-timing-function: ease-in-out; }
    .main-locations .embed-has-action i, .main-locations .embed-has-action svg.svg-inline--fa {
      display: none;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 1.5em;
      opacity: 0; }
    .main-locations .embed-has-action:hover img {
      filter: brightness(80%); }
    .main-locations .embed-has-action:hover i, .main-locations .embed-has-action:hover svg.svg-inline--fa {
      display: block;
      opacity: 0.8; }
  .main-locations .flatpickr-month .flatpickr-current-month > * {
    display: inline-block; }
  .main-locations .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none; }
  .main-locations .badge-facebook {
    color: #fff;
    background-color: #3b5998; }
    .main-locations a.badge-facebook:hover, .main-locations a.badge-facebook:focus {
      color: #fff;
      background-color: #2d4373; }
    .main-locations a.badge-facebook:focus, .main-locations a.badge-facebook.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); }
  .main-locations .badge-twitter {
    color: #212529;
    background-color: #55acee; }
    .main-locations a.badge-twitter:hover, .main-locations a.badge-twitter:focus {
      color: #212529;
      background-color: #2795e9; }
    .main-locations a.badge-twitter:focus, .main-locations a.badge-twitter.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(85, 172, 238, 0.5); }
  .main-locations .badge-instagram {
    color: #fff;
    background-color: #125688; }
    .main-locations a.badge-instagram:hover, .main-locations a.badge-instagram:focus {
      color: #fff;
      background-color: #0c3a5b; }
    .main-locations a.badge-instagram:focus, .main-locations a.badge-instagram.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(18, 86, 136, 0.5); }
  .main-locations .badge-linkedin {
    color: #fff;
    background-color: #0976b4; }
    .main-locations a.badge-linkedin:hover, .main-locations a.badge-linkedin:focus {
      color: #fff;
      background-color: #075683; }
    .main-locations a.badge-linkedin:focus, .main-locations a.badge-linkedin.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(9, 118, 180, 0.5); }
  .main-locations .badge-flickr {
    color: #fff;
    background-color: #f8457e; }
    .main-locations a.badge-flickr:hover, .main-locations a.badge-flickr:focus {
      color: #fff;
      background-color: #f6145c; }
    .main-locations a.badge-flickr:focus, .main-locations a.badge-flickr.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(248, 69, 126, 0.5); }
  .main-locations .badge-github {
    color: #fff;
    background-color: #333; }
    .main-locations a.badge-github:hover, .main-locations a.badge-github:focus {
      color: #fff;
      background-color: #1a1a1a; }
    .main-locations a.badge-github:focus, .main-locations a.badge-github.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5); }
  .main-locations .badge-youtube {
    color: #fff;
    background-color: #e52d27; }
    .main-locations a.badge-youtube:hover, .main-locations a.badge-youtube:focus {
      color: #fff;
      background-color: #c21d17; }
    .main-locations a.badge-youtube:focus, .main-locations a.badge-youtube.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(229, 45, 39, 0.5); }
  .main-locations .badge-wordpress {
    color: #fff;
    background-color: #207297; }
    .main-locations a.badge-wordpress:hover, .main-locations a.badge-wordpress:focus {
      color: #fff;
      background-color: #17526d; }
    .main-locations a.badge-wordpress:focus, .main-locations a.badge-wordpress.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(32, 114, 151, 0.5); }
  .main-locations .badge-google {
    color: #fff;
    background-color: #ea4335; }
    .main-locations a.badge-google:hover, .main-locations a.badge-google:focus {
      color: #fff;
      background-color: #d62516; }
    .main-locations a.badge-google:focus, .main-locations a.badge-google.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(234, 67, 53, 0.5); }
  .main-locations .badge-yahoo {
    color: #fff;
    background-color: #6040d2; }
    .main-locations a.badge-yahoo:hover, .main-locations a.badge-yahoo:focus {
      color: #fff;
      background-color: #492bb4; }
    .main-locations a.badge-yahoo:focus, .main-locations a.badge-yahoo.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(96, 64, 210, 0.5); }
  .main-locations .badge-vkontakte {
    color: #fff;
    background-color: #4a76a8; }
    .main-locations a.badge-vkontakte:hover, .main-locations a.badge-vkontakte:focus {
      color: #fff;
      background-color: #3a5d85; }
    .main-locations a.badge-vkontakte:focus, .main-locations a.badge-vkontakte.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(74, 118, 168, 0.5); }
  .main-locations .badge-instagram {
    color: #fff;
    background-color: #125688;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
    .main-locations a.badge-instagram:hover, .main-locations a.badge-instagram:focus {
      color: #fff;
      background-color: #0c3a5b; }
    .main-locations a.badge-instagram:focus, .main-locations a.badge-instagram.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(18, 86, 136, 0.5); }
    .main-locations .badge-instagram:hover {
      background: radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
  .main-locations .bg-initial {
    background: initial !important; }
  .main-locations .bg-inherit {
    background: inherit !important; }
  .main-locations .form-label-group {
    position: relative;
    margin-bottom: 1rem; }
  .main-locations .form-label-group > input,
  .main-locations .form-label-group > textarea,
  .main-locations .form-label-group > label {
    padding: 0.45rem 1.2rem; }
  .main-locations .form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    /* Override default `<label>` margin */
    line-height: 1.5;
    color: #989898;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
    font-weight: normal;
    cursor: text;
    pointer-events: none; }
  .main-locations .form-label-group input::-webkit-input-placeholder,
  .main-locations .form-label-group input:-ms-input-placeholder,
  .main-locations .form-label-group input::-ms-input-placeholder,
  .main-locations .form-label-group input::-moz-placeholder,
  .main-locations .form-label-group input::placeholder,
  .main-locations .form-label-group textarea::-webkit-input-placeholder,
  .main-locations .form-label-group textarea:-ms-input-placeholder,
  .main-locations .form-label-group textarea::-ms-input-placeholder,
  .main-locations .form-label-group textarea::-moz-placeholder,
  .main-locations .form-label-group textarea::placeholder {
    color: transparent; }
  .main-locations .form-label-group input:not(:placeholder-shown),
  .main-locations .form-label-group textarea:not(:placeholder-shown) {
    padding-top: 0.75rem;
    padding-bottom: 0.15rem;
    font-weight: 400; }
  .main-locations .form-label-group input:not(:placeholder-shown) ~ label,
  .main-locations .form-label-group textarea:not(:placeholder-shown) ~ label {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    font-size: 12px;
    color: #777; }
  .main-locations .ab-left, .main-locations .ab-top-left {
    position: absolute;
    z-index: 1;
    top: 2px;
    left: 2px;
    margin: 0; }
  .main-locations .ab-left-angle, .main-locations .ab-top-left-angle {
    position: absolute;
    z-index: 1;
    top: 13px;
    left: -15px;
    margin: 0;
    transform: rotate(-45deg);
    transform-origin: bottom;
    width: 100px;
    text-align: center; }
    .main-locations .ab-left-angle .badge, .main-locations .ab-top-left-angle .badge {
      display: block; }
  .main-locations .ab-right, .main-locations .ab-top-right {
    position: absolute;
    z-index: 1;
    top: 2px;
    right: 2px;
    margin: 0; }
  .main-locations .ab-right-angle, .main-locations .ab-top-right-angle {
    position: absolute;
    z-index: 1;
    top: 13px;
    right: -15px;
    margin: 0;
    transform: rotate(45deg);
    transform-origin: bottom;
    width: 100px;
    text-align: center; }
    .main-locations .ab-right-angle .badge, .main-locations .ab-top-right-angle .badge {
      display: block; }
  .main-locations .ab-bottom-left {
    position: absolute;
    z-index: 1;
    bottom: 6px;
    left: 2px;
    margin: 0; }
  .main-locations .ab-bottom-left-angle {
    position: absolute;
    z-index: 1;
    bottom: 13px;
    left: -15px;
    margin: 0;
    transform: rotate(45deg);
    transform-origin: top;
    width: 100px;
    text-align: center; }
    .main-locations .ab-bottom-left-angle .badge {
      display: block; }
  .main-locations .ab-bottom-right {
    position: absolute;
    z-index: 1;
    bottom: 6px;
    right: 2px;
    margin: 0; }
  .main-locations .ab-bottom-right-angle {
    position: absolute;
    z-index: 1;
    bottom: 13px;
    right: -15px;
    margin: 0;
    transform: rotate(-45deg);
    transform-origin: top;
    width: 100px;
    text-align: center; }
    .main-locations .ab-bottom-right-angle .badge {
      display: block; }
  .main-locations .sticky-scroll {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0; }
  .main-locations .clear-both {
    clear: both; }
  .main-locations .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after {
    transform: rotate(-180deg); }
  .main-locations .select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle; }
    .main-locations .select2-container .select2-selection--single {
      box-sizing: border-box;
      cursor: pointer;
      display: block;
      height: 28px;
      user-select: none;
      -webkit-user-select: none; }
      .main-locations .select2-container .select2-selection--single .select2-selection__rendered {
        display: block;
        padding-left: 8px;
        padding-right: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .main-locations .select2-container .select2-selection--single .select2-selection__clear {
        position: relative; }
    .main-locations .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
      padding-right: 8px;
      padding-left: 20px; }
    .main-locations .select2-container .select2-selection--multiple {
      box-sizing: border-box;
      cursor: pointer;
      display: block;
      min-height: 32px;
      user-select: none;
      -webkit-user-select: none; }
      .main-locations .select2-container .select2-selection--multiple .select2-selection__rendered {
        display: inline-block;
        overflow: hidden;
        padding-left: 8px;
        text-overflow: ellipsis;
        white-space: nowrap; }
    .main-locations .select2-container .select2-search--inline {
      float: left; }
      .main-locations .select2-container .select2-search--inline .select2-search__field {
        box-sizing: border-box;
        border: none;
        font-size: 100%;
        margin-top: 5px;
        padding: 0; }
        .main-locations .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
          -webkit-appearance: none; }
  .main-locations .select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051; }
  .main-locations .select2-results {
    display: block; }
  .main-locations .select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0; }
  .main-locations .select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none; }
    .main-locations .select2-results__option[aria-selected] {
      cursor: pointer; }
  .main-locations .select2-container--open .select2-dropdown {
    left: 0; }
  .main-locations .select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .main-locations .select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .main-locations .select2-search--dropdown {
    display: block;
    padding: 4px; }
    .main-locations .select2-search--dropdown .select2-search__field {
      padding: 4px;
      width: 100%;
      box-sizing: border-box; }
      .main-locations .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }
    .main-locations .select2-search--dropdown.select2-search--hide {
      display: none; }
  .main-locations .select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0); }
  .main-locations .select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important; }
  .main-locations .select2-selection--single {
    height: calc(1.6em + 0.9rem + 2px) !important; }
    .main-locations .select2-selection--single .select2-selection__placeholder {
      color: #757575;
      line-height: calc(1.6em + 0.9rem); }
    .main-locations .select2-selection--single .select2-selection__arrow {
      position: absolute;
      top: 50%;
      right: 3px;
      width: 20px; }
      .main-locations .select2-selection--single .select2-selection__arrow b {
        top: 60%;
        border-color: #343a40 transparent transparent transparent;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        width: 0;
        height: 0;
        left: 50%;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute; }
    .main-locations .select2-selection--single .select2-selection__rendered {
      line-height: calc(1.6em + 0.9rem); }
  .main-locations .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 0.25rem; }
  .main-locations .select2-results__message {
    color: #6c757d; }
  .main-locations .select2-selection--multiple {
    min-height: calc(1.6em + 0.9rem + 2px) !important; }
    .main-locations .select2-selection--multiple .select2-selection__rendered {
      box-sizing: border-box;
      list-style: none;
      margin: 0;
      padding: 0 5px;
      width: 100%; }
    .main-locations .select2-selection--multiple .select2-selection__choice {
      color: #343a40;
      border: 1px solid #bdc6d0;
      border-radius: 0.2rem;
      padding: 0;
      padding-right: 5px;
      cursor: pointer;
      float: left;
      margin-top: 0.3em;
      margin-right: 5px; }
    .main-locations .select2-selection--multiple .select2-selection__choice__remove {
      color: #bdc6d0;
      font-weight: bold;
      margin-left: 3px;
      margin-right: 1px;
      padding-right: 3px;
      padding-left: 3px;
      float: left; }
      .main-locations .select2-selection--multiple .select2-selection__choice__remove:hover {
        color: #343a40; }
  .main-locations .select2-container {
    display: block; }
    .main-locations .select2-container *:focus {
      outline: 0; }
  .main-locations .input-group .select2-container {
    flex-grow: 1; }
  .main-locations .input-group-prepend ~ .select2-container .select2-selection {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .main-locations .input-group > .select2-container:not(:last-child) .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .main-locations .select2-container .select2-selection {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%; }
    @media (prefers-reduced-motion: reduce) {
      .main-locations .select2-container .select2-selection {
        transition: none; } }
  .main-locations .select2-container.select2-container--focus .select2-selection {
    border-color: #73b1e9;
    box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.25); }
  .main-locations .select2-container.select2-container--focus.select2-container--open .select2-selection {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .main-locations .select2-container.select2-container--disabled .select2-selection, .main-locations .select2-container.select2-container--disabled.select2-container--focus .select2-selection {
    background-color: #e9ecef;
    cursor: not-allowed;
    border-color: #ced4da;
    box-shadow: none; }
  .main-locations .select2-container.select2-container--disabled .select2-search__field, .main-locations .select2-container.select2-container--disabled.select2-container--focus .select2-search__field {
    background-color: transparent; }
  select.is-invalid ~ .main-locations .select2-container .select2-selection, form.was-validated select:invalid ~ .main-locations .select2-container .select2-selection {
    border-color: #dc3545; }
  select.is-valid ~ .main-locations .select2-container .select2-selection, form.was-validated select:valid ~ .main-locations .select2-container .select2-selection {
    border-color: #7dd667; }
  .main-locations .select2-container .select2-dropdown {
    border-color: #ced4da;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    .main-locations .select2-container .select2-dropdown.select2-dropdown--above {
      border-top: 1px solid #ced4da;
      border-top-left-radius: 0.25rem;
      border-top-right-radius: 0.25rem; }
    .main-locations .select2-container .select2-dropdown .select2-results__option[aria-selected=true] {
      background-color: #e9ecef; }
  .main-locations .select2-container .select2-results__option--highlighted,
  .main-locations .select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
    background-color: #1e73be;
    color: #f8f9fa; }
  .main-locations .select2-container .select2-results__option[role=group] {
    padding: 0; }
  .main-locations .select2-container .select2-results > .select2-results__options {
    max-height: 15em;
    overflow-y: auto; }
  .main-locations .select2-container .select2-results__group {
    padding: 6px;
    display: list-item;
    color: #6c757d; }
  .main-locations .select2-container .select2-selection__clear {
    width: 1.2em;
    height: 1.2em;
    line-height: 1.15em;
    padding-left: 0.3em;
    margin-top: 0.5em;
    border-radius: 100%;
    background-color: #6c757d;
    color: #f8f9fa;
    float: right;
    margin-right: 0.3em; }
    .main-locations .select2-container .select2-selection__clear:hover {
      background-color: #343a40; }

body .main-locations ul.geodir-category-list-view.geodir-gridview.gridview_onehalf > li {
  padding-left: 7px !important;
  padding-right: 2px !important;
  border-radius: 7px; }
body .main-locations ul.geodir-category-list-view.geodir-gridview.gridview_onehalf > li:nth-child(2n+0) {
  margin-left: 0; }
body .main-locations ul.geodir-category-list-view.geodir-gridview > li .gd-list-item-left {
  display: none; }
body .main-locations ul.geodir-category-list-view.geodir-gridview > li .gd-list-item-right {
  width: 100%; }
body .main-locations ul.geodir-category-list-view > li {
  width: 100% !important; }
body .main-locations ul.geodir-category-list-view > li.hover,
body .main-locations ul.geodir-category-list-view > li:hover {
  background-color: #f3f3f3; }
body .main-locations ul.geodir-category-list-view > li:nth-child(2n+0) {
  margin-left: 0 !important; }

@media screen and (max-width: 767px) {
  .stick_trigger_container .geodir_map_container,
  .stick_trigger_container .geodir_map_container .map_background .main_map_wrapper,
  .stick_trigger_container .geodir_map_container .map_background .main_map_wrapper .geodir-map-canvas,
  .stick_trigger_container .geodir_map_container .map_background .main_map_wrapper .loading_div {
    height: 350px !important;
    min-height: 350px !important; } }
/* *******
To comply CLS
******* */
.header-ad.ad-container > div {
  height: 90px; }

.header-ad.ad-container.top20 > div {
  height: auto;
  min-height: 90px;
  max-height: 330px; }

.headertop-ad {
  padding-top: 10px;
  padding-bottom: 10px; }

.headertop-ad.ad-container-top > div {
  text-align: center;
  margin: 0 auto;
  height: 50px; }
@media screen and (min-width: 767px) {
  .headertop-ad.ad-container-top > div.billboard {
    height: 250px; }
  .headertop-ad.ad-container-top > div.leaderboard {
    height: 90px; } }

/*********************
SLICK SLIDER STYLESHEET
This is for a slider in the home page
*********************/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.skip-link-trigger {
  position: fixed;
  z-index: 1;
  top: -240px;
  min-width: 190px;
  padding: 0.56em 1em;
  margin: 0;
  background-color: #182a5c;
  color: #fff;
  font-size: 0.8125rem;
  text-align: center;
  text-transform: uppercase; }

.skip-link-trigger:focus {
  top: 0; }

.temp-image {
  max-width: 50%; }

.u-display-block {
  display: block; }

.u-display-none {
  display: none; }

.sweepsbar {
  position: relative;
  padding: 8px 12px;
  background: #1f2258;
  text-align: center; }

.sweepsbar-text {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.46;
  text-decoration: none; }
  @media screen and (min-width: 768px) {
    .sweepsbar-text {
      max-width: 700px; } }
  .sweepsbar-text p {
    margin: 0; }

.sweepsbar-dismiss {
  position: absolute;
  top: 5%;
  right: 12px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 26px; }
  @media screen and (min-width: 768px) {
    .sweepsbar-dismiss {
      right: 24px;
      font-size: 28px; } }
  @media screen and (min-width: 1024px) {
    .sweepsbar-dismiss {
      right: 5%; } }

.sweepsbar a:hover,
.sweepsbar a:visited,
.sweepsbar a:focus {
  color: #fff; }

@media screen and (min-width: 1024px) {
  .entry-content.main-locations .geodir-single-tabs-container,
  .entry-content.main-article > h1,
  .entry-content.main-article > h2,
  .entry-content.main-article > h3,
  .entry-content.main-article > h4,
  .entry-content.main-article > h5,
  .entry-content.main-article > h6,
  .entry-content.main-article > p,
  .entry-content.main-article > ul,
  .entry-content.main-article > ol,
  .entry-content.main-article > dl,
  .entry-content.main-article > hr,
  .entry-content.main-article > blockquote,
  .entry-content.main-article > form,
  .entry-content.main-article > table,
  .entry-content.main-article > .bottle-holder.cf,
  .entry-content.main-article > .bottle-holder.comment-respond {
    width: 650px;
    margin-right: auto;
    margin-left: auto; }

  .entry-content.main-article > form input {
    width: 40% !important; } }
ul.geodir-category-list-view li h3,
.geodir-tabs dl.geodir-tab-head dd a {
  color: #733702; }

ul.geodir-category-list-view li h3 {
  font-size: 16px; }

.geodir-tabs dl.geodir-tab-head dd a {
  font-size: 20px; }

.review-text img {
  display: block;
  width: 50%;
  margin-bottom: 16px; }

.wrap-carousel {
  padding: 40px;
  background-color: #f0f0f0; }

.wrap-carousel h1,
.wrap-carousel header h1 {
  color: #262626;
  font-weight: bold; }

.wrap-carousel h1 {
  font-size: 35px;
  text-align: center; }

.wrap-carousel header h1 {
  font-size: 20px;
  line-height: 28px;
  text-align: left; }

.wrap-carousel p,
.wrap-carousel footer,
.wrap-carousel .section-text-holder {
  display: none; }

.wrap-carousel article .article-text-holder.social-pad,
.wrap-carousel .hentry {
  padding-bottom: 0;
  margin-bottom: 0; }

.pb-20 {
  padding-bottom: 20px; }

.pt-20 {
  padding-top: 20px; }

.px-40 {
  padding-right: 40px;
  padding-left: 40px; }

.imgBorder {
  border: 1px solid #ccc; }

.wf#content {
  margin-top: 3px; }

.article-header .entry-header,
.article-footer {
  max-width: 650px;
  margin: 0 auto; }

@media only screen and (min-width: 768px) {
  .single article h1 {
    font-size: 35px;
    line-height: 1.5; }

  .byline {
    font-size: 18px;
    line-height: 1.5; } }
@media only screen and (min-width: 766.5px) {
  .scrollingDiv {
    height: 800px;
    overflow: auto; } }
article .entry-content.main-locations .geodir-map-wrap .geodir_post_meta {
  font-size: 16px; }

.gd-badge-meta.gd-badge-meta-new,
.gd-badge-meta.gd-badge-meta-new,
.geodir_post_meta_icon.geodir-i-address,
span[itemprop="streetAddress"] {
  display: none; }

h4.geodir-entry-title span {
  color: #fff; }

.geodir_map_container .leaflet-popup-content-wrapper .leaflet-popup-content .gd-bubble .geodir-post-title h4 {
  white-space: initial; }

article .entry-content.main-locations .geodir_post_meta .geodir-i-business_hours,
article .entry-content.main-locations .geodir_post_meta .gd-bh-expand-range {
  font-size: 15px;
  line-height: 15px; }

.scrollingDiv .truncate-overflow {
  --max-lines: 3;
  position: relative;
  max-height: calc(var(--lh) * var(--max-lines));
  overflow: hidden;
  padding-right: 1rem;
  /* space for ellipsis */ }
.scrollingDiv .truncate-overflow::before {
  position: absolute;
  content: "...";
  inset-block-end: 0;
  /* "bottom" */
  inset-inline-end: 0;
  /* "right" */ }
.scrollingDiv .truncate-overflow::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  /* "right" */
  width: 1rem;
  height: 1rem;
  background: white; }

/*# sourceMappingURL=style.css.map */
