/** BREADCRUMB */
.gv_breadcrumb_block {
  background: transparent;
  font-family: var(--primary-Font);
  border-bottom: 1px dotted #ccc;
}
.gv_breadcrumb_block .breadcrumb-nav {
  padding: 0;
  margin: 0;
}
.gv_breadcrumb_block .breadcrumb-nav span,
.gv_breadcrumb_block .breadcrumb-nav a {
  font-family: inherit;
  font-size: 15px;
  color: #000;
  font-weight: 400;
  line-height: 1;
}

/** DESC */
.desc {
  font-family: var(--primary-Font);
  font-size: 15px;
  line-height: 1.56;
}
.desc img {
  max-width: 100%;
  height: auto;
}
.desc h1 {
  font-size: 22px;
}
.desc h2 {
  font-size: 20px;
}
.desc h3 {
  font-size: 18px;
}
.desc h4 {
  font-size: 17px;
}
.desc h5 {
  font-size: 16px;
}
.desc h6 {
  font-size: 15px;
}
.desc .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.desc .aligncenter img {
  max-width: 100%;
  height: auto;
}
.desc .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.desc .alignleft img {
  max-width: 100%;
  height: auto;
}
.desc .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.desc .alignright img {
  max-width: 100%;
  height: auto;
}

/** ENTRY CONTENT */
.entry-content {
  font-family: var(--primary-Font);
  font-size: 15px;
  line-height: 1.67;
  text-align: justify;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.entry-content h1 {
  font-size: 24px;
  margin-bottom: 16px;
}
.entry-content h2 {
  font-size: 22px;
  margin-bottom: 16px;
}
.entry-content h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.entry-content h4 {
  font-size: 18px;
  margin-bottom: 16px;
}
.entry-content h5 {
  font-size: 17px;
  margin-bottom: 16px;
}
.entry-content h6 {
  font-size: 16px;
  margin-bottom: 16px;
}
.entry-content iframe {
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .entry-content iframe {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .entry-content iframe {
    height: auto;
  }
}
.entry-content object {
  max-width: 100%;
}
.entry-content ul, .entry-content ol {
  padding-left: 15px;
  margin-bottom: 16px;
}
.entry-content table {
  border: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
}
.entry-content table thead tr th, .entry-content table thead tr td {
  padding: 7px 16px;
  background: var(--primary-Color);
  color: #fff !important;
  border: 1px dotted #fff;
}
.entry-content table thead tr th *, .entry-content table thead tr td * {
  color: #fff !important;
}
.entry-content table tbody tr td, .entry-content table tbody tr th {
  padding: 7px 16px;
  border: 1px dotted #dcdcdc;
}
.entry-content .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
  margin-bottom: 16px;
}
.entry-content .aligncenter img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 16px;
}
.entry-content .alignleft img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 16px;
}
.entry-content .alignright img {
  max-width: 100%;
  height: auto;
}
.entry-content .wp-caption-text {
  background: #fdfdfd;
  text-align: center;
  margin-bottom: 13px;
  font-style: italic;
  padding: 6px;
  font-size: 13px;
}

/**
 * LOOP RELATED
 */
.related_inner {
  position: relative;
}
.related_inner .title {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}
.related_inner .title a {
  color: #333;
}
.related_inner .title a:hover {
  color: #bc002d;
  text-decoration: underline;
}
.related_inner > span {
  position: absolute;
  top: 10px;
  right: 0;
  color: #999;
  font-size: 14px;
}

