
body {
  font-family: "Open Sans", sans-serif !important;
  padding: 0;
  margin: 0;
}

header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 999;
}
header .logo {
  color: #000;
  font-size: 30px;
}
header ul li {
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  opacity: 0.7;
}
header ul li:hover {
  opacity: 0.9;
}

footer {
  background: #000;
  min-height: 200px;
  margin-top: 65px;
}
footer .logo {
  font-size: 30px;
  color: #fff;
}

.background-main {
  background: #fff;
}

.textcolor1 {
  color: #1c1c1c;
}

/* Color for BUTTONS,LOGOS, */
.color1 {
  color: #286fb4 !important;
}

/* Color for LINKS */
.color2 {
  color: #0082f0 !important;
}

.link {
  color: #0082f0 !important;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

.bgcolor-light {
  background-color: #fff;
}

.bgcolor-dark {
  background-color: #2564ae !important;
}

.button, button {
  background: #0082f0;
  width: 100px;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 200ms linear;
  transform: translate3d(0, 0, 30px) perspective(100px);
}
.button:hover, button:hover {
  background-color: #4d97ed;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade1, .fade2 {
  opacity: 0;
  transition: 0.25s all ease-in-out;
}
.fade1.loaded, .fade2.loaded {
  opacity: 1;
}

.fade2 {
  transition-delay: 0.5s;
}

#app {
  min-height: 40vh; /* ssw 70 */
  display: flex;
  align-items: start;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  #app {
    align-items: center;
  }
}
#app #container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px;
}
@media screen and (min-width: 800px) {
  #app #container {
    flex-direction: row;
    max-width: 1300px;
    padding: 30px;
  }
}
#app #container section#intro {
  width: 100%;
}
#app #container section#intro .title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin: 10px 0 20px;
}
#app #container section#intro p {
  font-size: 16px;
}

#search-view {
  position: relative;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
@media screen and (min-width: 800px) {
  #search-view {
    flex-direction: row;
    justify-content: space-between;
  }
}
#search-view.min {
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  #search-view.min {
    margin-right: 50px;
    padding-right: 50px;
    width: 350px;
    border-right: 2px solid #aaa;
    height: 88vh;
    position: sticky;
    top: 60px;
  }
}
#search-view.min article {
  opacity: 1;
  transition: 0.25s all ease-in-out;
}
#search-view.min article.active, #search-view.min article:hover {
  opacity: 1;
}
#search-view article {
  background: #eee;
  width: 100%;
  margin: 0 0 10px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  transform: scale(1);
  transition: 0.3s max-width ease;
}
@media screen and (min-width: 800px) {
  #search-view article {
    max-width: 350px;
  }
}
#search-view article.reset {
  opacity: 0;
}
#search-view article:hover {
  transform: scale(1.02);
}
#search-view article .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  color: #fff;
}
#search-view article .title h2 {
  color: #fff;
  font-size: 17px;
}
#search-view article .title i {
  font-size: 20px;
  transition: 0.25s all ease-in-out;
  transform: rotate(90deg);
}
@media screen and (min-width: 800px) {
  #search-view article .title i {
    opacity: 0;
  }
}
#search-view article .title.min i {
  transform: rotate(0deg);
}
#search-view article .inner {
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  #search-view article .inner {
    min-height: 160px;
  }
}
#search-view article .inner.min {
  height: 0;
}
#search-view article .inner .form {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 15px;
}
#search-view article .inner .form input, #search-view article .inner .form select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #aaa;
  margin: 10px 0;
  padding: 5px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
}
#search-view article .inner .form .button {
  margin-top: 5px;
}

.form input.button{
  background: #0082f0;
    background-color: rgb(0, 130, 240);
width: 100px;
color: #fff;
border: none;
border-radius: 4px;
padding: 10px;
text-align: center;
cursor: pointer;
transition: all 200ms linear;
border: none;
transform: translate3d(0, 0, 30px) perspective(100px);
}

@media screen and (min-width: 800px) {
  #search-view article:nth-of-type(1) .inner .form {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: inherit;
  }

  #search-view article:nth-of-type(1) .inner .form input:nth-of-type(2) {
    width: 40%;
    margin: 0;
  }

  
  #search-view article:nth-of-type(1) .inner .form span{
  position: absolute;

  }

  #search-view article:nth-of-type(1) .inner .form select {
    width: 25%;
    margin: 0;
  }

  #search-view article:nth-of-type(1) .inner .form input:nth-of-type(3) {
    width: 30%;
    margin: 0;
  }
}
.reset {
  cursor: pointer;
  padding-bottom: 30px;
  margin-bottom: 40px;
  display: block;
  top: 25px;
  position: relative;
}

artiicle.search-map {
  min-height: 500px;
}

/* RESULTS */
#results-view {
  position: relative;
  display: none;
  flex-direction: column;
}
#results-view.show {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 800px) {
  #results-view.show {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 400px);
  }
}

@media screen and (min-width: 800px) {
  #results-view {
    display: none;
    flex-direction: row;
  }
}
#results-view .loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 102%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  pointer-events: none;
}
#results-view .loader.hide {
  opacity: 0;
}
#results-view .title-wrap {
  width: 100%;
  border-bottom: 2px solid #aaa;
  margin-bottom: 10px;
}
@media screen and (min-width: 1100px) {
  #results-view .title-wrap {
    margin-bottom: 30px;
  }
}
#results-view .title-wrap .title {
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1100px) {
  #results-view .title-wrap .title {
    font-size: 31px;
  }
}
#results-view .title-wrap p {
  display: inline-block;
}

