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

html {
  font-size: 100%;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, form {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 15px;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.button {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #e74b3c;
  color: white;
  font-weight: 300;
  letter-spacing: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
}

.button:before {
  content: "";
  border: 1px solid #e74b3c;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border-radius: 100px;
}

.dot {
  vertical-align: middle;
  margin: -3px 5px 0 5px;
}

@media screen and (min-width: 768px) {
  .panel {
    width: 350px;
    box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 980px) {
  .panel {
    width: 410px;
  }
}

.panel__results {
  position: relative;
}
@media screen and (min-width: 768px) {
  #listState{position:absolute;}
  .panel__results {
    overflow-y: scroll;
    background: white;
    position: fixed;
    z-index: 1;
    height: calc(100vh - 202px);
    bottom:30px;
  }
}
@media screen and (min-width: 980px) {
  .panel__results {
    height: calc(100vh - 152px);
  }
}

#map {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 125px);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #map {
    position: absolute;
    height: 100%;
  }
}

.gm-bundled-control .gmnoprint {
  display: block;
}

.pac-container:after {
  background-image: none !important;
  height: 0px;
}

.zoom-in-button {
  position: absolute;
  right: 20px !important;
  bottom: 185px !important;
}

.zoom-out-button {
  position: absolute;
  right: 20px !important;
  bottom: 10px !important;
}

.zoom-in-button, .zoom-out-button, .slider {
  cursor: pointer;
}

.zoom-in-button, .zoom-out-button {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px;
}

input[type=range] {
  -webkit-appearance: none;
  position: relative;
  bottom: 98px !important;
  right: -36px !important;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  border: 1px solid white;
  width: 135px;
  height: 15px;
  border-radius: 7px;
  margin: 5px 0;
  padding: 0;
  line-height: 0;
}
input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 135px;
  height: 15px;
  background: #2b536b;
  border: 1px solid #ffffff;
  border-radius: 7px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 100%;
  margin-top: -5px !important;
  line-height: 0;
  font-size: 0;
}

input[type=range]::-moz-range-track {
  width: 15px;
  height: 135px;
  background: transparent;
  border-radius: 7px;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  box-shadow: 0px 0 4px 0px rgba(0, 0, 0, 0.36);
  background: #ffffff;
}

input[type=range]::-moz-focus-outer {
  border: 0;
}

input[type=range]::-moz-range-progress {
  background-color: #ffffff;
  border: 7px solid #ffffff;
  border-radius: 7px 0 0 7px;
}

input[type=range]::-ms-track {
  width: 135px;
  height: 15px;
  color: transparent;
  background: transparent;
  border-color: transparent;
}

input[type=range]::-ms-fill-upper {
  background: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #ffffff;
}

input[type=range]::-ms-thumb {
  border: none;
  height: 15px;
  width: 15px;
  box-shadow: 0px 0 4px 0px rgba(0, 0, 0, 0.36);
  border-radius: 100%;
  background: #ffffff;
}

input[type=range]:focus::-ms-fill-upper {
  background: transparent;
}

input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}

input[type=range]::-ms-tooltip {
  display: none;
}

.panel__intro {
  position: relative;
  z-index: 1;
  background-color: white;
  color: #666666;
}

.intro {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
@media screen and (min-width: 980px) {
  .intro {
    padding: 30px 15px;
  }
}

.intro__title {
  width: 20%;
  font-size: 1.5rem;
  line-height: 28px;
  color: #666666;
}
@media screen and (min-width: 980px) {
  .intro__title {
    width: 25%;
    font-size: 1.875rem;
    line-height: 35px;
  }
}

.intro__content {
  width: 80%;
  margin: 0 0 0 16px;
  padding: 0 0 0 16px;
  font-size: 0.8125rem;
  border-left: 1px solid #d7d7d7;
}
@media screen and (min-width: 980px) {
  .intro__content {
    width: 75%;
    font-size: 0.875rem;
    line-height: 20px;
  }
}

.help__content {
  padding: 0 20px 10px 20px;
}
.help__content p {
  font-size: 0.8125rem;
}

.intro__link, .help__link {
  position: relative;
  display: block;
  text-align: center;
  background-color: #f4f4f4;
  font-size: 0.75rem;
  color: #666666;
  text-decoration: none;
  padding: 8px;
}
.intro__link:before, .help__link:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: -20px;
  margin-top: 1px;
  background-image: url(/wp-content/themes/simple-block/assets/images/map/i.png);
  background-repeat: no-repeat;
  background-size: 14px;
}
.intro__link:after, .help__link:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  margin-top: 5px;
  background-image: url(/wp-content/themes/simple-block/assets/images/map/down.png);
  background-repeat: no-repeat;
  background-size: 10px;
}