/** Paginate Nav */
.paginate-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.paginate-nav ul > li {
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.paginate-nav ul > li span, .paginate-nav ul > li a {
  height: 40px;
  width: 40px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  font-weight: 600;
}
.paginate-nav ul > li span i, .paginate-nav ul > li a i {
  position: relative;
  width: 16px;
  height: 9px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.paginate-nav ul > li a.prev i {
  background-image: url("../images/svg/ick-prev.svg");
}
.paginate-nav ul > li a.next i {
  background-image: url("../images/svg/ick-next.svg");
}
.paginate-nav ul > li span.current {
  background: var(--primary-Color);
  color: #fff;
}
.paginate-nav ul li.prv-link a i, .paginate-nav ul li.prv-link span i {
  background-image: url("../images/svg/ick-prev.svg");
}
.paginate-nav ul li.nxt-link a i, .paginate-nav ul li.nxt-link span i {
  background-image: url("../images/svg/ick-next.svg");
}
.paginate-nav ul li.active a, .paginate-nav ul li.active span {
  background: #008CA5;
  color: #fff;
}

/** Paginav Product */
.woocommerce nav.woocommerce-pagination ul {
  display: flex !important;
  flex-wrap: wrap;
  border: 0 !important;
  margin: 0 !important;
  white-space: unset !important;
  justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul > li {
  border: 0 !important;
  padding: 0 4px !important;
  float: none !important;
}
.woocommerce nav.woocommerce-pagination ul > li span, .woocommerce nav.woocommerce-pagination ul > li a {
  height: 40px;
  width: 40px;
  background: #f0f0f0 !important;
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #000 !important;
  font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul > li span i, .woocommerce nav.woocommerce-pagination ul > li a i {
  position: relative;
  width: 16px;
  height: 9px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.woocommerce nav.woocommerce-pagination ul > li span:hover, .woocommerce nav.woocommerce-pagination ul > li a:hover {
  background: var(--primary-Color) !important;
  color: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul > li a.prev i {
  background-image: url("../images/svg/ick-prev.svg");
}
.woocommerce nav.woocommerce-pagination ul > li a.next i {
  background-image: url("../images/svg/ick-next.svg");
}
.woocommerce nav.woocommerce-pagination ul > li span.current {
  background: var(--primary-Color) !important;
  color: #fff !important;
}

/** FORM POPUP */
.gvx-form-popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.77);
}
.gvx-form-popup .inner {
  width: 90%;
  max-width: 520px;
  position: relative;
  padding: 10px;
  background: #fff;
  color: #000;
}
.gvx-form-popup .inner > button {
  position: absolute;
  right: -10px;
  top: -10px;
  height: 40px;
  width: 40px;
  background: var(--primary-Color);
  color: #FFF;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  outline: none;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.17);
}
.gvx-form-popup .inner > button span {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #fff;
}
.gvx-form-popup .inner > button span i {
  font-size: 16px;
  color: var(--primary-Color);
}
.gvx-form-popup .inner .name {
  background: var(--primary-Color);
  color: #fff;
  padding: 12px 16px;
  margin-bottom: 24px;
  text-align: center;
}
.gvx-form-popup .inner .name h3 {
  font-size: 21px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 30px;
}
.gvx-form-popup .inner .form {
  padding: 0 0px;
  display: block;
}
.gvx-form-popup .inner .form .wpcf7-form input[type=text],
.gvx-form-popup .inner .form .wpcf7-form input[type=tel],
.gvx-form-popup .inner .form .wpcf7-form input[type=email],
.gvx-form-popup .inner .form .wpcf7-form input[type=date],
.gvx-form-popup .inner .form .wpcf7-form textarea,
.gvx-form-popup .inner .form .wpcf7-form select {
  border: 1px solid #dfdfdf;
  padding: 10px 15px;
  color: #000;
  background: transparent;
  font-family: var(--primary-Font);
  line-height: 20px;
  font-size: 15px;
  margin-bottom: 14px;
  width: 100%;
  outline: none;
  border-radius: 5px;
}
.gvx-form-popup .inner .form .wpcf7-form span.wpcf7-radio {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.gvx-form-popup .inner .form .wpcf7-form span.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 10px;
}
.gvx-form-popup .inner .form .wpcf7-form span.wpcf7-radio .wpcf7-list-item input[type=radio] {
  margin: 10px 0;
  margin-left: 6px;
  width: auto;
}
.gvx-form-popup .inner .form .wpcf7-form span.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 10px;
  display: block;
}
.gvx-form-popup .inner .form .wpcf7-form input.wpcf7-submit {
  color: #FFF;
  background: var(--primary-Color);
  border: 0;
  margin-bottom: 0;
  outline: none;
  width: 100%;
  border-radius: 5px;
  padding: 11px 15px;
  line-height: 20px;
  font-size: 15px;
  text-transform: none;
}

/**
 * ANIMATION
 */
@keyframes slide-top-to-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes slide-left-to-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/**
 * GIFT BOX
 */
.facebook-chat-ring-wrap {
  position: fixed;
  bottom: 190px;
  right: 0;
  z-index: 33;
}
.facebook-chat-ring-wrap .facebook-chat-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.facebook-chat-ring-wrap .facebook-chat-ring .facebook-chat-ring-circle {
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #3095f4;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
.facebook-chat-ring-wrap .facebook-chat-ring .facebook-chat-ring-circle-fill {
  width: 60px;
  height: 60px;
  top: 20px;
  left: 20px;
  position: absolute;
  background-color: #3095f4;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.facebook-chat-ring-wrap .facebook-chat-ring .facebook-chat-ring-img-circle {
  background-color: #3095f4;
  width: 40px;
  height: 40px;
  top: 30px;
  left: 30px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facebook-chat-ring-wrap .facebook-chat-ring .facebook-chat-ring-img-circle .pps-btn-img {
  display: flex;
}
.facebook-chat-ring-wrap .facebook-chat-ring .facebook-chat-ring-img-circle .pps-btn-img img {
  width: 25px;
  height: 25px;
}

/**
 * ZALO CHAT
 */
.button-zalo-ring-wrap {
  position: fixed;
  bottom: 110px;
  right: 0;
  z-index: 33;
}
.button-zalo-ring-wrap .button-zalo-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.button-zalo-ring-wrap .button-zalo-ring .button-zalo-ring-circle {
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #16b3f0;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
.button-zalo-ring-wrap .button-zalo-ring .button-zalo-ring-circle-fill {
  width: 60px;
  height: 60px;
  top: 20px;
  left: 20px;
  position: absolute;
  background-color: rgb(22, 179, 240);
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.button-zalo-ring-wrap .button-zalo-ring .button-zalo-ring-img-circle {
  background-color: #16b3f0;
  width: 40px;
  height: 40px;
  top: 30px;
  left: 30px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-zalo-ring-wrap .button-zalo-ring .button-zalo-ring-img-circle .pps-btn-img {
  display: flex;
}
.button-zalo-ring-wrap .button-zalo-ring .button-zalo-ring-img-circle .pps-btn-img img {
  width: 25px;
  height: 25px;
  border-radius: 100%;
}

/**
 * CALL NOW
 */
.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 33;
}
.hotline-phone-ring-wrap .hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-circle {
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #e10202;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-circle-fill {
  width: 60px;
  height: 60px;
  top: 20px;
  left: 20px;
  position: absolute;
  background-color: #e10202;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle {
  background-color: #e10202;
  width: 40px;
  height: 40px;
  top: 30px;
  left: 30px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle .pps-btn-img {
  display: flex;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle .pps-btn-img img {
  width: 25px;
  height: 25px;
}

@keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@keyframes phonering-alo-circle-img-anim {
  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);
  }
}/*# sourceMappingURL=style.css.map */