.slider {
  padding: 32px;
  color: #fff;
}
.slider .swiper-container {
  width: 100%;
  height: 100%;
}
.slider__flex {
  display: flex;
  align-items: flex-start;
}
.slider__col {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-right: 32px;
}
.slider__prev,
.slider__next {
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider__prev:focus,
.slider__next:focus {
  outline: none;
}
.slider__thumbs {
  height: calc(400px - 96px);
}
.slider__thumbs .slider__image {
  transition: 0.25s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}
.slider__thumbs .slider__image:hover {
  opacity: 1;
}
.slider__thumbs .swiper-slide-thumb-active .slider__image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}
.slider__images {
  height: 400px;
}
.slider__images .slider__image img {
  transition: 3s;
}
.slider__images .slider__image:hover img {
  transform: scale(1.1);
}
.slider__image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .slider__flex {
    flex-direction: column-reverse;
  }
  .slider__col {
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-top: 24px;
    width: 100%;
  }
  .slider__images {
    width: 100%;
  }
  .slider__thumbs {
    height: 100px;
    width: calc(100% - 96px);
    margin: 0 16px;
  }
  .slider__prev,
  .slider__next {
    height: auto;
    width: 32px;
  }
}

/*
Popup
*/
.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: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.show-tour-3d .popup-content {
  background-color: #fefefe;
  margin: auto;
  width: 100%;
  height: 100%;
}
.show-tour-3d .popup-content span {
  position: absolute;
  right: 30px;
  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;
}

#tour3d-popup-btn {
  width: auto;
  height: 40px;
  padding: 10px;
  color: #000;
  font-weight: bold;
  background-color: #f9c56a;
  border-radius: 10px;
  font-size: 16px;
}

/*
  Comments
  */

#write-comments {
  padding: 10px 20px;
  background-color: #d86419;
  width: 200px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  float: right;
  cursor: pointer;
}
#write-comments img {
  height: 20px;
  margin-right: 10px;
}
#comments .comment-avatar {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: inline-block;
}
#comments .comment-name {
  font-size: 18px;
  color: #2c2c2c;
  font-weight: bold;
  margin-left: 20px;
}
#comments .comment-detail {
  font-size: 16px;
  color: #666666;
  margin-top: 20px;
  text-align: justify;
}
.comments {
  margin-top: 40px;
}
.rating-star {
  float: right;
}
.rating-star img {
  margin-left: 5px;
  height: 25px;
}

.show-writing-comment .popup-flex {
  margin: 30px;
}
.show-writing-comment .popup-container {
  visibility: hidden;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
.show-writing-comment .popup-content {
  background-color: #000000cc;
  margin: auto;
  width: 100%;
  height: 100%;
}

.show-writing-comment .show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.show-writing-comment .writing-comment-form {
  border-radius: 10px 10px 0 0;
  width: 30%;
  margin-left: 35%;
  height: 300px;
  padding: 20px;
}
.show-writing-comment .writing-comment-form-header {
  border-radius: 10px 10px 0 0;
  background-color: #d86419;
  padding: 10px 10px;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.show-writing-comment .writing-comment-form-header .writing-comment-close {
  float: right;
  margin-top: -10px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 30px;
}
.show-writing-comment .writing-comment-form-header img {
  height: 20px;
  margin-right: 10px;
}
.show-writing-comment .writing-comment-form-main {
  padding: 10px 40px;
}

#formDanhGia input[type="text"],
#formDanhGia input[type="email"],
#formDanhGia input[type="tel"],
#formDanhGia input[type="url"],
#formDanhGia textarea,
#formDanhGia button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#formDanhGia {
  background: #f9f9f9;
  margin: 150px 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border-radius: 10px;
}

#formDanhGia h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#formDanhGia h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 16px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#formDanhGia input[type="text"],
#formDanhGia input[type="email"],
#formDanhGia input[type="tel"],
#formDanhGia input[type="url"],
#formDanhGia textarea {
  width: 100%;
  border: none;
  background: #e1e1e1;
  margin: 0 0 5px;
  padding: 20px;
}