.help {
  background-color: #f4f4f4;
}

.header {
  position: relative;
  z-index: 10;
  background-color: #2193c1;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header {
    z-index: 1;
  }
}
@media screen and (min-width: 980px) {
  .header {
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1200px) {
  .header.panel {
    width: 490px;
  }
}
@media screen and (min-width: 1200px) {
  .header.wide {
    width: 700px !important;
  }
}

.header__logo {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  box-ordinal-group: 3;
  -webkit-order: 3;
  -moz-order: 3;
  order: 3;
  -ms-flex-order: 3;
  background-color: white;
  width: 105px;
  padding: 5px;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .header__logo {
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 130px;
  }
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__banner {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  box-ordinal-group: 1;
  -webkit-order: 1;
  -moz-order: 1;
  order: 1;
  -ms-flex-order: 1;
  width: calc(100% - 105px);
  padding: 5px 10px;
  border-bottom: 1px solid #64b4d4;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 980px) {
  .header__banner {
    border: 0;
    width: 365px;
  }
}
.header__banner h2 {
  -webkit-align-self: center;
  -moz-align-self: center;
  align-self: center;
  -ms-flex-item-align: center;
  color: white;
  line-height: 1.1875rem;
}
@media screen and (min-width: 980px) {
  .header__banner h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

.countdown {
  display: none;
}
@media screen and (min-width: 1200px) {
  .countdown {
    display: block;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    -webkit-order: 2;
    -moz-order: 2;
    order: 2;
    -ms-flex-order: 2;
    background-color: #282828;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0.625rem 1.25rem;
  }
}

.countdown__container {
  text-align: center;
  min-width: 50px;
}

.countdown__container + .countdown__container {
  margin-left: 12px;
}

.countdown__number {
  position: relative;
  z-index: 1;
  color: white;
  background-color: #2c2c2c;
  border-radius: 2px;
  font-size: 1.875rem;
  box-shadow: 0 0 2px black;
}
.countdown__number:before {
  border-top: 1px solid #121212;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.countdown__type {
  margin-top: 0.3125rem;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
}

.pagination {
  position: relative;
  z-index: 2;
  background-color: #2ecb70;
  color: white;
  font-size: 0.8125rem;
  min-height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.pagination .pagination__numbers, .pagination .pagination__nav {
  padding: 8px 13px;
}
.pagination .pagination__numbers {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
}
.pagination .pagination__button {
  margin-left: 6px;
  vertical-align: middle;
}

.pagination__button--disabled {
  opacity: 0.6;
}

.panel__results--fallback {
  height: 100%;
}

.fallback {
  padding: 15px;
}
.fallback .fallback__top {
  color: #282828;
}
.fallback .fallback__top a {
  color: #2193c1;
}
.fallback .fallback__top a:hover {
  color: #e74b3c;
}

.fallback__content-wrapper {
  position: relative;
  z-index: 1;
  background-image: url("/wp-content/themes/simple-block/assets/images/map/fallback.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 140px;
}
.fallback__content-wrapper:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #ffffff;
  margin: 1% auto 0 auto;
  width: 96.5%;
  height: 100%;
}

.fallback__content {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0 auto;
  padding: 15px 15px 0 15px;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.85);
}
.fallback__content h3 {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fallback__content h3 {
    font-size: 2.5rem;
  }
}
.fallback__content p {
  line-height: 1.375rem;
  color: #666666;
}
.fallback__content p a {
  color: #2193c1;
}
.fallback__content p a:hover {
  color: #e74b3c;
}

.fallback__ad {
  position: relative;
  top: 1.5625rem;
}
.fallback__ad ul {
  margin-top: 0.9375rem;
}

.fallback__disclaimer {
  margin-top: 2.5rem;
  color: #8f8f8f;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.125rem;
}
.fallback__disclaimer a {
  color: #2193c1;
}
.fallback__disclaimer a:hover {
  color: #e74b3c;
}

.search {
  position: relative;
  z-index: 2;
  background-color: #2193c1;
  padding: 10px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 768px) {
  .search {
    box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.3);
  }
}
.search .search__header {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 8px;
  vertical-align: bottom;
}
.search .search__header img {
  width: 60px;
  height: 37px;
}
@media screen and (min-width: 980px) {
  .search .search__header img {
    width: 95px;
    height: 57px;
  }
}
.search .search__container {
  display: inline-block;
  border-radius: 40px;
  border: 1px solid #ffffff;
  width: calc(100% - 80px);
}
@media screen and (min-width: 980px) {
  .search .search__container {
    width: calc(100% - 110px);
  }
}
.search .search__input {
  position: relative;
  vertical-align: top;
  background-color: white;
  border-radius: 40px;
  border: 1px solid #2193c1;
  height: 40px;
  padding: 0 20px;
  font-family: "Roboto";
  font-size: 1.0625rem;
  width: 100%;
}
.search .search__input:placeholder {
  color: #666666;
}
.search .search__input:after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%);
  background-image: linear-gradient(to right,rgba(255, 255, 255, 0) 0%, white 50%);
  width: 100px;
  height: 100%;
}
.search .search__submit {
  position: relative;
  z-index: 2;
  margin-left: -52px;
  margin-top: 9px;
  border: 0;
  vertical-align: top;
  background-color: transparent;
  background-image: url("/wp-content/themes/simple-block/assets/images/map/search.png");
  background-repeat: no-repeat;
  background-size: 41px 25px;
  width: 41px;
  height: 25px;
  cursor: pointer;
}
@media screen and (min-width: 980px) {
  .search .search__submit {
    vertical-align: bottom;
    margin-bottom: 6px;
  }
}

