@charset "UTF-8";
.quickbtn {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: 6rem;
  z-index: 99;
}
.quickbtn ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.quickbtn ul li {
  display: block;
}
.quickbtn ul li a {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00a89d;
  border-radius: 50%;
  padding: 6px;
}
.quickbtn ul li a img {
  width: 100%;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}
.quickbtn ul li a::after {
  content: attr(data-title);
  position: absolute;
  right: calc(100% - 40px);
  background-color: #00a89d;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  white-space: nowrap;
  padding: 8px 25px 8px 25px;
  z-index: -1;
  border-radius: 0.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  border: 1px solid white;
}
.quickbtn ul li a:hover::after {
  right: calc(100% - 20px);
  visibility: visible;
  opacity: 1;
}
.quickbtn ul li a::before {
  content: "";
  border-radius: 100%;
  border: 6px solid #00FFCB;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
.quickbtn ul li a.messenger {
  background-color: #b640e8;
}
.quickbtn ul li a.messenger::before {
  border-color: #b640e8;
}
.quickbtn ul li a.messenger::after {
  background-color: #b640e8;
}
.quickbtn ul li a.zalo {
  background-color: #086dff;
}
.quickbtn ul li a.zalo::before {
  border-color: #086dff;
}
.quickbtn ul li a.zalo::after {
  background-color: #086dff;
}
.quickbtn ul li a.phone {
  background-color: #45b931;
}
.quickbtn ul li a.phone::before {
  border-color: #45b931;
}
.quickbtn ul li a.phone::after {
  background-color: #45b931;
}

@keyframes ring2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes ring {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}
@keyframes phone-vr-circle-fill {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
.btn-call {
  padding: 3px 28px 3px 3px;
  border: 1px solid white;
  border-radius: 15px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
}
.btn-call img {
  animation: wiggle 2s infinite;
  width: 27px;
  border-radius: 50%;
  padding: 3px;
  margin-right: 5px;
}

.bottom-sidebar {
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  bottom: 0;
  left: 0;
  position: fixed;
  padding: 6px;
  width: 100%;
}
.bottom-sidebar ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0;
}
.bottom-sidebar ul a {
  background-color: #99732d;
  color: white;
  padding: 10px 16px;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  border-radius: 30px;
  font-size: 1.1rem;
}
.bottom-sidebar ul a span {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bottom-sidebar ul a img {
  height: 25px;
  margin-right: 10px;
}

.pulse {
  animation-name: pulse;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 5px 0;
  gap: 10px;
}
.pagination a {
  display: block;
  border-radius: 50%;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  color: #000;
  transition: all 0.4s;
}
.pagination li.active a,
.pagination li a:hover {
  background-color: rgb(0, 168, 157);
  color: white;
}
.pagination li a:hover {
  opacity: 0.7;
}
.pagination li.next a::after {
  content: "›";
}
.pagination li.prev a::after {
  content: "‹";
}

.item_slide_show .block_thumb_slide_show {
  max-width: 100%;
  margin: 1rem auto;
  position: relative;
}
.item_slide_show .block_thumb_picture img {
  position: absolute;
}

@media (max-width: 768px) {
  .bottom-sidebar ul a {
    font-size: 14px;
  }
  .bottom-sidebar ul a {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
#newDetailContent h3 {
  margin: 0.75rem 0;
}
#newDetailContent p {
  margin-bottom: 10px;
}
#newDetailContent img {
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
}

.spbox {
  border-radius: 6px;
  margin-bottom: 10px;
  position: relative;
  border: 2px dashed #ff7930;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.spbox .sp-label {
  position: absolute;
  background: #ff7930;
  color: white;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: bold;
  left: -10px;
  top: -7px;
}
.spbox .sp-label:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 100% 0);
  -webkit-clip-path: polygon(0 0, 100% 50%, 100% 0);
  background-color: #ff7930;
  opacity: 0.5;
  height: 100%;
}

.spbox.spbox-2 {
  border-style: solid;
}

.eslide {
  display: block;
}
.eslide figure {
  position: relative;
  padding-top: 50%;
  width: 100%;
  overflow: hidden;
}
.eslide figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eslide figure figcaption {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  text-align: center;
  padding: 6px 12px;
  bottom: 0;
}
.eslide figure figcaption.top {
  bottom: auto;
  top: 0;
}
.eslide figure figcaption.left {
  text-align: left;
}
.eslide figure figcaption.right {
  text-align: right;
}

#btnNav {
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: row;
  font-weight: bold;
}

table.slide {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: calc(var(--swiper-navigation-size) + 10px);
  height: calc(var(--swiper-navigation-size) + 10px);
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: rgb(0, 168, 157);
}

.btn {
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  width: 200px;
  padding: 10px 0;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.2);
  transition: 0.4s;
  position: relative;
}
.btn.reg, .btn.btn-primary {
  color: white;
  background-color: rgb(104, 85, 224);
}
.btn:hover {
  color: white;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.6);
  background-color: rgb(104, 85, 224);
}
.btn.log, .btn .btn-default {
  color: rgb(104, 85, 224);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(104, 85, 224);
}
.btn.bao-gia {
  padding-right: 35px;
  padding-left: 12px;
  transform: translateY(-50%);
  background-image: url(../img/tap.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center right 5px;
  position: relative;
}
.btn.bao-gia:after {
  content: "";
  border-radius: 100%;
  border: 6px solid white;
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 15px;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 5px;
  animation: ring2 1.5s infinite;
}

.e-modal {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  transform: translateY(20px);
  z-index: 9999;
}
.e-modal.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.e-modal .e-modal-bg {
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.e-modal .e-modal-content {
  position: relative;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: white;
  width: 100%;
  max-width: 400px;
}
.e-modal input, .e-modal textarea {
  border: 1px solid rgb(0, 168, 157);
  padding: 8px 12px;
  margin: 0.5rem 0 0;
  border-radius: 0.375rem;
}
.e-modal .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.e-modal .btn-close span::after, .e-modal .btn-close span::before {
  width: 20px;
  height: 2px;
  background: #ff7930;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
}
.e-modal .btn-close span::after {
  transform: rotate(45deg);
}
.e-modal .btn-close span::before {
  transform: rotate(-45deg);
}/*# sourceMappingURL=over.css.map */