/***********************************
* FONTS
***********************************/
/***********************************
* SUPERCATEGORIES COLORS
***********************************/
/***********************************
* OTHER COLORS
***********************************/
/***********************************
* RESPONSIVE MEDIA QUERIES
***********************************/
/***********************************
* SPLASH SCREEN
***********************************/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000000000;
  background-color: #c64c3c;
  opacity: 1;
  -webkit-transition: opacity 3s ease-in-out;
  -moz-transition: opacity 3s ease-in-out;
  -ms-transition: opacity 3s ease-in-out;
  -o-transition: opacity 3s ease-in-out;
  animation: colorchange 60s infinite;
  -webkit-animation: colorchange 60s infinite;
  -moz-animation: colorchange 60s infinite; }
  #splash .splash-center {
    height: 100px;
    width: 100%;
    text-align: center;
    top: calc(50% - 50px);
    position: absolute; }
    #splash .splash-center i {
      font-size: 20px;
      margin: 0;
      margin-right: 10px;
      color: white;
      line-height: 20px; }
    #splash .splash-center p {
      color: white;
      font-size: 30px;
      margin: 0;
      line-height: 30px; }
    #splash .splash-center #loader-circle {
      width: 50px;
      height: 50px;
      margin: 0 auto;
      text-align: center;
      position: relative; }
      #splash .splash-center #loader-circle .outter-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: white;
        display: block;
        opacity: 0.7;
        position: absolute;
        left: 0;
        right: 0;
        animation: firstpulse 3s infinite;
        -webkit-animation: firstpulse 3s infinite;
        -moz-animation: firstpulse 3s infinite; }

@-webkit-keyframes firstpulse {
  0% {
    -webkit-transform: scale(0.4); }
  69% {
    -webkit-transform: scale(1); }
  70% {
    -webkit-transform: scale(1.5); }
  80% {
    -webkit-transform: scale(1); }
  90% {
    -webkit-transform: scale(1.5); }
  100% {
    -webkit-transform: scale(0.4); } }

@keyframes firstpulse {
  0% {
    -ms-transform: scale(0.4);
    transform: scale(0.4); }
  69% {
    -ms-transform: scale(1);
    transform: scale(1); }
  70% {
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  80% {
    -ms-transform: scale(1);
    transform: scale(1); }
  90% {
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    -ms-transform: scale(0.4);
    transform: scale(0.4); } }
      #splash .splash-center #loader-circle .inner-circle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: white;
        display: block;
        opacity: 0.7;
        position: absolute;
        left: 10px;
        right: 10px;
        top: 10px;
        bottom: 10px;
        animation: secondpulse 3s infinite;
        -webkit-animation: secondpulse 3s infinite;
        -moz-animation: secondpulse 3s infinite; }

@-webkit-keyframes secondpulse {
  0% {
    -webkit-transform: scale(0.4); }
  69% {
    -webkit-transform: scale(1.2); }
  70% {
    -webkit-transform: scale(0.8); }
  80% {
    -webkit-transform: scale(1.2); }
  90% {
    -webkit-transform: scale(0.8); }
  100% {
    -webkit-transform: scale(0.4); } }

@keyframes secondpulse {
  0% {
    -ms-transform: scale(0.4);
    transform: scale(0.4); }
  69% {
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  70% {
    -ms-transform: scale(0.8);
    transform: scale(0.8); }
  80% {
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  90% {
    -ms-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    -ms-transform: scale(0.4);
    transform: scale(0.4); } }
  #splash.hide {
    opacity: 0.7; }
  #splash .aap {
    color: white;
    font-size: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center; }

