* {
  margin: 0;
  padding: 0; }

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif; }

h1 {
  font-size: 72px;
  font-weight: 700; }
  @media screen and (max-width: 991px) {
    h1 {
      font-size: 64px; } }
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 58px; } }
  @media screen and (max-width: 450px) {
    h1 {
      font-size: 48px; } }

h2 {
  font-size: 42px;
  font-weight: 400; }
  @media screen and (max-width: 991px) {
    h2 {
      font-size: 40px; } }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 36px; } }
  @media screen and (max-width: 450px) {
    h2 {
      font-size: 28px; } }

h3 {
  font-size: 28px;
  font-weight: 700; }
  @media screen and (max-width: 991px) {
    h3 {
      font-size: 26px; } }
  @media screen and (max-width: 767px) {
    h3 {
      font-size: 24px; } }
  @media screen and (max-width: 450px) {
    h3 {
      font-size: 20px; } }

h4 {
  font-size: 24px;
  font-weight: 700; }
  @media screen and (max-width: 991px) {
    h4 {
      font-size: 22px; } }
  @media screen and (max-width: 767px) {
    h4 {
      font-size: 20px; } }
  @media screen and (max-width: 450px) {
    h4 {
      font-size: 18px; } }

h5 {
  font-size: 22px;
  font-weight: 700; }
  @media screen and (max-width: 991px) {
    h5 {
      font-size: 20px; } }
  @media screen and (max-width: 767px) {
    h5 {
      font-size: 18px; } }
  @media screen and (max-width: 450px) {
    h5 {
      font-size: 18px; } }

h6 {
  font-size: 18px;
  font-weight: 700; }
  @media screen and (max-width: 991px) {
    h6 {
      font-size: 18px; } }
  @media screen and (max-width: 767px) {
    h6 {
      font-size: 16px; } }
  @media screen and (max-width: 450px) {
    h6 {
      font-size: 16px; } }