#results-view .content-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  background: #fff;
  width: 100%;
  padding: 3px;
  margin: 5px 0;
}
@media screen and (min-width: 1100px) {
  #results-view .content-wrapper {
    flex-direction: row;
  }
}
#results-view .content-wrapper ul {
  padding-top: 20px;
}
#results-view .content-wrapper ul li:hover {
  background: rgba(0, 0, 0, 0.04);
}

#results-view .content {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  #results-view .content {
    width: 50%;
  }
}
#results-view .content h2 {
  color: #fff;
  padding: 10px;
  margin: 0;
  border: 0;
  font-weight: 700;
  font-size: 17px;
}
#results-view .content ul {
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
#results-view .content ul > li {
  display: flex;
  margin-bottom: 15px;
}
#results-view .content ul > li img {
  opacity: 1;
  transition: 0.25s all ease-in-out;
}
#results-view .content ul > li aside {
  text-align: left;
}
#results-view .content ul > li aside ul {
  text-align: left;
  display: block;
  border: 1px solid #aaaaaa61;
  padding: 10px;
  margin-left: 10px;
  width: 200px;
}
#results-view .content ul > li aside ul li:hover {
  background: transparent;
}
#results-view .content ul > li .open-detail {
  cursor: pointer;
}
#results-view .content ul > li:hover img {
  opacity: 0.89;
}

#detail-view {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(97, 97, 97, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
}
#detail-view.active {
  opacity: 1;
  pointer-events: auto;
}
#detail-view .overlay {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#detail-view .wrapper {
  position: relative;
  z-index: 2;
  background: #fff;
  display: none;
}
#detail-view .wrapper.active {
  display: block;
}
#detail-view .wrapper .close-detail {
  position: relative;
  display: block;
  width: 100%;
  background: #aaa;
  cursor: pointer;
  padding: 10px;
  text-align: right;
  color: #fff;
}
#detail-view .wrapper article img {
  margin: 20px 20px;
}
#detail-view .wrapper article aside h2 {
  margin: 0;
  padding: 0 20px;
}
#detail-view .wrapper .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background: #2564ae !important;
  margin: 12px;
  list-style: none;
  padding: 0;
}
#detail-view .wrapper .tabs li {
  color: #fff;
  cursor: pointer;
  padding: 15px 5px;
  width: 25%;
  text-align: center;
}
@media screen and (min-width: 800px) {
  #detail-view .wrapper .tabs li {
    text-align: left;
    padding: 15px 25px;
  }
}
#detail-view .wrapper .tabs li:hover {
  background: #6793c7 !important;
}
#detail-view .wrapper .tabs li.current {
  background: #f00 !important;
}
#detail-view .wrapper .tab-content {
  display: none;
  padding: 20px;
  padding-right: 5px;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  line-height: 1.5em;
  letter-spacing: 0.3px;
  color: #444;
}
#detail-view .wrapper .tab-content.current {
  display: block;
}
#detail-view .wrapper .tab-content article {
  height: 53vh;
  width: 100%;
  max-height: 40vh;
  max-width: 450px;
  overflow: auto;
}
@media screen and (min-width: 800px) {
  #detail-view .wrapper .tab-content article {
    height: 53vh;
    width: 55vw;
    max-width: none;
  }
}
#detail-view .wrapper .tab-content article h2 {
  margin: 0 0 15px;
  letter-spacing: 1px;
  color: #aaa;
}
#detail-view .wrapper .tab-content article ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#detail-view .wrapper .tab-content article ul li {
  margin-bottom: 10px;
}
#detail-view .wrapper .tab-content article ul li a {
  display: inline-table;
}
#detail-view .wrapper .tab-content article ul li span {
  font-weight: bold;
  padding-right: 10px;
  min-width: 200px;
  display: block;
}
@media screen and (min-width: 1100px) {
  #detail-view .wrapper .tab-content article ul li span {
    min-width: 270px;
    display: inline-block;
  }
}
#detail-view .wrapper .tab-content article ul li span i {
  padding-right: 6px;
}
#detail-view .wrapper .tab-content article ul li span i span {
  min-width: 0;
  display: inline-block;
}

/* Visual Styles */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#app {
  position: relative;
  padding-top: 30px;
  background: #eee;
}
#app #container {
  position: relative;
  z-index: 2;
  padding-top: 0px;
}
@media screen and (min-width: 800px) {
  #app {
    padding-top: 0px;
  }
  #app:before {
    height: 250px;
  }
}

#app.theme1 #search-view {
  background: none !important;
}
#app.theme1 #search-view article {
  background: none !important;
  border: none;
}
#app.theme1 #search-view article .title, #app.theme1 #search-view article .inner {
  background: none !important;
  color: inherit !important;
}
#app.theme1 #search-view article .title h2, #app.theme1 #search-view article .inner h2 {
  color: inherit !important;
}
#app.theme1 #search-view article .title .form, #app.theme1 #search-view article .inner .form {
  flex-direction: row;
}
#app.theme1 #search-view article .title .form input, #app.theme1 #search-view article .title .form select, #app.theme1 #search-view article .inner .form input, #app.theme1 #search-view article .inner .form select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #aaa;
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  height: 37px;
}
#app.theme1 #search-view article .title .form .button, #app.theme1 #search-view article .inner .form .button {
  position: relative;
  left: -4px;
  margin: 0;
  border-radius: 0 30px 30px 0;
}
#app.theme1 #search-view article .title .form .button:hover, #app.theme1 #search-view article .inner .form .button:hover {
  left: -2px;
}
@media screen and (min-width: 800px) {
  #app.theme1 section#intro .title {
    font-size: 42px !important;
  }
  #app.theme1 section#intro p {
    font-size: 32px;
  }
  #app.theme1 #search-view.min {
    flex-direction: row;
    width: 100%;
    border-right: none;
  }
}

