@font-face {
  font-family: Myriadpro;
  src: url(../fonts/MyriadPro-BoldCond.otf);
}
@font-face {
  font-family: HelveticaNeue;
  src: url(../fonts/HelveticaNeue.otf);
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto;
}

/* Scrollbar*/
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #00000029;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  font-family: Roboto;
}

iframe {
  display: block;
  background: #fff;
  border: none;
  width: 100vw;
}

.banner {
  position: fixed;
  width: 100%;
  padding-top: 4.2%;
  background-image: url(../img/icon/banner.png);
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.menu-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  z-index: 3;
}

.sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  animation: rtl 1s none;
  border-radius: 10px 0 0 10px;
  z-index: 2;
}

@keyframes ltr {
  0% {
    right: -400px;
  }

  100% {
    right: 0;
  }
}

@keyframes rtl {
  0% {
    right: 0;
  }

  100% {
    right: -400px;
  }
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar-header {
  height: 80px;
  background-color: #ffffff;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding-left: 40px;
  border-radius: 10px 0 0 0;
}

.sidebar-header p {
  margin: 0;
  line-height: 80px;
}

.sidebar-action,
.sidebar-detail-action {
  padding: 40px;
  background-color: rgb(255, 255, 255, 0.8);
  border-radius: 0 0 0 10px;
}

.sidebar-action ul li img {
  width: 40px;
  margin-right: 30px;
}

.sidebar-action ul li {
  font-size: 20px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.sidebar-action ul li:first-child {
  margin-top: 0;
}

.sidebar-detail {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  animation: rtl 1s none;
  border-radius: 10px 0 0 10px;
  z-index: 200;
  background-color: #f5f5f5;
}

.show {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  animation: ltr 0.5s none;
}

.sidebar-detail .sidebar-header #sidebar-detail-title img {
  width: 40px;
  margin-right: 30px;
}

.sidebar-detail .sidebar-header #sidebar-detail-title {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.sidebar-detail .sidebar-header {
  background-color: #e1e1e1;
}
.sidebar-detail-action {
  height: calc(100vh - 120px);
  overflow: auto;
}
.sidebar-detail-action p {
  overflow: auto;
  text-align: justify;
  font-size: 14px;
  padding-right: 10px;
  font-family: HelveticaNeue;
  line-height: 25px;
  margin-top: 30px;
}

.sidebar-detail-action .list-article-item {
  margin-top: 40px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  box-shadow: 0px 3px 6px #00000029;
}
.sidebar-detail-action .list-article-item .article-title-index {
  display: inline-block;
  width: calc(100% - 120px);
  margin: 0 10px;
  font-family: Times New Roman;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  color: #000000;
}
.sidebar-detail-action .list-article-item:first-child {
  margin-top: 0 !important;
}

/*
Popup
*/
.show-tour-3d {
  z-index: 300;
  background-color: transparent;
}

.show-tour-3d .show-tour-3d button {
  border: none;
  background: #333;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
  font-family: "Saira Semi Condensed", sans-serif;
}

.show-tour-3d .popup-flex {
  margin: 30px;
}

.show-tour-3d .popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.show-tour-3d .popup-content {
  background-color: #fff;
  margin: auto;
  width: 100%;
  height: 100%;
}

.show-tour-3d .popup-content span img {
  position: absolute;
  left: 30px;
  top: 15px;
  color: #fff;
  float: right;
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
  z-index: 100;
}

.show-tour-3d .show {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.show-tour-3d .more-articles {
  margin: 30px 30px 50px;
  font-size: 20px;
}

.show-tour-3d .more-articles a {
  margin: 0 10px;
  text-decoration: underline;
}
.link_tour_3d {border: none; height: 100%;
  width: 100%; }
#tour3d-popup-btn {
  width: auto;
  height: 40px;
  padding: 10px;
  color: #000;
  font-weight: bold;
  background-color: #f9c56a;
  border-radius: 10px;
  font-size: 16px;
}
.article-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.article-detail-text {
  margin-top: 100px;
  padding-left: 20px;
}
.article-detail-title {
  font-family: Times New Roman;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  padding-right: 40px;
  
}
.article-detail-desc {
  font-family: Times New Roman;
  font-size: 20px;
  font-style: italic;
  color: #000; text-align: justify; height: calc(100vh - 260px); overflow: auto; font-size: 22px; padding-right: 40px; margin-top: 20px;
}

.article-detail-title-header {
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 60px;
}

.article-detail-description {
  margin-top: 40px;
  overflow: auto;
  height: calc(100vh - 260px);
  padding-right: 10px;
  font-size: 16px;
  line-height: 21px;
}

/*
Audio
*/

.wavesurfer {
  box-sizing: border-box;
  cursor: pointer;
  height: 275px;
  margin-bottom: 30px;
  overflow: hidden;
  padding-top: 60px;
  pointer-events: none;
  position: relative;
  width: 100%;
  z-index: 1;
}

.wavesurfer__elem {
  height: 50px;
  width: 100%;
  z-index: 0;
}

.controls {
  text-align: center;
  width: auto;
  margin-right: 20px;
  height: 50px;
}

.player {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 40px;
  margin-top: 20px;
  background-color: #fff;
}

.button__play {
  background-color: #666666;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 40px;
}

.button__play:focus {
  outline: none;
}

.button__play-iconplay {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  height: 0;
  left: 14px;
  position: absolute;
  top: 10px;
  width: 0;
}

.button__play-iconpause {
  display: none;
  height: 10px;
  left: 10px;
  position: absolute;
  top: 10px;
}

.button__play-iconpause:before,
.button__play-iconpause:after {
  background: #fff;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  top: 0;
  width: 4px;
}

.button__play-iconpause:before {
  left: 2px;
}

.button__play-iconpause:after {
  left: 12px;
}

/**/
.hide {
  display: none;
}


@media only screen and (max-width: 768px) {
  .article-detail {
    display: grid;
    grid-template-columns: 1fr;
  }
  .article-detail-text {
    margin-top: 20px;
    padding-left: 20px;
  }
  .link_tour_3d {
    border: none; 
    height: 60vh;
    width: 100%; }
    .article-detail-title {
      font-family: Times New Roman;
      font-size: 16px;
      font-weight: bold;
      font-style: italic;
      padding-right: 40px;
      
    }
    .article-detail-desc {
      font-family: Times New Roman;
      font-size: 14px;
      font-style: italic;
      color: #000; text-align: justify; height: calc(40vh - 100px); overflow: auto;  padding-right: 20px; margin-top: 20px;
    }
    
}