@keyframes colorchange {
  0% {
    background: #e74c3c; }
  12.5% {
    background: #3398d6; }
  25% {
    background: #b18050; }
  37.5% {
    background: #46bbac; }
  50% {
    background: #36b751; }
  62.5% {
    background: #f96e2a; }
  75% {
    background: #c5d223; }
  87.5% {
    background: #745eb7; }
  100% {
    background: #fbad2f; } }

@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */ {
  0% {
    background: #e74c3c; }
  12.5% {
    background: #3398d6; }
  25% {
    background: #b18050; }
  37.5% {
    background: #46bbac; }
  50% {
    background: #36b751; }
  62.5% {
    background: #f96e2a; }
  75% {
    background: #c5d223; }
  87.5% {
    background: #745eb7; }
  100% {
    background: #fbad2f; } }

/***********************************
* COLUMNS OF SAME HEIGHT STYLES
***********************************/
.container-xs-height {
  display: table;
  padding-left: 0px;
  padding-right: 0px; }

.row-xs-height {
  display: table-row; }

.col-xs-height {
  display: table-cell;
  float: none; }

@media (min-width: 768px) {
  .container-sm-height {
    display: table;
    padding-left: 0px;
    padding-right: 0px; }
  .row-sm-height {
    display: table-row; }
  .col-sm-height {
    display: table-cell;
    float: none; } }

@media (min-width: 992px) {
  .container-md-height {
    display: table;
    padding-left: 0px;
    padding-right: 0px; }
  .row-md-height {
    display: table-row; }
  .col-md-height {
    display: table-cell;
    float: none; } }

@media (min-width: 1200px) {
  .container-lg-height {
    display: table;
    padding-left: 0px;
    padding-right: 0px; }
  .row-lg-height {
    display: table-row; }
  .col-lg-height {
    display: table-cell;
    float: none; } }

/* firefox fix */
.img-responsive {
  width: 100%; }

/* vertical alignment styles */
.col-top {
  vertical-align: top; }

.col-middle {
  vertical-align: middle; }

.col-bottom {
  vertical-align: bottom; }

html,
body {
  font-family: "Raleway", sans-serif;
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }

/* ensure correct behaviour in older browsers */
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block; }

/* WRAPPER */
#wrapper {
  min-height: 100%;
  position: relative; }

/* CONTENT */
#content {
  padding-top: 85px; }

/***********************************
* HELPER CLASSES
***********************************/
.cover-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.cover-background-fixed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; }

.pointer {
  cursor: pointer; }

.tall {
  height: 100%; }

.zero-padding {
  padding: 0; }

.vcenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.vhcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

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

.clear {
  clear: both; }

.display-none {
  display: none; }

/*********************************** * MARGINS AND PADDINGS ***********************************/
.mr5 {
  margin-right: 5px; }

.mr10 {
  margin-right: 10px; }

.mr15 {
  margin-right: 15px; }

.ml5 {
  margin-left: 5px; }

.ml10 {
  margin-left: 10px; }

.ml15 {
  margin-left: 15px; }

/*********************************** * FONTS ***********************************/
h1 {
  font-size: 72px;
  font-weight: 300; }

h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 300;
  color: #797b7c; }

h3 {
  font-size: 35px;
  font-weight: 300;
  color: #218EB5;
  text-transform: uppercase; }

p {
  font-size: 18px;
  color: #666;
  font-weight: 400; }

.bold {
  font-weight: 700; }

hr {
  border-top: 3px solid #e74c3c;
  width: 50px;
  margin-bottom: 40px; }

a:hover {
  text-decoration: none; }

/***********************************
* NAVBAR
***********************************/
.navbar {
  border-radius: 0px;
  z-index: 1;
  text-transform: uppercase;
  z-index: 10000000; }

.navbar.navbar-default {
  background-color: white;
  height: 85px;
  border-bottom: 3px solid #D2D6D5;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); }
  .navbar.navbar-default #navbar-top {
    height: 25px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #D2D6D5;
    margin-left: -15px;
    margin-right: -15px; }
    .navbar.navbar-default #navbar-top .inner {
      padding-left: 15px;
      padding-right: 15px;
      line-height: 25px; }
      .navbar.navbar-default #navbar-top .inner ul {
        margin-bottom: 0; }
      .navbar.navbar-default #navbar-top .inner .languages li a {
        color: #D2D6D5; }
      .navbar.navbar-default #navbar-top .inner .languages li.active a {
        color: #E76E62; }
  .navbar.navbar-default .navbar-header {
    position: relative; }
    .navbar.navbar-default .navbar-header a.navbar-brand {
      color: #202020;
      text-transform: lowercase;
      height: 60px;
      padding: 10px 5px;
      font-size: 20px; }
    .navbar.navbar-default .navbar-header #multicolors-separator-navbar {
      position: absolute;
      top: 57px;
      width: 163px;
      height: 3px;
      z-index: 1; }
  .navbar.navbar-default .navbar-nav > li {
    border-right: 1px solid #D2D6D5; }
    .navbar.navbar-default .navbar-nav > li :hover {
      text-decoration: none; }
    .navbar.navbar-default .navbar-nav > li a {
      color: #808080;
      font-weight: 500;
      font-size: 14px;
      height: 59px;
      padding: 20px 25px;
      line-height: 20px; }
  .navbar.navbar-default .navbar-nav .active a {
    background-color: transparent;
    color: #E76E62;
    font-weight: 700; }
  .navbar.navbar-default .navbar-nav #search-btn {
    line-height: 59px;
    cursor: pointer; }
  .navbar.navbar-default .navbar-nav .dropdown-menu {
    border: 0;
    border-radius: 0; }
    .navbar.navbar-default .navbar-nav .dropdown-menu li a {
      padding: 5px 20px;
      height: auto; }
  .navbar.navbar-default .navbar-nav .search-dropdown .dropdown-menu {
    border-radius: 0px;
    margin: 0;
    padding: 20px;
    background-color: #EEEEEE;
    border: 1px solid #D2D6D5;
    right: -1px;
    top: 57px; }
    .navbar.navbar-default .navbar-nav .search-dropdown .dropdown-menu .search-input-li > input {
      border: 1px solid #D2D6D5 !important;
      padding: 5px;
      width: 250px; }
  .navbar.navbar-default .navbar-nav .search-dropdown .list-all-pois {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    padding: 10px 20px 10px 20px;
    background: #DDDDDD;
    margin-top: 20px; }
    .navbar.navbar-default .navbar-nav .search-dropdown .list-all-pois :hover {
      background: transparent; }
    .navbar.navbar-default .navbar-nav .search-dropdown .list-all-pois a {
      text-align: left;
      padding: 0;
      font-size: 12px;
      height: auto;
      text-align: center; }

.navbar-collapse {
  z-index: 10000; }

/***********************************
* MULTICOLOR SEPARATOR
***********************************/
.multicolors-separator {
  width: 100%;
  height: 5px; }
  .multicolors-separator div {
    width: 6.25%;
    height: 100%;
    float: left; }
  .multicolors-separator > .art {
    background-color: #fbad2f; }
  .multicolors-separator > .art-light {
    background-color: #f5df65; }
  .multicolors-separator > .cnt {
    background-color: #36b751; }
  .multicolors-separator > .cnt-light {
    background-color: #62c37d; }
  .multicolors-separator > .bch {
    background-color: #3398d6; }
  .multicolors-separator > .bch-light {
    background-color: #5fb4e5; }
  .multicolors-separator > .hrt {
    background-color: #b18050; }
  .multicolors-separator > .hrt-light {
    background-color: #cea176; }
  .multicolors-separator > .lsr {
    background-color: #745eb7; }
  .multicolors-separator > .lsr-light {
    background-color: #8a84d7; }
  .multicolors-separator > .fod {
    background-color: #c5d223; }
  .multicolors-separator > .fod-light {
    background-color: #d2e369; }
  .multicolors-separator > .shp {
    background-color: #f96e2a; }
  .multicolors-separator > .shp-light {
    background-color: #ffa269; }
  .multicolors-separator > .htl {
    background-color: #46bbac; }
  .multicolors-separator > .htl-light {
    background-color: #a0d0cb; }

/***********************************
* INPUTS
***********************************/
input.thin-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  font-weight: 300;
  padding: 0 15px; }

input.thin-input:focus {
  outline-width: 0; }

/***********************************
* MAP
***********************************/
.leaflet-bar.leaflet-control {
  box-shadow: none;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 2px solid #fff; }
  .leaflet-bar.leaflet-control a {
    background-color: #e74c3c;
    color: #fff;
    font-size: 12px; }
  .leaflet-bar.leaflet-control .leaflet-control-zoom-in {
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom: 2px solid #fff; }
  .leaflet-bar.leaflet-control .leaflet-control-zoom-out {
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px; }

.marker-cluster-small {
  background-color: rgba(0, 0, 0, 0.6) !important; }

.marker-cluster-small div {
  background-color: rgba(32, 32, 32, 0.6) !important; }

.marker-cluster-medium {
  background-color: rgba(0, 0, 0, 0.6) !important; }

.marker-cluster-medium div {
  background-color: rgba(32, 32, 32, 0.6) !important; }

.marker-cluster-large {
  background-color: rgba(0, 0, 0, 0.6) !important; }

.marker-cluster-large div {
  background-color: rgba(32, 32, 32, 0.6) !important; }

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color: black !important; }

.leaflet-oldie .marker-cluster-small div {
  background-color: #202020 !important; }

.leaflet-oldie .marker-cluster-medium {
  background-color: black !important; }

.leaflet-oldie .marker-cluster-medium div {
  background-color: #202020 !important; }

.leaflet-oldie .marker-cluster-large {
  background-color: black !important; }

.leaflet-oldie .marker-cluster-large div {
  background-color: #202020 !important; }

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px; }

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: white; }

.marker-cluster span {
  line-height: 30px; }

/***********************************
* LIST POIS
***********************************/
.more-title {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px; }
  .more-title h2 {
    margin-top: 10px;
    color: #fff;
    display: inline-block; }

.more-title.dm {
  background-color: #e74c3c; }

.more-title.nearby {
  background-color: #e74c3c; }

.more-title.art {
  background-color: #fbad2f; }

.more-title.bch {
  background-color: #3398d6; }

.more-title.cnt {
  background-color: #36b751; }

.more-title.fod {
  background-color: #c5d223; }

.more-title.hrt {
  background-color: #b18050; }

.more-title.htl {
  background-color: #46bbac; }

.more-title.lsr {
  background-color: #745eb7; }

.more-title.shp {
  background-color: #f96e2a; }

.pois-list {
  background-color: #202020;
  border-top: 2px solid #202020; }
  .pois-list .item {
    height: 320px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    position: relative; }
    .pois-list .item a {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0; }
    .pois-list .item:hover {
      opacity: .5; }
    .pois-list .item .item-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      vertical-align: middle; }
    .pois-list .item .item-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 10px 15px; }
      .pois-list .item .item-info h3 {
        color: white;
        font-size: 14px;
        display: inline-block;
        padding: 10px;
        font-weight: 700;
        margin-bottom: 0;
        background-color: rgba(0, 0, 0, 0.6); }
      .pois-list .item .item-info p {
        color: white;
        font-size: 12px;
        padding: 10px;
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.6); }

/***********************************
* PAGINATION
***********************************/
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #202020;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #e74c3c;
  border-color: #e74c3c; }

.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

/***********************************
* PANEL
***********************************/
.panel {
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .panel .panel-heading {
    text-transform: uppercase;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-weight: 700; }

/***********************************
* BUTTONS
***********************************/
.btn {
  border-radius: 0; }
  .btn.btn-primary {
    border-color: #e74c3c;
    background-color: #E76E62; }
    .btn.btn-primary:hover {
      background-color: #e74c3c; }
  .btn.btn-transparent {
    border: 1px solid #e74c3c;
    background-color: transparent;
    color: #e74c3c; }
    .btn.btn-transparent:hover {
      color: white;
      background-color: #e74c3c; }

.at4m-menu {
  top: 85px !important; }

/***********************************
* MODAL
***********************************/
.modal .modal-dialog {
  margin: 120px auto; }
  .modal .modal-dialog .modal-content {
    border-radius: 0px; }
    .modal .modal-dialog .modal-content .modal-body p {
      color: #202020 !important; }
  .modal .modal-dialog .modal-footer {
    text-align: center; }

/***********************************
* SLICK
***********************************/
.slick-prev {
  left: 0;
  background-color: #202020;
  height: 50px;
  width: 45px;
  opacity: 0.8; }

.slick-next {
  right: 0;
  background-color: #202020;
  height: 50px;
  width: 45px;
  opacity: 0.8; }

.slick-prev:before {
  content: "\f104"; }

.slick-next:before {
  content: "\f105"; }

.slick-prev:before, .slick-next:before {
  font-family: "FontAwesome";
  font-size: 25px;
  line-height: 25px;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  opacity: 1;
  background: #202020; }

.slick-disabled {
  color: white;
  opacity: 0.2; }

.slick-disabled:hover, .slick-disabled:focus {
  color: #ccc;
  opacity: 0.2 !important; }

/***********************************
* POIS MASONRY
***********************************/
.pois-masonry-header {
  background-color: #E7EDF0; }
  .pois-masonry-header i {
    margin-top: -50px;
    font-size: 50px;
    background-color: #e74c3c;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: white;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 90px;
    border: 5px solid white; }

.pois-masonry-container {
  background-color: #E7EDF0;
  padding: 20px; }
  .pois-masonry-container .pois-masonry .item, .pois-masonry-container .pois-masonry .grid-sizer {
    width: 25%; }
    @media (max-width: 1850px) and (min-width: 1550px) {
      .pois-masonry-container .pois-masonry .item, .pois-masonry-container .pois-masonry .grid-sizer {
        width: 33%; } }
    @media (max-width: 750px) {
      .pois-masonry-container .pois-masonry .item, .pois-masonry-container .pois-masonry .grid-sizer {
        width: 100%; } }
  .pois-masonry-container .pois-masonry .item {
    padding: 20px; }
    .pois-masonry-container .pois-masonry .item.w2 {
      width: 50%; }
      @media (max-width: 1850px) and (min-width: 1550px) {
        .pois-masonry-container .pois-masonry .item.w2 {
          width: 33%; } }
      @media (max-width: 750px) {
        .pois-masonry-container .pois-masonry .item.w2 {
          width: 100%; } }
    .pois-masonry-container .pois-masonry .item .info {
      padding: 10px;
      background-color: white; }
      .pois-masonry-container .pois-masonry .item .info .name {
        font-size: 16px;
        margin: 0;
        color: #202020;
        font-weight: 700;
        text-transform: uppercase; }
      .pois-masonry-container .pois-masonry .item .info .city {
        font-size: 12px; }
      .pois-masonry-container .pois-masonry .item .info .description {
        font-size: 14px; }
    .pois-masonry-container .pois-masonry .item .supercategories {
      position: absolute;
      top: 30px;
      left: 5px; }
      .pois-masonry-container .pois-masonry .item .supercategories ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        .pois-masonry-container .pois-masonry .item .supercategories ul li {
          background-color: #e74c3c;
          border-radius: 50%;
          width: 30px;
          height: 30px;
          margin-bottom: 10px;
          text-align: center;
          line-height: 27px;
          opacity: 0.8; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.art {
            background-color: #fbad2f; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.bch {
            background-color: #3398d6; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.hrt {
            background-color: #b18050; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.htl {
            background-color: #46bbac; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.lsr {
            background-color: #745eb7; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.fod {
            background-color: #c5d223; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.cnt {
            background-color: #36b751; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li.shp {
            background-color: #f96e2a; }
          .pois-masonry-container .pois-masonry .item .supercategories ul li img {
            width: 23px;
            height: 23px; }

/***********************************
* RESPONSIVE
***********************************/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  .navbar.navbar-default .navbar-nav > li a {
    padding: 20px 18px; } }

/* Medium Devices, Desktops */
/* Small Devices, Tablets */
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  .navbar-collapse {
    background: white;
    border-bottom: 5px solid #808080; }
  .sc-gallery.sc-header {
    height: 200px !important; }
  .pois-list .item {
    height: 200px;
    border-right: 0; }
  /***********************************
  * POIS MASONRY
  ***********************************/ }

@media (max-width: 992px) {
  .navbar-header {
    float: none; }
  .navbar-toggle {
    display: block;
    border: 0;
    margin-top: 13px; }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  .navbar-collapse.collapse {
    display: none !important;
    background-color: white;
    text-align: center;
    overflow-y: scroll !important;
    margin-left: -15px;
    margin-right: -15px;
    border-bottom: 5px solid #808080; }
  .navbar-collapse.collapsing {
    text-align: center; }
  .navbar-collapse.collapse.in {
    display: block !important; }
    .navbar-collapse.collapse.in .dropdown-menu {
      width: 100%;
      text-align: center;
      background-color: #EFEFEF; }
      .navbar-collapse.collapse.in .dropdown-menu li a {
        color: #202020; }
        .navbar-collapse.collapse.in .dropdown-menu li a:hover {
          color: #e74c3c; }
  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px; }
  .navbar-nav > li {
    float: none; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px; } }

.endless_page_link {
  padding: 5px;
  color: black; }
  .endless_page_link:hover {
    color: #e74c3c; }

.endless_page_current {
  color: #e74c3c; }

a {
  color: #e74c3c; }
  a:hover {
    color: grey; }