.text-blue {
  color: #22aae1; }

.text-orange {
  color: #f78d25; }

.text-white {
  color: #ffffff; }

a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease; }

a:hover, a:active, a:focus, a:visited {
  text-decoration: none; }

a.underlined, a.underlined:hover {
  text-decoration: underline; }

.image-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.set-hidden {
  opacity: 0; }

.inner-page-banner {
  background: #22aae1;
  padding: 170px 0 100px 0; }
  .inner-page-banner h1 {
    color: #ffffff;
    text-align: center; }

.inner-page-main {
  background: #fcfcfc;
  padding: 50px 0; }
  .inner-page-main h1, .inner-page-main h2, .inner-page-main h3, .inner-page-main h4, .inner-page-main h5, .inner-page-main h6 {
    color: #22aae1;
    margin: 40px 0 20px 0; }
  .inner-page-main ul, .inner-page-main ol {
    padding-left: 20px; }

.split-left-right {
  display: table; }
  .split-left-right > div:nth-of-type(1) {
    display: table-cell;
    float: none;
    padding-right: 15px; }
  .split-left-right > div:nth-of-type(2) {
    display: table-cell;
    float: none; }
  .split-left-right > div.v-align-center {
    vertical-align: middle; }
  .split-left-right > div.v-align-top {
    vertical-align: top; }

/* Pagination (WP PageNavi) */
.pagination .wp-pagenavi {
  display: inline-block; }
  .pagination .wp-pagenavi .pages {
    display: none; }
  .pagination .wp-pagenavi span {
    margin: 5px;
    color: #333;
    border: none; }
  .pagination .wp-pagenavi a {
    margin: 5px;
    color: #333;
    border: none; }
  .pagination .wp-pagenavi a:hover {
    color: #d00b1b; }
  .pagination .wp-pagenavi .current {
    font-weight: normal !important;
    border-color: #f78d25 !important;
    border: 1px solid #BFBFBF;
    padding: 7px 10px;
    color: #f78d25; }
  .pagination .wp-pagenavi .previouspostslink:before {
    position: relative;
    background-image: url("../img/icon/arrow-left.png");
    background-size: cover;
    display: inline-block;
    width: 32px;
    height: 32px;
    content: "";
    margin-right: 10px;
    top: 13px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .pagination .wp-pagenavi .previouspostslink:hover:before {
    background-image: url("../img/icon/arrow-left-orange.png"); }
  .pagination .wp-pagenavi .nextpostslink:after {
    position: relative;
    background-image: url("../img/icon/arrow-left.png");
    background-size: cover;
    display: inline-block;
    width: 32px;
    height: 32px;
    content: "";
    margin-left: 10px;
    top: 13px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .pagination .wp-pagenavi .nextpostslink:hover:after {
    background-image: url("../img/icon/arrow-left-orange.png"); }
  .pagination .wp-pagenavi .first:before {
    position: relative;
    background-image: url("../img/icon/arrow-left.png");
    background-size: cover;
    display: inline-block;
    width: 32px;
    height: 32px;
    content: "";
    margin-right: 10px;
    top: 13px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .pagination .wp-pagenavi .first:hover:before {
    background-image: url("../img/icon/arrow-left-orange.png"); }
  .pagination .wp-pagenavi .last:after {
    position: relative;
    background-image: url("../img/icon/arrow-left.png");
    background-size: cover;
    display: inline-block;
    width: 32px;
    height: 32px;
    content: "";
    margin-left: 10px;
    top: 13px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .pagination .wp-pagenavi .last:hover:after {
    background-image: url("../img/icon/arrow-left-orange.png"); }

/* Pagination */
.pagination {
  position: relative;
  width: 100%;
  text-align: center; }
  .pagination .inner {
    width: auto; }
    .pagination .inner a {
      display: inline-block;
      position: relative;
      font-size: 16px;
      font-weight: 400;
      color: #82a2b2;
      padding: 15px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .pagination .inner a.previous img, .pagination .inner a.next img {
      width: 32px;
      height: 32px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .pagination .inner a.next img {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
    .pagination .inner a.previous:after, .pagination .inner a.next:after {
      content: "";
      position: absolute;
      width: 32px;
      height: 32px;
      left: 15px;
      /* Padding size of 'a' */
      background-image: url("../img/icon/arrow-left-orange.png");
      background-size: cover;
      opacity: 0;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .pagination .inner a.next:after {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
    .pagination .inner a:hover {
      color: #f78d25; }
    .pagination .inner a.previous:hover img, .pagination .inner a.next:hover img {
      opacity: 0; }
    .pagination .inner a.previous:hover:after, .pagination .inner a.next:hover:after {
      opacity: 1; }
    .pagination .inner a.previous:active:after, .pagination .inner a.next:active:after {
      opacity: 0.5; }

@media screen and (max-width: 991px) {
  .inner-page-banner {
    padding: 150px 0 100px 0; }
  .inner-page-main {
    padding: 50px 0; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  .inner-page-banner {
    padding: 100px 0 60px 0; }
  .inner-page-main {
    padding: 50px 0; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .split-left-right > div:nth-of-type(1) {
    padding-right: 8px; }
  /* Pagination */
  .pagination .inner a {
    padding: 10px 15px; }
  .inner-page-banner {
    padding: 80px 0 40px 0; }
  .inner-page-main {
    padding: 50px 0; } }

/* end max-width 450px */
section {
  position: relative; }

.container {
  position: relative; }

.vertical-padding-lg {
  padding-top: 100px;
  padding-bottom: 100px; }

.vertical-padding-md {
  padding-top: 50px;
  padding-bottom: 50px; }

.vertical-padding-sm {
  padding-top: 25px;
  padding-bottom: 25px; }

.vertical-padding-xs {
  padding-top: 10px;
  padding-bottom: 10px; }

.margin-top-lg {
  margin-top: 100px; }

.margin-top-md {
  margin-top: 50px; }

.margin-top-sm {
  margin-top: 20px; }

.margin-top-xs {
  margin-top: 10px; }

.margin-bot-lg {
  margin-bottom: 100px; }

.margin-bot-md {
  margin-bottom: 50px; }

.margin-bot-sm {
  margin-bottom: 20px; }

.margin-bot-xs {
  margin-bottom: 10px; }

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.x-center {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.y-center {
  vertical-align: middle;
  height: 100%; }

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

@media screen and (max-width: 991px) {
  .vertical-padding-lg {
    padding-top: 60px;
    padding-bottom: 60px; }
  .vertical-padding-md {
    padding-top: 40px;
    padding-bottom: 40px; }
  .vertical-padding-sm {
    padding-top: 25px;
    padding-bottom: 25px; }
  .vertical-padding-xs {
    padding-top: 10px;
    padding-bottom: 10px; }
  .margin-top-lg {
    margin-top: 60px; }
  .margin-top-md {
    margin-top: 30px; }
  .margin-top-sm {
    margin-top: 20px; }
  .margin-top-xs {
    margin-top: 10px; }
  .margin-bot-lg {
    margin-bottom: 60px; }
  .margin-bot-md {
    margin-bottom: 30px; }
  .margin-bot-sm {
    margin-bottom: 20px; }
  .margin-bot-xs {
    margin-bottom: 10px; } }

/* end max-width 991px */
@media screen and (max-width: 450px) {
  .vertical-padding-lg {
    padding-top: 60px;
    padding-bottom: 60px; }
  .vertical-padding-md {
    padding-top: 40px;
    padding-bottom: 40px; }
  .vertical-padding-sm {
    padding-top: 25px;
    padding-bottom: 25px; }
  .vertical-padding-xs {
    padding-top: 10px;
    padding-bottom: 10px; }
  .margin-top-lg {
    margin-top: 50px; }
  .margin-top-md {
    margin-top: 25px; }
  .margin-top-sm {
    margin-top: 15px; }
  .margin-top-xs {
    margin-top: 5px; }
  .margin-bot-lg {
    margin-bottom: 50px; }
  .margin-bot-md {
    margin-bottom: 25px; }
  .margin-bot-sm {
    margin-bottom: 15px; }
  .margin-bot-xs {
    margin-bottom: 5px; } }

/* end max-width 450px */
.beaches-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .beaches-header .header-logo {
    width: 200px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .beaches-header .header-logo.scrolled {
    width: 150px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .beaches-header nav {
    display: inline-block;
    padding: 0;
    float: right; }
    .beaches-header nav ul {
      position: relative;
      list-style-type: none;
      padding: 0;
      margin-bottom: 0; }
      .beaches-header nav ul li {
        float: left;
        padding: 15px; }
        .beaches-header nav ul li a {
          position: relative;
          display: inline-block;
          color: #fff;
          text-transform: uppercase;
          font-size: 14px;
          font-weight: 700;
          font-family: "Lato", sans-serif;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
        .beaches-header nav ul li a:after {
          position: absolute;
          content: "";
          bottom: -5px;
          left: 50%;
          height: 1px;
          width: 0%;
          background: #ffffff;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
        .beaches-header nav ul li a:hover {
          text-decoration: none; }
        .beaches-header nav ul li a:hover:after {
          left: 0%;
          height: 2px;
          width: 100%; }
      .beaches-header nav ul li.current a:after {
        left: 0%;
        height: 2px;
        width: 100%; }
      .beaches-header nav ul li.current:hover a {
        cursor: default; }
      .beaches-header nav ul li.current:hover a:after {
        left: 10%;
        height: 2px;
        width: 80%; }
  .beaches-header .mobile-menu-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 64px;
    border-radius: 4px;
    background: #22aae1;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: none; }
  .beaches-header .mobile-menu-button:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    right: 0;
    width: 70px;
    height: 64px;
    border-radius: 4px;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.4); }
  .beaches-header .mobile-menu-button:hover {
    background: #46beef; }
  .beaches-header .mobile-menu-button span {
    position: absolute;
    width: 60%;
    height: 6%;
    top: 47%;
    left: 20%;
    background-color: #ffffff;
    border-radius: 999px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .beaches-header .mobile-menu-button span:nth-of-type(1) {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
  .beaches-header .mobile-menu-button span:nth-of-type(3) {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
  .beaches-header .mobile-menu-button.active span:nth-of-type(2) {
    opacity: 0; }
  .beaches-header .mobile-menu-button.active span:nth-of-type(1) {
    opacity: 1;
    -webkit-transform: translateY(0px) rotate(45deg);
    -moz-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg); }
  .beaches-header .mobile-menu-button.active span:nth-of-type(3) {
    opacity: 1;
    -webkit-transform: translateY(0px) rotate(-45deg);
    -moz-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg); }

.beaches-header.scrolled {
  background: #22aae1;
  padding: 10px 0; }

.beaches-header.solid {
  background: #22aae1; }
  .beaches-header.solid .mobile-menu-button:before {
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0); }

@media screen and (max-width: 991px) {
  .beaches-header {
    padding: 30px 0; }
    .beaches-header .container {
      width: 100%;
      padding: 0; }
    .beaches-header .header-logo {
      width: 200px;
      margin-left: 20px;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .beaches-header .header-logo.scrolled {
      width: 150px;
      margin-left: 20px; }
    .beaches-header nav {
      display: block;
      position: fixed;
      width: 100%;
      height: 100%;
      top: 93px;
      left: 100%;
      background: #22aae1;
      padding: 20px 0;
      -webkit-transition: top 0.2s ease;
      -moz-transition: top 0.2s ease;
      -ms-transition: top 0.2s ease;
      transition: top 0.2s ease; }
      .beaches-header nav ul {
        padding: 0; }
        .beaches-header nav ul li {
          float: none;
          padding: 0px 20px;
          opacity: 0; }
          .beaches-header nav ul li a {
            display: block;
            font-size: 14px;
            font-weight: 700;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
          .beaches-header nav ul li a:hover {
            background: #46beef; }
          .beaches-header nav ul li a:hover:after {
            width: 0%; }
        .beaches-header nav ul li:last-of-type a {
          border-bottom: none; }
        .beaches-header nav ul li.current a:after {
          width: 0%; }
        .beaches-header nav ul li.current:hover a:after {
          width: 0%; }
    .beaches-header nav.scrolled {
      top: 65px; }
    .beaches-header .mobile-menu-button {
      top: 0;
      right: 15px;
      width: 70px;
      height: 64px;
      border-radius: 4px;
      display: block; }
    .beaches-header .mobile-menu-button.scrolled {
      top: -10px; }
    .beaches-header .mobile-menu-button.scrolled:before {
      box-shadow: -5px 5px 20px rgba(0, 0, 0, 0); }
    .beaches-header .mobile-menu-button span {
      width: 60%;
      height: 6%;
      top: 47%;
      left: 20%; }
  .beaches-header.solid {
    padding: 10px 0; }
    .beaches-header.solid nav {
      top: 80px; }
    .beaches-header.solid nav.scrolled {
      top: 65px; }
    .beaches-header.solid .mobile-menu-button:before {
      box-shadow: -5px 5px 20px rgba(0, 0, 0, 0); } }

/* end max-width 991px */
@media screen and (max-width: 450px) {
  .beaches-header {
    padding: 30px 0; }
    .beaches-header .container .row {
      margin: 0; }
    .beaches-header .header-logo {
      width: 170px;
      margin-left: 0px; }
    .beaches-header .header-logo.scrolled {
      width: 140px;
      margin-left: 0px; }
    .beaches-header nav {
      top: 81px; }
    .beaches-header nav.scrolled {
      top: 60px; }
    .beaches-header .mobile-menu-button {
      top: 0;
      right: 0;
      width: 60px;
      height: 52px;
      border-radius: 4px; }
    .beaches-header .mobile-menu-button:before {
      width: 60px;
      height: 52px; }
    .beaches-header .mobile-menu-button.scrolled {
      top: -5px; }
    .beaches-header .mobile-menu-button.scrolled:before {
      box-shadow: -5px 5px 20px rgba(0, 0, 0, 0); }
    .beaches-header .mobile-menu-button span {
      width: 60%;
      height: 6%;
      top: 47%;
      left: 20%; }
  .beaches-header.solid nav {
    top: 70px; }
  .beaches-header.solid nav.scrolled {
    top: 60px; }
  .beaches-header.solid .mobile-menu-button:before {
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0); } }

/* end max-width 450px */
.beaches-footer {
  background: #ffffff;
  color: #545454;
  font-size: 16px;
  line-height: 1.5; }
  .beaches-footer nav {
    float: left;
    padding-right: 50px;
    max-width: 50%; }
    .beaches-footer nav ul {
      position: relative;
      list-style-type: none; }
      .beaches-footer nav ul li {
        display: block;
        margin-bottom: 0px; }
        .beaches-footer nav ul li a {
          display: inline-block;
          padding: 5px 0;
          color: #545454; }
        .beaches-footer nav ul li a:hover {
          color: #22aae1; }
  .beaches-footer .footer-policies nav {
    float: none;
    max-width: none; }
    .beaches-footer .footer-policies nav ul {
      display: inline-block; }
      .beaches-footer .footer-policies nav ul li {
        float: left;
        margin: 0 10px; }
  .beaches-footer .footer-logos div a {
    display: inline-block; }
    .beaches-footer .footer-logos div a img {
      max-width: 250px; }
  .beaches-footer .footer-logos div a:hover {
    opacity: 0.7; }

.beaches-footer p a {
  color: #22aae1; }

.beaches-footer p a:hover {
  color: #22aae1; }

@media screen and (max-width: 991px) {
  .beaches-footer {
    text-align: center; }
    .beaches-footer nav {
      float: none;
      padding-right: 0px;
      max-width: none; }
      .beaches-footer nav ul {
        margin-bottom: 50px; }
    .beaches-footer nav:last-of-type ul {
      margin-bottom: 0px; }
    .beaches-footer .footer-logos div a {
      margin-bottom: 50px; }
      .beaches-footer .footer-logos div a img {
        max-width: 250px; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  .beaches-footer .footer-policies nav ul li {
    float: none;
    margin: 0 10px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .beaches-footer nav ul li a {
    padding: 10px 0; }
  .beaches-footer .footer-logos div a img {
    max-width: 200px; } }

/* end max-width 450px */
.btn {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 8px 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.btn-lg {
  font-size: 22px;
  font-weight: 900;
  padding: 10px 25px;
  border-radius: 4px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); }

.btn-lg:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3); }

.btn-default {
  background-color: #22aae1;
  color: #ffffff;
  border: none; }

.btn-default:hover {
  background-color: #46beef;
  color: #ffffff; }

.btn-default:visited, .btn-default:focus, .btn-default:active {
  background-color: #22aae1;
  color: #ffffff; }

.btn-primary {
  background-color: #f78d25;
  color: #ffffff;
  border: none; }

.btn-primary:hover {
  background-color: #ffa04d; }

.btn-primary:visited, .btn-primary:focus, .btn-primary:active {
  background-color: #f78d25;
  color: #ffffff; }

.btn-info {
  background-color: #82a2b2;
  color: #ffffff;
  border: none; }

.btn-info:hover {
  background-color: #97b4c2; }

.btn-info:visited, .btn-info:focus, .btn-info:active {
  background-color: #82a2b2;
  color: #ffffff; }

.toggle-map-btn {
  padding: 10px 15px;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  z-index: 970; }
  .toggle-map-btn img {
    display: block;
    width: 58px;
    height: 58px;
    margin-bottom: 5px; }
  .toggle-map-btn span {
    font-size: 16px;
    color: #fff; }

.toggle-map-btn.map-view {
  background: #22aae1;
  box-shadow: 1px 0px 12px rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, left 0.2s ease;
  -moz-transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, left 0.2s ease;
  transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, left 0.2s ease; }

.toggle-map-btn.list-view {
  background: #fcfcfc;
  box-shadow: -1px 0px 12px rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, right 0.2s ease;
  -moz-transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, right 0.2s ease;
  transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, right 0.2s ease; }
  .toggle-map-btn.list-view span {
    color: #565756; }

.toggle-map-btn:hover {
  text-decoration: none; }

.toggle-map-btn.map-view:hover {
  background: #46beef; }

.toggle-map-btn.list-view:hover {
  background: #f6f7f8; }

.btn-expand {
  width: 32px;
  height: 32px;
  background: #82a2b2;
  border-radius: 50%; }

.btn-expand:before {
  content: "";
  position: absolute;
  width: 40%;
  height: 8%;
  top: 46%;
  left: 30%;
  background: #ffffff; }

.btn-expand:after {
  content: "";
  position: absolute;
  height: 40%;
  width: 8%;
  left: 46%;
  top: 30%;
  background: #ffffff;
  -webkit-transition: all 0.4s ease 0.2s;
  -moz-transition: all 0.4s ease 0.2s;
  -ms-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s; }

.btn-expand:hover {
  background: #97b4c2; }

.btn-expand.active:after {
  height: 0%;
  top: 50%; }

@media screen and (max-width: 767px) {
  .toggle-map-btn {
    padding: 8px 12px; }
    .toggle-map-btn img {
      width: 42px;
      height: 42px;
      margin-bottom: 3px; }
    .toggle-map-btn span {
      font-size: 12px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .toggle-map-btn {
    padding: 6px 8px; }
    .toggle-map-btn img {
      width: 32px;
      height: 32px;
      margin-bottom: 3px; }
    .toggle-map-btn span {
      font-size: 12px; } }

/* end max-width 450px */
.card {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3); }

a.card:hover {
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.beach-card {
  position: relative;
  display: table;
  float: none;
  width: 100%; }
  .beach-card div {
    position: relative;
    display: table-cell;
    float: none;
    vertical-align: top; }
  .beach-card div:nth-of-type(1) {
    width: 25%;
	}
  .beach-card div:nth-of-type(2) {
    width: 50%;
    padding: 32px;
    background: #ffffff; }
    .beach-card div:nth-of-type(2) h3 {
      position: relative;
      padding: 0;
      margin-top: 0;
      margin-bottom: 5px;
      color: #333;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .beach-card div:nth-of-type(2) h3:hover {
      color: #22aae1; }
    .beach-card div:nth-of-type(2) span {
      font-size: 18px;
      color: #999; }
  .beach-card div:nth-of-type(3) {
    background: #edeff1;
    text-align: center;
    padding: 10px; }
    .beach-card div:nth-of-type(3) img {
      display: block;
      margin: 0 auto;
      margin-bottom: 5px;
      width: 64px;
      height: 64px; }
    .beach-card div:nth-of-type(3) span {
      display: inline-block;
      font-size: 16px;
      line-height: 1;
      color: #666; }

.beach-card-small-mobiles {
  background: #edeff1; }

.beach-card.restriction-card div:nth-of-type(3) {
  background: #ffa04d; }
  .beach-card.restriction-card div:nth-of-type(3) span {
    color: #ffffff; }

.beach-card.favourites-card div:nth-of-type(1) .inner {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 130px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .beach-card.favourites-card div:nth-of-type(1) .inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin-top: -32px;
    margin-left: -32px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }

.beach-card.favourites-card div:nth-of-type(1) .inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(34, 170, 225, 0.8); }

.beach-card.favourites-card div:nth-of-type(1) .inner:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.beach-card.favourites-card div:nth-of-type(1) .inner.unfavourite img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  opacity: 0.5; }

.beach-card.favourites-card div:nth-of-type(1) .inner.unfavourite:hover img {
  -webkit-animation: heartBeat 1s ease infinite;
  -moz-animation: heartBeat 1s ease infinite;
  animation: heartBeat 1s ease infinite; }

.beach-card.map-beach-card {
  position: absolute;
  width: 500px;
  visibility: hidden;
  opacity: 0;
  pointer-events: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateX(-50%) translateY(-75%) scale(0);
  -moz-transform: translateX(-50%) translateY(-75%) scale(0);
  -ms-transform: translateX(-50%) translateY(-75%) scale(0);
  transform: translateX(-50%) translateY(-75%) scale(0); }
  .beach-card.map-beach-card div:nth-of-type(2) h3 {
    font-size: 18px; }
  .beach-card.map-beach-card div:nth-of-type(2) span {
    font-size: 16px; }
  .beach-card.map-beach-card div:nth-of-type(3) img {
    margin-bottom: 5px;
    width: 44px;
    height: 44px; }
  .beach-card.map-beach-card div:nth-of-type(3) span {
    font-size: 14px;
    line-height: 1.2; }
  .beach-card.map-beach-card img.close {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -16px;
    right: -16px;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: box-shadow 0.2s ease;
    -moz-transition: box-shadow 0.2s ease;
    -ms-transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease; }
  .beach-card.map-beach-card img.close:hover {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3); }

.beach-card.map-beach-card.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-75%) scale(1);
  -moz-transform: translateX(-50%) translateY(-75%) scale(1);
  -ms-transform: translateX(-50%) translateY(-75%) scale(1);
  transform: translateX(-50%) translateY(-75%) scale(1); }

.news-card {
  position: relative;
  width: 100%; }
  .news-card > div {
    position: relative; }
  .news-card > div:nth-of-type(1) {
    height: 230px;
    width: 100%; }
    .news-card > div:nth-of-type(1) a {
      position: absolute;
      bottom: 0;
      right: 0;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 15px 18px;
      border-top-left-radius: 5px;
      background: #98c8dc;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .news-card > div:nth-of-type(1) a:hover {
      background: #a5d8ed; }
  .news-card > div:nth-of-type(2) {
    width: 100%;
    height: 280px;
    padding: 20px;
    padding-bottom: 100px;
    background: #ffffff;
    overflow: hidden; }
    .news-card > div:nth-of-type(2) h3 {
      margin-top: 0;
      color: #565756;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .news-card > div:nth-of-type(2) a.btn {
      position: absolute;
      bottom: 20px;
      left: 20px; }
    .news-card > div:nth-of-type(2) .post-share {
      position: absolute;
      bottom: 20px;
      right: 20px; }
      .news-card > div:nth-of-type(2) .post-share .post-share-dropup {
        position: absolute;
        top: -40px;
        right: 0;
        min-width: 150px;
        min-height: 40px;
        background: #fcfcfc;
        padding: 7px;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(8px);
        -moz-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .news-card > div:nth-of-type(2) .post-share .post-share-dropup a {
          margin: 3px; }
          .news-card > div:nth-of-type(2) .post-share .post-share-dropup a img {
            width: 24px;
            height: 24px;
            -webkit-transition: opacity 0.2s ease;
            -moz-transition: opacity 0.2s ease;
            -ms-transition: opacity 0.2s ease;
            transition: opacity 0.2s ease; }
        .news-card > div:nth-of-type(2) .post-share .post-share-dropup a:hover img {
          opacity: 0.7; }
      .news-card > div:nth-of-type(2) .post-share .post-share-dropup:before {
        position: absolute;
        content: "";
        width: 10px;
        height: 10px;
        background: #fff;
        bottom: -6px;
        right: 20px;
        border-right: 1px solid #bbb;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg); }
      .news-card > div:nth-of-type(2) .post-share .post-share-dropup.active {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0); }
      .news-card > div:nth-of-type(2) .post-share .post-share-btn {
        display: block;
        width: 50px;
        height: 50px;
        background: #82a2b2;
        border-radius: 50%; }
      .news-card > div:nth-of-type(2) .post-share .post-share-btn:hover {
        background: #97b4c2; }
      .news-card > div:nth-of-type(2) .post-share .post-share-btn img {
        width: 100%;
        height: 100%; }
  .news-card div:nth-of-type(2):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: #ffffff;
    pointer-events: none;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }

.news-card div:nth-of-type(2) h3:hover {
  color: #22aae1; }

.resource-card {
  width: 100%;
  height: 400px;
  padding: 20px;
  background: #ffffff;
  overflow: auto; }
  .resource-card h3 {
    margin-top: 0;
    color: #22aae1; }

.overlay-card {
  background: #ffffff;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.3); }
  .overlay-card a.close-overlay {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: url("../img/icon/menu-close-orange.png");
    background-size: cover; }
  .overlay-card a.close-overlay:hover {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3); }

@media screen and (max-width: 991px) {
  .news-card > div:nth-of-type(1) {
    height: 230px; }
  .news-card > div:nth-of-type(2) {
    height: 200px; }
  .news-card div:nth-of-type(2):before {
    height: 150px; }
  .resource-card {
    height: auto; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  .beach-card {
    display: inline-block;
    width: 100%; }
    .beach-card div {
      display: inline-block;
      float: left; }
    .beach-card div:nth-of-type(1) {
      width: 100%;
      height: 118px; }
    .beach-card div:nth-of-type(2) {
      width: 60%; }
    .beach-card div:nth-of-type(3) {
      width: 40%;
      padding: 10px; }
      .beach-card div:nth-of-type(3) img {
        width: 60px;
        height: 60px; }
      .beach-card div:nth-of-type(3) span {
        font-size: 14px; }
  .beach-card.favourites-card div:nth-of-type(1) .inner {
    height: 100%; }
  .beach-card.map-beach-card {
    width: 300px;
    height: 120px; }
    .beach-card.map-beach-card div:nth-of-type(1) {
      height: 120px; }
    .beach-card.map-beach-card div:nth-of-type(2) {
      height: 120px;
      padding: 15px; }
    .beach-card.map-beach-card div:nth-of-type(3) {
      height: 120px; }
      .beach-card.map-beach-card div:nth-of-type(3) img {
        width: 32px;
        height: 32px; }
      .beach-card.map-beach-card div:nth-of-type(3) span {
        font-size: 12px;
        line-height: 1; }
  .news-card > div:nth-of-type(1) {
    height: 200px; }
  .news-card > div:nth-of-type(2) {
    height: 250px; }
  .news-card div:nth-of-type(2):before {
    height: 170px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .beach-card div:nth-of-type(1) {
    height: 85px; }
  .beach-card div:nth-of-type(2) {
    width: 60%;
    padding: 15px; }
    .beach-card div:nth-of-type(2) span {
      font-size: 16px; }
  .beach-card div:nth-of-type(3) {
    width: 40%;
    padding: 10px; }
    .beach-card div:nth-of-type(3) img {
      width: 44px;
      height: 44px; }
  .beach-card.map-beach-card {
    width: 250px; }
    .beach-card.map-beach-card div:nth-of-type(1) {
      height: 100px; }
    .beach-card.map-beach-card div:nth-of-type(2) {
      height: 100px;
      padding: 15px; }
    .beach-card.map-beach-card div:nth-of-type(3) {
      height: 100px; }
      .beach-card.map-beach-card div:nth-of-type(3) img {
        width: 32px;
        height: 32px; }
      .beach-card.map-beach-card div:nth-of-type(3) span {
        font-size: 12px;
        line-height: 1; }
  .news-card > div:nth-of-type(1) {
    height: 150px; }
    .news-card > div:nth-of-type(1) a {
      padding: 10px 15px; }
  .news-card > div:nth-of-type(2) {
    height: 220px;
    padding: 15px; }
    .news-card > div:nth-of-type(2) a.btn {
      bottom: 15px;
      left: 15px; }
    .news-card > div:nth-of-type(2) .post-share {
      bottom: 15px;
      right: 15px; }
      .news-card > div:nth-of-type(2) .post-share .post-share-btn {
        width: 40px;
        height: 40px; }
  .news-card div:nth-of-type(2):before {
    height: 150px; } }

/* end max-width 450px */
.notification-bar {
  background: #22aae1;
  color: #ffffff;
  text-align: center; }
  .notification-bar a img {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); }
  .notification-bar a p {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-left: 10px; }
  .notification-bar a a:hover p {
    text-decoration: underline; }

@media screen and (max-width: 767px) {
  .notification-bar img {
    width: 44px;
    height: 44px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .notification-bar p {
    font-size: 20px; } }

/* end max-width 450px */
/*
Z-index layering of Map elements:

Filter menu (mobile)  1050
Header (global)       1000
Filter menu            980
Search control         970
Mobile toggle btn      970
Results menu           960
Map control (zoom)     955
Legend                 950
Map location             -
*/
.map-container {
  position: relative;
  width: 100%;
  overflow-y: hidden; }

.map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.search-control {
  position: absolute;
  top: 80px;
  left: 30px;
  z-index: 970; }
  .search-control form.form-inline {
    float: left;
    margin-right: 5px; }
    .search-control form.form-inline .form-group.single-field .form-control {
      width: 350px;
      border: 1px solid #f78d25;
      padding-right: 70px; }
    .search-control form.form-inline .form-group.single-field .btn {
      width: auto; }
    .search-control form.form-inline .form-group.single-field .btn:active {
      background: #f78d25;
      outline: none; }

.map-control {
  position: absolute;
  right: 20px;
  bottom: 15px;
  z-index: 955;
  background: #fafafa;
  border-radius: 999px;
  padding: 6px; }
  .map-control a {
    float: left;
    display: inline-block;
    margin-left: 6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: transform 0.4s ease 0.2s;
    -moz-transition: transform 0.4s ease 0.2s;
    -ms-transition: transform 0.4s ease 0.2s;
    transition: transform 0.4s ease 0.2s; }
    .map-control a img {
      width: 40px;
      height: 40px;
      background: #82a2b2;
      border-radius: 50%;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  .map-control a:first-of-type {
    margin-left: 0px; }
  .map-control a:hover img {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
    opacity: 0.8; }
  .map-control a:active img {
    opacity: 1; }
  .map-control a.disabled {
    opacity: 0.5;
    cursor: default; }
  .map-control a.disabled:hover img {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0);
    opacity: 1; }

.map-legend {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 950; }
  .map-legend a img {
    position: absolute;
    right: 20px;
    top: 70px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 999; }
  .map-legend a:hover img {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
    opacity: 0.8; }
  .map-legend a:active img {
    opacity: 1;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3); }
  .map-legend > div {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 250px;
    padding: 15px;
    padding-top: 130px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom-left-radius: 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    .map-legend > div .inner {
      max-height: 400px;
      overflow-y: auto; }
      .map-legend > div .inner .split-left-right {
        margin-bottom: 10px; }
        .map-legend > div .inner .split-left-right img {
          width: 30px;
          height: 30px; }
        .map-legend > div .inner .split-left-right span {
          display: inline-block;
          font-size: 14px;
          color: #777;
          line-height: 1; }
  .map-legend div.map-legend-hide {
    right: -250px; }

.map-location {
  position: absolute;
  -webkit-transform: translateX(-30px) translateY(-30px);
  -moz-transform: translateX(-30px) translateY(-30px);
  -ms-transform: translateX(-30px) translateY(-30px);
  transform: translateX(-30px) translateY(-30px);
  pointer-events: none; }
  .map-location .map-pin {
    display: inline-block;
    position: relative;
    cursor: pointer;
    pointer-events: auto; }
    .map-location .map-pin img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      cursor: pointer;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .map-location .map-pin span {
      position: relative;
      font-size: 14px;
      color: #ffffff;
      padding: 6px 10px 6px 20px;
      margin-left: -10px;
      display: inline-block; }
    .map-location .map-pin span:before {
      position: absolute;
      top: 0;
      right: 0;
      content: "";
      width: 100%;
      height: 100%;
      background: #a6c1ce;
      border-radius: 3px;
      z-index: -1;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  .map-location .map-pin:hover img {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3); }
  .map-location .map-pin:hover span:before {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3); }

    .map-list-toggle {
      position: static;
      width: 100%;
      padding: 0px;
      background:transparent;
      z-index: auto;
    }

.results-menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 700px;
  background: rgba(252, 252, 252, 0.7);
  padding: 15px;
  padding-top: 150px;
  overflow-y: hidden;
  z-index: 960;
  -webkit-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1); }
  .results-menu h2 {
    float: left;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #565756;
    visibility: visible;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .results-menu a.toggle-menu {
    float: right;
    display: inline-block;
    margin-bottom: 30px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: transform 0.4s ease 0.2s;
    -moz-transition: transform 0.4s ease 0.2s;
    -ms-transition: transform 0.4s ease 0.2s;
    transition: transform 0.4s ease 0.2s; }
    .results-menu a.toggle-menu img {
      width: 40px;
      height: 40px;
      background: #82a2b2;
      border-radius: 50%;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  .results-menu a.toggle-menu:hover img {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
    opacity: 0.8; }
  .results-menu .results-list {
    float: left;
    width: 100%;
    list-style-type: none;
    padding: 10px 15px;
    margin: 0;
    height: 400px;
    overflow-y: auto;
    visibility: visible;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease; }
    .results-menu .results-list a.beach-card div:nth-of-type(2) h3 {
      font-size: 22px; }
    .results-menu .results-list a.beach-card div:nth-of-type(3) {
      padding: 10px 8px; }
      .results-menu .results-list a.beach-card div:nth-of-type(3) img {
        width: 44px;
        height: 44px; }
      .results-menu .results-list a.beach-card div:nth-of-type(3) span {
        display: inline-block;
        font-size: 14px;
        line-height: 1; }
    .results-menu .results-list a.beach-card:last-of-type {
      margin-bottom: 30px; }

.results-menu.menu-hide {
  left: -630px;
  background: rgba(252, 252, 252, 0.6); }
  .results-menu.menu-hide h2 {
    opacity: 0;
    visibility: hidden; }
  .results-menu.menu-hide a.toggle-menu {
    margin-right: 0px;
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    transform: rotate(540deg); }
  .results-menu.menu-hide a.toggle-menu:hover .results-menu.menu-hide {
    background: rgba(252, 252, 252, 0.9); }
  .results-menu.menu-hide .results-list {
    opacity: 0;
    visibility: hidden; }

.results-menu.menu-hide:hover {
  background: rgba(252, 252, 252, 0.9); }

.filter-menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 900px;
  background: rgba(244, 244, 244, 0.95);
  padding: 15px;
  padding-top: 80px;
  overflow-y: hidden;
  z-index: 980;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
  .filter-menu h2 {
    float: left;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #565756;
    visibility: visible;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .filter-menu a.close-menu {
    float: right;
    display: inline-block;
    margin-bottom: 30px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%; }
    .filter-menu a.close-menu img {
      width: 40px;
      height: 40px;
      background: #82a2b2;
      border-radius: 50%;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  .filter-menu a.close-menu:hover img {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
    opacity: 0.8; }
  .filter-menu .filter-list {
    float: left;
    width: 100%;
    list-style-type: none;
    padding: 0 15px;
    margin: 0;
    height: 440px;
    overflow-y: scroll;
    visibility: visible;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease; }
    .filter-menu .filter-list section {
      margin-bottom: 40px; }
      .filter-menu .filter-list section h3 {
        display: block;
        margin-top: 50px;
        padding-bottom: 10px;
        font-size: 24px;
        font-weight: 700;
        color: #82a2b2;
        border-bottom: 1px solid #8daab9; }
      .filter-menu .filter-list section h3:first-of-type {
        margin-top: 0px; }
      .filter-menu .filter-list section a {
        position: relative;
        display: inline-block;
        width: 24%;
        padding: 10px 10px 10px 0; }
        .filter-menu .filter-list section a div {
          position: relative;
          display: inline-block;
          width: 32px;
          height: 32px;
          margin-right: 5px; }
          .filter-menu .filter-list section a div img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease; }
          .filter-menu .filter-list section a div img:nth-of-type(1) {
            opacity: 0; }
        .filter-menu .filter-list section a div:after {
          position: absolute;
          content: "";
          top: 0px;
          left: 0;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          border: 2px solid #22aae1;
          opacity: 0;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
        .filter-menu .filter-list section a span {
          position: absolute;
          left: 37px;
          /* Width of icon + 5px margin */
          top: 45%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          width: 70%;
          font-size: 14px;
          line-height: 1.2;
          color: #545454;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
      .filter-menu .filter-list section a:hover div:after {
        opacity: 1; }
      .filter-menu .filter-list section a:hover div img:nth-of-type(1) {
        opacity: 1; }
      .filter-menu .filter-list section a:hover div img:nth-of-type(2) {
        opacity: 0; }
      .filter-menu .filter-list section a:hover span {
        color: #22aae1; }
      .filter-menu .filter-list section a.active div img:nth-of-type(1) {
        opacity: 1; }
      .filter-menu .filter-list section a.active div img:nth-of-type(2) {
        opacity: 0; }
      .filter-menu .filter-list section a.active div:after {
        opacity: 1; }
      .filter-menu .filter-list section form label {
        position: relative;
        display: inline-block;
        width: 24%;
        margin: 0;
        padding: 10px 10px 10px 0; }
        .filter-menu .filter-list section form label input {
          position: absolute;
          visibility: hidden; }
        .filter-menu .filter-list section form label input:checked + div img:nth-of-type(1) {
          opacity: 1; }
        .filter-menu .filter-list section form label input:checked + div img:nth-of-type(2) {
          opacity: 0; }
        .filter-menu .filter-list section form label input:checked + div:after {
          opacity: 1; }
        .filter-menu .filter-list section form label div {
          position: relative;
          display: inline-block;
          width: 32px;
          height: 32px;
          margin-right: 5px; }
          .filter-menu .filter-list section form label div img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease; }
          .filter-menu .filter-list section form label div img:nth-of-type(1) {
            opacity: 0; }
        .filter-menu .filter-list section form label div:after {
          position: absolute;
          content: "";
          top: 0px;
          left: 0;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          border: 2px solid #22aae1;
          opacity: 0;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
        .filter-menu .filter-list section form label span {
          position: absolute;
          left: 37px;
          /* Width of icon + 5px margin */
          top: 45%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          width: 70%;
          font-size: 14px;
          line-height: 1.2;
          color: #545454;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
      .filter-menu .filter-list section form label:hover div:after {
        opacity: 1; }
      .filter-menu .filter-list section form label:hover div img:nth-of-type(1) {
        opacity: 1; }
      .filter-menu .filter-list section form label:hover div img:nth-of-type(2) {
        opacity: 0; }
      .filter-menu .filter-list section form label:hover span {
        color: #22aae1; }
  .filter-menu .button-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: #fafafa; }
    .filter-menu .button-bar .btn.reset {
      float: left; }
    .filter-menu .button-bar .btn.apply {
      float: right; }

.filter-menu.menu-hide {
  left: -900px; }

@media screen and (max-width: 1199px) {
  .results-menu {
    width: 550px;
    padding: 10px;
    padding-top: 150px; }
    .results-menu h2 {
      margin-bottom: 20px;
      margin-left: 15px;
      font-size: 28px; }
    .results-menu a.toggle-menu {
      margin-bottom: 20px;
      margin-right: 10px; }
    .results-menu .results-list {
      padding: 10px 15px; }
      .results-menu .results-list a.beach-card div:nth-of-type(2) h3 {
        font-size: 22px; }
      .results-menu .results-list a.beach-card div:nth-of-type(3) img {
        width: 40px;
        height: 40px; }
      .results-menu .results-list a.beach-card div:nth-of-type(3) span {
        font-size: 14px; }
  .results-menu.menu-hide {
    left: -490px; }
  .filter-menu {
    width: 700px;
    padding: 10px;
    padding-top: 80px; }
    .filter-menu h2 {
      margin-bottom: 20px;
      margin-left: 10px;
      font-size: 28px; }
    .filter-menu a.close-menu {
      margin-bottom: 20px;
      margin-right: 10px; }
    .filter-menu .filter-list {
      padding: 0 15px; }
      .filter-menu .filter-list section h3 {
        font-size: 20px; }
      .filter-menu .filter-list section a {
        width: 32%;
        padding: 10px 10px 10px 0; }
        .filter-menu .filter-list section a span {
          width: 70%;
          font-size: 14px;
          line-height: 1.2; }
      .filter-menu .filter-list section form label {
        width: 32%;
        padding: 10px 10px 10px 0; }
    .filter-menu .button-bar {
      padding: 15px; }
  .filter-menu.menu-hide {
    left: -700px; } }

/* end max-width 1199px */
@media screen and (max-width: 991px) {
  .search-control {
    top: 40px; }
    .search-control form.form-inline.single-field .form-group .form-control {
      width: 270px; }
  .map-legend a img {
    top: 25px; }
  .map-legend > div {
    width: 250px;
    padding-top: 80px; }
    .map-legend > div .inner {
      max-height: 400px; }
      .map-legend > div .inner .split-left-right {
        margin-bottom: 10px; }
  .map-legend div.map-legend-hide {
    right: -250px; }
  .results-menu {
    width: 500px;
    padding-top: 120px; }
    .results-menu h2 {
      font-size: 24px; }
    .results-menu .results-list a.beach-card div:nth-of-type(2) h3 {
      font-size: 20px; }
    .results-menu .results-list a.beach-card div:nth-of-type(3) span {
      font-size: 12px;
      line-height: 1; }
  .results-menu.menu-hide {
    left: -440px; }
  .filter-menu {
    width: 600px;
    padding-top: 40px; }
    .filter-menu h2 {
      font-size: 24px; }
    .filter-menu .filter-list section h3 {
      font-size: 20px; }
    .filter-menu .filter-list section a {
      width: 49%; }
    .filter-menu .filter-list section form label {
      width: 49%; }
  .filter-menu.menu-hide {
    left: -600px; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  /*
  .search-control {
  top: 25px;
    form.form-inline.single-field {
      .form-group {
        margin-right: 48px;
        .form-control {
          width: 220px;
        }
      }
      .btn {
        padding: 13px 12px;
        font-size: 18px;
      }
    }
    > .btn {
      padding: 9px 12px;
    }
  }
  */
  .search-control {
    top: 25px;
    z-index: 995; }
    .search-control form.form-inline .form-group.single-field .form-control {
      width: 270px; }
    .search-control form.form-inline .form-group.single-field .btn {
      width: auto;
      padding: 13px 12px;
      font-size: 18px; }
    .search-control form.form-inline .form-group.single-field .btn:active {
      background: #f78d25;
      outline: none; }
  .map-control {
    display: none; }
  .ol-zoom {
    display: none; }
  .ol-zoom .ol-zoom-in {
    display: none; }
  .ol-zoom .ol-zoom-out {
    display: none; }
  .map-legend {
    top: auto;
    bottom: 0; }
    .map-legend a img {
      position: absolute;
      right: 20px;
      top: auto;
      bottom: 20px;
      height: 30px;
      width: 30px; }
    .map-legend > div {
      top: auto;
      bottom: 0;
      width: 200px;
      padding: 15px;
      padding-top: 15px;
      padding-bottom: 70px;
      border-bottom-left-radius: 0px;
      border-top-left-radius: 5px; }
      .map-legend > div .inner {
        max-height: 400px; }
        .map-legend > div .inner .split-left-right img {
          width: 25px;
          height: 25px; }
        .map-legend > div .inner .split-left-right span {
          font-size: 12px; }
    .map-legend div.map-legend-hide {
      right: -200px; }
  .map-location .map-pin img {
    width: 40px;
    height: 40px; }
  .map-location .map-pin span {
    font-size: 12px;
    padding: 4px 8px 4px 12px; }
    
  .map-list-toggle {
    position: absolute;
    width: 100%;
    padding-top: 220px;
    /* // padding-top: 220px;
    // background: whitesmoke; */
    z-index: 990;
  }

  
  .map-list-toggle-bottom {
    position: static;
    width: 100%;
    /* // padding-top: 220px;
    // background: whitesmoke; */
    z-index: 990;
  }

  .results-menu {
    left: -100%;
    position: relative;
    height: 400px;
    width: 100%;
    background: whitesmoke;
    padding: 30px;
    padding-top: 250px;
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
    .results-menu a.toggle-menu {
      display: none; }
    .results-menu h2 {
      margin-left: 0px; }
    .results-menu .results-list {
      padding: 0px;
      height: auto;
      padding-bottom: 100px; }
      .results-menu .results-list a.beach-card div:nth-of-type(2) h3 {
        font-size: 22px; }
      .results-menu .results-list a.beach-card div:nth-of-type(3) img {
        width: 44px;
        height: 44px; }
      .results-menu .results-list a.beach-card div:nth-of-type(3) span {
        font-size: 14px; }
      .results-menu .results-list a:last-of-type {
        margin-bottom: 10px; }
  .results-menu.menu-hide {
    left: 0;
    height: auto;
    background: whitesmoke; }
    .results-menu.menu-hide h2 {
      opacity: 1;
      visibility: visible; }
    .results-menu.menu-hide .results-list {
      opacity: 1;
      visibility: visible; }
  .results-menu.menu-hide:hover {
    background: whitesmoke; }
  .filter-menu {
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(244, 244, 244, 0.98);
    padding: 30px;
    overflow-y: scroll;
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
    .filter-menu h2 {
      float: none;
      display: block;
      text-align: center;
      margin-top: 0;
      margin-bottom: 30px;
      margin-left: 0px;
      font-size: 28px;
      font-weight: 700;
      color: #565756; }
    .filter-menu a.close-menu {
      position: absolute;
      top: 30px;
      right: 30px;
      float: none;
      margin: 0px;
      width: 32px;
      height: 32px; }
      .filter-menu a.close-menu img {
        width: 32px;
        height: 32px; }
    .filter-menu .filter-list {
      padding: 0px;
      height: auto;
      overflow-y: auto; }
      .filter-menu .filter-list section a {
        width: 49%; }
      .filter-menu .filter-list section:last-of-type {
        margin-bottom: 100px; }
    .filter-menu .button-bar {
      position: fixed;
      padding: 15px 30px;
      bottom: 0%;
      -webkit-transition: all 0.3s 0.3s ease;
      -moz-transition: all 0.3s 0.3s ease;
      -ms-transition: all 0.3s 0.3s ease;
      transition: all 0.3s 0.3s ease; }
  .filter-menu.menu-hide {
    left: -100%; }
    .filter-menu.menu-hide .button-bar {
      bottom: -80px;
      -webkit-transition: all 0.2s 0s ease;
      -moz-transition: all 0.2s 0s ease;
      -ms-transition: all 0.2s 0s ease;
      transition: all 0.2s 0s ease; }
  .popup-close {
    position: absolute;
    width: 32px;
    z-index: 100;
    height: 32px;
    top: -110px !important;
    right: -170px !important;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: box-shadow 0.2s ease;
    -moz-transition: box-shadow 0.2s ease;
    -ms-transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .search-control {
    z-index: 995;
    left: 15px; }
    .search-control form.form-inline .form-group.single-field {
      margin-bottom: 5px; }
      .search-control form.form-inline .form-group.single-field .form-control {
        padding-right: 60px;
        width: 230px; }
  .map-legend > div {
    padding-bottom: 100px; }
    .map-legend > div .inner {
      max-height: 300px; }
  .map-location .map-pin img {
    width: 40px;
    height: 40px; }
  .map-location .map-pin span {
    font-size: 12px;
    padding: 4px 8px 4px 12px; }
  .results-menu {
    padding: 15px;
    padding-top: 250px; }
  .filter-menu {
    padding: 15px;
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
    .filter-menu h2 {
      margin-bottom: 30px;
      font-size: 28px;
      font-weight: 700; }
    .filter-menu a.close-menu {
      top: 15px;
      right: 15px; }
    .filter-menu .button-bar {
      padding: 15px; }
  .popup-close {
    position: absolute;
    width: 32px;
    z-index: 100;
    height: 32px;
    top: -110px !important;
    right: -140px !important;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: box-shadow 0.2s ease;
    -moz-transition: box-shadow 0.2s ease;
    -ms-transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease; } }

/* end max-width 450px */
.popup-close {
  position: absolute;
  width: 32px;
  z-index: 100;
  height: 32px;
  top: -98px;
  right: -260px;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: box-shadow 0.2s ease;
  -moz-transition: box-shadow 0.2s ease;
  -ms-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease; }

.popup-close:hover {
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer; }

.ol-zoom {
  bottom: 20px !important;
  right: 15px !important;
  top: inherit !important;
  left: inherit !important; }

.ol-zoom .ol-zoom-in {
  background: #FFFFFF url(../img/icon/zoom-in.png);
  background-repeat: no-repeat;
  background-size: 100%;
  text-indent: -9999px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%; }

.ol-zoom .ol-zoom-out {
  background: #FFFFFF url(../img/icon/zoom-out.png);
  background-repeat: no-repeat;
  background-size: 100%;
  text-indent: -9999px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%; }

.beaches-gallery {
  position: relative; }
  .beaches-gallery img {
    display: none; }
  .beaches-gallery .main {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    margin-bottom: 10px; }
  .beaches-gallery .main:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); }
  .beaches-gallery .main-selected {
    animation: slightFadeIn 0.5s ease;
    -webkit-animation: slightFadeIn 0.5s ease;
    -moz-animation: slightFadeIn 0.5s ease; }

@keyframes slightFadeIn {
  0% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

@-webkit-keyframes slightFadeIn {
  0% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

@-moz-keyframes slightFadeIn {
  0% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }
  .beaches-gallery .main span {
    position: absolute;
    display: block;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    bottom: 10px;
    left: 0;
    right: 0; }
  .beaches-gallery .thumb-roll {
    position: relative;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap; }
    .beaches-gallery .thumb-roll .thumb {
      display: inline-block;
      position: relative;
      width: 85px;
      height: 85px;
      margin-right: 10px;
      background: #ccc;
      overflow: hidden;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      overflow: hidden;
      cursor: pointer; }
    .beaches-gallery .thumb-roll .thumb:last-of-type {
      margin-right: 0px; }
    .beaches-gallery .thumb-roll .thumb:after {
      content: "";
      position: absolute;
      top: 0%;
      left: 0%;
      width: 100%;
      height: 100%;
      border: 0px solid #22aae1;
      -webkit-transition: all 0.1s ease;
      -moz-transition: all 0.1s ease;
      -ms-transition: all 0.1s ease;
      transition: all 0.1s ease; }
    .beaches-gallery .thumb-roll .thumb.current:after {
      border: 10px solid #22aae1;
      background: rgba(255, 255, 255, 0.4);
      cursor: default; }
    .beaches-gallery .thumb-roll .thumb:hover:after {
      border: 10px solid #22aae1; }
  .beaches-gallery .thumb-roll:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 100%;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
    display: none; }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .beaches-gallery .main {
    height: 250px;
    margin-bottom: 10px; }
  .beaches-gallery .main:before {
    height: 150px; }
  .beaches-gallery .main span {
    font-size: 14px; }
  .beaches-gallery .thumb-roll .thumb {
    width: 60px;
    height: 60px;
    margin-right: 10px; }
  .beaches-gallery .thumb-roll .thumb.current:after {
    border: 5px solid #22aae1; }
  .beaches-gallery .thumb-roll .thumb:hover:after {
    border: 5px solid #22aae1; } }

/* end max-width 450px */
form label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #638695; }

form input, form textarea {
  display: block;
  width: 100%;
  height: auto;
  line-height: 1;
  padding: 11px;
  font-size: 16px;
  color: #6c6c6c;
  border: 1px solid #82a2b2;
  border-radius: 4px;
  margin-bottom: 10px; }

form textarea {
  resize: vertical;
  max-height: 600px; }

form .form-group {
  display: block; }
  form .form-group label {
    font-size: 14px;
    font-weight: 400;
    color: #638695; }
  form .form-group .form-control {
    height: auto;
    line-height: 1;
    padding: 11px;
    font-size: 16px;
    color: #6c6c6c;
    border: 1px solid #82a2b2; }

.form-group.single-field {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .form-group.single-field .form-control {
    height: auto;
    line-height: 1;
    padding: 11px;
    padding-right: 50px;
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 0; }
  .form-group.single-field .btn {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 44px;
    padding: 11px 15px;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .form-group.single-field .btn:active {
    background: #82a2b2;
    outline: none; }
  .form-group.single-field img {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 10px;
    right: 10px;
    pointer-events: none; }

.form-group {
  position: relative;
  display: inline-block; }
  .form-group select.form-control {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1;
    padding: 11px;
    font-size: 16px;
    color: #6c6c6c;
    border: 1px solid #82a2b2; }

/* end max-width 767px */
table {
  display: table;
  font-size: 14px;
  margin-bottom: 0;
  border-collapse: initial;
  border-spacing: 0px;
  border: 1px solid #d7e7ec;
  overflow: auto; }
  table > thead > tr {
    background: #638695; }
    table > thead > tr > th {
      vertical-align: middle;
      text-align: center;
      color: #ffffff;
      font-weight: 400;
      padding: 10px 20px;
      border: none;
      border-left: 1px solid #577988; }
    table > thead > tr > th:first-child {
      border-left: none; }
  table > tbody > tr {
    background: #f6f7f8; }
    table > tbody > tr > td {
      color: #545454;
      text-align: center;
      padding: 15px 20px;
      border-left: 1px solid #d7e7ec;
      border-top: 1px solid #d7e7ec; }
    table > tbody > tr > td:first-child {
      border-left: none; }
  table > tbody > tr:nth-child(even) {
    background: #eaeff2; }

.table {
  display: table;
  font-size: 14px;
  margin-bottom: 0;
  border-collapse: initial;
  border-spacing: 0px;
  border: 0px solid #d7e7ec; }
  .table > thead > tr {
    background: #638695; }
    .table > thead > tr > th {
      vertical-align: middle;
      text-align: center;
      color: #ffffff;
      font-weight: 400;
      padding: 10px 20px;
      border: none;
      border-left: 1px solid #577988; }
    .table > thead > tr > th:first-child {
      border-left: none; }
  .table > tbody > tr {
    background: #f6f7f8; }
    .table > tbody > tr > td {
      color: #545454;
      text-align: center;
      padding: 15px 20px;
      border-left: 1px solid #d7e7ec; }
    .table > tbody > tr > td:first-child {
      border-left: none; }
  .table > tbody > tr:nth-child(even) {
    background: #eaeff2; }

/* end max-width 767px */
.react-datepicker__input-container {
  position: relative;
  display: block !important; }

.react-datepicker {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em !important;
  left: 15px !important;
  top: 6px !important; }

.react-datepicker__header {
  padding-top: 0.8em !important; }

.react-datepicker__month {
  margin: 0.4em 1em !important; }

.react-datepicker__day-name, .react-datepicker__day {
  width: 1.9em !important;
  line-height: 1.9em !important;
  margin: 0.166em !important; }

.react-datepicker__current-month {
  font-size: 1em !important; }

.react-datepicker__navigation {
  top: 1em !important;
  line-height: 1.7em !important;
  border: 0.45em solid transparent !important; }

.react-datepicker__navigation--previous {
  border-right-color: #ccc !important;
  left: 1em !important; }

.react-datepicker__navigation--next {
  border-left-color: #ccc !important;
  right: 1em !important; }

.popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none; }

.popup-info {
  position: absolute;
  left: 20%;
  right: 20%;
  top: 25%;
  bottom: 50%;
  margin: auto;
  background: white;
  border-radius: 2em;
  text-align: justify;
  padding-top: 2.5em;
  padding-right: 3.5em;
  padding-left: 3.5em;
  padding-bottom: 2.5em; }

.popup-close-icon {
  font-size: 1.5em !important;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 5px; }

@media screen and (max-width: 1024px) {
  .popup-info {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 35%;
    margin: auto;
    background: white;
    border-radius: 2em;
    text-align: justify;
    padding-top: 2.5em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 2.5em; } }

/* end max-width 767px */
@media screen and (max-width: 768px) {
  .popup-info {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 55%;
    margin: auto;
    background: white;
    border-radius: 2em;
    text-align: justify;
    padding-top: 2.5em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 2.5em; } }

/* end max-width 767px */
@media screen and (max-width: 667px) {
  .popup-info {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 5%;
    margin: auto;
    background: white;
    border-radius: 2em;
    text-align: justify;
    padding-top: 2.5em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 2.5em; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .popup-info {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 5%;
    margin: auto;
    background: white;
    border-radius: 2em;
    text-align: justify;
    padding-top: 2.5em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 2.5em; } }

#home-banner {
  padding: 170px 0 50px 0; }
  #home-banner p {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 300; }

#home-near-beaches {
  background: #fcfcfc;
  padding-top: 50px;
  overflow: hidden; }
  #home-near-beaches #home-near-beaches-map {
    width: 100%;
    height: 700px;
    left: 0%;
    overflow: hidden;
    -webkit-transition: left 0.5s ease-out;
    -moz-transition: left 0.5s ease-out;
    -ms-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out; }
  #home-near-beaches .near-beaches-hide {
    display: none; }
  #home-near-beaches .toggle-map-btn.map-view {
    left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px; }
  #home-near-beaches .toggle-map-btn.map-view.toggle-map-btn-hide {
    left: -150px; }
  #home-near-beaches .toggle-map-btn.list-view {
    right: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px; }
  #home-near-beaches .toggle-map-btn.list-view.toggle-map-btn-hide {
    right: -150px; }
  #home-near-beaches .toggle-map-btn.map-view:hover {
    padding-left: 30px; }
  #home-near-beaches .toggle-map-btn.list-view:hover {
    padding-right: 30px; }
  #home-near-beaches .btn-stick-center {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(-50%); }
  #home-near-beaches .btn-stick-bottom {
    position: absolute;
    bottom: 20px; }
  #home-near-beaches .btn-stick-top {
    position: absolute;
    top: 20px; }
  #home-near-beaches .map-legend {
    right: auto;
    left: 0; }
    #home-near-beaches .map-legend a img {
      right: auto;
      left: 20px;
      top: 15px; }
    #home-near-beaches .map-legend > div {
      right: auto;
      left: 0;
      padding-top: 70px;
      border-radius: none;
      border-bottom-right-radius: 5px; }
      #home-near-beaches .map-legend > div .inner {
        max-height: 400px; }
    #home-near-beaches .map-legend div.map-legend-hide {
      right: auto;
      left: -250px; }

#home-all-beaches {
  background: #f6f7f8; }

#home-beach-guide {
  background: #98c8dc;
  /* CSS fix for showing max 3 Wordpress posts here */ }
  #home-beach-guide .container .row:nth-of-type(2) > div {
    display: none; }
  #home-beach-guide .container .row:nth-of-type(2) > div:nth-of-type(1),
  #home-beach-guide .container .row:nth-of-type(2) > div:nth-of-type(2),
  #home-beach-guide .container .row:nth-of-type(2) > div:nth-of-type(3) {
    display: block; }

@media screen and (max-width: 1199px) {
  #home-near-beaches-map {
    height: 500px; } }

/* end max-width 1199px */
@media screen and (max-width: 767px) {
  #home-banner {
    padding: 130px 0 50px 0; }
    #home-banner p {
      font-size: 22px; }
  #home-near-beaches {
    background: #fcfcfc;
    padding-top: 50px; }
    #home-near-beaches #home-near-beaches-map {
      height: 500px; }
      #home-near-beaches #home-near-beaches-map .map-legend {
        top: 0px;
        bottom: auto; }
        #home-near-beaches #home-near-beaches-map .map-legend a img {
          left: 15px;
          top: 15px; }
        #home-near-beaches #home-near-beaches-map .map-legend > div {
          top: 0px;
          bottom: auto;
          padding-top: 70px;
          padding-bottom: 15px;
          border-bottom-left-radius: 5px;
          border-top-left-radius: 0px; }
          #home-near-beaches #home-near-beaches-map .map-legend > div .inner {
            max-height: 300px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  #home-banner {
    padding: 120px 0 30px 0; }
  #home-near-beaches #home-near-beaches-map {
    height: 400px; } }

/* end max-width 450px */
#find-a-beach-map-container {
  width: 100%;
  height: 750px;
  margin-top: 70px;
  /* Header scrolled height */
  overflow: hidden; }
  #find-a-beach-map-container .toggle-map-btn {
    display: none; }

@media screen and (max-width: 1199px) {
  #find-a-beach-map-container {
    height: 600px;
    margin-top: 70px;
    /* Header scrolled height */ } }

/* end max-width 1199px */
/* end max-width 991px */
@media screen and (max-width: 767px) {
  #find-a-beach-map-container {
    width: 100%;
    height: auto;
    min-height: 500px;
    margin-top: 70px;
    /* Header scrolled height */ }
    #find-a-beach-map-container .toggle-map-btn {
      display: block;
      position: absolute;
      padding: 10px 20px;
      bottom: 20px;
      left: 50%;
      z-index: 970; }
    #find-a-beach-map-container .toggle-map-btn.map-view {
      box-shadow: 1px 0px 7px rgba(0, 0, 0, 0.3);
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px; }
    #find-a-beach-map-container .toggle-map-btn.list-view {
      box-shadow: -1px 0px 5px rgba(0, 0, 0, 0.2);
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px;
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%); }
    #find-a-beach-map-container .toggle-map-btn.active {
      box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
      opacity: 0.5;
      cursor: default; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  #find-a-beach-map-container {
    height: auto;
    min-height: 500px;
    margin-top: 60px;
    /* Header scrolled height */ }
    #find-a-beach-map-container .toggle-map-btn {
      padding: 8px 15px;
      bottom: 15px; } }

/* end max-width 450px */
.table-head-sticky {
  position: absolute !important;
  top: 0;
  left: -1px !important;
  width: 100% !important;
  table-layout: fixed !important; }

#beach-single-main {
  padding-top: 150px;
  background: #ffffff; }
  #beach-single-main .beach-single-bg-image {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 650px; }
  #beach-single-main .beach-single-bg-image:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 400px;
    background: -moz-linear-gradient(top, black 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, black 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, black 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00ffffff',GradientType=0 );
    opacity: 0.3; }
  #beach-single-main .beach-single-main-top > .row {
    padding: 0 55px; }
    #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) {
      display: inline-block;
      width: 100%; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a {
        position: relative;
        color: #ffffff;
        font-size: 20px;
        font-weight: 900; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(1) {
        float: left;
        padding-left: 40px; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(1):before {
        content: '';
        position: absolute;
        width: 32px;
        height: 32px;
        background-image: url("../img/icon/arrow-left-white.png");
        background-size: cover;
        left: 0px; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(1):hover:before {
        -webkit-animation: pulseLeft 0.7s ease infinite;
        -moz-animation: pulseLeft 0.7s ease infinite;
        animation: pulseLeft 0.7s ease infinite; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(2) {
        float: right;
        padding-right: 40px; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(2):after {
        content: '';
        position: absolute;
        width: 32px;
        height: 32px;
        background-image: url("../img/icon/favourites-white.png");
        background-size: cover;
        right: 0px; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(2).active:after {
        background-image: url("../img/icon/favourites-white-solid.png"); }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(1) > a:nth-of-type(2):hover:after {
        -webkit-animation: heartBeat 1s ease infinite;
        -moz-animation: heartBeat 1s ease infinite;
        animation: heartBeat 1s ease infinite; }
    #beach-single-main .beach-single-main-top > .row > div:nth-of-type(2) h1 {
      color: #ffffff; }
    #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) {
      display: inline-block;
      width: 100%; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) > a:nth-of-type(1) {
        float: left;
        margin-right: 10px; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) > a:nth-of-type(2) {
        float: left; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) > a:nth-of-type(3) {
        float: right; }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay {
        position: fixed;
        background: rgba(71, 71, 71, 0.9);
        height: 100%;
        overflow-y: auto;
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay div.container div.row .overlay-card {
          margin-top: 150px;
          margin-bottom: 40px;
          padding: 20px;
          opacity: 0;
          visibility: hidden;
          -webkit-transform: scale(0.5);
          -moz-transform: scale(0.5);
          -ms-transform: scale(0.5);
          transform: scale(0.5);
          -webkit-transition: all 0.2s ease 0.1s;
          -moz-transition: all 0.2s ease 0.1s;
          -ms-transition: all 0.2s ease 0.1s;
          transition: all 0.2s ease 0.1s; }
          #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery {
            width: 100%; }
            #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery .main {
              height: 400px; }
            #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery .thumb-roll .thumb {
              width: 220px;
              height: 140px; }
        #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay div.container div.row .overlay-card.overlay-show {
          opacity: 1;
          visibility: visible;
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); }
      #beach-single-main .beach-single-main-top > .row > div:nth-of-type(3) div.overlay.overlay-show {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) span {
    font-size: 18px;
    color: #82a2b2; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge {
    float: right;
    padding: 0 15px;
    max-width: 250px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge img {
      width: 70px;
      height: 70px;
      border: 1px solid #f78d25;
      border-radius: 50%; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge span {
      display: block; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge span:nth-of-type(1) {
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700;
      color: #424242;
      word-wrap: break-word;
      max-width: 180px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge span:nth-of-type(2) {
      font-size: 14px;
      color: #999999; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge {
    float: right;
    padding: 0 15px;
    max-width: 250px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge img {
      width: 70px;
      height: 70px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span {
      display: block;
      line-height: 1.2; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span:nth-of-type(1) {
      font-size: 12px;
      font-weight: 700;
      color: #71bfe6; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span:nth-of-type(2) {
      font-size: 20px;
      font-weight: 700;
      color: #22aae1; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span:nth-of-type(3) {
      font-size: 14px;
      color: #999999; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article a.mobile-only {
    display: none; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand {
    position: relative; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner {
      position: relative;
      height: 280px;
      padding-top: 40px;
      padding-bottom: 60px;
      overflow: hidden; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner h3 {
        display: block;
        margin-top: 0;
        padding-bottom: 10px;
        font-size: 24px;
        font-weight: 700;
        color: #82a2b2;
        border-bottom: 1px solid #8daab9; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item {
        position: relative;
        display: inline-block;
        width: 32%;
        padding: 10px 10px 10px 0; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item > img {
          display: inline-block;
          top: 0;
          width: 40px;
          height: 40px;
          border: 1px solid #82a2b2;
          border-radius: 50%;
          margin-right: 5px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item span {
          position: absolute;
          left: 45px;
          /* Width of icon + 5px margin */
          right: 10px;
          /* Margin soace between adjacent li items */
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          width: auto;
          font-size: 14px;
          line-height: 1.2;
          color: #545454; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item span a {
            position: relative;
            height: 40px;
            margin-left: 8px;
            opacity: 1;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease;
            -webkit-backface-visibility: hidden; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item span a:hover {
            opacity: 0.5; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay {
          position: fixed;
          background: rgba(71, 71, 71, 0.9);
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          overflow-y: auto;
          z-index: 1050;
          opacity: 0;
          visibility: hidden;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card {
            margin-top: 150px;
            margin-bottom: 40px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            -webkit-transform: scale(0.5);
            -moz-transform: scale(0.5);
            -ms-transform: scale(0.5);
            transform: scale(0.5);
            -webkit-transition: all 0.2s ease 0.1s;
            -moz-transition: all 0.2s ease 0.1s;
            -ms-transition: all 0.2s ease 0.1s;
            transition: all 0.2s ease 0.1s; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card img {
              display: inline-block;
              top: 0;
              width: 80px;
              height: 80px;
              border: 1px solid #82a2b2;
              border-radius: 50%;
              margin-right: 10px;
              margin-bottom: 20px; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card h3 {
              display: inline-block;
              vertical-align: middle; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card.overlay-show {
            opacity: 1;
            visibility: visible;
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1); }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay.overlay-show {
          opacity: 1;
          visibility: visible;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item.break-line:after {
        content: '';
        position: absolute;
        width: 1px;
        height: 60%;
        top: 20%;
        right: 5px;
        background: #bbccd5; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner .btn-expand {
        position: absolute;
        bottom: -10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 1;
        -webkit-transition: bottom 0.4s ease 0.1s;
        -moz-transition: bottom 0.4s ease 0.1s;
        -ms-transition: bottom 0.4s ease 0.1s;
        transition: bottom 0.4s ease 0.1s; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner .btn-expand:hover {
        bottom: 0px;
        -webkit-transition: bottom 0.4s ease;
        -moz-transition: bottom 0.4s ease;
        -ms-transition: bottom 0.4s ease;
        transition: bottom 0.4s ease; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner.expanded {
      height: auto; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand:before {
    content: '';
    position: absolute;
    width: 80%;
    height: 10px;
    left: 10%;
    bottom: 0px;
    box-shadow: 0px 0px 20px rgba(100, 100, 100, 0.15); }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand:after {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 140px;
    left: 0;
    bottom: 0px;
    background: #ffffff;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand.expanded:after {
    height: 40px;
    background: #ffffff; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article h4 {
    margin-bottom: 5px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article span {
    color: #999999; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner div .split-left-right div img {
    width: 64px;
    height: 64px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner div .split-left-right div span {
    display: block; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner div .water-quality-history {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 325px;
    overflow: auto;
    background: #f6f7f8;
    border: 1px solid #d7e7ec; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner div > a.btn-info {
    float: right; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right {
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(141, 170, 185, 0.7); }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div:first-of-type img {
      height: 64px;
      border: 1px solid #f78d25;
      border-radius: 50%; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div h4 {
      margin-top: 0;
      margin-bottom: 10px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div span {
      display: block;
      font-size: 16px;
      color: #999999;
      margin-bottom: 5px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div span.info-red {
      font-size: 20px;
      color: #ff0000;
      margin-bottom: 10px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right:last-of-type {
    border-bottom: 0px solid rgba(141, 170, 185, 0); }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-annual-water-quality .inner .split-left-right div:first-of-type img {
    width: 64px;
    height: 64px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-annual-water-quality .inner .annual-water-quality-history {
    width: 100%;
    height: auto;
    max-height: 325px;
    overflow: auto;
    background: #f6f7f8; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside {
    position: relative; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container {
      width: 100%;
      padding: 20px 15px 5px 5px;
      background: #22aae1;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container svg {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 98%;
        width: 70%; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container svg polygon {
          fill: rgba(100, 100, 100, 0.1); }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container h3 {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 24px;
        margin-top: 0; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container .reference-meteiran {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 12px;
        margin-top: 0;
        margin-left: 180px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-icon {
        position: absolute;
        top: 70px;
        left: 30px;
        width: 80px;
        height: 80px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding-bottom: 30px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(1) {
          padding-left: 140px;
          padding-top: 15px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(1) span {
            color: #ffffff;
            font-family: "Lato", sans-serif;
            font-size: 38px;
            line-height: 1;
            font-weight: 400; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(2) {
          padding: 0 15px;
          padding-top: 15px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(2) span {
            display: block;
            color: #ffffff;
            font-size: 14px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather .weather-forecast {
      display: none; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather .weather-forecast .inner {
        position: relative;
        width: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-transition: all 2s ease;
        -moz-transition: all 2s ease;
        -ms-transition: all 2s ease;
        transition: all 2s ease; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather .weather-forecast .inner > div.weather-container {
          position: relative;
          -webkit-flex: 1;
          -ms-flex: 1;
          flex: 1;
          padding: 8px 5px;
          background: #94bbcc;
          min-height: 100px;
          text-align: center; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather .weather-forecast .inner > div.weather-container span {
            position: relative;
            display: block;
            color: #ffffff;
            font-size: 12px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather .weather-forecast .inner > div.weather-container span:first-of-type {
            font-size: 20px;
            font-weight: 900; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather .weather-forecast .inner > div.weather-container > div.weather-icon {
            width: 44px;
            height: 44px;
            margin: 15px auto; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > a.btn-info {
      width: 100%;
      border-radius: 0;
      padding: 15px; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > a.btn-info:hover {
      background: #97b4c2; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides {
      background: #d9e3e8;
      padding: 20px 15px;
      background-image: url("../img/bg/wave.png");
      background-position: right top;
      background-size: cover;
      background-repeat: no-repeat; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides h3 {
        font-size: 24px;
        font-weight: 700;
        color: #82a2b2;
        margin-top: 0; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides .tides-table {
        width: 100%;
        height: auto;
        max-height: 300px;
        overflow: auto; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides .tides-table .table {
          width: 100%;
          font-size: 12px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides .tides-table .table thead tr th {
            padding: 8px 5px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides .tides-table .table tbody tr td {
            padding: 8px 5px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides span {
        font-size: 14px;
        color: #638695; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline .form-group.single-field .form-control {
        width: 200px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline .btn {
        min-width: 44px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline img {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 24px;
        height: 24px;
        pointer-events: none; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-lifeguard {
      background: #e6eef2;
      padding: 20px 15px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-lifeguard h3 {
        font-size: 24px;
        font-weight: 700;
        color: #82a2b2;
        margin-top: 0; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-lifeguard span {
        color: #638695; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-lifeguard span a {
          text-decoration: underline; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download {
      display: block;
      width: 100%;
      background: #22aae1;
      padding: 25px 15px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download h3 {
        position: relative;
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        padding-right: 30px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download h3:after {
        position: absolute;
        content: '';
        width: 20px;
        height: 24px;
        right: 0;
        background-image: url("../img/icon/pdf-white.png");
        background-size: cover;
        z-index: 1; }
    #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download:hover {
      background: #46beef; }
  #beach-single-main .beach-single-main-main:before {
    content: '';
    display: block;
    position: absolute;
    width: 88%;
    height: 100%;
    left: 6%;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(100, 100, 100, 0.2); }

#beach-single-map {
  height: 500px;
  overflow: hidden; }
  #beach-single-map .map-legend a img {
    top: 15px; }
  #beach-single-map .map-legend > div {
    padding-top: 70px; }
    #beach-single-map .map-legend > div .inner {
      max-height: 300px; }
  #beach-single-map .map-legend div.map-legend-hide {
    right: -250px; }

#beach-guide {
  background: #98c8dc; }

@media screen and (max-width: 1199px) {
  #beach-single-main .beach-single-main-top .row {
    padding: 0px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(1) {
    padding-bottom: 30px; }
  #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item {
    padding: 10px 0; }
  #beach-single-main .beach-single-main-main:before {
    width: 104%;
    left: -2%;
    box-shadow: 0px 0px 10px rgba(100, 100, 100, 0.2); } }

/* end max-width 1199px */
@media screen and (max-width: 991px) {
  #beach-single-main {
    padding-top: 120px; }
    #beach-single-main .beach-single-bg-image {
      height: 500px; }
    #beach-single-main .beach-single-main-top .row {
      padding: 0 15px; }
    #beach-single-main .beach-single-main-main {
      padding-bottom: 100px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(1) {
        padding-bottom: 10px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) {
          margin-bottom: 20px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge {
          float: right;
          padding: 0px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge {
          float: left;
          padding: 0px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article a.mobile-only {
        display: inline-block; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner {
        padding-top: 30px;
        padding-bottom: 60px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item {
          padding: 10px 0; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside {
        margin-top: 40px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-icon {
          left: 60px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(1) {
          padding-left: 200px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides {
          padding: 20px 15px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides h3 {
            font-size: 24px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides .tides-table .table thead tr th {
            padding: 8px 5px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides .tides-table .table tbody tr td {
            padding: 8px 5px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides span {
            font-size: 14px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline.single-field .form-group {
            margin-right: 40px; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline.single-field .form-group .form-control {
              width: 150px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline.single-field .btn {
            min-width: 44px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline.single-field img {
            right: 10px;
            top: 10px;
            width: 24px;
            height: 24px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-lifeguard {
          padding: 20px 15px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-lifeguard h3 {
            font-size: 24px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download {
          padding: 25px 15px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download h3 {
            font-size: 20px;
            padding-right: 30px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download h3:after {
            width: 20px;
            height: 24px; }
    #beach-single-main .beach-single-main-main:before {
      width: 92%;
      left: 4%;
      box-shadow: 0px 0px 10px rgba(100, 100, 100, 0.2); } }

/* end max-width 991px */
@media screen and (max-width: 768px) {
  #beach-single-main {
    padding-top: 130px; }
    #beach-single-main .beach-single-bg-image {
      height: 450px; }
    #beach-single-main .beach-single-bg-image:after {
      height: 300px;
      opacity: 0.3; }
    #beach-single-main .beach-single-main-top > .row {
      padding: 0px; }
      #beach-single-main .beach-single-main-top > .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card {
        margin-top: 60px;
        margin-bottom: 40px;
        padding: 20px;
        padding-top: 50px; }
        #beach-single-main .beach-single-main-top > .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery {
          width: 100%; }
          #beach-single-main .beach-single-main-top > .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery .main {
            height: 400px; }
          #beach-single-main .beach-single-main-top > .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery .thumb-roll .thumb {
            width: 100px;
            height: 100px; }
        #beach-single-main .beach-single-main-top > .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card a.close-overlay {
          top: 10px;
          right: 10px; }
    #beach-single-main .beach-single-main-main {
      padding-bottom: 100px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(1) {
        padding-bottom: 10px;
        padding-left: 25px;
        padding-right: 25px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) {
          margin-bottom: 20px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) h2 {
            font-size: 28px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) span {
            font-size: 18px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right > div:first-of-type {
          width: 60px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge {
          width: 100%;
          max-width: none;
          float: left;
          padding-right: 0px;
          padding-left: 0px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge img {
            width: 50px;
            height: 50px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge span:nth-of-type(1) {
            font-size: 20px;
            line-height: 1.2;
            max-width: none; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge span:nth-of-type(2) {
            font-size: 14px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge {
          width: 100%;
          max-width: none;
          float: left;
          padding-right: 30px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge img {
            width: 50px;
            height: 50px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span:nth-of-type(1) {
            font-size: 12px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span:nth-of-type(2) {
            font-size: 20px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge span:nth-of-type(3) {
            font-size: 14px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) {
        padding: 0 25px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner {
          height: 230px;
          padding-top: 30px;
          padding-bottom: 60px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner h3 {
            font-size: 24px;
            font-weight: 700; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item {
            position: relative;
            width: 49%;
            padding: 10px 0; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item > img {
              width: 40px;
              height: 40px; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item span {
              left: 45px;
              /* Width of icon + 5px margin */
              font-size: 14px;
              line-height: 1.2; }
              #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item span a {
                height: 40px;
                margin-left: 8px; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card {
              margin-top: 40px;
              margin-bottom: 40px;
              padding: 20px;
              padding-top: 50px; }
              #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card img {
                width: 60px;
                height: 60px;
                margin-right: 10px;
                margin-bottom: 20px; }
              #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card a.close-overlay {
                top: 10px;
                right: 10px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand:after {
          height: 120px;
          background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 60%, white 100%);
          background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 60%, white 100%);
          background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 60%, white 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand.expanded:after {
          height: 40px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .split-left-right div img {
          width: 50px;
          height: 50px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .water-quality-history {
          max-height: 325px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .water-quality-history .table thead tr th {
            padding: 8px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .water-quality-history .table tbody tr td {
            padding: 8px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right {
          padding-bottom: 40px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div:first-of-type img {
            height: 64px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div span {
            font-size: 16px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-annual-water-quality .inner .annual-water-quality-history {
          max-height: 325px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside {
          margin-top: 40px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-icon {
            left: 30px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(1) {
            padding-left: 140px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides {
            padding: 20px 15px; }
    #beach-single-main .beach-single-main-main:before {
      width: 96%;
      left: 2%;
      box-shadow: 0px 0px 10px rgba(100, 100, 100, 0.2); }
  #beach-single-map {
    height: 500px;
    overflow: hidden; }
    #beach-single-map .map-legend {
      bottom: auto;
      top: 0; }
      #beach-single-map .map-legend a img {
        bottom: auto;
        top: 15px; }
      #beach-single-map .map-legend > div {
        bottom: auto;
        top: 0;
        padding-top: 70px;
        padding-bottom: 15px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 5px; }
        #beach-single-map .map-legend > div .inner {
          max-height: 300px; }
      #beach-single-map .map-legend div.map-legend-hide {
        right: -250px; } }

/* end max-width 768px */
@media screen and (max-width: 450px) {
  #beach-single-main {
    padding-top: 110px; }
    #beach-single-main .beach-single-bg-image {
      height: 500px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(1) a {
      font-size: 18px;
      font-weight: 700; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(1) a:nth-of-type(1) {
      padding-left: 35px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(1) a:nth-of-type(1):before {
      width: 28px;
      height: 28px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(1) a:nth-of-type(2) {
      padding-right: 35px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(1) a:nth-of-type(2):after {
      width: 28px;
      height: 28px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(3) a {
      float: left;
      margin-right: 10px;
      margin-bottom: 10px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(3) a:nth-of-type(3) {
      float: left;
      margin-bottom: 0px; }
    #beach-single-main .beach-single-main-top .row div:nth-of-type(3) div.overlay div.container div.row {
      padding: 10px; }
      #beach-single-main .beach-single-main-top .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card {
        padding: 10px;
        padding-top: 50px; }
        #beach-single-main .beach-single-main-top .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery .main {
          height: 250px; }
        #beach-single-main .beach-single-main-top .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card .beaches-gallery .thumb-roll .thumb {
          width: 60px;
          height: 60px; }
        #beach-single-main .beach-single-main-top .row div:nth-of-type(3) div.overlay div.container div.row .overlay-card a.close-overlay {
          margin: 0;
          padding: 0;
          float: none; }
    #beach-single-main .beach-single-main-main {
      padding-bottom: 80px; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(1) {
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) {
          margin-bottom: 20px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) h2 {
            font-size: 24px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(1) span {
            font-size: 16px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.restriction-badge {
          width: 100%;
          float: right; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(1) div:nth-of-type(2) .split-left-right.water-quality-badge {
          width: 100%;
          float: left; }
      #beach-single-main .beach-single-main-main .row:nth-of-type(2) {
        padding: 0 15px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner {
          padding-bottom: 50px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner h3 {
            font-size: 20px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item {
            position: relative;
            width: 49%;
            padding: 12px 0; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row {
              padding: 10px; }
              #beach-single-main .beach-single-main-main .row:nth-of-type(2) article .container-expand .inner div.list-item div.overlay div.container div.row .overlay-card {
                padding: 10px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .split-left-right div img {
          width: 40px;
          height: 40px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .water-quality-history {
          max-height: 300px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .water-quality-history .table thead tr th {
            padding: 0px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-water-quality .inner .water-quality-history .table tbody tr td {
            padding: 0px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-reported-restrictions .inner .split-left-right div:first-of-type img {
          height: 64px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-annual-water-quality .inner .split-left-right div:first-of-type img {
          height: 64px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-annual-water-quality .inner .split-left-right div:nth-of-type(2) h4 {
          margin-top: 0; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) article #beach-single-annual-water-quality .inner .annual-water-quality-history {
          max-height: 300px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-icon {
          position: absolute;
          top: 70px;
          left: 25px;
          width: 70px;
          height: 70px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data {
          padding-bottom: 30px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(1) {
            padding-left: 110px; }
            #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > .weather-container div.weather-data div:nth-of-type(1) span {
              font-size: 28px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-weather > a.btn-info {
          padding: 12px;
          font-size: 16px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-tides form.form-inline.single-field .form-group .form-control {
          width: 120px; }
        #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download {
          padding: 25px 15px; }
          #beach-single-main .beach-single-main-main .row:nth-of-type(2) aside #beach-sidebar-download h3 {
            font-size: 18px; }
  #beach-single-map {
    height: 350px; }
    #beach-single-map .map-legend > div .inner {
      max-height: 250px; }
    #beach-single-map .map-legend div.map-legend-hide {
      right: -200px; } }

/* end max-width 450px */
#beach-guide-upper {
  background: #22aae1;
  padding-top: 170px; }
  #beach-guide-upper a.btn {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin: 0 1px; }
  #beach-guide-upper a.btn.current {
    background: #f6f7f8;
    color: #82a2b2;
    cursor: default; }
  #beach-guide-upper form.form-inline {
    display: inline-block;
    width: 100%; }
    #beach-guide-upper form.form-inline .form-group.single-field {
      float: right;
      width: 100%; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control {
        width: 100%;
        background: #22aae1;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #ffffff;
        box-shadow: none;
        padding-left: 0; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control::-webkit-input-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control::-moz-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control:-ms-input-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control:-moz-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control:focus {
        background: #ffffff;
        border: 1px solid #82a2b2;
        border-radius: 4px;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        padding-left: 11px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control::-webkit-input-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control::-moz-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control:-ms-input-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field input.form-control:-moz-placeholder {
        color: #ffffff; }
      #beach-guide-upper form.form-inline .form-group.single-field .btn {
        right: -2px; }
      #beach-guide-upper form.form-inline .form-group.single-field img {
        right: 8px; }

#beach-guide-main {
  background: #f6f7f8;
  /* Additional Search */ }
  #beach-guide-main article.news-card {
    margin-bottom: 30px; }
  #beach-guide-main form .form-group.single-field {
    width: 90%; }
    #beach-guide-main form .form-group.single-field input {
      width: 100%; }

@media screen and (max-width: 991px) {
  #beach-guide-upper {
    padding-top: 150px; }
    #beach-guide-upper a.btn {
      font-size: 16px;
      padding: 15px 20px;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      margin: 0 2px 5px 0; }
    #beach-guide-upper form.form-inline {
      width: 300px;
      margin: 20px 0; }
  #beach-guide-main {
    background: #f6f7f8; }
    #beach-guide-main article.news-card {
      margin-bottom: 20px; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  #beach-guide-upper {
    padding-top: 100px; }
    #beach-guide-upper a.btn {
      font-size: 16px;
      padding: 15px 20px; }
    #beach-guide-upper form.form-inline {
      width: 300px;
      margin: 20px 0 10px 0; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  #beach-guide-upper {
    padding-top: 80px; }
    #beach-guide-upper a.btn {
      font-size: 14px;
      padding: 10px 15px; }
    #beach-guide-upper form.form-inline {
      width: 250px;
      margin: 20px 0 0px 0; } }

/* end max-width 450px */
#beach-guide-single-banner {
  padding-top: 170px; }
  #beach-guide-single-banner .container .row div:nth-of-type(1) {
    display: inline-block; }
    #beach-guide-single-banner .container .row div:nth-of-type(1) a {
      position: relative;
      color: #ffffff;
      font-size: 20px;
      font-weight: 900;
      float: left;
      padding-left: 40px; }
    #beach-guide-single-banner .container .row div:nth-of-type(1) a:before {
      content: "";
      position: absolute;
      width: 32px;
      height: 32px;
      background-image: url("../img/icon/arrow-left-white.png");
      background-size: cover;
      left: 0px; }
    #beach-guide-single-banner .container .row div:nth-of-type(1) a:hover:before {
      -webkit-animation: pulseLeft 0.7s ease infinite;
      -moz-animation: pulseLeft 0.7s ease infinite;
      animation: pulseLeft 0.7s ease infinite; }
  #beach-guide-single-banner .container .row div:nth-of-type(3) h3 {
    font-size: 24px;
    margin-bottom: 15px; }
  #beach-guide-single-banner .container .row div:nth-of-type(3) a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    background: #22aae1;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    #beach-guide-single-banner .container .row div:nth-of-type(3) a img {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      width: 75%;
      height: 75%; }
  #beach-guide-single-banner .container .row div:nth-of-type(3) a:hover {
    background: #46beef; }

#beach-guide-single-main {
  background: #f6f7f8; }
  #beach-guide-single-main h2, #beach-guide-single-main h3, #beach-guide-single-main h4, #beach-guide-single-main h5, #beach-guide-single-main h6 {
    font-weight: 400; }
  #beach-guide-single-main h2, #beach-guide-single-main h3, #beach-guide-single-main h4 {
    margin-bottom: 30px; }
  #beach-guide-single-main h5, #beach-guide-single-main h6 {
    margin-bottom: 20px; }
  #beach-guide-single-main h2 {
    font-size: 32px;
    color: #22a9e1; }
  #beach-guide-single-main h3 {
    font-size: 28px;
    color: #638695; }
  #beach-guide-single-main h4 {
    font-size: 24px;
    color: #82a2b2; }
  #beach-guide-single-main h5 {
    font-size: 20px;
    color: #f78d25; }
  #beach-guide-single-main h6 {
    font-size: 18px;
    color: #22a9e1; }
  #beach-guide-single-main p {
    display: inline-block;
    margin-bottom: 30px;
    float: left; }
  #beach-guide-single-main img {
    display: inline-block;
    margin-bottom: 30px;
    vertical-align: top;
    max-width: 100%;
    height: auto; }
  #beach-guide-single-main img.aligncenter {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px; }
  #beach-guide-single-main img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 0px; }
  #beach-guide-single-main img.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 0px; }
  #beach-guide-single-main img.size-large, #beach-guide-single-main img.size-full {
    margin-bottom: 30px; }
  #beach-guide-single-main .beach-guide-author {
    display: inline-block;
    background: #ffffff;
    border-radius: 4px;
    margin: 40px 0;
    padding: 40px 20px;
    box-shadow: 0px 0px 6px rgba(139, 157, 175, 0.2); }
    #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(1) {
      padding-right: 40px; }
      #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(1) > div {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        border: 1px solid #dde2e5;
        overflow: hidden; }
    #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(2) h3 {
      margin-top: 0;
      margin-bottom: 20px; }

@media screen and (max-width: 991px) {
  #beach-guide-single-banner {
    padding-top: 120px; }
    #beach-guide-single-banner .container .row div:nth-of-type(3) h3 {
      font-size: 20px; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  #beach-guide-single-banner {
    padding-top: 120px; }
    #beach-guide-single-banner .container .row div:nth-of-type(1) {
      width: 100%; }
    #beach-guide-single-banner .container .row div:nth-of-type(2) h1 {
      font-size: 36px; }
    #beach-guide-single-banner .container .row div:nth-of-type(3) h3 {
      font-size: 20px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  #beach-guide-single-banner {
    padding-top: 100px; }
    #beach-guide-single-banner .container .row div:nth-of-type(1) {
      width: 100%; }
    #beach-guide-single-banner .container .row div:nth-of-type(2) h1 {
      font-size: 32px; }
    #beach-guide-single-banner .container .row div:nth-of-type(3) h3 {
      font-size: 16px; }
  #beach-guide-single-main h2 {
    margin-bottom: 20px;
    font-size: 28px; }
  #beach-guide-single-main h3 {
    margin-bottom: 20px;
    font-size: 20px; }
  #beach-guide-single-main p {
    margin-bottom: 20px; }
  #beach-guide-single-main .beach-guide-author {
    margin: 30px 0;
    padding: 20px 15px; }
    #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(1) {
      display: block;
      padding-right: 0px; }
      #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(1) > div {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        margin-bottom: 20px; }
    #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(2) {
      display: block;
      text-align: center; }
      #beach-guide-single-main .beach-guide-author .split-left-right div:nth-of-type(2) h3 {
        margin-top: 0;
        margin-bottom: 20px; } }

/* end max-width 450px */
#favourites-top {
  background: #22aae1;
  padding: 170px 0 100px 0; }

#favourites-main {
  background: #fcfcfc;
  padding: 0px;
  overflow: hidden; }
  #favourites-main #favourites-main-map {
    width: 100%;
    height: 700px;
    left: 0%;
    overflow: hidden;
    -webkit-transition: left 0.5s ease-out;
    -moz-transition: left 0.5s ease-out;
    -ms-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out; }
  #favourites-main .favourites-main-hide {
    display: none; }
  #favourites-main .toggle-map-btn.map-view {
    left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px; }
  #favourites-main .toggle-map-btn.map-view.toggle-map-btn-hide {
    left: -150px; }
  #favourites-main .toggle-map-btn.list-view {
    right: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px; }
  #favourites-main .toggle-map-btn.list-view.toggle-map-btn-hide {
    right: -150px; }
  #favourites-main .toggle-map-btn.map-view:hover {
    padding-left: 30px; }
  #favourites-main .toggle-map-btn.list-view:hover {
    padding-right: 30px; }
  #favourites-main .btn-stick-center {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(-50%); }
  #favourites-main .btn-stick-bottom {
    position: absolute;
    bottom: 20px; }
  #favourites-main .btn-stick-top {
    position: absolute;
    top: 20px; }
  #favourites-main .map-legend {
    right: auto;
    left: 0; }
    #favourites-main .map-legend a img {
      right: auto;
      left: 20px;
      top: 15px; }
    #favourites-main .map-legend > div {
      right: auto;
      left: 0;
      padding-top: 70px;
      border-radius: none;
      border-bottom-right-radius: 5px; }
      #favourites-main .map-legend > div .inner {
        max-height: 400px; }
    #favourites-main .map-legend div.map-legend-hide {
      right: auto;
      left: -250px; }

#favourites-beach-guide {
  background: #98c8dc; }

@media screen and (max-width: 991px) {
  #favourites-top {
    padding: 150px 0 100px 0; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  #favourites-top {
    padding: 100px 0 60px 0; }
  #favourites-main #favourites-main-map {
    height: 500px; }
    #favourites-main #favourites-main-map .map-legend {
      top: 0px;
      bottom: auto; }
      #favourites-main #favourites-main-map .map-legend a img {
        left: 15px;
        top: 15px; }
      #favourites-main #favourites-main-map .map-legend > div {
        top: 0px;
        bottom: auto;
        padding-top: 70px;
        padding-bottom: 15px;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 0px; }
        #favourites-main #favourites-main-map .map-legend > div .inner {
          max-height: 300px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  #favourites-top {
    padding: 80px 0 40px 0; }
  #favourites-main #favourites-main-map {
    height: 400px; } }

/* end max-width 450px */
#report-issue-main .mandatory {
  color: red; }

#report-issue-main {
  padding: 170px 0 100px 0;
  background: #22aae1; }
  #report-issue-main #report-top {
    background: #ffffff;
    border-radius: 5px; }
    #report-issue-main #report-top span {
      color: #638695;
      margin-right: 20px; }
    #report-issue-main #report-top .form-group {
      position: relative;
      display: inline-block;
      cursor: pointer; }
      #report-issue-main #report-top .form-group select.form-control {
        display: inline-block;
        border: 1px solid #82a2b2;
        padding-right: 50px;
        -webkit-appearance: none;
        -moz-appearance: none; }
      #report-issue-main #report-top .form-group select.form-control::-ms-expand {
        display: none; }
      #report-issue-main #report-top .form-group .btn {
        min-width: 44px;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 11px 15px;
        font-size: 22px;
        line-height: 1;
        text-transform: uppercase;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        pointer-events: none; }
      #report-issue-main #report-top .form-group .btn:hover {
        background: #97b4c2; }
      #report-issue-main #report-top .form-group img {
        position: absolute;
        right: 14px;
        top: 16px;
        width: 16px;
        height: 16px;
        pointer-events: none; }
  #report-issue-main #report-top.active:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #e6eef2; }
  #report-issue-main .report-section {
    display: none; }
    #report-issue-main .report-section div:last-of-type {
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px; }
  #report-issue-main .report-info {
    background: #e6eef2;
    padding-left: 100px;
    padding-right: 100px; }
    #report-issue-main .report-info .split-left-right:first-of-type {
      margin-bottom: 30px; }
      #report-issue-main .report-info .split-left-right:first-of-type img {
        width: 55px;
        height: 55px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); }
      #report-issue-main .report-info .split-left-right:first-of-type h2 {
        font-size: 24px;
        font-weight: 700;
        color: #82a2b2;
        margin: 0; }
    #report-issue-main .report-info h3 {
      font-size: 20px;
      font-weight: 700;
      color: #82a2b2;
      margin-bottom: 20px; }
    #report-issue-main .report-info p {
      width: 70%; }
    #report-issue-main .report-info p:last-of-type {
      margin-bottom: 40px; }
  #report-issue-main #report-jellyfish .jellyfish-group {
    margin-top: 40px;
    text-align: center; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select {
      display: inline-block;
      width: 25%;
      margin-right: 2%;
      margin-bottom: 20px; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select h3 {
        font-size: 16px;
        color: #638695; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div {
        position: relative;
        background: #ffffff;
        width: 100%;
        height: 130px; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > img {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translateX(-50%) translateY(-50%);
          -moz-transform: translateX(-50%) translateY(-50%);
          -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
          max-width: 80%;
          max-height: 80%; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > a {
          position: absolute;
          top: 0px;
          right: 0px;
          padding: 10px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > a img {
            position: relative;
            width: 15px;
            height: 15px;
            vertical-align: top;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div a:hover img {
          -webkit-transform: scale(1.2);
          -moz-transform: scale(1.2);
          -ms-transform: scale(1.2);
          transform: scale(1.2); }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div a:active img {
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay {
          position: fixed;
          background: rgba(71, 71, 71, 0.9);
          height: 100%;
          overflow-y: auto;
          z-index: 1050;
          opacity: 0;
          visibility: hidden;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card {
            margin-top: 200px;
            margin-bottom: 40px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            -webkit-transform: scale(0.5);
            -moz-transform: scale(0.5);
            -ms-transform: scale(0.5);
            transform: scale(0.5);
            -webkit-transition: all 0.2s ease 0.1s;
            -moz-transition: all 0.2s ease 0.1s;
            -ms-transition: all 0.2s ease 0.1s;
            transition: all 0.2s ease 0.1s; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) h3 {
              font-size: 28px;
              color: #565756;
              margin: 0; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.latin {
              display: block;
              font-size: 18px;
              color: #82a2b2; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.warning {
              display: block;
              font-size: 24px;
              color: #f78d25; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) p {
              width: 100%; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) p:last-of-type {
              margin-bottom: 10px; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(2) .beaches-gallery {
              width: 100%; }
              #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(2) .beaches-gallery .main {
                height: 350px; }
              #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(2) .beaches-gallery .thumb-roll .thumb {
                width: 85px;
                height: 85px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card.overlay-show {
            opacity: 1;
            visibility: visible;
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1); }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay.overlay-show {
          opacity: 1;
          visibility: visible;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select a.btn {
        background: #22aae1;
        color: #ffffff;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select a.btn:hover {
        background: #46beef;
        color: #ffffff; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select a.btn.selected {
        background: #f78d25;
        color: #ffffff; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select a.btn.selected:hover {
        background: #ffa04d;
        color: #ffffff; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:nth-of-type(5n+5) {
      margin-right: 0; }
  #report-issue-main #report-jellyfish .report-form {
    background: #ffffff;
    padding-left: 200px;
    padding-right: 200px; }
    #report-issue-main #report-jellyfish .report-form form .form-group {
      display: inline-block;
      width: 100%; }
      #report-issue-main #report-jellyfish .report-form form .form-group label {
        width: 30%;
        float: left; }
      #report-issue-main #report-jellyfish .report-form form .form-group input {
        width: 60%;
        float: right; }
      #report-issue-main #report-jellyfish .report-form form .form-group textarea {
        width: 60%;
        float: right;
        resize: vertical; }
      #report-issue-main #report-jellyfish .report-form form .form-group .btn {
        float: right;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }
      #report-issue-main #report-jellyfish .report-form form .form-group .btn-upload {
        float: left;
        margin-left: 10%;
        font-size: 16px; }
    #report-issue-main #report-jellyfish .report-form form #select-beach {
      width: 60%;
      float: right; }
    #report-issue-main #report-jellyfish .report-form form .form-group.single-field input {
      display: inline-block;
      width: 40%;
      float: left;
      margin-left: 10%; }
    #report-issue-main #report-jellyfish .report-form form .form-group.single-field .btn {
      right: 20%;
      height: 44px;
      top: 0; }
    #report-issue-main #report-jellyfish .report-form form .form-group.single-field .btn:after {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      top: 50%;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      background-image: url("../img/icon/calendar-white.png");
      background-size: cover; }
    #report-issue-main #report-jellyfish .report-form form .form-group.single-field select {
      width: 15%;
      float: right;
      padding-right: 11px; }
  #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(1) {
    padding-right: 60px; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(1) p {
      width: auto; }
  #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(2) {
    padding-top: 60px; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(2) a.download-app img {
      margin-bottom: 10px;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(2) a.download-app:hover img {
      opacity: 0.7; }

@media screen and (max-width: 991px) {
  #report-issue-main {
    padding: 120px 0 100px 0; }
    #report-issue-main #report-top span {
      margin-right: 20px; }
    #report-issue-main .report-info {
      padding-left: 50px;
      padding-right: 50px; }
      #report-issue-main .report-info p {
        width: 80%; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select {
      width: 18%;
      margin-right: 2%; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select h3 {
        font-size: 16px; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div {
        height: 130px; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > img {
          max-width: 80%;
          max-height: 80%; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > a {
          padding: 10px; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay {
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card {
            margin-top: 60px;
            margin-left: 5%;
            padding: 20px;
            width: 90%; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) h3 {
              font-size: 28px; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.latin {
              font-size: 18px; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.warning {
              font-size: 24px; }
    #report-issue-main #report-jellyfish .report-form {
      padding-left: 100px;
      padding-right: 100px; }
      #report-issue-main #report-jellyfish .report-form #select-beach {
        width: 60%;
        float: right; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(1) {
      padding-right: 60px; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(2) {
      padding-top: 60px; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  #report-issue-main {
    padding: 120px 0 100px 0; }
    #report-issue-main #report-top {
      border-radius: 0px; }
      #report-issue-main #report-top span {
        display: inline-block;
        margin-right: 20px;
        margin-left: 20px;
        margin-bottom: 20px; }
    #report-issue-main .report-section div:last-of-type {
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px; }
    #report-issue-main .report-info {
      padding-left: 30px;
      padding-right: 30px; }
      #report-issue-main .report-info .split-left-right:first-of-type {
        margin-bottom: 30px; }
        #report-issue-main .report-info .split-left-right:first-of-type img {
          width: 55px;
          height: 55px; }
        #report-issue-main .report-info .split-left-right:first-of-type h2 {
          font-size: 24px;
          font-weight: 700; }
      #report-issue-main .report-info h3 {
        font-size: 20px; }
      #report-issue-main .report-info p {
        width: 80%; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select {
      width: 30%;
      margin-right: 2%; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select h3 {
        font-size: 16px; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div {
        height: 130px; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > img {
          max-width: 80%;
          max-height: 80%; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div > a {
          padding: 10px; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay {
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card {
            margin-top: 60px;
            margin-left: 5%;
            padding: 20px;
            width: 90%; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) h3 {
              font-size: 28px; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.latin {
              font-size: 18px; }
            #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.warning {
              font-size: 24px; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay.overlay-show {
          opacity: 1;
          visibility: visible;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          transition: all 0.2s ease; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:nth-of-type(5n+5) {
      margin-right: 2%; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:nth-of-type(3n+3) {
      margin-right: 0; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:last-of-type {
      margin-right: 0; }
    #report-issue-main #report-jellyfish .report-form {
      padding-left: 30px;
      padding-right: 30px; }
      #report-issue-main #report-jellyfish .report-form form #select-beach {
        width: 60%;
        float: right; }
      #report-issue-main #report-jellyfish .report-form form .form-group.single-field input {
        display: inline-block;
        width: 60%;
        float: right;
        margin-left: 10%;
        margin-bottom: 15px; }
      #report-issue-main #report-jellyfish .report-form form .form-group.single-field .btn {
        right: 0%;
        height: 44px;
        top: 0; }
      #report-issue-main #report-jellyfish .report-form form .form-group.single-field select {
        width: 60%;
        float: right;
        padding-right: 11px;
        margin-bottom: 15px; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(1) {
      display: block;
      padding-right: 60px; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(2) {
      display: block;
      padding-top: 60px; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  #report-issue-main {
    padding: 100px 0 50px 0; }
    #report-issue-main .report-info {
      padding-left: 15px;
      padding-right: 15px; }
      #report-issue-main .report-info .split-left-right:first-of-type img {
        width: 40px;
        height: 40px; }
      #report-issue-main .report-info .split-left-right:first-of-type h2 {
        font-size: 20px; }
      #report-issue-main .report-info h3 {
        font-size: 18px; }
      #report-issue-main .report-info p {
        width: 100%; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select {
      width: 47%;
      margin-right: 2%; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select h3 {
        font-size: 16px; }
      #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay {
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card {
          margin-top: 40px;
          margin-left: 3%;
          padding: 15px;
          width: 94%; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) h3 {
            font-size: 24px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.latin {
            font-size: 16px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(1) span.warning {
            font-size: 20px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(2) .beaches-gallery .main {
            height: 250px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card div.row div:nth-of-type(2) .beaches-gallery .thumb-roll .thumb {
            width: 60px;
            height: 60px; }
          #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select > div div.overlay .overlay-card .close-overlay {
            width: 28px;
            height: 28px;
            top: 5px;
            right: 5px; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:nth-of-type(5n+5) {
      margin-right: 2%; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:nth-of-type(3n+3) {
      margin-right: 2%; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:nth-of-type(2n+2) {
      margin-right: 0; }
    #report-issue-main #report-jellyfish .jellyfish-group article.jellyfish-select:last-of-type {
      margin-right: 0; }
    #report-issue-main #report-jellyfish .report-form {
      padding-right: 15px; }
      #report-issue-main #report-jellyfish .report-form form .form-group {
        display: inline-block;
        width: 100%; }
        #report-issue-main #report-jellyfish .report-form form .form-group label {
          width: 100%;
          float: left; }
        #report-issue-main #report-jellyfish .report-form form .form-group input {
          width: 100%;
          float: left; }
        #report-issue-main #report-jellyfish .report-form form .form-group textarea {
          width: 100%;
          float: left; }
        #report-issue-main #report-jellyfish .report-form form .form-group .btn {
          float: left; }
        #report-issue-main #report-jellyfish .report-form form .form-group .btn-upload {
          float: left;
          margin-left: 0; }
      #report-issue-main #report-jellyfish .report-form form #select-beach {
        width: 100%;
        float: left; }
      #report-issue-main #report-jellyfish .report-form form .form-group.single-field input {
        width: 100%;
        float: right; }
      #report-issue-main #report-jellyfish .report-form form .form-group.single-field .btn {
        right: 0%;
        height: 44px;
        top: 0;
        margin-top: 24px; }
      #report-issue-main #report-jellyfish .report-form form .form-group.single-field select {
        width: 100%;
        float: left; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(1) {
      padding-right: 0px; }
    #report-issue-main #report-incident .report-info .split-left-right:nth-of-type(2) div:nth-of-type(2) {
      padding-top: 60px; } }

/* end max-width 450px */
.contact-upper {
  background: #22aae1;
  padding-top: 170px; }
  .contact-upper a.btn {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin: 0 1px; }
  .contact-upper a.btn.current {
    background: #ffffff;
    color: #82a2b2;
    cursor: default; }

.contact-mid {
  background: #ffffff; }
  .contact-mid h2 {
    font-size: 28px;
    font-weight: 700; }

.contact-lower {
  background: #ffffff;
  /*** Contact Form 7 overwrites ***/ }
  .contact-lower h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #82a2b2;
    margin-top: 0;
    margin-bottom: 20px; }
  .contact-lower p, .contact-lower span {
    color: #999; }
  .contact-lower p.bold, .contact-lower span.bold {
    font-weight: 700; }
  .contact-lower form .form-group {
    display: inline-block;
    width: 100%; }
    .contact-lower form .form-group label {
      width: 30%;
      float: left; }
    .contact-lower form .form-group input {
      width: 50%;
      float: right;
      margin-right: 10%; }
    .contact-lower form .form-group textarea {
      width: 60%;
      float: right;
      resize: vertical; }
    .contact-lower form .form-group .btn {
      float: right;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }
  .contact-lower form.wpcf7-form {
    /* Error messages */ }
    .contact-lower form.wpcf7-form .form-group {
      display: inline-block;
      width: 100%; }
      .contact-lower form.wpcf7-form .form-group br {
        display: none; }
      .contact-lower form.wpcf7-form .form-group label {
        width: 30%;
        float: left; }
      .contact-lower form.wpcf7-form .form-group span {
        display: inline-block;
        width: 60%;
        float: right;
        margin-right: 0%; }
        .contact-lower form.wpcf7-form .form-group span input {
          position: relative;
          float: left;
          display: inline-block;
          width: 85%;
          margin-right: 0;
          margin-bottom: 5px; }
        .contact-lower form.wpcf7-form .form-group span textarea {
          width: 100%;
          float: right;
          resize: vertical; }
      .contact-lower form.wpcf7-form .form-group .btn {
        float: right;
        width: auto;
        margin-right: 0;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }
    .contact-lower form.wpcf7-form .form-group.required span:after {
      content: "\2217";
      /* Required asterisk */
      position: absolute;
      top: 0;
      right: 10%;
      font-size: 22px;
      line-height: 1; }
    .contact-lower form.wpcf7-form .form-group.textarea-required span:after {
      content: "\2217";
      /* Required asterisk */
      position: absolute;
      top: 0;
      right: -5%;
      font-size: 22px;
      line-height: 1; }
    .contact-lower form.wpcf7-form .form-group .wpcf7-not-valid-tip {
      width: auto;
      float: none;
      color: #f78d25; }
    .contact-lower form.wpcf7-form .wpcf7-validation-errors {
      border: 1px solid #22aae1 !important;
      color: #638695; }
    .contact-lower form.wpcf7-form .wpcf7-mail-sent-ng {
      border: 1px solid #22aae1 !important;
      color: #638695; }
    .contact-lower form.wpcf7-form .wpcf7-mail-sent-ok {
      border: 1px solid #22aae1 !important;
      color: #638695; }
  .contact-lower .local-authority {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #f4f4f4;
    box-shadow: 0px 0px 6px rgba(139, 157, 175, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    height: 370px;
    overflow-y: auto; }
    .contact-lower .local-authority .split-left-right {
      width: 100%; }
      .contact-lower .local-authority .split-left-right > div {
        width: 50%;
        padding-right: 40px; }
      .contact-lower .local-authority .split-left-right span, .contact-lower .local-authority .split-left-right a {
        display: block;
        margin-bottom: 5px; }
      .contact-lower .local-authority .split-left-right .contact-unit {
        margin-bottom: 30px; }
      .contact-lower .local-authority .split-left-right .contact-unit:last-of-type {
        margin-bottom: 0px; }
  .contact-lower .key-organisation {
    position: relative;
    background: #ffffff;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #f4f4f4;
    box-shadow: 0px 0px 6px rgba(139, 157, 175, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    height: 450px;
    overflow-y: auto; }
    .contact-lower .key-organisation > img {
      display: block;
      max-height: 100px;
      max-width: 100%;
      margin: 0 auto 30px auto; }

@media screen and (max-width: 991px) {
  .contact-upper {
    padding-top: 150px; }
  .contact-lower .local-authority {
    height: auto; }
  .contact-lower .key-organisation {
    height: auto; }
    .contact-lower .key-organisation > h3 {
      text-align: center; } }

/* end max-width 991px */
@media screen and (max-width: 767px) {
  .contact-upper {
    padding-top: 100px; }
    .contact-upper a.btn {
      width: 100%;
      font-size: 16px;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      margin: 0 0 10px 0; }
  .contact-mid h2 {
    font-size: 28px; }
  .contact-lower {
    /*** Contact Form 7 overwrites ***/ }
    .contact-lower h3 {
      font-size: 24px;
      line-height: 1.3;
      margin-bottom: 20px; }
    .contact-lower form .form-group label {
      width: 30%; }
    .contact-lower form .form-group input {
      width: 60%;
      float: right;
      margin-right: 0%; }
    .contact-lower form .form-group textarea {
      width: 60%;
      float: right; }
    .contact-lower form.wpcf7-form .form-group span input {
      width: 100%; }
    .contact-lower form.wpcf7-form .form-group.required span:after {
      right: auto;
      left: -5%; }
    .contact-lower form.wpcf7-form .form-group.textarea-required span:after {
      right: auto;
      left: -5%; } }

/* end max-width 767px */
@media screen and (max-width: 450px) {
  .contact-upper {
    padding-top: 80px; }
    .contact-upper a.btn {
      font-size: 14px; }
  .contact-mid h2 {
    font-size: 24px; }
  .contact-lower {
    /*** Contact Form 7 overwrites ***/ }
    .contact-lower h3 {
      font-size: 20px;
      line-height: 1.3;
      margin-bottom: 20px; }
    .contact-lower form .form-group label {
      width: 100%; }
    .contact-lower form .form-group input {
      width: 100%;
      float: left; }
    .contact-lower form .form-group textarea {
      width: 100%;
      float: left; }
    .contact-lower form.wpcf7-form .form-group span {
      width: 100%;
      float: left; }
    .contact-lower form.wpcf7-form .form-group.required span:after {
      right: 0;
      left: auto;
      top: -20px; }
    .contact-lower form.wpcf7-form .form-group.textarea-required span:after {
      right: 0;
      left: auto;
      top: -20px; }
    .contact-lower .local-authority {
      padding: 20px;
      margin-bottom: 30px; }
      .contact-lower .local-authority .split-left-right {
        width: auto; }
        .contact-lower .local-authority .split-left-right > div {
          display: block;
          width: auto;
          padding-right: 40px; }
        .contact-lower .local-authority .split-left-right > div:first-of-type {
          margin-bottom: 30px; }
        .contact-lower .local-authority .split-left-right .contact-unit {
          margin-bottom: 30px; }
    .contact-lower .key-organisation > img {
      max-height: 80px; } }

/* end max-width 450px */
.mobile-menu-show {
  -webkit-animation: mobileMenuShow 0.3s ease;
  -moz-animation: mobileMenuShow 0.3s ease;
  animation: mobileMenuShow 0.3s ease; }

.beaches-header nav.mobile-menu-show {
  left: 0; }

@-webkit-keyframes mobileMenuShow {
  0% {
    left: 100%; }
  100% {
    left: 0%; } }

@-moz-keyframes mobileMenuShow {
  0% {
    left: 100%; }
  100% {
    left: 0%; } }

@keyframes mobileMenuShow {
  0% {
    left: 100%; }
  100% {
    left: 0%; } }

.mobile-menu-hide {
  -webkit-animation: mobileMenuHide 0.3s ease;
  -moz-animation: mobileMenuHide 0.3s ease;
  animation: mobileMenuHide 0.3s ease; }

.beaches-header nav.mobile-menu-hide {
  left: 100%; }

@-webkit-keyframes mobileMenuHide {
  0% {
    left: 0%; }
  100% {
    left: 100%; } }

@-moz-keyframes mobileMenuHide {
  0% {
    left: 0%; }
  100% {
    left: 100%; } }

@keyframes mobileMenuHide {
  0% {
    left: 0%; }
  100% {
    left: 100%; } }

.mobile-menu-item-in {
  -webkit-animation: mobileMenuItemIn 0.3s ease;
  -moz-animation: mobileMenuItemIn 0.3s ease;
  animation: mobileMenuItemIn 0.3s ease; }

.beaches-header nav ul li.mobile-menu-item-in {
  opacity: 1; }

@-webkit-keyframes mobileMenuItemIn {
  0% {
    padding-left: 25%;
    opacity: 0; }
  100% {
    padding-left: 20px;
    opacity: 1; } }

@-moz-keyframes mobileMenuItemIn {
  0% {
    padding-left: 25%;
    opacity: 0; }
  100% {
    padding-left: 20px;
    opacity: 1; } }

@keyframes mobileMenuItemIn {
  0% {
    padding-left: 25%;
    opacity: 0; }
  100% {
    padding-left: 20px;
    opacity: 1; } }

.map-menu-show {
  -webkit-animation: mapMenuShow 0.3s ease;
  -moz-animation: mapMenuShow 0.3s ease;
  animation: mapMenuShow 0.3s ease; }

.map-menu {
  left: 0; }

@-webkit-keyframes mapMenuShow {
  0% {
    left: -100%; }
  100% {
    left: 0%; } }

@-moz-keyframes mapMenuShow {
  0% {
    left: -100%; }
  100% {
    left: 0%; } }

@keyframes mapMenuShow {
  0% {
    left: -100%; }
  100% {
    left: 0%; } }

.map-menu-hide {
  -webkit-animation: mapMenuHide 0.3s ease;
  -moz-animation: mapMenuHide 0.3s ease;
  animation: mapMenuHide 0.3s ease; }

.map-menu {
  left: 0; }

@-webkit-keyframes mapMenuHide {
  0% {
    left: -0%; }
  100% {
    left: -100%; } }

@-moz-keyframes mapMenuHide {
  0% {
    left: -0%; }
  100% {
    left: -100%; } }

@keyframes mapMenuHide {
  0% {
    left: -0%; }
  100% {
    left: -100%; } }

/*
// Button jump in front / behind
.button-jump-front {
-webkit-animation: buttonJumpFront 0.7s ease;
-moz-animation: buttonJumpFront 0.7s ease;
animation: buttonJumpFront 0.7s ease;
}

@-webkit-keyframes buttonJumpFront {
  0% { left: -0%; }
  100% { left: -100%; }
}
@-moz-keyframes buttonJumpFront {
  0% { left: -0%; }
  100% { left: -100%; }
}
@keyframes buttonJumpFront {
  0% { left: -0%; }
  100% { left: -100%; }
}
*/
@-webkit-keyframes pulseLeft {
  0% {
    -webkit-transform: translateX(0);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(-50%);
    opacity: 0.5; }
  100% {
    -webkit-transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes pulseLeft {
  0% {
    -moz-transform: translateX(0); }
  80% {
    -moz-transform: translateX(-50%); }
  100% {
    -moz-transform: translateX(0); } }

@keyframes pulseLeft {
  0% {
    transform: translateX(0);
    opacity: 1; }
  80% {
    transform: translateX(-50%);
    opacity: 0.5; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes pulseRight {
  0% {
    -webkit-transform: translateX(0);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(50%);
    opacity: 0.5; }
  100% {
    -webkit-transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes pulseRight {
  0% {
    -moz-transform: translateX(0); }
  80% {
    -moz-transform: translateX(50%); }
  100% {
    -moz-transform: translateX(0); } }

@keyframes pulseRight {
  0% {
    transform: translateX(0);
    opacity: 1; }
  80% {
    transform: translateX(50%);
    opacity: 0.5; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1); }
  14% {
    -webkit-transform: scale(1.2); }
  28% {
    -webkit-transform: scale(1); }
  42% {
    -webkit-transform: scale(1.2); }
  70% {
    -webkit-transform: scale(1); } }

@-moz-keyframes heartBeat {
  0% {
    -moz-transform: scale(1); }
  14% {
    -moz-transform: scale(1.2); }
  28% {
    -moz-transform: scale(1); }
  42% {
    -moz-transform: scale(1.2); }
  70% {
    -moz-transform: scale(1); } }

@keyframes heartBeat {
  0% {
    transform: scale(1); }
  14% {
    transform: scale(1.2); }
  28% {
    transform: scale(1); }
  42% {
    transform: scale(1.2); }
  70% {
    transform: scale(1); } }

/* Sun */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg); } }

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

@-webkit-keyframes shine {
  0% {
    width: 10%; }
  50% {
    width: 18%; }
  100% {
    width: 10%; } }

@-moz-keyframes shine {
  0% {
    width: 10%; }
  50% {
    width: 18%; }
  100% {
    width: 10%; } }

@keyframes shine {
  0% {
    width: 10%; }
  50% {
    width: 18%; }
  100% {
    width: 10%; } }

@-webkit-keyframes radiate {
  0% {
    -webkit-transform: scale(1);
    opacity: 0.4; }
  100% {
    -webkit-transform: scale(4);
    opacity: 0; } }

@-moz-keyframes radiate {
  0% {
    -moz-transform: scale(1);
    opacity: 0.4; }
  100% {
    -moz-transform: scale(4);
    opacity: 0; } }

@keyframes radiate {
  0% {
    transform: scale(1);
    opacity: 0.4; }
  100% {
    transform: scale(4);
    opacity: 0; } }

/* Moon */
@-webkit-keyframes moonshine {
  0% {
    box-shadow: inset -5px -4px 5px 0px rgba(255, 255, 224, 0.8); }
  50% {
    box-shadow: inset -15px -4px 5px 0px rgba(255, 255, 224, 0.8); }
  100% {
    box-shadow: inset -5px -4px 5px 0px rgba(255, 255, 224, 0.8); } }

@-moz-keyframes moonshine {
  0% {
    box-shadow: inset -5px -4px 5px 0px rgba(255, 255, 224, 0.8); }
  50% {
    box-shadow: inset -15px -4px 5px 0px rgba(255, 255, 224, 0.8); }
  100% {
    box-shadow: inset -5px -4px 5px 0px rgba(255, 255, 224, 0.8); } }

@keyframes moonshine {
  0% {
    box-shadow: inset -5px -4px 5px 0px rgba(255, 255, 224, 0.8); }
  50% {
    box-shadow: inset -15px -4px 5px 0px rgba(255, 255, 224, 0.8); }
  100% {
    box-shadow: inset -5px -4px 5px 0px rgba(255, 255, 224, 0.8); } }

/* Cloud */
@-webkit-keyframes cloudslide {
  0% {
    -webkit-transform: translateX(-10%); }
  50% {
    -webkit-transform: translateX(10%); }
  100% {
    -webkit-transform: translateX(-10%); } }

@-moz-keyframes cloudslide {
  0% {
    -moz-transform: translateX(-10%) rotate(0.02deg); }
  50% {
    -moz-transform: translateX(10%) rotate(0.02deg); }
  100% {
    -moz-transform: translateX(-10%) rotate(0.02deg); } }

@keyframes cloudslide {
  0% {
    transform: translateX(-10%) rotate(0.02deg); }
  50% {
    transform: translateX(10%) rotate(0.02deg); }
  100% {
    transform: translateX(-10%) rotate(0.02deg); } }

/* Raindrops (background) */
@-webkit-keyframes raindrops {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0.8; }
  80% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0; } }

@-moz-keyframes raindrops {
  0% {
    -moz-transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0.8; }
  80% {
    -moz-transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0; }
  100% {
    -moz-transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0; } }

@keyframes raindrops {
  0% {
    transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0.8; }
  80% {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0; }
  100% {
    -moz-transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0; } }

/* Rain */
@-webkit-keyframes rainfall {
  0% {
    width: 0%;
    right: 40%; }
  50% {
    width: 60%;
    right: 40%; }
  100% {
    width: 0%;
    right: 100%; } }

@-moz-keyframes rainfall {
  0% {
    width: 0%;
    right: 40%; }
  50% {
    width: 60%;
    right: 40%; }
  100% {
    width: 0%;
    right: 100%; } }

@keyframes rainfall {
  0% {
    width: 0%;
    right: 40%; }
  50% {
    width: 60%;
    right: 40%; }
  100% {
    width: 0%;
    right: 100%; } }

/* Drizzle */
@-webkit-keyframes drizzle {
  0% {
    width: 0%;
    right: 40%; }
  50% {
    width: 20%;
    right: 40%; }
  100% {
    width: 0%;
    right: 100%; } }

@-moz-keyframes drizzle {
  0% {
    width: 0%;
    right: 40%; }
  50% {
    width: 20%;
    right: 40%; }
  100% {
    width: 0%;
    right: 100%; } }

@keyframes drizzle {
  0% {
    width: 0%;
    right: 40%; }
  50% {
    width: 20%;
    right: 40%; }
  100% {
    width: 0%;
    right: 100%; } }

/* Snow */
@-webkit-keyframes snow {
  0% {
    top: 0;
    opacity: 0; }
  10% {
    top: 10%;
    opacity: 1; }
  90% {
    top: 90%;
    opacity: 1; }
  100% {
    top: 100%;
    opacity: 0; } }

@-moz-keyframes snow {
  0% {
    top: 0;
    opacity: 0; }
  10% {
    top: 10%;
    opacity: 1; }
  90% {
    top: 90%;
    opacity: 1; }
  100% {
    top: 100%;
    opacity: 0; } }

@keyframes snow {
  0% {
    top: 0;
    opacity: 0; }
  10% {
    top: 10%;
    opacity: 1; }
  90% {
    top: 90%;
    opacity: 1; }
  100% {
    top: 100%;
    opacity: 0; } }

/* Lightning bolt */
@-webkit-keyframes bolt-flash {
  0% {
    opacity: 0; }
  10% {
    opacity: 0; }
  16% {
    opacity: 1; }
  22% {
    opacity: 0; }
  28% {
    opacity: 0; }
  34% {
    opacity: 1; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-moz-keyframes bolt-flash {
  0% {
    opacity: 0; }
  10% {
    opacity: 0; }
  16% {
    opacity: 1; }
  22% {
    opacity: 0; }
  28% {
    opacity: 0; }
  34% {
    opacity: 1; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes bolt-flash {
  0% {
    opacity: 0; }
  10% {
    opacity: 0; }
  16% {
    opacity: 1; }
  22% {
    opacity: 0; }
  28% {
    opacity: 0; }
  34% {
    opacity: 1; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0; } }

/* Lightning sheet */
@-webkit-keyframes lightning-flash {
  0% {
    opacity: 0; }
  14% {
    opacity: 0; }
  16% {
    opacity: 0.5; }
  18% {
    opacity: 0; }
  20% {
    opacity: 0; }
  22% {
    opacity: 0.5; }
  24% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-moz-keyframes lightning-flash {
  0% {
    opacity: 0; }
  14% {
    opacity: 0; }
  16% {
    opacity: 0.5; }
  18% {
    opacity: 0; }
  20% {
    opacity: 0; }
  22% {
    opacity: 0.5; }
  24% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes lightning-flash {
  0% {
    opacity: 0; }
  14% {
    opacity: 0; }
  16% {
    opacity: 0.5; }
  18% {
    opacity: 0; }
  20% {
    opacity: 0; }
  22% {
    opacity: 0.5; }
  24% {
    opacity: 0; }
  100% {
    opacity: 0; } }

.weather-container {
  position: relative;
  overflow: hidden; }

.weather-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.weather-background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #eee;
  opacity: 0;
  -webkit-animation: lightning-flash 4s linear infinite;
  -moz-animation: lightning-flash 4s linear infinite;
  animation: lightning-flash 4s linear infinite;
  display: none; }

.weather-icon {
  position: relative; }

/* Sun */
.sun {
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: #ffff00;
  -webkit-animation: spin 90s linear infinite;
  -moz-animation: spin 90s linear infinite;
  animation: spin 90s linear infinite;
  display: none; }

.radiate {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffcc;
  opacity: 0.4;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px), "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='4'), alpha(opacity=40);
  -webkit-animation: radiate 6s linear infinite;
  -moz-animation: radiate 6s linear infinite;
  animation: radiate 6s linear infinite; }

.radiate:nth-of-type(2) {
  -webkit-animation: radiate 6s 3s linear infinite;
  -moz-animation: radiate 6s 3s linear infinite;
  animation: radiate 6s 3s linear infinite; }

.sun .spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(0deg);
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  width: 200%;
  height: 5.75%; }

.sun .spoke:nth-of-type(8n+2) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg); }

.sun .spoke:nth-of-type(8n+3) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg); }

.sun .spoke:nth-of-type(8n+4) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg); }

.sun .spoke:nth-of-type(8n+5) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  transform: translateX(-50%) translateY(-50%) rotate(180deg); }

.sun .spoke:nth-of-type(8n+6) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(225deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(225deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(225deg);
  transform: translateX(-50%) translateY(-50%) rotate(225deg); }

.sun .spoke:nth-of-type(8n+7) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(270deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(270deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(270deg);
  transform: translateX(-50%) translateY(-50%) rotate(270deg); }

.sun .spoke:nth-of-type(8n+8) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(315deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(315deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(315deg);
  transform: translateX(-50%) translateY(-50%) rotate(315deg); }

.ray {
  position: absolute;
  left: 80%;
  top: 0;
  width: 10%;
  height: 100%;
  border-radius: 999px;
  background: #ffff00;
  -webkit-animation: shine 3s ease infinite;
  -moz-animation: shine 3s ease infinite;
  animation: shine 3s ease infinite; }

.spoke:nth-of-type(3n+1) .ray {
  -webkit-animation: shine 3s ease infinite;
  -moz-animation: shine 3s ease infinite;
  animation: shine 3s ease infinite; }

.spoke:nth-of-type(3n+2) .ray {
  -webkit-animation: shine 3s -1s ease infinite;
  -moz-animation: shine 3s -1s ease infinite;
  animation: shine 3s -1s ease infinite; }

.spoke:nth-of-type(3n+3) .ray {
  -webkit-animation: shine 3s -2s ease infinite;
  -moz-animation: shine 3s -2s ease infinite;
  animation: shine 3s -2s ease infinite; }

/* Moon */
.moon {
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: #111d4e;
  box-shadow: inset -10px -4px 5px 0px rgba(255, 255, 224, 0.8);
  -webkit-animation: moonshine 15s -2.5s ease infinite;
  -moz-animation: moonshine 15s -2.5s ease infinite;
  animation: moonshine 15s -2.5s ease infinite;
  display: none; }

.moon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 10px 4px 20px 0px rgba(255, 255, 224, 0.5), inset -12px -4px 15px 0px rgba(255, 255, 224, 0.3); }

/* Cloud */
.cloud {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  display: none; }

.cloud .piece {
  position: absolute;
  background: #eee;
  border-radius: 50%; }

.cloud .piece:nth-of-type(1) {
  width: 52%;
  height: 25%;
  top: 40%;
  left: 26%;
  border-radius: 0%; }

.cloud .piece:nth-of-type(2) {
  width: 45%;
  height: 45%;
  top: 20%;
  left: 5%; }

.cloud .piece:nth-of-type(3) {
  width: 35%;
  height: 35%;
  top: 30%;
  left: 60%; }

.cloud .piece:nth-of-type(4) {
  width: 50%;
  height: 50%;
  top: 0%;
  left: 22%; }

.cloud .piece:nth-of-type(5) {
  width: 30%;
  height: 30%;
  top: 15%;
  left: 55%; }

/* Scattered clouds */
.scattered-clouds {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%; }

.scattered-clouds .cloud {
  position: absolute;
  width: 50%;
  height: 50%;
  display: none; }

.scattered-clouds > .cloud:nth-of-type(1) {
  left: 0%;
  top: 30%;
  -webkit-animation: cloudslide 10s ease infinite;
  -moz-animation: cloudslide 10s ease infinite;
  animation: cloudslide 10s ease infinite; }

.scattered-clouds > .cloud:nth-of-type(2) {
  left: 40%;
  top: 5%;
  -webkit-animation: cloudslide 10s -3s ease infinite;
  -moz-animation: cloudslide 10s -3s ease infinite;
  animation: cloudslide 10s -3s ease infinite; }

.scattered-clouds > .cloud:nth-of-type(3) {
  left: 50%;
  top: 50%;
  -webkit-animation: cloudslide 10s -7s ease infinite;
  -moz-animation: cloudslide 10s -7s ease infinite;
  animation: cloudslide 10s -7s ease infinite; }

/* Background drops */
.bgdrops {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 25%;
  left: 25%;
  border-radius: 50%;
  border: 2px solid #eeeeee;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: none;
  -webkit-animation: raindrops 2s ease-out infinite;
  -moz-animation: raindrops 2s ease-out infinite;
  animation: raindrops 2s ease-out infinite; }

.bgdrops:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  border: 2px solid rgba(238, 238, 238, 0.5); }

.bgdrops:nth-of-type(10n+2) {
  top: 50%;
  left: 85%;
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  animation-delay: 1.3s; }

.bgdrops:nth-of-type(10n+3) {
  top: 80%;
  left: 60%;
  -webkit-animation-delay: -1.3s;
  -moz-animation-delay: -1.3s;
  animation-delay: -1.3s; }

.bgdrops:nth-of-type(10n+4) {
  top: 10%;
  left: 60%;
  -webkit-animation-delay: -0.7s;
  -moz-animation-delay: -0.7s;
  animation-delay: -0.7s; }

.bgdrops:nth-of-type(10n+5) {
  top: 65%;
  left: 10%;
  -webkit-animation-delay: -1.2s;
  -moz-animation-delay: -1.2s;
  animation-delay: -1.2s; }

.bgdrops:nth-of-type(10n+6) {
  top: 40%;
  left: 55%;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.bgdrops:nth-of-type(10n+7) {
  top: 75%;
  left: 35%;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.bgdrops:nth-of-type(10n+8) {
  top: 55%;
  left: 70%;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  animation-delay: 1.1s; }

.bgdrops:nth-of-type(10n+9) {
  top: 15%;
  left: 45%;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s; }

.bgdrops:nth-of-type(10n+10) {
  top: 30%;
  left: 5%;
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s; }

/* Rain */
.rainpath {
  position: absolute;
  top: 75%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 60%;
  height: 3%; }

.rainpath:nth-of-type(3n+1) {
  left: -5%; }

.rainpath:nth-of-type(3n+2) {
  left: 15%; }

.rainpath:nth-of-type(3n+3) {
  left: 35%; }

.rain {
  position: absolute;
  top: 0;
  right: 40%;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: #b3e0ff;
  display: none; }

.rainpath:nth-of-type(3n+1) .rain {
  -webkit-animation: rainfall 1s linear infinite;
  -moz-animation: rainfall 1s linear infinite;
  animation: rainfall 1s linear infinite; }

.rainpath:nth-of-type(3n+2) .rain {
  -webkit-animation: rainfall 1s 0.33s linear infinite;
  -moz-animation: rainfall 1s 0.33s linear infinite;
  animation: rainfall 1s 0.33s linear infinite; }

.rainpath:nth-of-type(3n+3) .rain {
  -webkit-animation: rainfall 1s 0.66s linear infinite;
  -moz-animation: rainfall 1s 0.66s linear infinite;
  animation: rainfall 1s 0.66s linear infinite; }

/* Snow */
.snowpath {
  position: absolute;
  top: 70%;
  left: 0;
  height: 30%;
  width: 3%; }

.snowpath:nth-of-type(7n+1) {
  left: 20%; }

.snowpath:nth-of-type(7n+2) {
  left: 30%; }

.snowpath:nth-of-type(7n+3) {
  left: 40%; }

.snowpath:nth-of-type(7n+4) {
  left: 50%; }

.snowpath:nth-of-type(7n+5) {
  left: 60%; }

.snowpath:nth-of-type(7n+6) {
  left: 70%; }

.snowpath:nth-of-type(7n+7) {
  left: 80%; }

.snowflake {
  position: absolute;
  top: 0;
  left: -20%;
  height: 14%;
  width: 140%;
  border-radius: 999px;
  background: #eee;
  opacity: 0;
  display: none; }

.snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(1) {
  -webkit-animation: snow 3s linear infinite;
  -moz-animation: snow 3s linear infinite;
  animation: snow 3s linear infinite; }

.snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(2) {
  -webkit-animation: snow 3s -1.5s linear infinite;
  -moz-animation: snow 3s -1.5s linear infinite;
  animation: snow 3s -1.5s linear infinite; }

.snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(1) {
  -webkit-animation: snow 3s -1s linear infinite;
  -moz-animation: snow 3s -1s linear infinite;
  animation: snow 3s -1s linear infinite; }

.snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(2) {
  -webkit-animation: snow 3s -2.5s linear infinite;
  -moz-animation: snow 3s -2.5s linear infinite;
  animation: snow 3s -2.5s linear infinite; }

.snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(1) {
  -webkit-animation: snow 3s -2s linear infinite;
  -moz-animation: snow 3s -2s linear infinite;
  animation: snow 3s -2s linear infinite; }

.snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(2) {
  -webkit-animation: snow 3s -3.5s linear infinite;
  -moz-animation: snow 3s -3.5s linear infinite;
  animation: snow 3s -3.5s linear infinite; }

/* Lightning blot */
.bolt {
  position: absolute;
  top: 75%;
  left: 20%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 60%;
  height: 3%; }

.bolt .piece {
  position: absolute;
  top: 0;
  right: auto;
  height: 100%;
  border-radius: 999px;
  background: #ffff66;
  opacity: 0;
  -webkit-animation: bolt-flash 2s linear infinite;
  -moz-animation: bolt-flash 2s linear infinite;
  animation: bolt-flash 2s linear infinite;
  display: none; }

.bolt .piece:nth-of-type(1) {
  top: -100%;
  left: 23%;
  width: 37%; }

.bolt .piece:nth-of-type(2) {
  top: 100%;
  left: 0%;
  width: 37%; }

.bolt .piece:nth-of-type(3) {
  left: 21%;
  width: 18%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

/*

List of container class names from Met Eireann (76 total):

.clear_weather_sun-night
.clear_weather_sun
.clouds_sun-night
.clouds-night
.cloudy-night
.cloudy
.drizzle-night
.drizzle
.fair-night
.fine-night
.fog-night
.fog
.greyloud-night
.greycloud
.hail_showers-night
.hail_showers
.hail_thunderstorm-night
.hail-night
.haze-night
.haze
.heavy_hail_showers-night
.heavy_rain_showers-night
.heavy_rain_showers
.heavy_rain_night
.heavy_rain
.heavy_sleet_showers-night
.heavy_sleet-night
.heavy_snow_showers-night
.heavy_snow_showers
.heavy_snow-night
.heavy_snow
.heavy_thunderstorm-night
.light_rain_shower-night
.light_rain_showers-night
.light_rain_showers
.light_rain-night
.light_rain
.light_sleet-night
.light_snow_shower-night
.light_snow_shower
.light_snow_showers-night
.light_snow-night
.light_snow
.light_sleet_showers-night
.lightning-night
.medium_rain_showers-night
.medium_rain_showers
.medium_rain-night
.medium_rain
.medium_sleet_shower-night
.medium_sleet_shower
.medium_sleet_showers-night
.medium_sleet-night
.medium_sleet
.medium_snow_shower-night
.medium_snow_showers-night
.medium_snow-night
.medium_snow
.mist-night
.mist
.no_data-night
.overcast-night
.overcast
.partly_cloudy-night
.rain_showers-night
.rain_showers
.scattered_clouds-night
.scattered_clouds
.sleet_thunderstorm-night
.sun_with_dark_cloud-night
.sun_with_grey_cloud-night
.sun_with_grey_cloud
.sun_with_light_cloud-night
.sun_with_light_cloud
.thunderstorm-night
.thunderstorm


*/
/*-------------------------------------------------------*/
/* Sky day clear */
.weather-container.clear_weather_sun .weather-background,
.weather-container.partial-cloud .weather-background,
.weather-container.cloudy .weather-background,
.weather-container.drizzle .weather-background,
.weather-container.fair .weather-background,
.weather-container.hail_showers .weather-background,
.weather-container.haze .weather-background,
.weather-container.scattered_clouds .weather-background,
.weather-container.sun_with_light_cloud .weather-background {
  background: #2bade2;
  background: -moz-linear-gradient(top, #2bade2 0%, #8fc9e0 100%);
  background: -webkit-linear-gradient(top, #2bade2 0%, #8fc9e0 100%);
  background: linear-gradient(to bottom, #2bade2 0%, #8fc9e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2bade2', endColorstr='#8fc9e0',GradientType=0 ); }

/* Sky day light precipitation */
.weather-container.fog .weather-background,
.weather-container.greycloud .weather-background,
.weather-container.light_rain_showers .weather-background,
.weather-container.light_rain .weather-background,
.weather-container.light_snow_shower .weather-background,
.weather-container.light_snow .weather-background,
.weather-container.medium_rain_showers .weather-background,
.weather-container.medium_rain .weather-background,
.weather-container.medium_sleet_shower .weather-background,
.weather-container.medium_sleet .weather-background,
.weather-container.medium_snow .weather-background,
.weather-container.mist .weather-background,
.weather-container.overcast .weather-background,
.weather-container.rain_showers .weather-background,
.weather-container.sun_with_grey_cloud .weather-background {
  background: #c2d0d6; }

/* Sky day heavy precipitation */
.weather-container.heavy_rain_showers .weather-background,
.weather-container.heavy_rain .weather-background,
.weather-container.heavy_snow_showers .weather-background,
.weather-container.heavy_snow .weather-background,
.weather-container.thunderstorm .weather-background {
  background: #7495a3; }

/* Sky night clear */
.weather-container.clear_weather_sun-night .weather-background,
.weather-container.clouds_sun-night .weather-background,
.weather-container.clouds-night .weather-background,
.weather-container.cloudy-night .weather-background,
.weather-container.drizzle-night .weather-background,
.weather-container.fair-night .weather-background,
.weather-container.fine-night .weather-background,
.weather-container.hail_showers-night .weather-background,
.weather-container.haze-night .weather-background,
.weather-container.light-sleet-showers-night .weather-background,
.weather-container.no_data-night .weather-background,
.weather-container.partly_cloudy-night .weather-background,
.weather-container.scattered_clouds-night .weather-background,
.weather-container.sun_with_light_cloud-night .weather-background {
  background: #091130;
  background: -moz-linear-gradient(top, #091130 0%, #1a2c72 100%);
  background: -webkit-linear-gradient(top, #091130 0%, #1a2c72 100%);
  background: linear-gradient(to bottom, #091130 0%, #1a2c72 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#091130', endColorstr='#1a2c72',GradientType=0 ); }

/* Sky night precipitation */
.weather-container.fog-night .weather-background,
.weather-container.greycloud-night .weather-background,
.weather-container.hail_thunderstorm-night .weather-background,
.weather-container.hail-night .weather-background,
.weather-container.heavy_hail_showers-night .weather-background,
.weather-container.heavy_rain_showers-night .weather-background,
.weather-container.heavy_rain-night .weather-background,
.weather-container.heavy_sleet_showers-night .weather-background,
.weather-container.heavy_sleet-night .weather-background,
.weather-container.heavy_snow_showers-night .weather-background,
.weather-container.heavy_snow-night .weather-background,
.weather-container.heavy_thunderstorm-night .weather-background,
.weather-container.light_rain_showers-night .weather-background,
.weather-container.light_rain_shower-night .weather-background,
.weather-container.light_rain-night .weather-background,
.weather-container.light_sleet-night .weather-background,
.weather-container.light_snow_shower-night .weather-background,
.weather-container.light_snow_showers-night .weather-background,
.weather-container.light_snow-night .weather-background,
.weather-container.lightning-night .weather-background,
.weather-container.medium_rain_showers-night .weather-background,
.weather-container.medium_rain-night .weather-background,
.weather-container.medium_sleet_shower-night .weather-background,
.weather-container.medium_sleet_showers-night .weather-background,
.weather-container.medium_sleet-night .weather-background,
.weather-container.medium_snow_shower-night .weather-background,
.weather-container.medium_snow_showers-night .weather-background,
.weather-container.medium_snow-night .weather-background,
.weather-container.mist-night .weather-background,
.weather-container.overcast-night .weather-background,
.weather-container.rain_showers-night .weather-background,
.weather-container.sleet_thunderstorm-night .weather-background,
.weather-container.sun_with_dark_cloud-night .weather-background,
.weather-container.sun_with_grey_cloud-night .weather-background,
.weather-container.thunderstorm-night .weather-background {
  background: #2a373c; }

/* Sun front */
.weather-container.clear_weather_sun .sun {
  display: block; }

/* Sun behind */
.weather-container.partial-cloud .sun,
.weather-container.fair .sun,
.weather-container.scattered-clouds .sun,
.weather-container.sun_with_grey_cloud .sun,
.weather-container.sun_with_light_cloud .sun {
  display: block;
  left: 10%;
  top: 15%;
  width: 60%;
  height: 60%; }

/* Sun far */
.weather-container.hail_showers .sun,
.weather-container.heavy_rain_showers .sun,
.weather-container.heavy_snow_showers .sun,
.weather-container.light_rain_showers .sun,
.weather-container.light_snow_shower .sun,
.weather-container.medium_rain_showers .sun,
.weather-container.medium_sleet_shower .sun,
.weather-container.rain_showers .sun,
.weather-container.scattered_clouds .sun {
  display: block;
  left: 0%;
  top: 0%;
  width: 40%;
  height: 40%; }

/* Moon front */
.weather-container.clear_weather_sun-night .moon {
  display: block; }

/* Moon behind */
.weather-container.clouds_sun-night .moon,
.weather-container.partly_cloudy-night .moon,
.weather-container.sun_with_dark_cloud-night .moon,
.weather-container.sun_with_grey_cloud-night .moon,
.weather-container.sun_with_light_cloud-night .moon {
  display: block;
  left: 30%;
  top: 15%;
  width: 60%;
  height: 60%; }

/* Moon far */
.weather-container.fair-night .moon,
.weather-container.fine-night .moon,
.weather-container.hail_showers-night .moon,
.weather-container.rain-showers-night .moon,
.weather-container.heavy_hail_showers-night .moon,
.weather-container.heavy_rain_showers-night .moon,
.weather-container.heavy_sleet_showers-night .moon,
.weather-container.heavy_snow_showers-night .moon,
.weather-container.light_rain_showers-night .moon,
.weather-container.light_rain_shower-night .moon,
.weather-container.light_snow_shower-night .moon,
.weather-container.light_snow_showers-night .moon,
.weather-container.light-sleet-showers-night .moon,
.weather-container.medium_rain_showers-night .moon,
.weather-container.medium_sleet_shower-night .moon,
.weather-container.medium_sleet_showers-night .moon,
.weather-container.medium_snow_shower-night .moon,
.weather-container.medium_snow_showers-night .moon,
.weather-container.rain_showers-night .moon,
.weather-container.scattered_clouds-night .moon {
  display: block;
  left: 60%;
  top: 0%;
  width: 40%;
  height: 40%;
  box-shadow: inset -7px -4px 2px 0px rgba(255, 255, 224, 0.8);
  -webkit-animation: none;
  -moz-animation: none;
  animation: none; }

/* Moon far precipitation */
.weather-container.heavy_hail_showers-night .moon,
.weather-container.heavy_rain_showers-night .moon,
.weather-container.heavy_sleet_showers-night .moon,
.weather-container.heavy_snow_showers-night .moon,
.weather-container.light_rain_showers-night .moon,
.weather-container.light_rain_shower-night .moon,
.weather-container.light_snow_shower-night .moon,
.weather-container.light_snow_showers-night .moon,
.weather-container.medium_rain_showers-night .moon,
.weather-container.medium_sleet_shower-night .moon,
.weather-container.medium_sleet_showers-night .moon,
.weather-container.medium_snow_shower-night .moon,
.weather-container.medium_snow_showers-night .moon,
.weather-container.rain_showers-night .moon,
.weather-container.sun_with_dark_cloud-night .moon,
.weather-container.sun_with_grey_cloud-night .moon {
  background: #2a373c; }

/* Cloud top move */
.weather-container.cloudy .cloud,
.weather-container.clouds-night .cloud,
.weather-container.cloudy-night .cloud,
.weather-container.overcast .cloud,
.weather-container.overcast-night .cloud,
.weather-container.greycloud .cloud,
.weather-container.greycloud-night .cloud {
  display: block;
  -webkit-animation: cloudslide 10s ease infinite;
  -moz-animation: cloudslide 10s ease infinite;
  animation: cloudslide 10s ease infinite; }

.weather-container.cloudy .scattered-clouds .cloud,
.weather-container.clouds-night .scattered-clouds .cloud,
.weather-container.cloudy-night .scattered-clouds .cloud,
.weather-container.overcast .scattered-clouds .cloud,
.weather-container.overcast-night .scattered-clouds .cloud,
.weather-container.greycloud .scattered-clouds .cloud,
.weather-container.greycloud-night .scattered-clouds .cloud {
  display: none; }

/* Cloud top still */
.weather-container.drizzle .cloud,
.weather-container.drizzle-night .cloud,
.weather-container.hail_showers-night .cloud,
.weather-container.hail_showers .cloud,
.weather-container.hail_thunderstorm-night .cloud,
.weather-container.hail-night .cloud,
.weather-container.heavy_hail_showers-night .cloud,
.weather-container.heavy_rain_showers-night .cloud,
.weather-container.heavy_rain_showers .cloud,
.weather-container.heavy_rain-night .cloud,
.weather-container.heavy_rain .cloud,
.weather-container.heavy_sleet_showers-night .cloud,
.weather-container.heavy_sleet-night .cloud,
.weather-container.heavy_snow_showers-night .cloud,
.weather-container.heavy_snow_showers .cloud,
.weather-container.heavy_snow-night .cloud,
.weather-container.heavy_snow .cloud,
.weather-container.heavy_thunderstorm-night .cloud,
.weather-container.light_rain_showers-night .cloud,
.weather-container.light_rain_shower-night .cloud,
.weather-container.light_rain_showers .cloud,
.weather-container.light_rain-night .cloud,
.weather-container.light_rain .cloud,
.weather-container.light_sleet-night .cloud,
.weather-container.light_snow_shower-night .cloud,
.weather-container.light_snow_showers-night .cloud,
.weather-container.light_snow_shower .cloud,
.weather-container.light_snow-night .cloud,
.weather-container.light_snow .cloud,
.weather-container.light-sleet-showers-night .cloud,
.weather-container.lightning-night .cloud,
.weather-container.medium_rain_showers-night .cloud,
.weather-container.medium_rain_showers .cloud,
.weather-container.medium_rain-night .cloud,
.weather-container.medium_rain .cloud,
.weather-container.medium_sleet_shower-night .cloud,
.weather-container.medium_sleet_shower .cloud,
.weather-container.medium_sleet_showers-night .cloud,
.weather-container.medium_sleet-night .cloud,
.weather-container.medium_sleet .cloud,
.weather-container.medium_snow_shower-night .cloud,
.weather-container.medium_snow_showers-night .cloud,
.weather-container.medium_snow-night .cloud,
.weather-container.medium_snow .cloud,
.weather-container.rain_showers .cloud,
.weather-container.rain_showers-night .cloud,
.weather-container.sleet_thunderstorm-night .cloud,
.weather-container.thunderstorm .cloud,
.weather-container.thunderstorm-night .cloud {
  display: block; }

.weather-container.drizzle .scattered-clouds .cloud,
.weather-container.drizzle-night .scattered-clouds .cloud,
.weather-container.hail_showers-night .scattered-clouds .cloud,
.weather-container.hail_showers .scattered-clouds .cloud,
.weather-container.hail_thunderstorm-night .scattered-clouds .cloud,
.weather-container.hail-night .scattered-clouds .cloud,
.weather-container.heavy_hail_showers-night .scattered-clouds .cloud,
.weather-container.heavy_rain_showers-night .scattered-clouds .cloud,
.weather-container.heavy_rain_showers .scattered-clouds .cloud,
.weather-container.heavy_rain-night .scattered-clouds .cloud,
.weather-container.heavy_rain .scattered-clouds .cloud,
.weather-container.heavy_sleet_showers-night .scattered-clouds .cloud,
.weather-container.heavy_sleet-night .scattered-clouds .cloud,
.weather-container.heavy_snow_showers-night .scattered-clouds .cloud,
.weather-container.heavy_snow_showers .scattered-clouds .cloud,
.weather-container.heavy_snow-night .scattered-clouds .cloud,
.weather-container.heavy_snow .scattered-clouds .cloud,
.weather-container.heavy_thunderstorm-night .scattered-clouds .cloud,
.weather-container.light_rain_showers-night .scattered-clouds .cloud,
.weather-container.light_rain_shower-night .scattered-clouds .cloud,
.weather-container.light_rain_showers .scattered-clouds .cloud,
.weather-container.light_rain-night .scattered-clouds .cloud,
.weather-container.light_rain .scattered-clouds .cloud,
.weather-container.light_sleet-night .scattered-clouds .cloud,
.weather-container.light_snow_shower-night .scattered-clouds .cloud,
.weather-container.light_snow_showers-night .scattered-clouds .cloud,
.weather-container.light_snow_shower-night .scattered-clouds .cloud,
.weather-container.light_snow_shower .scattered-clouds .cloud,
.weather-container.light_snow-night .scattered-clouds .cloud,
.weather-container.light_snow .scattered-clouds .cloud,
.weather-container.light-sleet-showers-night .scattered-clouds .cloud,
.weather-container.lightning-night .scattered-clouds .cloud,
.weather-container.medium_rain_showers-night .scattered-clouds .cloud,
.weather-container.medium_rain_showers .scattered-clouds .cloud,
.weather-container.medium_rain-night .scattered-clouds .cloud,
.weather-container.medium_rain .scattered-clouds .cloud,
.weather-container.medium_sleet_shower-night .scattered-clouds .cloud,
.weather-container.medium_sleet_shower .scattered-clouds .cloud,
.weather-container.medium_sleet_showers-night .scattered-clouds .cloud,
.weather-container.medium_sleet-night .scattered-clouds .cloud,
.weather-container.medium_sleet .scattered-clouds .cloud,
.weather-container.medium_snow_shower-night .scattered-clouds .cloud,
.weather-container.medium_snow_showers-night .scattered-clouds .cloud,
.weather-container.medium_snow-night .scattered-clouds .cloud,
.weather-container.medium_snow .scattered-clouds .cloud,
.weather-container.rain_showers .scattered-clouds .cloud,
.weather-container.rain_showers-night .scattered-clouds .cloud,
.weather-container.sleet_thunderstorm-night .scattered-clouds .cloud,
.weather-container.thunderstorm .scattered-clouds .cloud,
.weather-container.thunderstorm-night .scattered-clouds .cloud {
  display: none; }

/* Cloud bottom */
.weather-container.partial-cloud .cloud,
.weather-container.clouds_sun-night .cloud,
.weather-container.partly_cloudy-night .cloud,
.weather-container.sun_with_dark_cloud-night .cloud,
.weather-container.sun_with_grey_cloud-night .cloud,
.weather-container.sun_with_grey_cloud .cloud,
.weather-container.sun_with_light_cloud .cloud,
.weather-container.sun_with_light_cloud-night .cloud {
  display: block;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-animation: cloudslide 10s ease infinite;
  -moz-animation: cloudslide 10s ease infinite;
  animation: cloudslide 10s ease infinite; }

.weather-container.partial-cloud .scattered-clouds .cloud,
.weather-container.clouds_sun-night .scattered-clouds .cloud,
.weather-container.partly_cloudy-night .scattered-clouds .cloud,
.weather-container.sun_with_dark_cloud-night .scattered-clouds .cloud,
.weather-container.sun_with_grey_cloud-night .scattered-clouds .cloud,
.weather-container.sun_with_grey_cloud .scattered-clouds .cloud,
.weather-container.sun_with_light_cloud .scattered-clouds .cloud,
.weather-container.sun_with_light_cloud-night .scattered-clouds .cloud {
  display: none; }

.weather-container.partial-cloud .cloud .piece:nth-of-type(1),
.weather-container.clouds_sun-night .cloud .piece:nth-of-type(1),
.weather-container.fair .cloud .piece:nth-of-type(1),
.weather-container.partly_cloudy-night .cloud .piece:nth-of-type(1),
.weather-container.sun_with_dark_cloud-night .cloud .piece:nth-of-type(1),
.weather-container.sun_with_grey_cloud-night .cloud .piece:nth-of-type(1),
.weather-container.sun_with_grey_cloud .cloud .piece:nth-of-type(1),
.weather-container.sun_with_light_cloud .cloud .piece:nth-of-type(1),
.weather-container.sun_with_light_cloud-night .cloud .piece:nth-of-type(1) {
  top: 75%; }

.weather-container.partial-cloud .cloud .piece:nth-of-type(2),
.weather-container.clouds_sun-night .cloud .piece:nth-of-type(2),
.weather-container.fair .cloud .piece:nth-of-type(2),
.weather-container.partly_cloudy-night .cloud .piece:nth-of-type(2),
.weather-container.sun_with_dark_cloud-night .cloud .piece:nth-of-type(2),
.weather-container.sun_with_grey_cloud-night .cloud .piece:nth-of-type(2),
.weather-container.sun_with_grey_cloud .cloud .piece:nth-of-type(2),
.weather-container.sun_with_light_cloud .cloud .piece:nth-of-type(2),
.weather-container.sun_with_light_cloud-night .cloud .piece:nth-of-type(2) {
  top: 55%; }

.weather-container.partial-cloud .cloud .piece:nth-of-type(3),
.weather-container.clouds_sun-night .cloud .piece:nth-of-type(3),
.weather-container.fair .cloud .piece:nth-of-type(3),
.weather-container.partly_cloudy-night .cloud .piece:nth-of-type(3),
.weather-container.sun_with_dark_cloud-night .cloud .piece:nth-of-type(3),
.weather-container.sun_with_grey_cloud-night .cloud .piece:nth-of-type(3),
.weather-container.sun_with_grey_cloud .cloud .piece:nth-of-type(3),
.weather-container.sun_with_light_cloud .cloud .piece:nth-of-type(3),
.weather-container.sun_with_light_cloud-night .cloud .piece:nth-of-type(3) {
  top: 65%; }

.weather-container.partial-cloud .cloud .piece:nth-of-type(4),
.weather-container.clouds_sun-night .cloud .piece:nth-of-type(4),
.weather-container.fair .cloud .piece:nth-of-type(4),
.weather-container.partly_cloudy-night .cloud .piece:nth-of-type(4),
.weather-container.sun_with_dark_cloud-night .cloud .piece:nth-of-type(4),
.weather-container.sun_with_grey_cloud-night .cloud .piece:nth-of-type(4),
.weather-container.sun_with_grey_cloud .cloud .piece:nth-of-type(4),
.weather-container.sun_with_light_cloud .cloud .piece:nth-of-type(4),
.weather-container.sun_with_light_cloud-night .cloud .piece:nth-of-type(4) {
  top: 35%; }

.weather-container.partial-cloud .cloud .piece:nth-of-type(5),
.weather-container.clouds_sun-night .cloud .piece:nth-of-type(5),
.weather-container.fair .cloud .piece:nth-of-type(5),
.weather-container.partly_cloudy-night .cloud .piece:nth-of-type(5),
.weather-container.sun_with_dark_cloud-night .cloud .piece:nth-of-type(5),
.weather-container.sun_with_grey_cloud-night .cloud .piece:nth-of-type(5),
.weather-container.sun_with_grey_cloud .cloud .piece:nth-of-type(5),
.weather-container.sun_with_light_cloud .cloud .piece:nth-of-type(5),
.weather-container.sun_with_light_cloud-night .cloud .piece:nth-of-type(5) {
  top: 50%; }

/* Scattered cloud */
.weather-container.fair .scattered-clouds .cloud,
.weather-container.fair-night .scattered-clouds .cloud,
.weather-container.fine-night .scattered-clouds .cloud,
.weather-container.scattered_clouds .scattered-clouds .cloud,
.weather-container.scattered_clouds-night .scattered-clouds .cloud {
  display: block; }

/* Grey cloud light */
.weather-container.greycloud-night .cloud .piece,
.weather-container.hail_showers-night .cloud .piece,
.weather-container.hail_showers .cloud .piece
.weather-container.heavy_rain_showers .cloud .piece,
.weather-container.heavy_rain .cloud .piece,
.weather-container.heavy_snow_showers .cloud .piece,
.weather-container.heavy_snow_showers-night .cloud .piece,
.weather-container.heavy_snow .cloud .piece,
.weather-container.light_rain_showers-night .cloud .piece,
.weather-container.light_rain_shower-night .cloud .piece,
.weather-container.light_rain-night .cloud .piece,
.weather-container.light_sleet-night .cloud .piece,
.weather-container.light_snow_shower-night .cloud .piece,
.weather-container.light_snow_showers-night .cloud .piece,
.weather-container.light_snow-night .cloud .piece,
.weather-container.light-sleet-showers-night .cloud .piece,
.weather-container.lightning-night .cloud .piece,
.weather-container.medium_rain_showers-night .cloud .piece,
.weather-container.medium_rain-night .cloud .piece,
.weather-container.medium_sleet_shower-night .cloud .piece,
.weather-container.medium_sleet_showers-night .cloud .piece,
.weather-container.medium_sleet-night .cloud .piece,
.weather-container.medium_snow_shower-night .cloud .piece,
.weather-container.medium_snow_showers-night .cloud .piece,
.weather-container.medium_snow-night .cloud .piece,
.weather-container.overcast-night .cloud .piece,
.weather-container.rain_showers-night .cloud .piece,
.weather-container.sun_with_grey_cloud-night .cloud .piece {
  background: #ccc; }

/* Grey cloud dark */
.weather-container.greycloud .cloud .piece,
.weather-container.hail_thunderstorm-night .cloud .piece,
.weather-container.hail-night .cloud .piece,
.weather-container.heavy_hail_showers-night .cloud .piece,
.weather-container.heavy_rain_showers-night .cloud .piece,
.weather-container.heavy_rain-night .cloud .piece,
.weather-container.heavy_sleet_showers-night .cloud .piece,
.weather-container.heavy_sleet-night .cloud .piece,
.weather-container.heavy_snow_showers-night .cloud .piece,
.weather-container.heavy_snow-night .cloud .piece,
.weather-container.heavy_thunderstorm-night .cloud .piece,
.weather-container.light_rain_showers .cloud .piece,
.weather-container.medium_rain_showers .cloud .piece,
.weather-container.medium_rain .cloud .piece,
.weather-container.medium_sleet .cloud .piece,
.weather-container.medium_snow .cloud .piece,
.weather-container.rain_showers .cloud .piece,
.weather-container.sleet_thunderstorm-night .cloud .piece,
.weather-container.sun_with_dark_cloud-night .cloud .piece,
.weather-container.sun_with_grey_cloud .cloud .piece,
.weather-container.thunderstorm .cloud .piece,
.weather-container.thunderstorm-night .cloud .piece {
  background: #aaa; }

/* Rain light */
.weather-container.drizzle .rain,
.weather-container.drizzle-night .rain,
.weather-container.hail_showers-night .rain,
.weather-container.hail_showers .rain,
.weather-container.hail_thunderstorm-night .rain,
.weather-container.hail-night .rain,
.weather-container.light_rain_showers-night .rain,
.weather-container.light_rain_shower-night .rain,
.weather-container.light_rain_showers .rain,
.weather-container.light_rain-night .rain,
.weather-container.light_rain .rain,
.weather-container.light_sleet-night .rain,
.weather-container.light-sleet-showers-night .rain {
  display: block; }

.weather-container.drizzle .rainpath:nth-of-type(3n+1) .rain,
.weather-container.drizzle-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.hail_showers-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.hail_showers .rainpath:nth-of-type(3n+1) .rain,
.weather-container.hail_thunderstorm-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.hail-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light_rain_showers-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light_rain_shower-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light_rain_showers .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light_rain-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light_rain .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light_sleet-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.light-sleet-showers-night .rainpath:nth-of-type(3n+1) .rain {
  -webkit-animation: drizzle 1s linear infinite;
  -moz-animation: drizzle 1s linear infinite;
  animation: drizzle 1s linear infinite; }

.weather-container.drizzle .rainpath:nth-of-type(3n+2) .rain,
.weather-container.drizzle-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.hail_showers-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.hail_showers .rainpath:nth-of-type(3n+2) .rain,
.weather-container.hail_thunderstorm-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.hail-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light_rain_showers-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light_rain_shower-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light_rain_showers .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light_rain-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light_rain .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light_sleet-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.light-sleet-showers-night .rainpath:nth-of-type(3n+2) .rain {
  -webkit-animation: drizzle 1s 0.33s linear infinite;
  -moz-animation: drizzle 1s 0.33s linear infinite;
  animation: drizzle 1s 0.33s linear infinite; }

.weather-container.drizzle .rainpath:nth-of-type(3n+3) .rain,
.weather-container.drizzle-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.hail_showers-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.hail_showers .rainpath:nth-of-type(3n+3) .rain,
.weather-container.hail_thunderstorm-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.hail-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light_rain_showers-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light_rain_shower-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light_rain_showers .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light_rain-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light_rain .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light_sleet-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.light-sleet-showers-night .rainpath:nth-of-type(3n+3) .rain {
  -webkit-animation: drizzle 1s 0.66s linear infinite;
  -moz-animation: drizzle 1s 0.66s linear infinite;
  animation: drizzle 1s 0.66s linear infinite; }

/* Rain medium */
.weather-container.medium_rain_showers-night .rain,
.weather-container.medium_rain_showers .rain,
.weather-container.medium_rain-night .rain,
.weather-container.medium_rain .rain,
.weather-container.medium_sleet_shower-night .rain,
.weather-container.medium_sleet_shower .rain,
.weather-container.medium_sleet_showers-night .rain,
.weather-container.medium_sleet-night .rain,
.weather-container.medium_sleet .rain,
.weather-container.rain_showers .rain,
.weather-container.rain_showers-night .rain,
.weather-container.sleet_thunderstorm-night .rain {
  display: block; }

/* Rain heavy */
.weather-container.heavy_hail_showers-night .rain,
.weather-container.heavy_rain_showers-night .rain,
.weather-container.heavy_rain_showers .rain,
.weather-container.heavy_rain-night .rain,
.weather-container.heavy_rain .rain,
.weather-container.heavy_sleet_showers-night .rain,
.weather-container.heavy_sleet-night .rain,
.weather-container.heavy_thunderstorm-night .rain {
  display: block; }

.weather-container.heavy_hail_showers-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_rain_showers-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_rain_showers .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_rain-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_rain .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_sleet_showers-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_sleet-night .rainpath:nth-of-type(3n+1) .rain,
.weather-container.heavy_thunderstorm-night .rainpath:nth-of-type(3n+1) .rain {
  -webkit-animation: rainfall 0.5s linear infinite;
  -moz-animation: rainfall 0.5s linear infinite;
  animation: rainfall 0.5s linear infinite; }

.weather-container.heavy_hail_showers-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_rain_showers-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_rain_showers .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_rain-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_rain .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_sleet_showers-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_sleet-night .rainpath:nth-of-type(3n+2) .rain,
.weather-container.heavy_thunderstorm-night .rainpath:nth-of-type(3n+2) .rain {
  -webkit-animation: rainfall 0.5s 0.33s linear infinite;
  -moz-animation: rainfall 0.5s 0.33s linear infinite;
  animation: rainfall 0.5s 0.33s linear infinite; }

.weather-container.heavy_hail_showers-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_rain_showers-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_rain_showers .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_rain-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_rain .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_sleet_showers-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_sleet-night .rainpath:nth-of-type(3n+3) .rain,
.weather-container.heavy_thunderstorm-night .rainpath:nth-of-type(3n+3) .rain {
  -webkit-animation: rainfall 0.5s 0.66s linear infinite;
  -moz-animation: rainfall 0.5s 0.66s linear infinite;
  animation: rainfall 0.5s 0.66s linear infinite; }

/* Rain (darker blue) */
.weather-container.heavy_rain_showers-night .rain,
.weather-container.heavy_rain-night .rain,
.weather-container.heavy_thunderstorm-night .rain,
.weather-container.light_rain_showers .rain,
.weather-container.light_rain .rain,
.weather-container.medium_rain_showers .rain,
.weather-container.medium_rain .rain,
.weather-container.rain_showers .rain {
  background: #4db8ff; }

.weather-container.light_rain .bgdrops, .weather-container.light_rain .bgdrops:after,
.weather-container.light_rain_showers .bgdrops, .weather-container.light_rain_showers .bgdrops:after,
.weather-container.medium_rain .bgdrops, .weather-container.medium_rain .bgdrops:after,
.weather-container.medium_rain_showers .bgdrops, .weather-container.medium_rain_showers .bgdrops:after {
  border: 2px solid #4db8ff; }

/* Rain (white) */
.weather-container.hail_showers-night .rain,
.weather-container.hail_showers .rain,
.weather-container.hail_thunderstorm-night .rain,
.weather-container.hail-night .rain,
.weather-container.heavy_hail_showers-night .rain,
.weather-container.heavy_sleet_showers-night .rain,
.weather-container.heavy_sleet-night .rain,
.weather-container.light_sleet-night .rain,
.weather-container.light-sleet-showers-night .rain,
.weather-container.medium_sleet_shower-night .rain,
.weather-container.medium_sleet_shower .rain,
.weather-container.medium_sleet_showers-night .rain,
.weather-container.medium_sleet-night .rain,
.weather-container.medium_sleet .rain,
.weather-container.sleet_thunderstorm-night .rain {
  background: #ffffff; }

/* Raindrops (background) */
.weather-container.drizzle .bgdrops,
.weather-container.drizzle-night .bgdrops,
.weather-container.heavy_rain_showers-night .bgdrops,
.weather-container.heavy_rain_showers .bgdrops,
.weather-container.heavy_rain-night .bgdrops,
.weather-container.heavy_rain .bgdrops,
.weather-container.heavy_thunderstorm-night .bgdrops,
.weather-container.light_rain_showers-night .bgdrops,
.weather-container.light_rain_shower-night .bgdrops,
.weather-container.light_rain_showers .bgdrops,
.weather-container.light_rain-night .bgdrops,
.weather-container.light_rain .bgdrops,
.weather-container.medium_rain_showers-night .bgdrops,
.weather-container.medium_rain_showers .bgdrops,
.weather-container.medium_rain-night .bgdrops,
.weather-container.medium_rain .bgdrops,
.weather-container.rain_showers .bgdrops,
.weather-container.rain_showers-night .bgdrops {
  display: block; }

/* Lightning bolt */
.weather-container.hail_thunderstorm-night .bolt .piece,
.weather-container.heavy_thunderstorm-night .bolt .piece,
.weather-container.lightning-night .bolt .piece,
.weather-container.sleet_thunderstorm-night .bolt .piece,
.weather-container.thunderstorm .bolt .piece,
.weather-container.thunderstorm-night .bolt .piece {
  display: block; }

/* Lightning flash */
.weather-container.hail_thunderstorm-night .weather-background:before,
.weather-container.heavy_thunderstorm-night .weather-background:before,
.weather-container.lightning-night .weather-background:before,
.weather-container.sleet_thunderstorm-night .weather-background:before,
.weather-container.thunderstorm .weather-background:before,
.weather-container.thunderstorm-night .weather-background:before {
  display: block; }

/* Snow */
.weather-container.heavy_snow_showers-night .snowpath .snowflake,
.weather-container.heavy_snow_showers .snowpath .snowflake,
.weather-container.heavy_snow-night .snowpath .snowflake,
.weather-container.heavy_snow .snowpath .snowflake,
.weather-container.light_snow_shower-night .snowpath .snowflake,
.weather-container.light_snow_showers-night .snowpath .snowflake,
.weather-container.light_snow_shower .snowpath .snowflake,
.weather-container.light_snow-night .snowpath .snowflake,
.weather-container.light_snow .snowpath .snowflake,
.weather-container.medium_snow_shower-night .snowpath .snowflake,
.weather-container.medium_snow_showers-night .snowpath .snowflake,
.weather-container.medium_snow-night .snowpath .snowflake,
.weather-container.medium_snow .snowpath .snowflake {
  display: block; }

/* Snow heavy */
.weather-container.heavy_snow_showers-night .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(1),
.weather-container.heavy_snow_showers .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(1),
.weather-container.heavy_snow-night .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(1),
.weather-container.heavy_snow .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(1) {
  -webkit-animation: snow 1s linear infinite;
  -moz-animation: snow 1s linear infinite;
  animation: snow 1s linear infinite;
  width: 150%;
  height: 15%; }

.weather-container.heavy_snow_showers-night .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(2),
.weather-container.heavy_snow_showers .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(2),
.weather-container.heavy_snow-night .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(2),
.weather-container.heavy_snow .snowpath:nth-of-type(3n+1) .snowflake:nth-of-type(2) {
  -webkit-animation: snow 1s -0.5s linear infinite;
  -moz-animation: snow 1s -0.5s linear infinite;
  animation: snow 1s -0.5s linear infinite;
  width: 150%;
  height: 15%; }

.weather-container.heavy_snow_showers-night .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(1),
.weather-container.heavy_snow_showers .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(1),
.weather-container.heavy_snow-night .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(1),
.weather-container.heavy_snow .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(1) {
  -webkit-animation: snow 1s -0.33s linear infinite;
  -moz-animation: snow 1s -0.33s linear infinite;
  animation: snow 1s -0.33s linear infinite;
  width: 150%;
  height: 15%; }

.weather-container.heavy_snow_showers-night .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(2),
.weather-container.heavy_snow_showers .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(2),
.weather-container.heavy_snow-night .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(2),
.weather-container.heavy_snow .snowpath:nth-of-type(3n+2) .snowflake:nth-of-type(2) {
  -webkit-animation: snow 1s -0.83s linear infinite;
  -moz-animation: snow 1s -0.83s linear infinite;
  animation: snow 1s -0.83s linear infinite;
  width: 150%;
  height: 15%; }

.weather-container.heavy_snow_showers-night .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(1),
.weather-container.heavy_snow_showers .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(1),
.weather-container.heavy_snow-night .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(1),
.weather-container.heavy_snow .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(1) {
  -webkit-animation: snow 1s -0.66s linear infinite;
  -moz-animation: snow 1s -0.66s linear infinite;
  animation: snow 1s -0.66s linear infinite;
  width: 150%;
  height: 15%; }

.weather-container.heavy_snow_showers-night .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(2),
.weather-container.heavy_snow_showers .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(2),
.weather-container.heavy_snow-night .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(2),
.weather-container.heavy_snow .snowpath:nth-of-type(3n+3) .snowflake:nth-of-type(2) {
  -webkit-animation: snow 1s -1.16s linear infinite;
  -moz-animation: snow 1s -1.16s linear infinite;
  animation: snow 1s -1.16s linear infinite;
  width: 150%;
  height: 15%; }

/*---------------- end ----------------*/