.search__header:hover ~ .search__container {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-duration: 350ms;
  -moz-animation-duration: 350ms;
  animation-duration: 350ms;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@keyframes wiggle {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
  }
  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.popup {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  width: 150px;
  z-index: 2;
  background-color: #ffffff;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .popup {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    width: 325px;
  }
}

.popup__image {
  font-size: 0;
}
@media screen and (min-width: 1200px) {
  .popup__image {
    object-fit: cover;
    width: 125px;
    height: 100%;
  }
}
.popup__image img {
  width: 100%;
  height: 100%;
}

.popup__content {
  padding: 10px;
}
@media screen and (min-width: 1200px) {
  .popup__content {
    width: 200px;
  }
}

.popup__title {
  font-size: 0.9375rem;
  line-height: 1.125rem;
  color: #282828;
  overflow: hidden;
}

.popup__org {
  font-weight: normal;
  color: #2ecb70;
  font-size: 0.75rem;
}

.popup__location {
  color: #666666;
  font-style: normal;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.popup__hr {
  border: 0;
  height: 1px;
  background-color: #eee;
}

.popup--embed {
  padding-bottom: 1px;
}
@media screen and (min-width: 1200px) {
  .popup--embed {
    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    background-image: url("/wp-content/themes/simple-block/assets/images/map/go.png");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right 10px bottom 25px;
  }
}
.popup--embed .popup__content {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/go.png");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 10px top 10px;
}
@media screen and (min-width: 1200px) {
  .popup--embed .popup__content {
    background-image: none;
  }
}
.popup--embed .popup__content .popup__title {
  padding-right: 30px;
}
@media screen and (min-width: 1200px) {
  .popup--embed .popup__content .popup__title {
    padding-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .popup--embed .popup__image {
    margin: 10px 0 10px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .popup--embed .popup__image img {
    border: 2px solid #2ecb70;
  }
}
.popup--embed .popup__location {
  text-transform: inherit;
}
.popup--embed .popup__location .popup__caps {
  text-transform: uppercase;
}
.popup--embed .popup__content {
  padding-bottom: 0;
}

#map-sprite {
  display: none;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2b536b;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  z-index: 99;
}

#status {
  width: 200px;
  height: 130px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -65px 0 0 -100px;
  /* is width and height divided by two */
}

.spinner {
  margin: 0px auto;
  width: 200px;
  height: 130px;
  text-align: center;
  font-size: 10px;
}

.animlogo {
  width: 100px;
  height: 100px;
  fill: #2193c1;
  animation: icon 2s infinite;
}

.logotext {
  margin-top: 10px;
  width: 200px;
  height: 19px;
  fill: #2193c1;
}

@keyframes icon {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .panel__single {
    height: calc(100vh - 130px);
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 980px) {
  .panel__single {
    height: calc(100vh - 80px);
  }
}
.panel__single a {
  color: #2193c1;
  text-decoration: none;
}
.panel__single a:hover {
  color: #e74b3c;
}

.single__image, .single__image--logo {
  margin: 0;
  padding: 0;
  font-size: 0;
  height: 125px;
  min-height: 125px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .single__image, .single__image--logo {
    float: left;
    width: 120px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .single__image, .single__image--logo {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.single__image img, .single__image--logo img {
  width: 100%;
  position: relative;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -25%);
  margin-left: -1px;
}
@media screen and (min-width: 480px) {
  .single__image img, .single__image--logo img {
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 768px) {
  .single__image img, .single__image--logo img {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -25%);
  }
}

.single__image--logo {
  height: 125px;
}
.single__image--logo img {
  width: 125px;
}

.single__header {
  background-color: #2193c1;
  color: #ffffff;
  padding: 15px;
}
@media screen and (min-width: 480px) {
  .single__header {
    min-height: 120px;
  }
}
@media screen and (min-width: 768px) {
  .single__header {
    min-height: auto;
  }
}

.single__title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  overflow: hidden;
}

.single__location {
  font-size: 0.9375rem;
  font-style: normal;
  text-transform: uppercase;
}

.single__overview li, .single__list li {
  color: #666666;
  font-size: 0.9375rem;
}

.single__overview {
  background-color: #f4f4f4;
  padding: 15px;
}
.single__overview li + li {
  margin-top: 6px;
}

.single__list {
  margin: 5px 15px;
}
.single__list li {
  border-bottom: 1px solid #f4f4f4;
  padding: 10px 0;
}
.single__list li strong {
  color: #2193c1;
}

.single__date, .single__time {
  color: #666666;
  font-size: 0.9375rem;
}

.single__url {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.single__url:after {
  content: "";
  position: absolute;
  right: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%);
  background-image: linear-gradient(to right,rgba(255, 255, 255, 0) 0%, white 50%);
  width: 40px;
  height: 20px;
}

.single__desc {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0 15px;
  position: relative;
  margin-bottom: 25px;
}
.single__desc--fade-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(to bottom, transparent, white 85%);
}
.single__desc--open {
  max-height: none;
  overflow: visible !important;
}
.single__desc--fade-link {
  color: #e74b3c !important;
  background-color: #ffffff;
  border-radius: 100px;
  border: 1px solid #e74b3c;
  text-transform: uppercase;
  padding: 5px 17px;
  display: inline-block;
  letter-spacing: 3px;
  font-size: 12px;
  position: relative;
  margin-top: 60px;
}
.single__desc--fade-link:hover {
  background-color: #e74b3c;
  color: #ffffff !important;
}

.single__overview li, .single__list li {
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: center left;
}

.single__date {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-date.png");
  background-size: 14px 14px;
}

.single__time {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-time.png");
  background-position: top 4px left !important;
  background-size: 14px 14px;
}
.single__time small {
  text-transform: uppercase;
  color: #b5b5b5;
}

.single__type {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-type.png");
  background-size: 15px 15px;
}

.single__address {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-address.png");
  background-size: 15px 15px;
}

.single__org {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-org.png");
  background-size: 14px 14px;
}
.single__org a:hover strong {
  color: #e74b3c;
}

.single__org--top {
  background-position: top 13px left !important;
}

.single__phone {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-phone.png");
  background-size: 10px 13px;
  background-position: center left 2px !important;
}

.single__email {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-email.png");
  background-size: 15px 11px;
}

.single__url {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/icon-url.png");
  background-size: 14px 14px;
}

.sites__list {
  margin-left: 15px;
}

.sites__item {
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
}

.sites__link {
  padding: 8px 15px 8px 0;
  text-decoration: none;
  display: block;
}

.sites__link:hover {
  background-color: white;
  background-image: -webkit-linear-gradient(left, white 0%, whitesmoke 100%);
  background-image: linear-gradient(to right,white 0%, whitesmoke 100%);
}

.sites__time {
  color: #282828;
  font-size: 0.8125rem;
}

.sites__title {
  color: #282828;
  font-size: 1.125rem;
}

.sites__org {
  color: #b5b5b5;
  font-size: 0.8125rem;
}

.sites__location {
  color: #b5b5b5;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.sites__bottom {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .sites__bottom {
    position: absolute;
    z-index: 3;
    bottom: 0;
  }
}
.sites__bottom.panel {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sites__bottom.panel {
    width: 350px;
  }
}
@media screen and (min-width: 980px) {
  .sites__bottom.panel {
    width: 410px;
  }
}
.sites__bottom .button:hover {
  background-color: #2193c1;
}
.sites__bottom .button:hover::before {
  border: 1px solid #2193c1;
}

.text {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
  background: #ffffff;
  border-radius: 1.875rem;
  padding: 0.1875rem;
}
.text::before {
  content: "";
  border: 1px solid #ffffff;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border-radius: 1.5625rem;
}
.text > div > .single__input-text {
  height: 100%;
}

.single__form {
  background-color: #2193c1;
  color: #ffffff;
  padding: 15px 15px 35px 15px;
  margin-top: auto;
}

.single__label {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.375rem;
  padding-bottom: 8px;
}

.single__input-text {
  z-index: 2;
  border: 0;
  margin-left: 15px;
  font-family: "Roboto";
  font-size: 1.0625rem;
  line-height: normal;
  width: calc(250px - 53px);
}
.single__input-text:placeholder {
  color: #666666;
}

.single__input-submit {
  position: relative;
  z-index: 3;
  display: inline-block;
  vertical-align: top;
  border: 0;
  background-color: transparent;
  background-image: url("/wp-content/themes/simple-block/assets/images/map/go.png");
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: center right;
  width: 40px;
  height: 32px;
  cursor: pointer;
}

.single__form .disclaimer {
  display: block;
  margin-top: 5px;
  margin-left: 20px;
  font-size: 0.75rem;
  font-weight: normal;
}
.single__form .disclaimer a {
  color: #79e3ff;
}
.single__form .disclaimer a:hover {
  text-decoration: underline;
  color: #79e3ff;
}

.revmsg-success {
  background-image: url("/wp-content/themes/simple-block/assets/images/map/turtle.png");
  background-repeat: no-repeat;
  background-position: right bottom 20px;
  background-size: 50%;
}

.thankyou__title {
  text-align: center;
  color: #79e3ff;
  font-size: 1.3125rem;
}

.thankyou__content {
  text-align: center;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.25rem;
}

.thankyou__buttons {
  width: 100%;
  overflow: auto;
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .thankyou__buttons {
    margin: 25px 0;
  }
}
.thankyou__buttons .thankyou__button {
  float: left;
  width: 50%;
}
.thankyou__buttons .thankyou__button:first-child {
  padding-right: 10px;
}
.thankyou__buttons .thankyou__button:nth-child(2) {
  padding-left: 10px;
}
.thankyou__buttons .thankyou__button img {
  width: 100%;
}

.thankyou__list {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  border-top: 1px solid #ffffff;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .thankyou__list {
    padding-top: 25px;
  }
}

