h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  font-weight: 300;
  color: #ffffff;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 20px;
}

p {
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
}

.col3 {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.col2 {
  grid-template-columns: 1fr 1fr !important;
}

.col1 {
  grid-template-columns: 1fr !important;
}

.center {
  text-align: center !important;
}

.credits {
  position: absolute;
  bottom: 30px;
  margin: 0 auto;
  width: 100%;
}

.company-logo {
  display: inline-block;
  height: 32px;
  margin: 0 10px;
  cursor: pointer;
}

.logo {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.inline-icon {
  vertical-align: middle;
  display: inline-block !important;
  width: auto !important;
  clear: left;
  height: 30px;
}

.content-container {
  user-select: none;
}

.background {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-image: url('../assets/intro-cover.jpg');
  z-index: 100;
}

.blur {
  background: rgba(0, 0, 0, 0.7);
  /* backdrop-filter: blur(5px); */
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: auto;
  z-index: 50;
}

.intro-content {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* padding-bottom: 100px; */
  max-width: 700px;
  width: calc(100% - 60px);
}

.intro-content h1 {
  font-size: 34px;
}

.share {
  text-align: center;
}

.ya-share2 {
  height: 35px;
}

.ya-share2__list {
  transform: scale(1.5);
}

.share p {
  margin-bottom: 15px;
}

button.start {
  cursor: pointer;
  margin: 2em auto;
  display: block;
  -webkit-appearance: none;
  border: 6px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  padding: 0.8em 3em;
  background-repeat: no-repeat;
  background-size: 100%;
  background-clip: padding-box;
  position: relative;
  color: #fff;
  font-size: 22px;
  outline: none;
}
button.start:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50px;
  z-index: -1;
  filter: blur(20px);
}
button.start:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50px;
  z-index: -1;
  filter: blur(20px);
}

button.blue {
  background-image: linear-gradient(90deg, #f5637b, #f09023);
}
button.blue:before {
  background-image: linear-gradient(90deg, #f5637b, transparent);
}
button.blue:after {
  background-image: linear-gradient(90deg, transparent, #f0b923);
}
button.blue:hover {
  background-image: linear-gradient(90deg, #ff7e94, #ffcb3d);
}

/* MENU */

.navbar .hamburger-lines {
  display: block;
  height: 22px;
  width: 28px;

  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #ffffff;
}

.navbar .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.navbar .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.navbar .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar input[type='checkbox']:checked ~ .menu-items {
  transform: translateX(0);
}

.navbar input[type='checkbox']:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.navbar input[type='checkbox']:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.navbar input[type='checkbox']:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.navbar input[type='checkbox']:checked ~ .logo {
  display: none;
}

.dropdown-item {
  cursor: pointer;
}

#locations {
  display: none;
}

#locations .content {
  height: 100%;
}

#locations .location-container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1px;
  cursor: pointer;
}

#locations .location-container:hover {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1px;
}

#locations .header {
  padding: 15px;
}

#locations .header h1 {
  margin: 0;
}

#locations .gallery {
  /* display: none; */
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 60%;
  margin: 0 auto;
}

#locations img {
  height: 100%;
  width: 100%;
}

#locations p {
  margin: 10px 5px 10px;
  color: #ffffff;
}

#locations .img-container {
  position: relative;
}

#locations .visited {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  font-size: 14px;
  color: #fff;
}

.hidden {
  display: none;
}

/* CONTENT */

#pano {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: #fff;
}

#pano_overlay {
  z-index: 9999; /* 3001 */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}

.pano-content-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  overflow-y: auto;
  overflow-x: hidden;
  user-select: none;
}

.pano-ajax-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  height: 64px;
  opacity: 0.8;
  background: url('ajax-loader.gif') center center no-repeat;
}

/* post content	 */
.pano-post-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 50px;
  z-index: 9999;
}

/* PANO POST HEADER */

.pano-post-header {
  width: 100%;
  cursor: default;
  position: sticky;
  top: 0;
  left: 0;
  padding-bottom: 10px;
  overflow: hidden;
  z-index: 10;
}

.box-shadow:after {
  content: '';
  width: calc(100% - 10px);
  height: 1px;
  display: block;
  position: absolute;
  left: 5px;
  bottom: 10px;
  z-index: -1;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.4);
}

.pano-post-header h1 {
  font-size: 20px;
  margin: 0 40px 0;
}

.pano-post-header .caption {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  font-size: 22px;
  background: #292929;
  color: #fff;
}

.caption.question {
  /* background: #febb36; */
  background: #e3a92c;
}

.caption.info {
  /* background: #ba7aff; */
  background: #222;
}

.caption.movie {
  /* background: #e17e82; */
  background: #e32c41;
}

.pano-close-post-button {
  position: absolute;
  right: 22px;
  top: 16px;
  width: 32px;
  height: 32px;
  opacity: 0.6;
  cursor: pointer;
}
.pano-close-post-button:hover {
  opacity: 1;
}
.pano-close-post-button:before,
.pano-close-post-button:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 6px;
  background-color: #fff;
  border-radius: 1px;
}
.pano-close-post-button:before {
  transform: rotate(45deg);
}
.pano-close-post-button:after {
  transform: rotate(-45deg);
}

/* PANO POST CONTENT */

