@media print {

  a[href]:after {
    content: none;
  }

}

html {
  height: 100%;
}

body{
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
}

h1, h2, p{
  color: #343536;
  margin-top: 0px;
}

p{
  font-size: 14px;
}

h1{
  font-size: 38px;
  font-weight: 100;
}

h2{
  font-size: 32px;
  font-weight: 300;
}


@media (min-width: 768px) {
  h2{ font-size: 42px; font-weight: 100; }
}

@media (min-width: 992px) {
  h2{ font-size: 32px; font-weight: 100; }
}

.inner{	margin: 0 auto; }

header, header.inner{
  display: block;
  margin: 10px auto;
  padding: 0 10px;
}

/* Home page header styles */

body.home {
  height: 100%;
}

body.home .header-wrapper {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  background: white;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

  header, header.inner{
    height: 66px;
    margin: 15px auto;
    padding: 0 10px;
  }

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

  .inner, .content.inner{
  }
}


@media (min-width: 1290px) {
  header, header.inner { padding: 0px; }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  .inner, .content.inner{
    max-width: 1200px;
  }

}

nav{
  margin: 0px;
  padding: 10px 0;
}

header #logo{
  background: url(../images/logo-small.jpg) no-repeat;
  display: block;
  height: 36px;
  float: right;
  margin: 0px;
  padding: 0px;
  width: 169px;
  margin: 10px 0px 10px 0px;
}

@media (min-width: 768px) {

  header #logo{
    background: url(../images/logo-alt-mid.jpg) no-repeat;
    height: 22px;
    width: 185px;
    margin: 20px 0px 0 0;
  }

  nav{ padding: 24px 0; }
}

@media (min-width: 1182px) {

  header #logo{
    background: url(../images/logo-alt.jpg) no-repeat;
    height: 46px;
    width: 220px;
    margin: 20px 10px 30px 0;
  }

  nav{ padding: 26px 0; }
}

/* Retina logo */
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  header #logo{


    background: url(../images/logo-alt-small@2x.jpg) no-repeat;
    background-size: 169px 35px;
  }

}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi){

  @media (min-width: 768px){

    /* :root used to avoid retina images working on IE7/8 */
    :root *> header #logo{
      background: url(../images/logo-alt-mid@2x.jpg) no-repeat;
      background-size: 185px 39px;
    }

  }

  @media (min-width: 992px){

    /* :root used to avoid retina images working on IE7/8 */
    :root *> header #logo{
      background: url(../images/logo-alt@2x.jpg) no-repeat;
      background-size: 220px 45px;
    }

  }

}

@media (min-width: 768px) {
  nav .main-menu { display: block; }
  nav .mobile-menu { display: none; }
}

.mobile-menu{
  background: #fff;
  display: block;
}

.mobile-menu:hover{ text-decoration: none; }

nav .main-menu{
  display: none;
  margin-top: 32px;
}

nav ul{
  background: #F2F2F2;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  list-style: none;
  padding: 5px;
}

nav ul ul{
  border: none;
  padding: 0px;
}

nav ul li a{
  border-top: 1px solid #999;
  display: block;
  font-size: 15px;
  padding: 8px 5px;
}

nav ul li:first-child,
nav ul li:first-child a{
  border-top: none;
}

nav ul li a:hover{ text-decoration: none; }

nav ul li li a {
  background: none;
  border-top: none;
  margin-top: 0px;
  padding: 2px 5px;
}

nav li.menu-item-depth-1 a 	{
  display: none;
  font-size: 13px;
}

nav li.menu-item-depth-1 li a { display: block; }
nav li.menu-item-depth-1{ padding-left: 30px; }

nav ul.sub-menu.menu-depth-1{margin-bottom: 20px; }
nav ul.sub-menu.menu-depth-1 ul li a { font-weight: 300; }

nav ul.sub-menu.menu-depth-1 ul li.no-link a{
  color: #343536;
  font-size: 13px;
  margin: 0px;
  margin-left: -15px;
}

nav ul li.menu-item-has-children.menu-item-depth-0 > a { padding-left: 20px; }

nav ul.sub-menu.menu-depth-1 ul li.no-link a:hover{
  cursor: pointer;
  text-decoration: none;
}

nav ul.sub-menu.menu-depth-1.mobile-menu-hide { display: none; }
nav ul.sub-menu.menu-depth-1.mobile-menu-show { display: block; }

nav .dropdown-arrow{ display: none; }

:root *> nav .dropdown-arrow{
  display: inline;
  left: 15px;
  margin: 0px;
  position: relative;
  top: 10px;
}

nav .dropdown-arrow:before, nav .dropdown-arrow:after{
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
}

nav .dropdown-arrow:before{
  border-left-color: #999;
  right: 0;
  z-index: 1;
}

nav .dropdown-arrow:after{
  border-left-color: #F2F2F2;
  right: 1px;
  z-index: 2;
}

nav ul li.menu-item-has-children.menu-item-depth-0:hover .dropdown-arrow:before{
  border-left-color: #0063BE;
}

