/** 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%;
  }
}
/**
 * TASKBAR
 */
.gv_button_task {
  position: fixed;
  background: #fff;
  bottom: 0;
  z-index: 99999;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 5px 0px #bbb;
}
.gv_button_task .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}
.gv_button_task .inner > a {
  display: inline-block;
  padding: 10px 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
}
.gv_button_task .inner > a > img {
  height: 26px;
  width: auto;
}
.gv_button_task .inner > a > span, .gv_button_task .inner > a strong {
  display: block;
  padding-top: 5px;
}

@media (min-width: 576px) {
  .gv_button_task {
    background: none;
    box-shadow: initial;
    left: initial;
    right: 15px;
    bottom: 30px;
  }
  .gv_button_task .inner {
    padding: 0;
    width: 40px;
    flex-wrap: wrap;
  }
  .gv_button_task .inner > a {
    display: block;
    position: relative;
    margin: 10px 0;
    padding: 0;
  }
  .gv_button_task .inner > a > img {
    height: 40px;
  }
  .gv_button_task .inner > a > span {
    display: inline-block;
    position: absolute;
    background: #fff;
    padding: 5px 10px;
    font-size: 13px;
    right: 100%;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }
  .gv_button_task .inner > a > span::after {
    height: 10px;
    width: 5px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #FFF;
    content: "";
    right: -5px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }
  .gv_button_task .inner > a > strong {
    display: inline-block;
    position: absolute;
    background: #fff;
    padding: 5px 10px;
    font-size: 13px;
    right: 120%;
    font-weight: 500;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
  }
  .gv_button_task .inner > a > strong::after {
    height: 10px;
    width: 5px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #FFF;
    content: "";
    right: -5px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }
  .gv_button_task .inner > a:hover > span {
    right: 115%;
    opacity: 1;
    visibility: visible;
  }
}/*# sourceMappingURL=style.css.map */