.pano-post-content {
  width: 100%;
  -webkit-box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 55px 5px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  cursor: default;
  background: #fff;
  /* border-radius: 0 0 5px 5px; */
  color: #444;
  display: inline-block;
  /* overflow: hidden; */
  margin-top: -10px;
  /* padding: 10px 0 25px; */
}

.pano-post-content.flex {
  display: flex;
  grid-template-columns: 1fr 1fr;
  padding: 0 20px 25px 20px;
}

.pano-post-content .column {
  width: 100%;
}

.video-background {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.column figcaption {
  margin: 0.5em 0 1em;
}

.pano-post-content p,
.pano-post-content a {
  font-size: 14px;
  margin: 15px 20px 0;
  text-align: left;
}

.pano-post-content h1 {
  text-align: center;
  color: #333;
}

.pano-post-content p > a {
  text-decoration: none;
  color: #0d8377;
}
.pano-post-content h2 > a {
  text-decoration: none;
  font-size: 20px;
  color: #0d8377;
}
figure {
  margin: 0;
}
figure > a {
  margin: 0 !important;
}

figcaption {
  margin: 0.5em 20px 1em;
  font-size: 0.8em;
  font-style: italic;
}

.cover {
  margin-top: 20px;
  margin-bottom: 5px;
  padding-top: 66.66%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.slider {
  width: 100%;
  position: relative;
}

a[class|='arrow'] {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.arrow-left {
  left: -50px;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(45deg);
  transition: left 0.5s;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.7);
}
.arrow-left:hover {
  left: -55px;
}

.arrow-right {
  right: -50px;
  border-bottom: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  transform: rotate(-45deg);
  transition: right 0.5s;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}
.arrow-right:hover {
  right: -55px;
}

.cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: calc(100% - 50px);
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 100;
}

.pano-post-content img {
  width: 100%;
  display: block;
}

.pano-post-content > img {
  border-radius: 10px;
}

/* .pano-close-post-button { */
/* color: #fff; */
/* text-align: center; */
/* position: absolute; */
/* right: 15px; */
/* bottom: 8px; */
/* transition: color .1s ease-in-out,background .1s ease-in-out;	 */
/* }	 */

/* .pano-close-post-button:hover { */
/* color: #dd214a; */
/* cursor: pointer; */
/* } */

.answers {
  margin: 25px 20px 0 20px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr;
}

.answers a {
  margin: 0;
}

.pano-post-footer {
  margin: 15px 20px 35px 20px;
  display: grid;
  grid-gap: 20px;
  /* grid-template-columns: repeat(12, 1fr); */
}

.response {
  grid-column-end: span 12;
}

.response .true {
  color: green;
}

.response .false {
  color: red;
}

/* CSS BUTTONS */
/* https://webdesignerwall.com/demo/css-buttons.html# */

.white {
  color: #222;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top, #fff, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

.white:hover {
  color: #000;
  background: #fff;
}

.white.selected {
  color: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#eeeeee));
  background: -moz-linear-gradient(top, #dbdbdb, #eeeeee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dbdbdb', endColorstr='#eeeeee');
}

.green {
  color: #e8f0de;
  border: solid 1px #538312;
  background: #64991e;
  background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
  background: -moz-linear-gradient(top, #7db72f, #4e7d0e);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
/* .green:active {
  color: #a9c08c;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4e7d0e),
    to(#7db72f)
  );
  background: -moz-linear-gradient(top, #4e7d0e, #7db72f);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
} */
.red {
  color: #faddde;
  border: solid 1px #980c10;
  background: #d81b21;
  background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background: -moz-linear-gradient(top, #ed1c24, #aa1317);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
/* .red:active {
  color: #de898c;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#aa1317),
    to(#ed1c24)
  );
  background: -moz-linear-gradient(top, #aa1317, #ed1c24);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa1317', endColorstr='#ed1c24');
} */
.orange {
  color: #fef4e9;
  border: solid 1px #da7c0c;
  background: #f78d1d;
  background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
  background: -moz-linear-gradient(top, #faa51a, #f47a20);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
/* .orange:active {
  color: #fcd3a5;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f47a20),
    to(#faa51a)
  );
  background: -moz-linear-gradient(top, #f47a20, #faa51a);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
} */

.bigrounded {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

.button.reply,
.button.close {
  /* grid-column-end: span 6; */
  margin: 0 auto;
}

.button.disabled {
  color: #999;
  user-select: none;
}

.button {
  vertical-align: baseline;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  padding: 0.8em 2em 0.7em;
  /* text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); */
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  /* -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
}

@media only screen and (min-width: 1200px) {
  .pano-post-header {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 1600px) {
  #locations .gallery {
    max-width: 800px;
  }
}

@media only screen and (max-width: 1000px) {
  #locations .gallery {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 800px) {
  .pano-post-content.flex {
    display: block;
    padding: 0 0 25px 0;
    margin-top: -30px;
  }

  .pano-post-wrapper {
    max-width: 600px;
  }

  .column figcaption {
    margin: 0.5em 20px 1em;
  }
  .intro-content h1 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 500px) {
  .col3 {
    grid-template-columns: 1fr !important;
  }

  .col2 {
    grid-template-columns: 1fr !important;
  }

  .col1 {
    grid-template-columns: 1fr !important;
  }
  #score {
    font-size: 40px;
    margin: 0 auto 10px;
  }
  .menu-container {
    width: 100%;
  }

  #locations .gallery {
    grid-template-columns: repeat(1, 1fr);
    margin: 0;
    padding: 0 30px;
  }
}