.thankyou__item {
  width: calc(100% / 3);
  text-align: center;
}
.thankyou__item a {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 768px) {
  .thankyou__item a {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.thankyou__item a:hover {
  color: #79e3ff;
}
.thankyou__item img {
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .thankyou__item img {
    width: 50px;
    height: 50px;
  }
}

.thankyou__item + .thankyou__item {
  margin-left: 20px;
}

/*Chrome*/
input[type=range]#slide {
  border: 1px solid #FA824C;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=range]#slide {
    background-color: #FA824C;
  }

  input[type=range]#slide::-webkit-slider-runnable-track {
    color: #FA824C;
    border: 1px solid #FA824C;
  }

  input[type=range]#slide::-webkit-slider-thumb {
    box-shadow: #FA824C;
    background: #FA824C;
  }
}
/** FF*/
input[type=range]#slide::-moz-range-progress {
  background-color: #FA824C;
}

input[type=range]#slide::-moz-range-track {
  background-color: #FA824C;
}

/* IE*/
input[type=range]#slide::-ms-fill-lower {
  background-color: #FA824C;
}

input[type=range]#slide::-ms-fill-upper {
  background-color: #FA824C;
}

#panelLocationContainer {
  max-width: 140px;
  position: absolute;
  background-color: #FA824C;
  color: #ffffff;
  border-radius: 4px;
  right: 60px;
  bottom: 20px;
  padding: 12px 20px;
}

#panelLocationContainer span.closebtn {
  font-weight: 100;
  margin-top: -5px;
  margin-right: -10px;
}

#panelLocationContainer .search {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  width: 24px;
  height: auto;
}

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