#formDanhGia textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#formDanhGia #contact-submit {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #d86419;
  color: #fff;
  margin: 0 0 5px;
  padding: 20px;
  font-size: 15px;
  border-radius: 10px;
}

#formDanhGia button[type="submit"]:hover {
  background: #d86419;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#formDanhGia button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#formDanhGia input:focus,
#formDanhGia textarea:focus {
  outline: 0;
  border: none;
}

/* component */

.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating > input {
  display: none;
}

.rating > label {
  cursor: pointer;
  width: 60px;
  height: 60px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}

.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

/*
Thành công
*/
.alert-box {
  max-width: 300px;
  min-height: 200px;
}
.alert-icon {
  padding-bottom: 20px;
}
.send-comment-success,
.send-comment-danger {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 0;
}
.show-alert {
  visibility: visible;
  opacity: 1;
  animation: float-alert 2s none;
}

@keyframes float-alert {
  0% {
    top: -200px;
  }
  33% {
    top: 50px;
  }
  66% {
    top: 50px;
  }
  100% {
    top: -200px;
  }
}

/*
Comment
*/
#commentss .tabs-nav li {
  float: left;
  width: 40px;
}
#commentss .tabs-nav li:first-child a {
  border-right: 0;
  border-top-left-radius: 6px;
}
#commemtss .tabs-nav li:last-child a {
  border-top-right-radius: 6px;
}
#commemtss a {
  background: #eaeaed;
  border: 1px solid #cecfd5;
  color: #0087cc;
  display: block;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
}
#commemtss a:hover {
  color: #ff7b29;
}
#commemtss .tab-active a {
  background: #fff;
  border-bottom-color: transparent;
  color: #2db34a;
  cursor: default;
}
#commemtss .tabs-stage {
  border: 1px solid #cecfd5;
  border-radius: 0 0 6px 6px;
  border-top: 0;
  clear: both;
  padding: 24px 30px;
  position: relative;
  top: -1px;
}
.article-name-slider {
  font-family: Times New Roman;
  font-size: 28px;
  font-style: italic;
  color: #000000;
  margin-top: 10px;
}

/*
    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;
}

.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;
}
.btn-hien-vat-3D{
  float: left;
  padding: 5px 20px;
  background-color: #D86419;
  margin-top: 40px;
  color: #fff;
  border-radius: 5px;}
.player{
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #A8A8A8;
  border-radius: 5px;
  padding: 5px 10px;}
#article-detail{
  margin-top: 25px;
  line-height: 40px;}       
  #article-detail p span{
      color: #2C2C2C;}
  #article-detail p span:first-child{
      font-weight: bold;}
#link_tour_3d{
  width: 100%;
  height: 100%; 
  border: none;}
.popup-content .hiden-popup{
  width: 100%;
  height: 50px; 
  background-color: #000; 
  position: absolute; 
  bottom: 0; 
  left: 0;}
.swiper-slide .article-cl{
  font-weight: light;
  color: #666666;
  font-size: 15px;
  margin-top: 10px}
.writing-comment-form h4 span{
  color: #8F0000;}
.hien-vat-khac{
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;}
  .mt-40{
    margin-top: 40px;
  }
@media only screen and (max-width: 768px) {
  .show-writing-comment .writing-comment-form {
    border-radius: 10px 10px 0 0;
    width: 96%;
    margin-left: 2%;
    height: 300px;
    padding: 20px;
  }
  .rating-star {
    float: left;
  }
  .article-name-slider {
    font-size: 16px;
  }
  #formDanhGia {
    margin: 20px 0;
  }
  #write-comments {
    float: left;
  }
  .slider__images {
    height: auto;
  }
  .slider .swiper-container {
    width: 100%;
    height: auto;
  }
  .article-name-slider {
    font-size: 15px;
  }
}