@media (min-width: 768px) {

  nav .main-menu {
    display: block;
    margin-top: 0px;
  }

  nav ul{
    background: none;
    border: none;
    list-style: none;
    padding: 0px;
  }

  nav ul li{
    border-top: none;
    border-left: 1px solid #999999;
    display: inline-block;
    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
  }

  nav ul li:first-child	{ border-left: none; }
  nav ul li:first-child a	{ padding-left: 0px; }
  nav ul li:last-child	{ border-right: none; }

  nav > ul > li:hover > a {
    color: #0063be;
    position: relative;
    text-decoration: none;
    z-index: 1100;
  }

  nav ul.sub-menu.menu-depth-1{
    -webkit-box-shadow: rgba(0, 0, 0, 0.171875) 0px 3px 6px;
    background-clip: padding-box;
    background-color: #fff;
    background-color: rgba(255,255,255,0.95);
    border: 1px solid #999999;
    display: none;
    float: left;
    font-size: 14px;
    left: 0px;
    list-style: none;
    margin: -2px 0px 0px -1px;
    min-width: 160px;
    padding: 10px 0px 10px 10px;
    position: absolute;
    z-index: 1000;
  }

  nav ul li.menu-item-has-children.menu-item-depth-0 > a { padding-left: 15px; }

  nav ul.sub-menu.menu-depth-1.menu-hide { display: none; }
  nav ul.sub-menu.menu-depth-1.menu-show { display: block; }

  nav li.menu-item-has-children-1 ul.sub-menu.menu-depth-1{ width: 172px; }
  nav li.menu-item-has-children-2 ul.sub-menu.menu-depth-1{ width: 332px; }
  nav li.menu-item-has-children-3 ul.sub-menu.menu-depth-1{ width: 512px; }

  nav ul.sub-menu.menu-depth-1 li{
    border-left: none;
    display: block;
    float: left;
    margin: 0px 10px 0px 0px;
    padding: 0px;
    width: 150px;
  }

  nav ul.sub-menu.menu-depth-1 ul li{
    background: none;
    border: none;
    display: block;
    padding: 0px;
  }

  nav ul.sub-menu.menu-depth-1 ul li a{
    color: #343536;
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 7px 10px;
    -webkit-transition: background 0.15s ease-in-out;
    -moz-transition: background 0.15s ease-in-out;
    -o-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
  }

  nav ul.sub-menu.menu-depth-1 ul li a:hover,
  nav ul.sub-menu.menu-depth-1 ul li.active a{
    background: #e5e5e5;
    background: rgba(0,0,0,0.1);
    color: #000;
    padding: 7px 10px;
  }

  nav li.menu-item-depth-1 	{ border-right: none; }
  nav li.menu-item-depth-1 a 	{ display: none; }
  nav li.menu-item-depth-2 a 	{ display: block; }

  nav ul.sub-menu.menu-depth-1 ul li.no-link a{
    border-bottom: 1px solid #999999;
    color: #343536;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    padding: 7px 10px 6px 10px;
  }

  nav ul.sub-menu.menu-depth-1 ul li.no-link a:hover{
    background: #e5e5e5;
    color: #343536;
    padding: 7px 10px 6px 10px;
  }

  nav ul li a{
    border-top: none;
    color: #343536;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    margin: 0px;
    padding: 0px 13px;
    -webkit-transition: color 0.15s ease-in-out;
    -moz-transition: color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out;

  }

  nav a.mobile-menu{
    color: #343536;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    margin: 0px;
    padding: 0px 20px;
    -webkit-transition: color 0.15s ease-in-out;
    -moz-transition: color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out;

  }

  nav a.mobile-menu:hover	{ text-decoration: none; }
  nav ul li.current-menu-item:hover li a{ cursor: pointer; }

  nav > ul > li.menu-item-has-children:hover + li a{
    background: #fff;
    display: block;
    padding-bottom: 5px;
  }

  nav > ul > li.menu-item-has-children:hover > a{
    background: #fff;
    display: block;
    margin-bottom: 1px;
    padding-bottom: 5px;
  }

  nav ul li	{ margin-top: 0px; }
  nav ul li a	{ border-top: none; }

  nav ul li.menu-item-depth-0:last-child:hover { border-right: 1px solid #999999; }
  nav ul li.nav-last:hover { border-right: 1px solid #999999; }

  nav .dropdown-arrow{ display: none !important; }

}

@media (min-width: 1182px) {
  nav ul li a{
    font-size: 13px;
    line-height: 14px;
    padding: 0 15px;
  }
}

/* Header Bar */

header.banner-bar{
  background: #ffd400;
  display: block;
  height: 200px;
  margin: 0px 0px 15px -5px;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  header.banner-bar{ margin: 0px 0px 15px 0px; }
}

header.banner-bar .banner-image {
  display: block;
  height: 200px;
  width: 70vw;
  position: absolute;
  right: 0;
  z-index: 1;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

header.banner-bar .banner-image_src { display: none; }

header.banner-bar .banner-title {
  background: #ffd400;
  height: 200px;
  display: inline-block;
  position: relative;
  z-index: 2;
  width: calc(30vw + 67px);
  transform: skewX(-25deg);
  margin-left: -20px;
}

header.banner-bar .banner-title h1 {
  display: inline-block;
  font-weight: 200;
  font-size: 30px;
  padding-top: 40px;
  padding-right: 40px;
  transform: skewX(25deg);
  margin-left: 10px;
}

@media (min-width: 1200px) {

  header.banner-bar .banner-image {
    width: calc((100vw - 1200px) / 2 + 960px);
  }

  header.banner-bar .banner-title {
    width: calc(1200px - 960px + 67px);
    margin-left: -20px;
  }

  header.banner-bar--slash .banner-image {
    width: 100%;
  }

}

header.banner-bar--slash .banner-image {
  width: 100%;
}

header.banner-bar--slash .content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 70px;
  z-index: 2;
  background: url(../images/icons/slash.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.banner-title--slash {
  max-width: 1200px;
  margin: 0 auto;
}
.banner-title--slash h1 {
  position: absolute;
  bottom: -7px;
  margin-bottom: 0;
  left: 85px;
  color: #fff;
}
header.banner-bar--slash .content h1 {
}

/* List Groups */

.list-group{
  border: 1px solid #999;
  margin-bottom: 15px;
}

.list-group h3{
  border-bottom: 1px solid #999;
  color: #343536;
  font-size: 13px;
  font-weight: bold;
  margin: 0px;
  padding: 20px 10px 10px 10px;
  text-transform: uppercase;
}

a { color: #343536; }
a:hover{ color: #0063be; }

@media (min-width: 768px) {

  .secondary-nav .nav{
    position: relative;
    display: block;
    width: 100%;
  }

  .secondary-nav{ margin-bottom: 15px; }
}

ul.list-group li{ list-style: none; }

ul.list-group li a, ul.list-group li strong{
  border-bottom: 1px solid #999;
  color: #343536;
  display: block;
  font-size: 13px;
  line-height: 100%;
  overflow: hidden;
  padding: 10px 20px 10px 10px;
  position: relative;
}

ul.list-group li a, ul.list-group li.no-link-light strong{ font-weight: normal; }

ul.list-group li.inset a,
ul.list-group li.inset strong,
ul.list-group li.menu-item-depth-2 a,
ul.list-group li.menu-item-depth-2 strong{
  padding-left: 20px;
}

ul.list-group li.language a,
ul.list-group li.german a,
ul.list-group li.english a{
  background-position: center left;
  background-repeat: no-repeat;
  padding-left: 44px;
}

ul.list-group li.german a{ background-image: url(../images/flags/germany.gif); }
ul.list-group li.english a{	background-image: url(../images/flags/united-kingdom.gif); }

ul.list-group li a:hover,
ul.list-group li.current_page_item a{
  background-color: #eeeeee;
  color: #000;
  text-decoration: none;
}

ul.list-group li.current_page_item a,
ul.list-group li.current-menu-parent.menu-item-depth-1 a{ font-weight: bold; }

a:hover span.arrow:before,
ul.list-group li.current_page_item a span.arrow:before{ border-left-color: #000; }

a:hover span.arrow:after,
ul.list-group li.current_page_item a span.arrow:after{ border-left-color: #eeeeee; }

a span.arrow{
  float: right;
  margin: 0px;
  position: relative;
  right: -20px;
  top: -10px;

}

a span.arrow:before, a span.arrow:after{
  border-bottom: 0px solid transparent;
  border-top: 0px solid transparent;
  border-left: 17px solid transparent;
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
}

a span.arrow:before{
  border-left-color: #999;
  right: 0;
  z-index: 1;
}

a span.arrow:after{
  border-left-color: #fff;
  right: 1px;
  z-index: 2;
}

ul.list-group li:last-child a{ border-bottom-color: #999; }
ul.list-group { border-bottom: none; }

.list-group p {
  margin: 10px;
  font-size: 13px;
  line-height: 18px;
}

/* Latest News */

.list-group.latest-news{ padding-bottom: 10px; }

.list-group.latest-news h4{ margin: 10px; }

.list-group.latest-news p{
  line-height: 16px;
  margin-bottom: 0px;
}

.list-group.latest-news img{ margin: 0 5px 0 10px; }

.list-group.latest-news p a{ font-weight: bold; }

article p{
  font-size: 15px;
  line-height: 1.6em;
}

article p a{
  font-weight: bold;
}

article img.respond {
  display: none;
  margin-top: 10px;
}

article{ padding-bottom: 15px; }
article .thumb.pull-left{ padding: 0 10px 0px 0; }

article span.date{
  display: block;
  color: #343536;
  font-size: 12px;
  font-weight: bold;
  margin: -5px 0 5px 0;
}

article ul{
  background: #f2f2f2;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  margin-bottom: 15px;
  padding: 10px;
}

article ul li {
  list-style: outside disc;
  font-size: 15px;
  margin-bottom: 5px;
  margin-left: 15px;
}

article ul li:last-child{ margin-bottom: 0px; }

article ul li p{
  display: inline;
  font-size: 15px;
  margin-bottom: 0px;
}

article ul.pull-left,
article ul.pull-right{
  width: 50%;
}

article .pull-left { margin-right: 15px; }
article .pull-right { margin-left: 15px; }

article .pull-left, article .pull-right { margin-bottom: 15px; }
article table{
  background: blue;
  margin-bottom: 15px;
  width: 100%;
}

article table th,
article table td{
  font-size: 15px;
  padding: 7px;
  width: 50%;
}

article table tr td { background: #f2f2f2; }
article table tr:nth-child(2n) td { background: #e6e6e6; }
article table thead th {	background: #ffd400; }

article table tfoot td{
  background: #999;
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 0px 1px rgba(0,0,0,0.3);
}

/* Latest Photos */
.latest-photos a{
  background: #ffd503;
  display: block;
  height: 70px;
  margin-bottom: 15px;
  padding: 0px;
  position: relative;
  text-decoration: none;
}

.latest-photos a:hover span.arrow:before,
.latest-photos ul.list-group li.current_page_item a span.arrow:before{
  border-left-color: #fff;
}

.latest-photos a:hover span.arrow:after,
.latest-photos ul.list-group li.current_page_item a span.arrow:after{
  border-left-color: #ffd503;
}

.latest-photos a span.arrow{
  right: 0px;
  top: 0px;
}

.latest-photos a span.arrow:before{	border-left-color: #fff; }
.latest-photos a span.arrow:after{  border-left-color: #ffd503; }

.latest-photos a div{
  bottom: 0;
  color: #000;
  font-size: 17px;
  font-weight: 300;
  line-height: 18px;
  margin: 10px 20px 10px 80px;
  position: absolute;
  text-decoration: none;
}

/* Contact Box */

.contact-box .email{
  white-space: pre;           /* CSS 2.0 */
  white-space: pre-wrap;      /* CSS 2.1 */
  white-space: pre-line;      /* CSS 3.0 */
  white-space: -pre-wrap;     /* Opera 4-6 */
  white-space: -o-pre-wrap;   /* Opera 7 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: -hp-pre-wrap;  /* HP Printers */
  word-wrap: break-word;      /* IE 5+ */

}

@media (min-width: 992px) {
  .contact-box .email{ font-size: 7.5pt; }
}

/* Image Gallery */

.gallery { margin-top: 10px; }

.gallery a.image{
  float: left;
  margin: 0px 10px 10px 0px;
  overflow: hidden;
  position: relative;
}

.gallery a.image img{ position: absolute; }

.gallery a.image .enlarge{
  display: block;
  width: 100%;
  text-align: right;
  -webkit-transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.gallery a.image .enlarge p{ display: none; }

.gallery a.image:hover .enlarge{ opacity: 1; }

.gallery a.image .enlarge span{
  background: url(../images/legacy/yellow.png) repeat;
  background: rgba(255,212,0,0.8);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 3px;
  text-align: center;
  top: 0px;
}

.gallery a.image:hover { text-decoration: none; }

@media (min-width: 992px) {

  .gallery a.image{ position: relative; }

  :root *> .gallery a.image img { position: relative; }
  :root *> .gallery a.image .enlarge{
    background: url(../images/legacy/yellow.png) repeat;
    background: rgba(255,212,0,0.8);
    display: block;
    height: 100%;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    -o-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
    width: 100%;
  }

  :root *> .gallery a.image:hover .enlarge{ opacity: 1; }

  :root *> .gallery a.image .enlarge span,
  :root *> .gallery a.image:hover .enlarge span{
    background: none;
    color: #fff;
    font-size: 30px;
    margin-top: 35%;
    text-decoration: none;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  }

  :root *> .gallery a.image .enlarge p,
  :root *> .gallery a.image:hover .enlarge p{
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: 300;
    margin: 0 5px;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  }

  .gallery .caption {
    font-size: 12px;
    padding-top: 5px;
  }
}

/* Latest Tour */

.latest-tour{ padding-bottom: 0px; }

.latest-tour a.button{
  border-top: 1px solid #999;
  display: block;
  font-size: 13px;
  line-height: 100%;
  margin: 0px;
  overflow: hidden;
  padding: 10px 20px 10px 10px;
}

.latest-tour a.button:hover{
  background: #eee;
  color: inherit;
  text-decoration: none;
}

.latest-tour .image-container{ margin: 5px 2px 0px 5px; }
.latest-tour a.image:hover .enlarge span { font-size: 14px; }

.latest-tour .gallery a.image .enlarge span,
.latest-tour .gallery a.image:hover .enlarge span{

}

.latest-tour .gallery a.image{ margin: 0px 5px 5px 0px; }

/* Footer */

footer{
  background: #eee;
  border-top: 1px solid #ccc;
  padding: 10px 10px 1px 10px;
}

footer .sub-links ul li{
  border-right: 1px solid #ccc;
  display: inline-block;
  list-style: none;
}

footer .sub-links						{ text-align: right; }
footer .sub-links ul li:last-child		{ border-right: none; }
footer .sub-links ul li:last-child a	{ padding-right: 0px; }

footer .sub-links ul li a{
  font-size: 10px;
  font-weight: 400;
  padding: 1px 10px;
}

@media (min-width: 768px) {

  footer {
    background: none;
    border-top: none;
    padding: 0px 10px;
  }

  body.home footer {
    background: white;
    padding-top: 10px;
  }

}

@media (min-width: 992px) {
  footer .sub-links ul li a{ padding: 1px 5px; }
}

@media (min-width: 1200px) {
  footer.inner{ padding-right: 10px; }

}

.home footer.inner{ padding-right: 10px; max-width: none; }

/* iFrames */

iframe{ border: 1px solid #999; overflow-x: hidden; }


/* 'Edit Page' Link - Shown to logged in admins only */

.edit-link{
  background: #eee;
  border: 1px solid #999;
  padding: 3px 5px;
  margin: 10px 3px 3px 0px;
  border-radius: 2px;
  display: inline-block;
}

/* Pagination */

.wp-pagenavi{
  margin: 20px;
  text-align: center;
}

.wp-pagenavi span,
.wp-pagenavi a{
  border: 1px solid #999;
  display: inline-block;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 100%;
  margin: 5px;
  padding: 11px;
  position: relative;
  text-align: center;
  width: 40px;
}

.wp-pagenavi span{ background: #eee; }

.wp-pagenavi a:hover{
  background: #eee;
  color: #343536;
  text-decoration: none;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
  width: auto;
}

.wp-pagenavi .previouspostslink 		{ padding-left: 30px; }
.wp-pagenavi .nextpostslink 			{ padding-right: 30px; }
.wp-pagenavi .nextpostslink span 		{ right: 0px; }
.wp-pagenavi .previouspostslink span 	{ left: 20px; }

.wp-pagenavi .nextpostslink span,
.wp-pagenavi .previouspostslink span{
  border: none;
  height: 0px;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 0px;
  width: 0px;
}

.wp-pagenavi .nextpostslink span.arrow:before,
.wp-pagenavi .nextpostslink span.arrow:after{
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 20px;
}

.wp-pagenavi .previouspostslink span.arrow:before,
.wp-pagenavi .previouspostslink span.arrow:after{
  border-bottom-width: 20px;
  border-top-width: 20px;
  border-right-width: 20px;
  border-left-width: 0px;
  border-left-color: transparent;
  border-right-color: green;
  border-right-style: solid;
}

.wp-pagenavi .previouspostslink span.arrow:before {
  border-right-color: #999;
  left: -20px;
  z-index: 1;
}
.wp-pagenavi .previouspostslink span.arrow:after {
  border-right-color: #fff;
  left: -19px;
  z-index: 2;
}

.wp-pagenavi .previouspostslink:hover span.arrow:before { border-right-color: #000; }
.wp-pagenavi .previouspostslink:hover span.arrow:after  { border-right-color: #eee; }

/* List Rows */

.list-row{ margin: 0px 0px 15px 0px; }

@media (min-width:768px){

  .list-row.thumb p,
  .list-row.thumb span,
  .list-row.thumb h4{
    margin-left: 140px;
  }
}

.list-row h4			{ margin: 0px 0 5px 0; }
.list-row p 			{ font-size: 13px; margin-bottom: 0px; }
.list-row.thumb p.more 	{ margin-bottom: 0px; }

.list-row img.pull-left { padding-right: 0px; }

/* Industry Experts */

.experts .expert{
  float: left;
  max-width: 300px;
  margin: 0px 15px 15px 0px;
  width: 50%;
}

.experts .expert p{
  font-size: 13px;
  line-height: 15px;
  margin: 5px 0;
}

/* Facilities Locator */

.asset-map{
  margin: 0 0 15px 15px;
  width: 100%;
}

.asset-map:hover { text-decoration: none; }
.asset-map .gmnoprint{ display: none; }

#asset-map{
  background: #e2e2e2;
  height: 250px;
  width: 100%;
}

@media (min-width: 768px) {

  .asset-map,
  #asset-map{
    width: 250px;
  }
}

#asset-map-large{
  display: block;
  height: 500px;
  position: relative;
  width: 700px;
}

#facilities{
  display: block;
  height: 550px;
  margin-top: 10px;
  width: 100%;
}

ul.facilities-types{
  background: none;
  border: none;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

ul.facilities-types li{
  display: inline-block;
  margin-left: 0px;
  margin-right: 20px;
}

ul.facilities-types li p { margin: 0px; }

#facilities div.label,
#asset-map-large div.label{
  color: #000;
  cursor: inherit;
  padding: 1px;
  position: absolute;
  z-index: 1000;
}

#facilities div.label.disable{ visibility: hidden; }

span.marker{
  float: left;
  margin: 2px 4px 0 0;
}

.marker{
  background: #0063BE;
  border: 1px solid #fff;
  border-radius: 1px;
  box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
  display: block;
  height: 13px;
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  width: 13px;
}

.marker:hover 					 { background: #00275D; }
.marker-simon 					 { background: #0063BE; }
.marker-simon:hover				 { background: #00275D; }
.marker-interterminals 			 { background: #87D300; }
.marker-interterminals:hover	 { background: #7cb419; }
span.marker-simon:hover 		 { background: #0063BE; }
span.marker-interterminals:hover { background: #87D300; }

.popover{
  background: #ffd400;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
  max-width: 350px;
}

.popover-content h3{
  font-size: 12px;
  margin: 5px 0px 0px 0px;
  text-transform: uppercase;
}

.popover-content h4{
  font-size: 14px;
  font-weight: bold;
  margin: 2px 0px 10px 0px;
}

.popover-content p{
  color: #000;
  font-size: 11px;
  font-weight: normal;
}

.popover-content ul{
  list-style: inside;
  padding: 0px;
}

.popover-content li{ font-size: 10px; }

.popover-content li p{
  display: inline;
  margin: 0px;
}

.popover-content a.button{
  display: inline-block;
  height: 100px;
  margin-top: 5px;
}

.popover-content img{ float: left; }

.popover-content strong{
  display: inline-block;
  font-size: 13px;
  line-height: 16px;
  margin: 12px 10px;
  padding-right: 40px;
}

.popover-content span.button-arrow{
  position: relative;
  float: right;
  margin: 0px;
  right: -40px;
  top: -4px;
}

.popover-content span.button-arrow:before,
.popover-content span.button-arrow:after{
  content: ' ';
  border-bottom: 36px solid transparent;
  border-left: 17px solid transparent;
  border-top: 36px solid transparent;
  height: 0;
  position: absolute;
  width: 0;
}

.popover-content span.button-arrow:before{
  border-left-color: #000;
  right: 0;
  z-index: 1;
}

.popover-content span.button-arrow:after{
  border-left-color: #ffd400;
  right: 1px;
  z-index: 2;
}

.popover-content a.button:hover { color: inherit; text-decoration: none; }
.popover-content a.button:hover strong{ text-decoration: underline; }

.popover.bottom .arrow,
.popover.bottom .arrow:after,
.popover.top .arrow,
.popover.top .arrow:after{ border-top-color: #ffd400; }


/* Home Page Interactive Photo Slides */

#home-slides {
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slide-background {
  position: absolute;
  width: 110%;
  height: 105%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: 0.4s ease-out;
}

.slide.init .slide-background {
  transform: translate(-40%, -45%) scale(1.2);
  opacity: 0;
}

.slide-background-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-square {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-square-inner {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 77px;
  height: 55vmin;
  background: rgba(255, 203, 4, 0.9);
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.5s ease-in-out;
  transition-delay: 0.2s;
}

.slide.active .slide-square-inner {
  transform: translateX(0);
  opacity: 1;
}

.slide.init .slide-square-inner {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
}

.large-text, .small-text, .description {
  font-family: "HelveticaNeue-Thin", "Helvetica Neue Thin", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 100;
  color: black;
  margin: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.large-text {
  font-size: 19vw;
  line-height: 23vw;
  letter-spacing: -0.04em;
  transform: translateY(10%);
  transition-delay: 0.4s;
}

.small-text {
  font-size: 5.5vw;
  line-height: 6vw;
  transform: translateY(10%);
  transition-delay: 0.6s;
}

.description {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  font-size: 5.5vw;
  line-height: 6vw;
  color: white;
}

.slide.active .large-text, .slide.active .small-text {
  opacity: 1;
  transform: translateY(0);
}

.slide-square-inner:hover {
  background: rgba(0, 107, 182, 0.9);
}

.slide-square-inner:hover .large-text, .slide-square-inner:hover .small-text {
  opacity: 0;
  transition-delay: 0s;
}

.slide-square-inner:hover .description {
  opacity: 1;
}

@media (min-width: 768px) {

  #home-slides {
    padding-left: 25px;
    padding-right: 25px;
  }

  .slide-square-inner {
    left: 25px;
    right: auto;
    top: 122px;
    width: 25vw;
    height: 0;
    padding-bottom: 25vw;
  }

  .slide-text {
    width: 100%;
    padding: 25px;
  }

  .large-text {
    font-size: 7.7vw;
    line-height: 10vw;
  }

  .small-text {
    font-size: 1.9vw;
    line-height: 2.3vw;
  }

  .description {
    font-size: 1.6vw;
    line-height: 2.1vw;
    padding: 25px;
  }
}

/* Contacts Page */

.contacts-list .contact{
  float: left;
  margin: 0px 6px 10px 0px;
  width: 150px;
}

.contacts-list .contact:nth-child(2n+2){
  margin: 0px;
}

.contacts-list .contact p {
  font-size: 11px;
  margin-top: 5px;
}

@media (min-width: 768px) {

  .contacts-list .contact{
    margin: 0px;
    min-width: 230px;
    width: auto;
  }

  .contacts-list .contact p {
    font-size: 12px;
    margin-top: 5px;
  }
}

/* Sitemap */

.sitemap ul {
  background: none;
  border: none;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.sitemap ul li {

  list-style: none;
  font-size: 13px;
  margin: 3px 0px 3px 0px;
  text-transform: capitalize;
}

.sitemap > ul > li{
  margin-bottom: 40px;
}

.sitemap > ul ul{
  margin: 5px 0 10px 10px;
}

.sitemap > ul > li{
  font-weight: bold;
  font-size: 16px;
}

.sitemap > ul > li > ul > li ul > li{
  font-weight: normal;
}

.sitemap > ul > ul > ul > li a{

}

.sitemap > ul > li > ul > li > ul > li > ul > li a{
  font-size: 12px;
}

/* Accordion */

.accordion .panel{
  border: none;
  border-radius: 0px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  margin-bottom: 15px;
}

.accordion .panel .panel-heading{
  border: 1px solid #999;
  background: none;
  border-radius: 0px;
  padding: 0px;
}

.accordion .panel .panel-heading h4{
  margin: 0px;
  padding: 0px;
  line-height: 1;
}

.accordion .panel .panel-heading h4 a{
  padding: 15px 15px;
  font-weight: 200;
  display: block;

  background-size: 55px 46px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 65px;
  color: #343536;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;

  text-decoration: none;
}

.accordion .panel .panel-heading h4 a:hover{
  background-color: #EEEEEE;
  color: #343536;
  text-decoration: none;
}

.accordion.panel-group .panel-heading + .panel-collapse .panel-body{
  border: 1px solid #CCC;
  border-top: none;
}

.accordion .arrow-down{
  height: 26px;
  float: right;
  margin: -5px -5px -5px 0px;
  width: 50px;
  position: relative;
}

.accordion .arrow-down:before, .accordion .arrow-down:after{
  border-top: 26px solid transparent;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-bottom: 0px solid transparent;
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  -webkit-transition: border-color 0.3s ease-out;
  transition: border-color 0.3s ease-out;

}

.accordion .arrow-down:before{
  border-top-color: #999;
  top: 0;
  z-index: 1;
}

.accordion .arrow-down:after{
  border-top-color: #fff;
  top: -1px;
  z-index: 2;
}

.accordion .panel .panel-heading h4 a:hover .arrow-down:before{
  border-top-color: #343536;
}

.accordion .panel .panel-heading h4 a:hover .arrow-down:after{
  border-top-color: #EEEEEE;
}

.accordion .panel-heading.panel-active .arrow-down:before, .accordion .panel-heading.panel-active .arrow-down:after{
  border-bottom: 26px solid transparent;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 0px solid transparent;

}

.accordion .panel-heading.panel-active .arrow-down:before{
  border-bottom-color: #999;
  top: -1px;
}

.accordion .panel-heading.panel-active .arrow-down:after{
  border-bottom-color: #fff;
  top: 0px;

}

.accordion .panel .panel-heading.panel-active h4 a:hover .arrow-down:before{
  border-bottom-color: #343536;
}

.accordion .panel .panel-heading.panel-active h4 a:hover .arrow-down:after{
  border-bottom-color: #EEEEEE;
}

.panel-side .thumb{
  margin-bottom: 15px;
  display: block;
}

.panel-side a.panel-button{
  display: block;
  border: 1px solid #999999;
  margin-bottom: 5px;
  font-weight: 400;
  color: #5d5d5e;
  padding: 5px 0px 5px 5px;
  font-size: 14px;
  line-height: 0.9em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.panel-side a.panel-button span.arrow{
  float: right;
  margin: 0px;
  display: inline-block;
  height: 22px;
  padding: 0px;
  width: 12px;
  position: relative;
  right: 0px;
  top: -5px;
}

.panel-side a span.arrow:before, .panel-side a span.arrow:after{
  border-bottom: 11px solid transparent;
  border-top: 11px solid transparent;
  border-left: 12px solid transparent;
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
}

.panel-side a.panel-button span.arrow:before{
  border-left-color: #999;
  right: 0;
  z-index: 1;
}

.panel-side a.panel-button span.arrow:after{
  border-left-color: #fff;
  right: 1px;
  z-index: 2;
}


.panel-side a.panel-button:hover{
  text-decoration: none;
  color: #343536;
  border-color: #343536;
}

.panel-side a.panel-button:hover span.arrow:before{
  border-left-color: #343536;
}

.panel-side a.panel-button:last-child{ margin-bottom: 15px; }
.panel-main p:last-child{ margin-bottom: 0px; }

.panel-heading .case-study{ display: none; }

@media (min-width: 768px) {

  .accordion .panel .panel-heading h4 a{
    background-size: 75px auto;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 90px;
  }


  .panel-side{
    width: 245px;
    float: left;
  }

  .panel-main{
    margin-left: 260px;
  }

  .panel-heading .case-study{
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-size: 11px;
    background: #8b8b8b;
    padding: 4px 4px 2px 4px;
    margin-right: 15px;
    border-radius: 2px;
    opacity: 0.7;
    float: right;
  }

}

.rebrand-alert{
  background: #FFD400;
  padding: 5px;
  margin-bottom: 10px;
}

.rebrand-alert p{
  font-weight: bold;
  margin: 0px;
}

.archive-link{
  padding: 5px;
  border: 1px solid #999;
}

.archive-link p { margin: 0px; }

/* Capabilities Key */

ul.capabilities_key{
  border: none;
  background: none;
  list-style: none;
  padding: 0px;
}

ul.capabilities_key li{
  border: 1px solid #999999;
  display: inline-block;
  margin: 0px 5px 0px 0px;
}

ul.capabilities_key li span{
  font-weight: bold;
  font-size: 10px;
  height: 15px;
  border-left: 15px solid #999999;
  display: inline-block;
  padding: 0px 2px;
  min-width: 75px;
  cursor: default;
}

ul.capabilities_key li.waste span	{ border-left-color: #4ba349; }
ul.capabilities_key li.chemicals span	{ border-left-color: #2d9dd9; }
ul.capabilities_key li.oils span		{ border-left-color: #b03939; }
ul.capabilities_key li.potable-alcohol span		{ border-left-color: #e9b003; }

.asset-box ul.capabilities_key{
  margin: 0px 0px 10px 0px;
}

.asset-box ul.capabilities_key li{
  border: none;
}

.asset-box ul.capabilities_key li span{
  min-width: 0px;
  height: 10px;
  border-left-width: 10px;
  font-size: 10px;
  line-height: 9px;
}

/* Terminal selector */

.terminal-selector p{ max-width: 670px; }

ul.filters{
  background: none;
  border: none;
  margin: 0px;
  padding: 0px;
}

ul.filters li{
  list-style: none;
  display: block;
  border-bottom: 1px solid #999999;
  margin: 0px;
  padding: 0px;
  position: relative;

}

ul.filters li label{
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  padding: 10px;
  display: block;
  margin: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

ul.filters li:last-child{ border-bottom: none; }

ul.filters input[type=checkbox]{
  float: left;
  opacity: 0;
}

ul.filters label:after{
  content: '';
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 13px;
  background-color: #fff;
  background-image: url(../images/icons/filter-tick.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0%;
  border: 1px solid #999999;
  position: absolute;
  right: 10px;
  top: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-clip: padding-box;
}

ul.filters label:hover{
  background: #d9d9d9;
  cursor: pointer;
}

ul.filters label:hover:after{
  background-color: #d9d9d9;
}

ul.filters input[type=checkbox]:checked + label{
  background: #eeeeee;
}

ul.filters input[type=checkbox]:checked + label:after{
  background-color: #999999;
  background-size: 50%;
}

ul.filters input[type=checkbox]:disabled + label,
ul.filters input[type=checkbox].disabled + label,
ul.filters input[type=checkbox]:disabled:hover + label,
ul.filters input[type=checkbox].disabled:hover + label{
  background: red;
  opacity: 0.9;
  cursor: default;
}

ul.filters input[type=checkbox]:disabled + label:after,
ul.filters input[type=checkbox].disabled + label:after,
ul.filters input[type=checkbox]:disabled:hover + label:after,
ul.filters input[type=checkbox].disabled:hover + label:after{
  background: red;
  opacity: 0.5;
}


#facilities.terminal-map{
  background: #eeeeee;
  border: 1px solid #999999;
  margin-top: 0px;
  margin-bottom: 15px;
  height: 500px;
  display: none;
}

@media (min-width: 768px) {

  #facilities.terminal-map{
    display: block;
  }
}

.assets-list .asset-filter{
  display: block;
}

.assets-list .asset-filter .asset-box{
  border: 1px solid #999999;
  margin: 0px 0px 15px 0px;
  padding: 10px;
  display: block;
}

.single-column .b-by-b-item {
  width: 100% !important;
}


@media (min-width: 0px) and (max-width: 992px) {

  .assets-list .b-by-b-item {
    width: 100%;
  }

  body .assets-list .single-column:first-child .b-by-b-item .asset-box{ margin-right: 0px; }
  body .assets-list .single-column:last-child .b-by-b-item .asset-box{ margin-left: 0px; }

}


@media (min-width: 992px) {

  .assets-list .b-by-b-item {
    width: 50%;
  }
}


.assets-list .single-column:first-child .b-by-b-item .asset-box{ margin-right: 7px; }
.assets-list .single-column:last-child .b-by-b-item .asset-box{ margin-left: 8px; }

.asset-box h3{
  margin: 0px;
  font-size: 22px;
}

.asset-box p{
  margin: 0px;
  font-size: 13px;
  line-height: 17px;
}

.asset-box p a{
  font-weight: bold;
}

.asset-box .asset-image{
  float: left;
}

.asset-box .asset-content{
  margin-left: 100px;
}


@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    max-height: 0;
  }

  50% {
    opacity: 1;
    max-height: 9999px;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    max-height: 0;
  }

  50% {
    opacity: 1;
    max-height: 9999px;
  }
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    max-height: 9999px;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    max-height: 0;
  }


}

@keyframes zoomOut {

  0% {
    opacity: 1;
    max-height: 9999px;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    max-height: 0;
  }

}

.assets-list .asset-filter{
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  max-height: 400px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  opacity: 1;

}

.assets-list .asset-filter.asset-hidden{
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  opacity: 0;
  max-height: 0;
}

.assets-list .asset-filter.asset-visible{
  opacity: 1;
  max-height: 400px;
}

.assets-none{
  display: none;
}

.assets-none.assets-found{
  display: block;
}

.terminal-map span.marker{
  float: left;
  margin: 2px 4px 0 0;
}

.terminal-map .marker.asset-visible,
.terminal-map .marker{
  background: #FFD400;
  border: 1px solid #FFD400;
  border-radius: 0px;
  box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
  height: 15px;
  width: auto;
  max-width: 90px;
  z-index: 1000;
  position: relative;
  opacity: 1;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;

}

.terminal-map .marker.asset-hidden{
  background: #0063BE;
  border: 1px solid rgba(0,0,0,0.5);
  border-radius: 1px;
  box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
  height: 8px;
  width: auto;
  /*	width: 8px;*/
  opacity: 0.5;
  margin: 10px 0 0 20px;
  padding: 0px;
  z-index: 100;
  max-width: 8px;

}

.terminal-map .marker span{
  display: inline-block;
  clip: rect(0 0 0 0);
  opacity: 1;
  margin-left: 2px;
  margin-right: 2px;
  font-weight: bold;
  font-size: 10px;
  pointer-events: none;
  width: auto;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.terminal-map .marker.asset-hidden span{
  margin: 0px;
  opacity: 0;
  color: #0063BE;
}

.terminal-map .marker.collide{
  /* outline: 1px solid red !important; /**/
}

.popover .asset-filter h3{
  text-transform: none;
  font-size: 19px;
}

.popover .asset-filter p{
  font-size: 12px;
}

/* Country selector */

ul.country-select{
  border: none;
  background: none;
  padding: 0px;
  margin: 0px 0px 20px 0px;
}

ul.country-select li{
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: inline-block;
  width: 25%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

ul.country-select li:first-child{ border-left: 1px solid #999; }

ul.country-select li a:hover{ background: #EEE; }

ul.country-select li a{
  margin: 0px;
  padding: 10px 20px 10px 10px;
  display: block;
  line-height: 1;
  font-size: 13px;
}

/* Website alerts */

@keyframes alertIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.alert-banner {
  position: fixed;
  background: rgba(50, 118, 177, 0.95);
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 15px 10px;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-delay: 0.4s;

  animation-timing-function: cubic-bezier(0,.54,.47,1.05);
  animation-name: alertIn;
}

.alert-banner__content,
.alert-banner__content p,
.alert-banner__content a {
  color: #fff;
}

.alert-banner__content p:nth-child(2) {
  display: inline-block;
}


.alert-banner__content p:last-child {
  margin-bottom: 0;
}

.alert-banner__title {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 5px;
}

/* Updates Feb 2019 */
header #logo {
  float: left;
}
header nav {
  float: right;
}

.menu-slash {
  position: absolute;
  background: url('../images/icons/slash_nav.svg');
  height: 40px;
  width: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  transition: left 0.2s ease-out;
}

@media (max-width: 1182px) {
  header nav {
    float: none;
    clear: left;
    position: absolute;
    right: 0;
    z-index: 3;
  }
  nav .main-menu {
    margin-top: 20px;
  }
  header nav.nav-open {
    left: 0;
  }
  .header-wrapper header.inner {
    overflow: visible;
    height: auto;
    min-height: 40px;
  }
}
@media (max-width: 768px) {
  .menu-slash {
    display: none;
  }
}
