@charset "UTF-8";
/* Option */
body {
  font-size: 16px;
  color: #333;
}
.category-link {
    text-decoration: none;
    color: inherit;
    z-index: 2;
    position: relative;
}

/* Không cho link chiếm vùng mũi tên */
.accordion-button {
    gap: 8px;
}


* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.aligncenter{display: block;margin: 0 auto}
a {
  text-decoration: none;
  color: #181818;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

a:active,
a:hover {
  color: blue;
}



img {
  max-width: 100%;
  border: none;
  height: auto;
}

b,
strong {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  line-height: normal;
}

h1 {
  font-size: 18px;
  font-weight: 600;
}

h2 {
  font-size: 18px;
  font-weight: 600;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 14px;
}

.table {
  max-width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}

.img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.relative {
  position: relative;
}

.overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}

.linkfull {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.screen-reader-text {
  display: none;
}

.head {
  animation: stuckMoveUp 0.5s;
}

.head.navbar-fixed-top {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: stuckMoveDown 0.5s;
}

@keyframes stuckMoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes stuckMoveUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes stuckFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Container (FAKE theo từng web) */
.row-margin {
  --bs-gutter-y: var(--bs-gutter-x);
  margin-top: calc(-0.5 * var(--bs-gutter-y));
  margin-bottom: calc(-0.5 * var(--bs-gutter-y));
}

.row-margin > * {
  margin-top: 0;
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.row-reverse {
  flex-direction: row-reverse;
}

.column-reverse {
  flex-direction: column-reverse;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
/* input-button */
input[type=text],
input[type=search],
input[type=password],
input[type=email],
input[type=file],
input[type=number],
input[type=date],
input[type=tel],
textarea,
select {
  width: 100%;
  max-width: 100%;
  display: block;
  outline: none;
  border: 1px solid #e6e6e6;
  padding: 11px 12px;
  color: #999999;
  font-weight: 500;
  border-radius: 4px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #999999;
}

input[type=submit] {
  font-weight: 500;
  padding: 12px 24px;
  color: #f2f2f2;
  background-color: #5BA7DB;
  border-radius: 4px;
  text-align: center;
  border: none;
  transition: all 0.3s;
}

input[type=submit]:hover {
  background-color: #FFCC29;
  color: #333;
}

.select2-container .select2-selection--single {
  height: 48px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #e6e6e6;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  color: #999999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

.select2-dropdown {
  border: 1px solid #e6e6e6;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #e6e6e6;
}

.select2-search--dropdown {
  padding: 4px 4px 12px 4px;
}

.select2-container--default .select2-results > .select2-results__options {
  font-size: 14px;
}

/* Contact-form7 */
form .row {
  --bs-gutter-x: 20px;
}

.wpcf7-spinner {
  position: absolute;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group .name {
  margin-bottom: 5px;
  font-weight: 600;
}

div.wpcf7 .ajax-loader {
  position: absolute;
}

.wpcf7-form-control-wrap {
  position: initial;
}

.wpcf7 .wpcf7-not-valid-tip {
  position: relative;
  padding: 5px 10px !important;
  line-height: 1.2em;
  left: auto !important;
  border-radius: 3px;
  background-color: #f1f1f1 !important;
  border: 0 !important;
  color: #000;
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 99;
  font-size: 12px;
  margin-bottom: 5px;
}

.wpcf7 .wpcf7-not-valid-tip:after {
  bottom: 100%;
  left: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #f1f1f1;
  border-width: 5px;
  margin-left: -10px;
}

.wpcf7 .wpcf7-validation-errors {
  display: none !important;
}

/* Content-post */
.wp-block-image.aligncenter > figcaption,
.wp-block-image .aligncenter > figcaption,
.wp-block-image.alignleft > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image.alignright > figcaption,
.wp-block-image .alignright > figcaption {
  display: block;
}

.content-post ul,
.content-post ol {
  padding-left: 18px;
}

.content-post li {
  position: relative;
  margin-bottom: 6px;
}

.content-post blockquote {
  background: #f6f6f6;
  position: relative;
  padding: 16px 16px 6px 32px;
}

.content-post blockquote:before {
  content: open-quote;
  font-weight: bold;
  font-size: 30px;
  position: absolute;
  left: 8px;
  top: 0;
}

.content-post blockquote:after {
  content: close-quote;
  font-weight: bold;
  font-size: 30px;
  position: absolute;
  bottom: 0;
  right: 8px;
  opacity: 0;
  visibility: hidden;
}

.content-post .gallery {
  display: grid;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.content-post .gallery br {
  display: none;
}

.content-post .gallery.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.content-post .gallery.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.content-post .gallery.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.content-post .gallery.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.content-post .gallery.gallery-columns-5 {
  grid-template-columns: repeat(6, 1fr);
}

.content-post .gallery.gallery-columns-5 {
  grid-template-columns: repeat(7, 1fr);
}

.content-post .gallery.gallery-columns-5 {
  grid-template-columns: repeat(8, 1fr);
}

.content-post .gallery.gallery-columns-5 {
  grid-template-columns: repeat(9, 1fr);
}

.content-post .gallery-item {
  margin: 0 !important;
  width: 100% !important;
  display: flex;
  align-items: flex-start;
  float: none !important;
  flex-wrap: wrap;
}

.content-post .gallery-item img {
  border: none !important;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-post a:hover {
  text-decoration: underline;
}

.content-post .wp-caption.aligncenter {
  max-width: 100% !important;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

.content-post .alignnone {
  margin: 0 16px 16px 0;
}

.content-post .aligncenter,
.content-post div.aligncenter {
  display: block;
  margin: 0 auto 16px;
}

.content-post .alignright {
  float: right;
  margin: 0 0 16px 16px;
}

.content-post .alignleft {
  float: left;
  margin: 0 16px 16px 0;
}

a img.alignright {
  float: right;
  margin: 0 0 16px 16px;
}

a img.alignnone {
  margin: 0 16px 16px 0;
}

a img.alignleft {
  float: left;
  margin: 0 16px 16px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  border: none;
  max-width: 100%;
  padding: 0;
}

.wp-caption.alignnone {
  margin: 0 16px 16px 0;
}

.wp-caption.alignleft {
  margin: 0 16px 16px 0;
}

.wp-caption.alignright {
  margin: 0 0 16px 16px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.content-post .wp-caption-text {
  margin: 0;
  padding: 6px;
  text-align: center;
  background: #eee;
  font-size: 14px;
}

/* Widget */
.widget ul,
.widget ol {
  list-style: none;
}

.widget iframe {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.widget .gallery {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.widget .gallery br {
  display: none;
}

.widget .gallery.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.widget .gallery.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.widget .gallery.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.widget .gallery.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.widget .gallery-item {
  margin: 0 !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  float: none;
}

.widget .gallery-item img {
  border: none !important;
}

/* Remove-woo */
.woocommerce a.remove {
  width: 30px;
  height: 22px;
  position: relative;
  transition: opacity 200ms;
  vertical-align: top;
  display: block;
  -webkit-appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  text-indent: -9999px;
}

.woocommerce a.remove:before,
.woocommerce a.remove:after {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAQAAACMnYaxAAAAXUlEQVR4XsWQQQrAQAgD84Pti/JSoaftN1MCdgXxXgYvGfUQyABE4DEIUJmeuKgVlJI5em0RGTesFXXZuLwCzvL2pYbHmfCTNSXxpyyajLGClFy7K1dgaaho7YYovIpO3rju6hYFAAAAAElFTkSuQmCC) 0 0 no-repeat;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 2px;
  display: inline-block;
  content: "";
}

.woocommerce a.remove:before {
  height: 6px;
  transform-origin: -7% 100%;
  -moz-transform-origin: -7% 100%;
  -webkit-transform-origin: -7% 100%;
  transition: transform 150ms;
  -moz-transition: transform 150ms;
  -webkit-transition: transform 150ms;
  width: 14px;
}

.woocommerce a.remove:after {
  background-position: -1px -4px;
  height: 12px;
  margin-left: 1px;
  margin-right: 2px;
  margin-top: 4px;
  width: 11px;
}

.woocommerce a.remove:hover:before {
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: transform 250ms;
  -moz-transition: transform 250ms;
  -webkit-transition: transform 250ms;
}

.woocommerce a.remove:hover {
  background: transparent;
}

/* Support */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  z-index: 99;
}

.supports {
  position: fixed;
  z-index: 999;
  bottom: 40px;
  left: 20px;
}

.supports .item:not(:first-child) {
  margin-top: 10px;
}

.supports .item a {
  width: 100%;
  min-width: 62px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  border: 2px solid #0056b3;
}

.supports .item a .text {
  padding: 5px;
}

.supports .item a span {
  display: block;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}

.supports .item a span:first-child {
  color: #0056b3;
}

.supports .item a span:last-child {
  color: red;
}

.supports .item a img {
  object-fit: contain;
  max-width: 50px;
  max-height: 50px;
}

.supports .item a:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5294117647);
}

.backtop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  transition: 0.5s;
  z-index: 999;
}

.backtop a {
  height: 48px;
  width: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.backtop a img {
  object-fit: contain;
  max-width: 30px;
  max-height: 30px;
}

.backtop a:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5294117647);
}

/* Header */
#header .col-touch {
  display: none;
}

#menu-mobile {
  display: none;
}

/* Category */
.pagination {
  justify-content: center;
}

.pagination ul {
  margin-bottom: 0;
  list-style: none;
}

.pagination ul li {
  display: inline-block;
  margin: 3px;
}

.pagination ul li span,
.pagination ul li a {
  font-size: 16px;
  color: #5BA7DB;
  font-weight: 600;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #f1f1f1;
}

.pagination ul li .current,
.pagination ul li span:hover,
.pagination ul li a:hover {
  background: #00adef;
  color: #fff;
}

/* Single */
.single-tags {
  padding-bottom: 20px;
  color: #666;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.single-tags span {
  margin: 0 5px 5px 0;
}

.single-tags a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  padding: 0 10px;
  background-color: #ececec;
  margin: 0 5px 5px 0;
}

/* Comment-news */
#comments {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

#wpdcom {
  margin: 0;
  max-width: 100%;
  width: 100%;
  padding: 0;
}

#wpdcom .wpd-form .wpdiscuz-textarea-wrap {
  padding: 10px 0;
}

#wpdcom #wpd-threads {
  margin-top: 0;
}

#wpdcom .wpd-thread-list {
  padding: 8px 0;
}

#wpdcom .wpd-prim-button {
  color: #fff !important;
}

#wpdcom .wpd-comment .wpd-comment-right {
  padding-bottom: 12px;
}

#wpdcom .wpd-blog-guest .wpd-comment-author,
#wpdcom .wpd-blog-guest .wpd-comment-author a {
  color: #566ba0;
}

#wpdcom .wpd-blog-administrator .wpd-comment-author,
#wpdcom .wpd-blog-administrator .wpd-comment-author a {
  color: #566ba0;
}

#wpdcom .wpd-up svg {
  fill: #566ba0 !important;
}

#wpdcom .wpd-blog-administrator .wpd-comment-label {
  background-color: #566ba0;
}

#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-administrator .wpd-avatar img {
  border-color: #566ba0;
}

#wpdcom .wpd-up {
  color: #566ba0 !important;
}

/* Sidebar */
.page-sidebar .widget:not(:last-child) {
  margin-bottom: 30px;
}

.page-sidebar .tagcloud {
  display: flex;
  flex-wrap: wrap;
}

.page-sidebar .tagcloud a {
  display: inline-block;
  font-size: 14px !important;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  background-color: #ececec;
  border-radius: 3px;
  margin: 0 5px 5px 0;
}

.page-sidebar .widget_media_image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Detail */
.devvn_prod_variable .quantity {
  padding-left: 0;
}

.woo-variation-swatches.wvs-show-label .variations td {
  text-align: left;
}

/* Comment-Woo (Plugin: Customer Reviews for WooCommerce) */
.cr-all-reviews-shortcode .cr-review-form-item,
.cr-ajax-reviews-review-form .cr-review-form-item,
.cr-reviews-grid .cr-review-form-item {
  max-width: 100%;
  padding: 16px 0;
}

.cr-ajax-reviews-review-form .cr-review-form-item {
  display: none;
}

.cr-onsite-ratings .cr-review-form-rating,
.cr-review-form-rating-overall .cr-review-form-rating {
  max-width: 100%;
}

.cr-all-reviews-shortcode .cr-review-form-comment,
.cr-ajax-reviews-review-form .cr-review-form-comment,
.cr-reviews-grid .cr-review-form-comment {
  max-width: 100%;
}

.cr-all-reviews-shortcode .cr-review-form-ne,
.cr-ajax-reviews-review-form .cr-review-form-ne,
.cr-reviews-grid .cr-review-form-ne {
  max-width: 100%;
}

.cr-all-reviews-shortcode .cr-form-item-media,
.cr-ajax-reviews-review-form .cr-form-item-media,
.cr-reviews-grid .cr-form-item-media {
  max-width: 100%;
}

.cr-form-item-media-none {
  padding: 20px;
  background: #fff;
}

.cr-all-reviews-shortcode .cr-review-form-wrap .cr-review-form-buttons .cr-review-form-submit,
.cr-ajax-reviews-review-form .cr-review-form-wrap .cr-review-form-buttons .cr-review-form-submit,
.cr-reviews-grid .cr-review-form-wrap .cr-review-form-buttons .cr-review-form-submit {
  background-color: #4660ff;
  border-radius: 5px;
}

.cr-all-reviews-shortcode .cr-review-form-buttons .cr-review-form-submit:hover,
.cr-ajax-reviews-review-form .cr-review-form-buttons .cr-review-form-submit:hover,
.cr-reviews-grid .cr-review-form-buttons .cr-review-form-submit:hover {
  background-color: #566ba0;
}

.cr-all-reviews-shortcode .cr-review-form-result,
.cr-ajax-reviews-review-form .cr-review-form-result,
.cr-all-reviews-shortcode .cr-review-form-not-logged-in,
.cr-ajax-reviews-review-form .cr-review-form-not-logged-in,
.cr-reviews-grid .cr-review-form-result,
.cr-reviews-grid .cr-review-form-not-logged-in {
  max-width: 100%;
  padding: 16px 0;
}

.cr-all-reviews-shortcode .cr-review-form-res .cr-review-form-result .cr-review-form-continue,
.cr-ajax-reviews-review-form .cr-review-form-res .cr-review-form-result .cr-review-form-continue,
.cr-all-reviews-shortcode .cr-review-form-not-logged-in .cr-review-form-continue,
.cr-ajax-reviews-review-form .cr-review-form-not-logged-in .cr-review-form-continue,
.cr-reviews-grid .cr-review-form-res .cr-review-form-result .cr-review-form-continue,
.cr-reviews-grid .cr-review-form-not-logged-in .cr-review-form-continue {
  padding: 0 24px;
  border-radius: 48px;
  background-color: #4660ff;
}

.cr-all-reviews-shortcode .cr-review-form-res .cr-review-form-result .cr-review-form-continue:hover,
.cr-ajax-reviews-review-form .cr-review-form-res .cr-review-form-result .cr-review-form-continue:hover,
.cr-all-reviews-shortcode .cr-review-form-not-logged-in .cr-review-form-continue:hover,
.cr-ajax-reviews-review-form .cr-review-form-not-logged-in .cr-review-form-continue:hover,
.cr-reviews-grid .cr-review-form-res .cr-review-form-result .cr-review-form-continue:hover,
.cr-reviews-grid .cr-review-form-not-logged-in .cr-review-form-continue:hover {
  background-color: #566ba0;
}

.cr-all-reviews-shortcode .cr-count-row,
#reviews.cr-reviews-ajax-reviews .cr-count-row {
  background-color: #fff;
  padding: 8px 16px;
  margin: 16px 0;
}

#reviews.cr-reviews-ajax-reviews .cr-ajax-search,
.cr-all-reviews-shortcode .cr-ajax-search {
  margin: 16px 0;
  display: none;
}

.cr-all-reviews-shortcode .crstar-rating span::before,
.cr-reviews-grid .cr-summaryBox-wrap .crstar-rating span::before,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list .comment-text .crstar-rating span::before,
#reviews #comments .cr-summaryBox-wrap .crstar-rating span::before {
  top: -6px;
}

.cr-all-reviews-shortcode ol.commentlist li .comment-text p,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list .comment-text p {
  margin: 8px 0;
}

.cr-all-reviews-shortcode ol.commentlist li .comment-text .meta .woocommerce-review__author,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list .comment-text .meta .woocommerce-review__author {
  font-weight: 600;
  text-transform: capitalize;
}

.cr-all-reviews-shortcode ol.commentlist li,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list li {
  margin: 0 0 16px 0;
}

.cr-all-reviews-shortcode ol.commentlist,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list {
  padding: 16px;
  background: #fff;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-rating-cnt {
  height: 30px;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-rating-cnt > svg {
  width: 32px;
  height: 30px;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-rating-cnt .cr-nosummary-rating-val {
  font-size: 20px;
  color: #1e293b;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-rating-cnt .cr-nosummary-rating-lbl {
  font-size: 16px;
  color: #444;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-add {
  border-radius: 48px;
  border: none;
  padding: 0 24px;
  background-color: #4660ff;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-nosummary .cr-nosummary-add:hover {
  background-color: #566ba0;
}

.cr-all-reviews-shortcode .cr-review-form-wrap .cr-review-form-nav,
.cr-ajax-reviews-review-form .cr-review-form-wrap .cr-review-form-nav,
.cr-reviews-grid .cr-review-form-wrap .cr-review-form-nav {
  background: #fff;
  border-left: 1px solid #e5e9eb;
  border-right: 1px solid #e5e9eb;
  border-radius: 4px;
}

.cr-all-reviews-shortcode .cr-review-form-wrap .cr-review-form-buttons .cr-review-form-cancel,
.cr-ajax-reviews-review-form .cr-review-form-wrap .cr-review-form-buttons .cr-review-form-cancel,
.cr-reviews-grid .cr-review-form-wrap .cr-review-form-buttons .cr-review-form-cancel {
  border-radius: 5px;
}

.cr-all-reviews-shortcode .cr-review-form-buttons .cr-review-form-cancel:hover,
.cr-ajax-reviews-review-form .cr-review-form-buttons .cr-review-form-cancel:hover,
.cr-reviews-grid .cr-review-form-buttons .cr-review-form-cancel:hover {
  background-color: #4d5d64;
  color: #fff;
}

.cr-all-reviews-shortcode .cr-review-form-comment .cr-review-form-comment-txt,
.cr-ajax-reviews-review-form .cr-review-form-comment .cr-review-form-comment-txt,
.cr-reviews-grid .cr-review-form-comment .cr-review-form-comment-txt {
  border-radius: 4px;
}

.cr-all-reviews-shortcode .cr-review-form-ne .cr-review-form-txt,
.cr-ajax-reviews-review-form .cr-review-form-ne .cr-review-form-txt,
.cr-reviews-grid .cr-review-form-ne .cr-review-form-txt {
  border-radius: 4px;
}

.cr-all-reviews-shortcode .cr-review-form-buttons,
.cr-ajax-reviews-review-form .cr-review-form-buttons,
.cr-reviews-grid .cr-review-form-buttons {
  max-width: 100%;
  padding: 0;
}

#reviews.cr-reviews-ajax-reviews div.cr-ajax-reviews-cus-images-div {
  display: none;
}

/* Cart */
.woocommerce-tabs.wc-tabs-wrapper {
  display: none;
}

.woocommerce nav.woocommerce-pagination {
  padding-top: 16px;
}

.woocommerce .woocommerce-pagination ul.page-numbers,
.woocommerce-page .woocommerce-pagination ul.page-numbers {
  border: 0;
  margin: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  border: 0;
  float: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce .woocommerce-pagination ul.page-numbers li a,
.woocommerce .woocommerce-pagination ul.page-numbers li span,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span {
  font-size: 16px;
  color: #5BA7DB;
  font-weight: 600;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.woocommerce .woocommerce-pagination ul.page-numbers li a.current,
.woocommerce .woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce .woocommerce-pagination ul.page-numbers li span.current,
.woocommerce .woocommerce-pagination ul.page-numbers li span:hover,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a.current,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span:hover {
  color: #fff;
  background-color: #5BA7DB;
}

.select2-container--open {
  z-index: 999999;
}

.select2-container--default.select2-container--default .select2-selection--single {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 3px;
  height: 48px;
  margin: 0;
}

.select2-container--default.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-left: 20px;
}

.select2-container--default.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.select2-container--default.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: inherit;
}

.select2-container--default.select2-container--default .select2-selection--single .select2-selection__clear {
  font-weight: 400;
}

.select2-dropdown {
  border: 1px solid #eee;
}

.woocommerce table.shop_table {
  border-collapse: collapse;
}

.woocommerce table.my_account_orders,
.woocommerce table.shop_table.cart {
  border: 0;
  border-radius: 0;
  margin: 0;
}

.woocommerce table.my_account_orders thead tr,
.woocommerce table.shop_table.cart thead tr {
  border: 1px solid #eee;
  border-radius: 3px;
}

.woocommerce table.my_account_orders th,
.woocommerce table.shop_table.cart th {
  font-weight: 600;
  text-transform: uppercase;
  color: #212529;
  line-height: 1.6;
  padding: 16px 8px;
  border: 0;
  background-color: #f5f5f5;
}

.woocommerce table.my_account_orders td {
  border: 0;
}

.woocommerce table.shop_table.cart td {
  border: 0;
  padding: 16px 8px;
}

.woocommerce table.my_account_orders tbody tr,
.woocommerce table.shop_table.cart tbody tr {
  border: 1px solid #eee;
  border-top: none;
}

.woocommerce table.my_account_orders tbody tr:last-child,
.woocommerce table.shop_table.cart tbody tr:last-child {
  border: 0;
}

.woocommerce table.my_account_orders .product-price .amount,
.woocommerce table.my_account_orders .product-subtotal .amount,
.woocommerce table.shop_table.cart .product-price .amount,
.woocommerce table.shop_table.cart .product-subtotal .amount {
  color: #212529;
  font-size: 15px;
  font-weight: 700;
}

.woocommerce table.my_account_orders .product-price ins,
.woocommerce table.my_account_orders .product-subtotal ins,
.woocommerce table.order_details .product-total ins,
.woocommerce table.shop_table.cart .product-price ins,
.woocommerce table.shop_table.cart .product-subtotal ins {
  background-color: transparent;
  font-weight: 700;
}

.woocommerce table.my_account_orders .product-price del,
.woocommerce table.my_account_orders .product-subtotal del,
.woocommerce table.order_details .product-total del,
.woocommerce table.shop_table.cart .product-price del,
.woocommerce table.shop_table.cart .product-subtotal del {
  margin-right: 5px;
  font-weight: 500;
  font-size: 13px;
}

.woocommerce table.my_account_orders .product-quantity .quantity .qty,
.woocommerce table.shop_table.cart .product-quantity .quantity .qty {
  width: 130px;
  height: 40px;
}

.woocommerce table.my_account_orders td.actions,
.woocommerce table.shop_table.cart td.actions {
  padding: 16px 0 0;
}

.woocommerce table.my_account_orders td.actions .coupon .input-text,
.woocommerce table.shop_table.cart td.actions .coupon .input-text {
  border-color: #eee;
  padding: 0 25px;
}

.woocommerce table.shop_table.cart td.actions {
  display: none;
}

.woocommerce table.my_account_orders .add_to_cart.button,
.woocommerce table.shop_table.cart .add_to_cart.button {
  font-size: 0.75rem;
  line-height: 2.75rem;
  padding: 0 2.5rem;
}

.woocommerce table.shop_table.cart .product-thumbnail {
  width: 100px;
  padding-left: 0;
}

.woocommerce table.shop_table.cart .product-thumbnail img {
  width: auto;
  margin: 0;
}

.woocommerce table.shop_table.cart .product-remove {
  width: 50px;
}

.woocommerce table.shop_table.cart .product-name {
  width: 40%;
}

.woocommerce table.shop_table.cart .product-price,
.woocommerce table.shop_table.cart .product-quantity,
.woocommerce table.shop_table.cart .product-subtotal {
  text-align: center;
  width: 25%;
}

.woocommerce table.shop_table.cart td.actions .coupon .input-text {
  width: 250px;
  line-height: 46px !important;
}

.woocommerce table.shop_table.cart .product-quantity .quantity:not(.mini_cart_item .quantity) {
  justify-content: center;
  margin: 0 auto;
  align-items: center;
}

.woocommerce table.shop_table.cart .product-quantity .quantity input[type=number] {
  margin: 0 auto;
  width: 100px;
  border-radius: 5px;
  border: 1px solid #d6d6d6;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce .cart-collaterals .cross-sells {
  margin-top: 32px;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout {
  padding: 16px 0 0;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout a.checkout-button {
  font-size: 1rem;
  line-height: 2.75rem;
  padding: 0 2.1875rem;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  margin-bottom: 0;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  background-color: #f5652d;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
  background-color: #f5652d;
}

.woocommerce .cart-collaterals .cart_totals {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 500px;
}

.woocommerce .cart-collaterals .cart_totals > h2 {
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
  font-weight: 600;
}

.woocommerce .cart-collaterals .cart_totals table,
.woocommerce table.woocommerce-checkout-review-order-table {
  border: 0;
  border-radius: 0;
  margin: 0;
}

.woocommerce .cart-collaterals .cart_totals table tr,
.woocommerce table.woocommerce-checkout-review-order-table tr {
  border-width: 0;
}

.woocommerce .cart-collaterals .cart_totals table th {
  border: 0;
  padding: 0 8px 16px 0;
  font-size: 15px;
  font-weight: 500;
}

.woocommerce .cart-collaterals .cart_totals table td {
  border: 0;
  padding: 0 0 16px 8px;
  text-align: right;
}

.woocommerce .cart-collaterals .cart_totals table tr.cart-subtotal td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal td {
  color: #212529;
  font-weight: 700;
}

.woocommerce .cart-collaterals .cart_totals table tr:last-child td,
.woocommerce .cart-collaterals .cart_totals table tr:last-child th {
  padding-bottom: 0;
}

.woocommerce .cart-collaterals .cart_totals table .shipping-calculator-button,
.woocommerce .cart-collaterals .cart_totals table small,
.woocommerce table.woocommerce-checkout-review-order-table tbody .product-name a {
  color: inherit;
}

.woocommerce .cart-collaterals .cart_totals table .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: left;
}

.woocommerce .cart-collaterals .cart_totals table tr.order-total span.amount {
  font-weight: 700;
  font-size: 20px;
  color: #f5652d;
}

.woocommerce .cart-collaterals .cart_totals table tr.order-total th,
.woocommerce table.woocommerce-checkout-review-order-table tbody .product-name strong,
.woocommerce table.woocommerce-checkout-review-order-table tfoot ul#shipping_method .amount,
.woocommerce table.woocommerce-checkout-review-order-table tfoot ul#shipping_method li label {
  font-weight: 500;
}

.woocommerce .cart-collaterals .cart_totals table tr.order-total td,
.woocommerce .cart-collaterals .cart_totals table tr.order-total th {
  border-top: 1px solid #ddd;
  padding-top: 16px;
}

.woocommerce .cart-collaterals .cross-sells > h2 {
  font-size: 34px;
  margin-bottom: 50px;
  text-align: center;
}

.woocommerce .cart-collaterals .shipping-calculator-form {
  margin-top: 25px;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.woocommerce form p {
  margin-bottom: 23px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 3px;
  padding: 13px 20px;
  color: #444 !important;
}

.woocommerce form .form-row input.input-text::-webkit-input-placeholder,
.woocommerce form .form-row textarea::-webkit-input-placeholder {
  color: #444 !important;
}

.woocommerce form .form-row {
  display: block;
  padding: 0;
  margin: 0 0 16px;
}

.woocommerce form .form-row label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2;
}

.woocommerce form .form-row textarea {
  height: 8em;
}

.woocommerce-additional-fields,
.woocommerce-shipping-fields {
  margin-top: 16px;
}

.woocommerce-shipping-fields > h3 {
  font-size: 15px;
  margin-bottom: 21px;
  font-weight: 500;
}

.woocommerce-shipping-fields > h3 label span {
  cursor: pointer;
}

.woocommerce-shipping-fields > h3 label input {
  position: relative;
  top: 2px;
  margin: -2px 8px 0 0;
}

#order_review_heading,
.woocommerce-additional-fields > h3,
.woocommerce-billing-fields > h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 600;
  display: none;
}

.woocommerce-account-fields .create-account {
  margin: 0 !important;
}

.woocommerce-account-fields label > span {
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #212529;
  cursor: pointer;
}

.woocommerce-account-fields label > .input-checkbox {
  position: relative;
  top: -2px;
}

#order_review {
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.woocommerce #order_review .woocommerce-checkout-payment {
  margin-top: 24px;
  background: 0 0;
  border-radius: 0;
}

.woocommerce #order_review .woocommerce-checkout-payment ul.payment_methods {
  padding: 0;
  border-color: #eee;
}

.woocommerce #order_review .woocommerce-checkout-payment ul.payment_methods li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce #order_review .woocommerce-checkout-payment ul.payment_methods li input {
  position: relative;
  margin-right: 5px;
}

.woocommerce #order_review .woocommerce-checkout-payment ul.payment_methods li label {
  margin-bottom: 0;
  color: #212529;
  font-weight: 500;
}

.woocommerce #order_review .woocommerce-checkout-payment .place-order {
  padding: 16px 0 0;
  margin: 0;
}

.woocommerce #order_review .woocommerce-checkout-payment .place-order .button {
  width: 100%;
}

.woocommerce table.woocommerce-checkout-review-order-table thead th {
  border: 0;
  font-weight: 600;
}

.woocommerce table.woocommerce-checkout-review-order-table .product-name {
  padding: 0 8px 16px 0;
}

.woocommerce table.woocommerce-checkout-review-order-table .product-total {
  padding: 0 0 16px 8px;
  text-align: right;
}

.woocommerce table.woocommerce-checkout-review-order-table td.product-name {
  font-size: 14px;
}

.woocommerce table.order_details .product-name a,
.woocommerce table.woocommerce-checkout-review-order-table tbody .product-name,
.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total {
  color: #212529;
}

.woocommerce table.woocommerce-checkout-review-order-table tbody .product-total {
  color: #212529;
  font-size: 14px;
  font-weight: 700;
}

.woocommerce table.order_details td,
.woocommerce table.order_details th,
.woocommerce table.woocommerce-checkout-review-order-table td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot th {
  border: 0;
}

.woocommerce table.order_details td,
.woocommerce table.order_details li,
.woocommerce table.woocommerce-checkout-review-order-table li,
.woocommerce table.woocommerce-checkout-review-order-table li,
.woocommerce table.woocommerce-checkout-review-order-table li {
  margin-bottom: 0;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot th {
  font-weight: 600;
  padding: 0 8px 16px 0;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot td {
  padding: 0 0 16px 8px;
  font-weight: 500;
  text-align: right;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal th {
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot ul#shipping_method li input {
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 20px;
  font-weight: 700;
  color: #f5652d;
  padding-top: 16px;
  padding-bottom: 0;
  border-top: 1px solid #eee;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total th {
  padding-top: 16px;
  padding-bottom: 0;
  border-top: 1px solid #eee;
}

.woocommerce-checkout .woocommerce form .form-row-first,
.woocommerce-checkout .woocommerce form .form-row-last {
  width: 100%;
  float: none;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  margin-bottom: 20px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: none;
  margin: 0;
  width: 100%;
}

.woocommerce .woocommerce-form-login .lost_password {
  margin-bottom: 0;
}

.woocommerce .woocommerce-form-register .woocommerce-form-register__submit {
  float: none;
  margin: 0;
  width: 100%;
}

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
  margin-bottom: 16px;
}

.woocommerce ul.order_details {
  padding-left: 0;
  margin: 0 0 16px;
}

.woocommerce ul.order_details li {
  margin-top: 0;
}

.woocommerce .woocommerce-order-details .woocommerce-order-details__title,
.woocommerce-column__title,
.customnew h2 {
  font-size: 20px !important;
  line-height: 1.5;
  font-weight: 600;
}

.woocommerce table.order_details {
  border: 1px solid #eee;
  border-radius: 3px;
  margin: 0;
}

.woocommerce table.order_details thead th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #212529;
  line-height: 1.6;
  padding: 16px 8px;
  border: 0;
  background-color: #f5f5f5;
}

.woocommerce table.order_details .product-total .amount {
  color: #212529;
  font-size: 15px;
  font-weight: 700;
}

.woocommerce table.order_details tfoot td,
.woocommerce table.order_details tfoot th {
  border: 0;
}

.woocommerce table.order_details tfoot th {
  font-weight: 500;
}

.woocommerce table.order_details tfoot td {
  color: #212529;
}

.woocommerce table.order_details tfoot tr:first-child td,
.woocommerce table.order_details tfoot tr:first-child th {
  border-top: 1px solid #eee;
}

.woocommerce table.order_details tfoot tr:last-child {
  color: #212529;
}

.woocommerce table.order_details tfoot tr:last-child td,
.woocommerce table.order_details tfoot tr:last-child th {
  border-top: 1px solid #eee;
}

.woocommerce table.order_details tfoot tr:last-child td {
  font-size: 20px;
}

#customer_details {
  float: left;
  width: 50%;
  margin-bottom: 0;
}

#customer_details .col-1,
#customer_details .col-2,
.woocommerce div.product form.cart table.variations td.value {
  width: 100%;
}

#order_review {
  float: right;
  width: 48%;
}

#customer_login h2 {
  font-size: 24px;
}

/* Thankyou */
.woocommerce-customer-details {
  display: none;
}

/* Account */
.account-body .box-login {
  background: #fff;
  padding: 20px;
  border: 2px solid #1a1a1a;
  width: 468px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.account-body .box-login #customer_login h2 {
  font-weight: bold;
}

.account-body .box-login .woocommerce form.login,
.account-body .box-login .woocommerce form.register {
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.account-body .box-login [type=submit] {
  width: 100%;
}

.account-body .box-login .lost_password {
  margin-bottom: 16px;
  float: right;
  font-size: 14px;
  font-weight: 500;
}

.account-body .box-login .woocommerce-form-login__rememberme {
  margin-bottom: 16px;
  float: left;
  font-size: 14px;
}

.account-body .box-login .note {
  font-size: 14px;
  font-weight: 500;
  padding-top: 4px;
}

.account-body .box-login .note a {
  color: #02aeee;
}

.account-body .box-login .u-column2 {
  display: none;
}

.account-body .box-login .note .note2 {
  display: none;
}

.account-body .box-login.active .u-column2 {
  display: block;
}

.account-body .box-login.active .u-column1 {
  display: none;
}

.account-body .box-login.active .note .note2 {
  display: block;
}

.account-body .box-login.active .note .note1 {
  display: none;
}

.zek_block_login {
  background: #fff;
  padding: 30px;
  border: 2px solid #19334c;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  width: calc((100% - 50px) / 6);
  margin-bottom: 0;
  text-align: center;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-weight: 600;
  display: block;
  padding: 10px;
  border: 2px solid #1a1a1a;
  color: #19334c;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #fff;
  background: #1a1a1a;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

.woocommerce-account .addresses .title .edit {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 4px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 4px;
}

.woocommerce table.my_account_orders td.woocommerce-orders-table__cell-order-actions a,
.woocommerce table.my_account_orders th.woocommerce-orders-table__cell-order-actions a {
  margin: 5px;
}

.woocommerce-EditAccountForm fieldset legend {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 16px;
}

.woocommerce-account .addresses .title h3 {
  font-size: 18px;
  font-weight: bold;
}

/* Home */
@media (max-width: 991px) {
  html {
    overflow-y: scroll;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  body {
    overflow-y: visible;
    position: relative;
  }
  html,
  body {
    overflow-x: hidden;
    margin: 0;
  }
  #main {
    overflow: hidden;
  }
  .supports .item a {
    width: 100%;
    max-height: 40px;
    position: relative;
    overflow: hidden;
  }
  .supports .item a img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
  }
  .backtop a {
    width: 40px;
    height: 40px;
  }
  .backtop a img {
    max-width: 24px;
    max-height: 24px;
  }
  #header .col-touch {
    display: block;
  }
  #touch-menu {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAACXBIWXMAAAOwAAADsAEnxA+tAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAgZJREFUeJzt3D2KFEEYBuB310RBjNVLaOBpFnPvIIrX8AAiBv6cQUwFwRtotIY6gibjGLSKjCC7UzX71XQ/D1T6dVV109NT8L0JAAAAAAAAAAAAAAAAcHiOOte7kuROkuud6zI5TfI2ybfqiWy7lORRklWSjbHX8SXJw197PoSjJM9SvzFLG0/T/w2+k7up34yljpMz3J//Om4tkORehxrspnnve7xCVkmudqjD+a2SXGsp0OMNQJ1Na4EeD8C7DjXYTfPe93gAHneowW6G2PujTH9Jqr+IlzaeZJC/gcl0KPEg0yFF9cbMfXxOcj+dDoJ6P0GXMx0F3+hcl+nm/z4K/l48FwAAAAAAAAAAAGAw8gHOZ9j+/GpLygcYrj+/2lLzAYbpz6+25HyA5v78OXiT+htRNV532L9S8gHaNPfnV5MP0GZTPYFW8gHaHPza5QO0WfLa/1hqPsBQ/fnVlpQP0LU/v5p8gLPbRH8+AAAAAAAAAAAAMKg55AN8zdSgcXqB12RLdT7AOsmrJDf3vVD+NVI+wMd4CC7caPkAL/e7XLaNlg+wznwzirrr0Rx6u0ONno6T3KqexKGYaz7ApnoCh2KO+QA/kryvnsSSnKT+d//v8Xy/y2XbSPkAHzLPzuThVecDrJO8iJt/bnPIB1hl+g75dIHXBAAAAAAAAAAAAAAAACj0E48RUQIcEZJYAAAAAElFTkSuQmCC);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .line-dark {
    opacity: 0;
    transition: all 0.5s;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
  }
  body.active-menu .line-dark {
    opacity: 1;
    visibility: visible;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAQAAACROWYpAAAA6UlEQVR4AdXUWU5DMQyF4f9kZWUn6couOyk7YBQCAaXso1xzxWBZWG6JeOp5i5JPjjJY/COnj7crLjiaFlZpx1fmlW3mNedHaNeksx+uV5/Yd6bDXAttYYVeIHDLPNAWKaAnKHna8K8ZPUDiJC6nMbpPNd4zjzTiOyi5Vw2jGN2QA3Nnsk+gTqrq+BpKzhpy1YCvqGILF5EOYzuEL6uJ723bpNFty8+bfNbpwBK1eFVFdd2S0nFa3HT1SJRoxdPzbPljOG/5YzzGweiXfMazUBtrBlvvTfMm0pqHNrTD86cGqLBKb4znxPEHXPuJINxNl/YAAAAASUVORK5CYII=) 20 20, default;
  }
  #menu-mobile {
    display: block;
    transition: all 0.5s;
    background: #fff;
    z-index: 9999;
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    left: -300px;
    opacity: 0;
    visibility: hidden;
    padding-top: 40px;
  }
  body.active-menu #menu-mobile {
    opacity: 1;
    visibility: visible;
    left: 0;
  }
  #menu-mobile .close {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAOxAAADsQH1g+1JAAAFHGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDI1LTAxLTA3VDIwOjEyOjI1KzA3OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNS0wMS0wN1QyMDoxMjo0MCswNzowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNS0wMS0wN1QyMDoxMjo0MCswNzowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5OTg2NDJmZC1iNTEwLTdmNGEtYjdkMi1jMzkxYmI2NTE2ZmQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTk4NjQyZmQtYjUxMC03ZjRhLWI3ZDItYzM5MWJiNjUxNmZkIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTk4NjQyZmQtYjUxMC03ZjRhLWI3ZDItYzM5MWJiNjUxNmZkIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo5OTg2NDJmZC1iNTEwLTdmNGEtYjdkMi1jMzkxYmI2NTE2ZmQiIHN0RXZ0OndoZW49IjIwMjUtMDEtMDdUMjA6MTI6MjUrMDc6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4fSLtOAAABVUlEQVRYhc3XPU4DMRCG4deU2Q25DDdAiBwaBXGAFDQkoeWnoU4R8TMU8SLHctYzjq1gaatY/h6txxmvExHOOS7Omg4gIvi3sAQega5hXA+sgBfgRkQOAK+A+AktED2w9hnvwHUMmAFPjRBh+Aq4hH12CACYNEDE4X9rpgC1EUfDxwC1EKPhOcCpiGy4BlCKUIVrAVaEOtwCSCH6xJzOEm4FxIh1hOgoqBcrIIUYRlGxlgBixIN/io5rKWAYCx8swH3JAiLyv9qxdoQFF25BXJiqbCsgDE8VoQlR8xiGv22AaW3AWHhqzrMGUfJXnHvFJoS1GWn3V42wtGNrhasQ2guJ+XhpEZorWWm4CpG7lJ4ankXEgCn5nl8LMUsB3oLwFh8mnV9bgA9gHjejbz/hCtg2AGz92hvgE/gBcMP+O+fmwBdw1yA8HLfsP4oXIrJzyj7QbPwC82aL7004Y7MAAAAASUVORK5CYII=);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 12px;
    right: 12px;
  }
  #menu-mobile ul {
    list-style: none;
    margin-bottom: 0;
  }
  #menu-mobile .menu {
    height: 100%;
    overflow-y: auto;
    padding: 15px 10px 10px 20px;
  }
  #menu-mobile .menu ul {
    display: none;
    padding-left: 20px;
  }
  #menu-mobile .menu li {
    position: relative;
  }
  #menu-mobile .menu li > a {
    display: flex;
    align-items: center;
    min-height: 36px;
  }
  #menu-mobile .menu li > svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 6px;
  }
  #menu-mobile .menu li.re-arrouw > svg {
    transform: rotate(180deg);
  }
  /* Acount */
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 767px) {
  .supports {
    bottom: 20px;
    left: 10px;
  }
  /* Cart-mb */
  .woocommerce table.shop_table.cart td {
    padding: 8px 8px;
  }
  .woocommerce table.shop_table.cart .product-name {
    width: 100%;
  }
  .woocommerce table.shop_table.cart .product-price,
  .woocommerce table.shop_table.cart .product-quantity,
  .woocommerce table.shop_table.cart .product-subtotal {
    width: 100%;
  }
  .woocommerce .cart-collaterals .cart_totals {
    padding: 12px;
    max-width: 100%;
  }
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce .cart-collaterals .cross-sells {
    margin-top: 20px;
  }
  #customer_details {
    width: 100%;
  }
  #order_review {
    width: 100%;
    padding: 12px;
  }
  .woocommerce table.woocommerce-checkout-review-order-table .product-name {
    padding: 0 8px 8px 0;
  }
  .woocommerce table.woocommerce-checkout-review-order-table .product-total {
    padding: 0 0 8px 8px;
  }
  .woocommerce table.woocommerce-checkout-review-order-table tfoot th {
    padding: 0 8px 8px 0;
  }
  .woocommerce table.woocommerce-checkout-review-order-table tfoot td {
    padding: 0 0 8px 8px;
  }
  .woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal td,
  .woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal th {
    padding-top: 8px;
  }
  .woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total th {
    padding-top: 8px;
  }
  .woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    padding-top: 8px;
    font-size: 20px;
  }
  .woocommerce #order_review .woocommerce-checkout-payment {
    margin-top: 16px;
  }
  .woocommerce #order_review .woocommerce-checkout-payment ul.payment_methods li label {
    font-size: 16px;
  }
  .woocommerce table.order_details tfoot tr:last-child td {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  /* Acount */
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    width: calc(50% - 5px);
  }
  #customer_login h2 {
    font-size: 20px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {

  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 2rem;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
a::selection,
p::selection,
span::selection,
img::selection,
label::selection,
li::selection,
button::selection,
input::selection,
bdi::selection,
div::selection {
  color: #fff;
  background-color: #5BA7DB;
}

h1,
h2,
h3,
h4,
h5,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;margin-bottom: 10px;
}

a:hover {
  color: #5BA7DB;
}

img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.25s linear;
}

p:empty {
  display: none;
}

.full-width {
  width: calc(100vw - 3px);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.no-gap-row {
  margin-right: 0;
  margin-left: 0;
}
.no-gap-row > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* breadcrumb */
.breadcrumbs {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  background-color: #f9f9f9;
}
.breadcrumbs .rank-math-breadcrumb {
  background: none;
}
.breadcrumbs .rank-math-breadcrumb p,
.breadcrumbs .rank-math-breadcrumb a,
.breadcrumbs .rank-math-breadcrumb span {
  color: #000;
  font-size: 14px;
}
.breadcrumbs .rank-math-breadcrumb p {
  padding: 10px 0;
  margin-bottom: 0;
}
.breadcrumbs .rank-math-breadcrumb a:hover {
  color: #5BA7DB;
}
.breadcrumbs .rank-math-breadcrumb span.separator {
  padding: 0 0.5rem;
}
.breadcrumbs .rank-math-breadcrumb span.last {
  color: #5BA7DB;
}

.page-body {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .page-body {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 768px) {
  .pagination ul li span,
  .pagination ul li a,
  .woocommerce .woocommerce-pagination ul.page-numbers li a,
  .woocommerce .woocommerce-pagination ul.page-numbers li span {
    font-size: 14px;
    width: 23px;
    height: 23px;
    line-height: 23px;
  }
}

/* Header top */
.header-top {
  position: relative;
  padding: 7px 0;
  color: #fff;
  background: #5BA7DB;
  z-index: 1;
}
.header-top__inner a {
  font-size: 0.875rem;
  color: #fff;
  line-height: normal;
}
.header-top__inner .info-item {
  margin-right: 15px;
  line-height: normal;
}
.header-top__inner .info-item span {
  line-height: normal;
}
.header-top__inner svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  fill: #fff;
}
.header-top__socials .social-item {
  margin-right: 15px;
  line-height: normal;
}

#header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
#header .btn-search {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
#header .btn-search svg {
  width: 20px;
  height: 20px;
  fill: #5BA7DB;
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Header pc */
.header-pc {
  position: relative;
  padding: 10px 0;
  z-index: 99;
}
.header-pc__logo img {
  max-height: 70px;
  object-fit: contain;
}
.header-pc__menu ul#menu-menu-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-pc__menu ul#menu-menu-main li.menu-item {
  position: relative;
}
.header-pc__menu ul#menu-menu-main li.menu-item a {
  padding: 20px 10px;
  display: block;
  color: #5BA7DB;font-weight: 700;
  text-transform: uppercase;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu {
  position: initial;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu:hover > ul.sub-menu {
  display: flex;flex-wrap: wrap;        
  column-gap: 30px;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu li.menu-item{width: 29%}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu {
  padding: 10px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu li.menu-item {
  position: relative;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu li.menu-item a {
  display: block;
  padding: 10px 5px;text-transform: none;
  font-size: 0.8rem;
  font-weight: 600 !important;
  color: #000;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu li.menu-item a:hover {
  color: #5BA7DB;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu ul.sub-menu {
  position: static;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu ul.sub-menu li.menu-item a {
  font-weight: 400 !important;
}
.header-pc__menu ul#menu-menu-main li.menu-item ul.sub-menu {
  display: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-pc__menu ul#menu-menu-main li.menu-item ul.sub-menu li.menu-item-has-children:after {
  content: none;
}

.header-pc__menu ul#menu-menu-main li.menu-item:hover ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;

  background-color: #fff;
  display: block;
  border-left: 3px solid #5BA7DB;
}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu:hover ul.sub-menu{width: 550px}
.header-pc__menu ul#menu-menu-main li.menu-item.mega-menu > ul.sub-menu li.menu-item>ul{display: none;}
.header-pc__menu ul#menu-menu-main li.menu-item:hover ul.sub-menu li.menu-item a {
  padding: 10px;
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #000;
}
.header-pc__menu ul#menu-menu-main li.menu-item:hover ul.sub-menu li.menu-item a:hover {
  color: #5BA7DB;
}
.header-pc__menu ul#menu-menu-main li.menu-item-has-children {
  position: relative !important;
}
.header-pc__menu ul#menu-menu-main li.menu-item-has-children::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 39%;
  left: 100%;
  border-top: 1px solid #5BA7DB;
  border-left: 1px solid #5BA7DB;
  transform: rotate(-135deg);
}

/* Header mb */
.header-mb {
  padding: 10px 0;
}
.header-mb__logo img {
  max-height: 50px;
  object-fit: contain;
}

/* search modal */
#search-modal.show {
  display: flex !important;
  align-items: center;
}
#search-modal .modal-dialog {
  width: 100%;
  max-width: 100%;
}
#search-modal .modal-content {
  border: none;
  outline: none;
}
#search-modal .search-form {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#search-modal .search-form button[type=button] {
  position: absolute;
  right: 0rem;
  top: -5rem;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  z-index: 99999;
}
@media only screen and (max-width: 768px) {
  #search-modal .search-form button[type=button] {
    top: -3rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
#search-modal .search-form .input-search {
  position: relative;
  padding: 1.5rem 3rem;
  width: 100%;
  background-color: #fff;
  border-radius: 3rem;
  max-width: 50%;
  min-width: 35rem;
  z-index: 99999;
}
@media only screen and (max-width: 768px) {
  #search-modal .search-form .input-search {
    padding: 0.8rem;
    min-width: 100%;
  }
}
#search-modal .search-form form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}
#search-modal .search-form form input {
  padding: 0;
  border: none;
  outline: none;
  color: #000;
  background-color: transparent;
}
#search-modal .search-form form button[type=submit] {
  background-color: transparent;
  border: none;
  outline: none;
}
#search-modal .search-form form button[type=submit] svg {
  width: 20px;
  height: 20px;
  fill: #5BA7DB;
}

footer {
  padding: 50px 0;
  background-color: #5BA7DB;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 30px 0;
  }
}
footer .content-detail p,
footer .content-detail span {
  text-align: justify;
}
footer img {
  width: inherit;
}
footer .title-ft {
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  footer .title-ft {
    margin-bottom: 10px;
  }
}
footer .menu ul li {
  margin-bottom: 6px;
  list-style: none;
}
footer .menu ul li::before {
  content: "■";
  color: #ffba00;
  display: inline-block;
  width: 1em;
  transform: translateY(-3px);
}
footer .menu ul li a {
  color: #fff;
}
footer .menu ul li a:hover {
  color: #ffba00;
}
footer .form-group {
  margin-bottom: 1rem;
}
footer .contact-footer .input-group {
  width: 270px;
  height: auto;
  flex-wrap: nowrap;
}
footer .contact-footer .input-group input {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  line-height: 1.5;
}
footer .contact-footer button {
  background: #ffba00;
  padding: 0.5rem 1.5rem !important;
}
footer .contact-footer button:hover {
  background: #ffba00;
}
footer .send-email {
  border-radius: 0 5px 5px 0;
  padding: 2px 15px;
  color: #fff;
  background: linear-gradient(90deg, #0274ba 0%, #49ace0 130%);
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}
footer .icons {
  list-style: none;
  display: flex;
  padding-left: 0;
  padding-top: 20px;
}
footer .icons li {
  padding-right: 0.5rem;
}
footer .icons a {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  display: inline-block;
}
footer .icons a:hover {
  background-color: #ffba00;
}
footer .icons a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
footer .box-cert {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .box-cert img:not(.bct) {
  width: 100%;
  max-width: 100px;
}
footer .box-cert img.bct {
  max-height: 100px;
}

.copyright {
  padding: 0.8rem 0;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section title */
h2.section-title {
  margin-bottom: 15px;
  font-family: "UTM-AvoBold", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  h2.section-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  h2.section-title {
    font-size: 14px;
  }
}

.section-subtitle {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #5BA7DB;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .section-subtitle {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .section-subtitle {
    font-size: 13px;
  }
}

/* Button */
.btn-more {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  padding: 10px 35px 10px 20px;
  width: fit-content;
  background: #5BA7DB;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #5BA7DB;
}
@media only screen and (max-width: 768px) {
  .btn-more {
    margin-top: 10px;
    padding: 6px 30px 6px 10px;
  }
}
.btn-more:hover {
  color: #5BA7DB;
  background: #fff;
}
.btn-more:hover::after {
  transform: rotate(-50deg) translate(8px, -50%);
}
.btn-more::after {
  content: "->";
  display: block;
  font-family: Inter;
  font-size: inherit;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(0deg) translate(0, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}
@media only screen and (max-width: 768px) {
  .btn-more::after {
    transform: rotate(0deg) translate(0, -60%);
  }
}

/* Swiper pagination */
.swiper-pagination {
  bottom: 12px !important;
  top: unset !important;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination {
    bottom: 8px !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background: #000;
  width: 10px;
  height: 10px;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
  }
}

.swiper-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .swiper-buttons {
    margin-top: 15px;
  }
}
.swiper-buttons .custom-arrow {
  width: 35px;
  height: 35px;
  border: 1px solid #333;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .swiper-buttons .custom-arrow {
    width: 25px;
    height: 25px;
  }
}

/* Section general*/
section:not(.banner) {
  margin: 50px 0;
}
@media only screen and (max-width: 768px) {
  section:not(.banner) {
    margin: 30px 0;
  }
}
section:not(.banner).has-pd {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  section:not(.banner).has-pd {
    padding: 30px 0;
  }
}

/* Product cat section*/
.product-cat {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.product-cat__slider {
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .product-cat__slider {
    margin-top: 10px;
  }
}
.product-cat__slider img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.product-cat__slider .swiper-container {
  overflow: hidden;
}
.product-cat__slider .swiper-slide {
  position: relative;
  border: 6px solid #5BA7DB;
  border-radius: 25px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .product-cat__slider .swiper-slide {
    border: 4px solid #5BA7DB;
  }
}
.product-cat__slider .swiper-slide .inner {
  position: relative;
}
.product-cat__slider .swiper-slide .inner .cat-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  min-width: max-content;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  background: #5BA7DB;
}
@media only screen and (max-width: 768px) {
  .product-cat__slider .swiper-slide .inner .cat-name {
    font-size: 12px;
  }
}

/* Products section*/
.products-list .swiper-pagination {
  bottom: 0 !important;
}
.products-list .swiper-slide {
  padding: 2px;
  height: auto;
}
.products-list .product-info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ebebeb;
}
.products-list .product-info__image {
  position: relative;
  aspect-ratio: 1;
}
.products-list .product-info__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-list .product-info__image::after, .products-list .product-info__image::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.products-list .product-info__image::after {
  top: 0;
  right: 0;
  width: 15%;
  height: 55%;
  background-position: top right;
}
.products-list .product-info__image::before {
  bottom: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background-position: bottom left;
  z-index: 3;
}
.products-list .product-info__text {
  padding: 10px;
}
.products-list .product-info__title {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.products-list .product-info__title a {
  display: block;
  font-size: 14px;
  color: #5BA7DB;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .products-list .product-info__title a {
    font-size: 13px;
  }
}
.products-list .product-info__title a:hover {
  color: #FFCC29;
}
.products-list .product-info__price {
  text-align: center;
}
.products-list .product-info__price span {
  color: #ff4200;
}

/* Projects section*/
.projects {
  background-color: rgba(211, 211, 211, 0.3176470588);
}
.projects .project-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.projects .project-item__image {
  position: relative;
  overflow: hidden;
}
.projects .project-item__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.projects .project-item__image img {
  aspect-ratio: 600/450;
  object-fit: cover;
}
.projects .project-item__link {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.projects .project-item__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 20px;
  border-radius: 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .projects .project-item__link a {
    padding: 4px 15px;
    font-size: 13px;
  }
}
.projects .project-item__link a:hover {
  background: #5BA7DB;
  color: #fff;
}
.projects .project-item__link a:hover span {
  transform: rotate(0deg);
}
.projects .project-item__link span {
  display: block;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
  transform: rotate(45deg);
}
.projects .project-item__text {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  padding: 7px;
  background-color: #fff;
  border-radius: 10px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .projects .project-item__text {
    padding: 5px;
  }
}
.projects .project-item__text .date {
  display: block;
  font-size: 12px;
  color: #827d7d;
}
.projects .project-item__text .name a {
  display: block;
  line-height: 1.3em;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .projects .project-item__text .name a {
    font-size: 14px;
  }
}
.projects .project-item__text .name a:hover {
  color: #5BA7DB;
}

/* News section*/
.news .hot-news {
  padding: 10px;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #e9e9ed;
  box-shadow: 1px 1px 14px rgba(119, 115, 115, 0.62);
}
.news .hot-news__img {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .news .hot-news__img {
    margin-bottom: 10px;
  }
}
.news .hot-news__img img {
  aspect-ratio: 18/9;
  object-fit: cover;
  border-radius: 8px;
}
.news .hot-news__info .date {
  margin-bottom: 10px;
}
.news .hot-news__info .name {
  margin-bottom: 10px;
}
.news .hot-news__info .name a {
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .news .hot-news__info .name a {
    font-size: 14px;
  }
}
.news .hot-news__info .name a:hover {
  color: #5BA7DB;
}
.news .hot-news__info .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 992px) {
  .news .news-list {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .news .news-list {
    margin-top: 15px;
  }
}
.news .news-list .news-item {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}
@media only screen and (max-width: 992px) {
  .news .news-list .news-item {
    margin-bottom: 15px;
  }
}
.news .news-list .news-item:last-child {
  margin-bottom: 0;
}
.news .news-list .news-item__img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.news .news-list .news-item__img img {
  height: 100%;
  aspect-ratio: 13/9;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .news .news-list .news-item__img img {
    aspect-ratio: 16/9;
  }
}
.news .news-list .news-item__info .name {
  margin-bottom: 10px;
}
.news .news-list .news-item__info .name a {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .news .news-list .news-item__info .name a {
    font-size: 14px;
  }
}
.news .news-list .news-item__info .name a:hover {
  color: #5BA7DB;
}
.news .news-list .news-item__info .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 992px) {
  .news .news-list .news-item__info .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.news .btn-more {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .news .btn-more {
    margin-top: 20px;
  }
}

/* Feedback section*/
.feedback {
  position: relative;
}
.feedback .section-feedback-slide2 {
  padding: 30px;
  box-shadow: 4px 2px 20px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  .feedback .section-feedback-slide2 {
    padding: 10px;
  }
}

.feedback-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  padding-top: 5.1rem;
  background-color: #fff;
}
.feedback-left .feedback-left__title {
  font-size: 3rem;
  color: #5BA7DB;
  font-weight: bold;
  text-transform: uppercase;
}
.feedback-left .feedback-left__item {
  display: flex;
  height: 320px;
  align-items: center;
}
.feedback-left .feedback-left__item img {
  width: 100%;
  height: auto;
  max-height: 148px;
  object-fit: contain;
  margin: 0 auto;
}
.feedback-left .feedback-buttons {
  width: 170px;
  padding: 10px 0;
  margin: 0 auto;
}
.feedback-left .feedback-buttons .custom-arrow:hover {
  background: #5BA7DB !important;
}
.feedback-left .feedback-buttons .custom-arrow:hover i {
  color: #fff !important;
}
.feedback-left .feedback-buttons .custom-arrow i {
  color: #949494;
}

.feedback-left-mobile {
  background-color: #fff;
}
.feedback-left-mobile .feedback-left__title {
  font-size: 3rem;
  color: #5BA7DB;
  font-weight: bold;
  text-transform: uppercase;
}
.feedback-left-mobile .feedback-left__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-left-mobile .feedback-left__item a {
  display: block;
}
.feedback-left-mobile .feedback-left__item img {
  width: 100%;
  height: auto;
  max-height: 148px;
  object-fit: contain;
  margin: 0 auto;
}

.feedback-right .section-feedback-slide {
  position: relative;
  background: #fff;
  box-shadow: 4px 2px 20px rgba(0, 0, 0, 0.25);
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .feedback-right .section-feedback-slide {
    padding: 10px;
  }
}
.feedback-right .content-top {
  display: flex;
  align-items: center;
}
.feedback-right .content-top img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .feedback-right .content-top img {
    width: 50px;
    height: 50px;
  }
}
.feedback-right .content-top .info {
  display: inline-block;
  padding-left: 20px;
}
.feedback-right .content-top .info .name {
  font-weight: 600;
}
.feedback-right .content-body {
  text-align: justify;
  padding-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fancybox__content {
  width: 100% !important;
  height: 100% !important;
}

/* Partner section*/
.partner-item {
  display: flex !important;
  justify-content: center;
  border: 1px solid #949494;
  align-items: center;
}
.partner-item img {
  width: 150px;
  height: 130px;
  padding: 18px;
  object-fit: contain;
}

.partner-slide {
  position: relative;
}

.partner-slide .custom-arrow {
  position: absolute;
  top: 35%;
  z-index: 10;
  width: 30px;
  height: 30px;
  border: 0;
  background: #929292;
  border-radius: 50%;
}
.partner-slide .custom-arrow i {
  color: #fff;
  font-size: 1.3rem;
}

.partner-button-prev {
  left: -45px;
}

.partner-button-next {
  right: -45px;
}

/* Archive products*/
.title-category, .filter-title {
  margin-bottom: 15px;
  background: #5BA7DB;
  color: #fff;
  text-transform: uppercase;color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  line-height: normal;
}
.yith-wcan-filters .yith-wcan-filter .filter-title{color: #fff}
.filter-product{margin-top: 20px}
@media only screen and (max-width: 768px) {
  .title-category {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.list-category .accordion {
  border: 1px solid #ebebeb;
}
.list-category .accordion .accordion-item {
  background-color: transparent;
  border-radius: 0;
  border: none;
  position: relative;
}
.list-category .accordion .accordion-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-color: #ebebeb;
}
.list-category .accordion .accordion-item .accordion-header.not-children a:after {
  display: none;
}
.list-category .accordion .accordion-item .accordion-button {
  padding: 10px 20px;
  font-weight: 600;text-transform: uppercase;
}
.list-category .accordion .accordion-item .accordion-button:hover {
  color: #5BA7DB;
}
.list-category .accordion .accordion-item .accordion-button::after {
  background-image: var(--bs-accordion-btn-icon);
  --bs-accordion-btn-icon-width: 0.8rem;
}
.list-category .accordion .accordion-item .accordion-body {
  padding: 0;
}
.list-category .accordion .accordion-item ul.ul-child-category {
  margin-bottom: 0;
  list-style: none;
}
.list-category .accordion .accordion-item ul.ul-child-category li a {
  display: block;
  padding: 7px 20px 7px 30px;
  font-size: 14px;
}
.list-category .accordion .accordion-item ul.ul-child-category li a:hover {
  color: #5BA7DB;
}
.list-category .accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #212529;
  text-transform: capitalize;
  box-shadow: none;
}
.list-category .accordion .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
  --bs-accordion-btn-icon-width: 0.8rem;
}

.cat-desc .cat-title {
  color: #5BA7DB;
  text-transform: uppercase;
}
.cat-desc .cat-desc-content {
  padding: 0 10px;
  position: relative;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.cat-desc .cat-desc-content::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85));
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 1;
}
.cat-desc .cat-desc-content.expanded::after {
  opacity: 0;
}
.cat-desc .cat-desc-content.expanded {
  max-height: inherit;
}
.cat-desc .cat-desc-toggle {
  display: block;
  margin: 0 auto 15px;
  background: none;
  border: none;
  color: #5BA7DB;
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
}
.cat-desc .cat-desc-toggle:hover {
  text-decoration: underline;
}

.inner-products .sort-filter {
  margin-bottom: 1rem;
  padding: 0.5rem;
  display: flex;
  border: 1px solid #ebebeb;
}
@media only screen and (max-width: 576px) {
  .inner-products .sort-filter {
    flex-wrap: wrap;
  }
}
.inner-products .sort-filter .woocommerce-result-count {
  width: 50%;
  float: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .inner-products .sort-filter .woocommerce-result-count {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.inner-products .sort-filter .woocommerce-ordering {
  margin-bottom: 0;
  float: none;
  width: 50%;
}
@media only screen and (max-width: 576px) {
  .inner-products .sort-filter .woocommerce-ordering {
    width: 100%;
  }
}
.inner-products .sort-filter .woocommerce-ordering .orderby {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ebebeb;
  border-radius: 0.2rem;
  width: fit-content;
  display: flex;
  margin-left: auto;
}
@media only screen and (max-width: 576px) {
  .inner-products .sort-filter .woocommerce-ordering .orderby {
    margin: 0 auto;
  }
}

.woocommerce-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  margin-top: 20px !important;
}
@media only screen and (max-width: 768px) {
  .woocommerce-pagination {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 576px) {
  .woocommerce-pagination {
    margin-top: 0 !important;
  }
}
.woocommerce-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  padding-left: 0;
  margin: 0 20px 0 0 !important;
  border-radius: 4px;
  border: none !important;
}
@media only screen and (max-width: 768px) {
  .woocommerce-pagination .page-numbers {
    margin: 0 10px 0 0 !important;
  }
}
.woocommerce-pagination .page-numbers li {
  border-right: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce-pagination .page-numbers li span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .woocommerce-pagination .page-numbers li span {
    width: 25px;
    height: 25px;
  }
}
.woocommerce-pagination .page-numbers li span:not(.dots) {
  background: #5BA7DB;
  color: #fff;
}
.woocommerce-pagination .page-numbers li a {
  border: 1px solid #dddddd;
  line-height: normal;
  padding: 6px 12px;
  color: #000;
  background: #f1f1f1;
  margin: 0 6px;
  border-radius: 5px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .woocommerce-pagination .page-numbers li a {
    width: 25px;
    height: 25px;
  }
}
.woocommerce-pagination .page-numbers li a:not(.dots):hover {
  background-color: #eeeeee;
}
.woocommerce-pagination .page-numbers li .dots {
  border: 1px solid #dddddd;
  line-height: normal;
  padding: 6px 12px;
  margin: 0 6px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 1rem;
  color: #999999;
  cursor: not-allowed;
}

.woocommerce-page .products-list .product-info__title {
  min-height: 34px;
}
@media only screen and (max-width: 768px) {
  .woocommerce-page .products-list .product-info__title {
    min-height: 32px;
  }
}
.woocommerce-page .products-list .product-info__image img {
  aspect-ratio: 16/9;
}

/* Archive blogs */
.blog-list .cat-title {
  color: #5BA7DB;
  text-transform: uppercase;
}
.blog-list .desc {
  margin-bottom: 1rem;
}
.blog-list .title-category {
  background: #5BA7DB;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125rem;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 25px !important;
  font-weight: 400;
  line-height: 1;
}
.blog-list .box-news {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.blog-list .box-news .item-img .img-news {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.blog-list .box-news .content {
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .blog-list .box-news .content {
    padding: 7px;
  }
}
.blog-list .box-news .content .name a {
  display: inline-block;
  margin: 10px 0;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list .box-news .content .name a:hover {
  color: #5BA7DB;
}
.blog-list .box-news .content .name a:hover a {
  color: #5BA7DB;
}
@media only screen and (max-width: 768px) {
  .blog-list .box-news .content .name a {
    font-size: 14px;
  }
}
.blog-list .box-news .content .desc {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list .box-news .content .view-more {
  font-size: 0.9rem;
  color: #fff;
  padding: 10px;
  background: #5BA7DB;
  transition: ease-in-out 0.2s;
}
.blog-list .box-news .content .view-more i {
  margin-left: 0.5rem !important;
}

.sidebar-blog {
  position: sticky;
}
.sidebar-blog .title-category {
  background: #5BA7DB;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125rem;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 25px !important;
  font-weight: 400;
  line-height: 1;
}
.sidebar-blog .ul-block,
.sidebar-blog .validation-summary-errors ul {
  display: block;
}
.sidebar-blog .ul-catalog li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  list-style-type: none;
  text-transform: uppercase;
}
.sidebar-blog .ul-catalog li:first-child {
  padding-top: 0 !important;
}
.sidebar-blog .ul-catalog li:last-child {
  border-bottom: none;
}
.sidebar-blog .ul-catalog li a:hover {
  color: #5BA7DB;
}
.sidebar-blog .ul-catalog li a svg {
  padding-right: 5px;
  width: 12px;
  height: 12px;
  fill: #5BA7DB;
}
.sidebar-blog .media-recently {
  position: relative;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  margin: 0.6rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
}
.sidebar-blog .media-recently:first-child {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.sidebar-blog .media-recently:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.sidebar-blog .media-recently:before {
  position: absolute;
  content: "";
  background: #5BA7DB;
  width: 0;
  height: 0.5px;
  left: 0;
  bottom: 1px;
  transition: all 0.4s;
}
.sidebar-blog .media-recently:hover:before {
  transform: scaleX(1);
  width: 100%;
}
.sidebar-blog .media-recently a {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-blog .media-recently a img {
  max-width: 100%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  padding-top: 0.25rem !important;
  margin-right: 0.5rem !important;
}
.sidebar-blog .media-recently .media-body {
  flex: 1;
}
.sidebar-blog .media-recently .media-body .post-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .sidebar-blog .media-recently .media-body .post-title a {
    font-size: 14px;
  }
}
.sidebar-blog .media-recently .media-body .post-title a:hover {
  color: #5BA7DB;
}
.sidebar-blog .media-recently .content__calendar svg {
  width: 16px;
  height: 16px;
  fill: #5BA7DB;
}

/* Archive projects */
.project .title-category {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125rem;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 25px !important;
  font-weight: 400;
  line-height: 1;
}
.project .cat-title {
  color: #5BA7DB;
  text-transform: uppercase;
}
.project .desc {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.project .project-item {
  position: relative;
}
.project .project-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.project .project-item .body {
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: rgb(255, 255, 255);
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width: 768px) {
  .project .project-item .body {
    padding: 7px;
  }
}
.project .project-item .body .name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .project .project-item .body .name {
    font-size: 14px;
  }
}
.project .project-item .project-bf {
  position: relative;
  display: inline-block;
}
.project .project-item .project-bf::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -25px;
  width: 13px;
  height: 3px;
  opacity: 0.5;
  background: rgb(255, 186, 0);
}
.project .project-item .project-bf::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -60px;
  width: 26px;
  height: 3px;
  background: rgb(255, 186, 0);
}
.project .project-item .black-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.project .project-item .black-layer:hover {
  background-color: transparent;
}

@media only screen and (max-width: 992px) {
  .sidebar-project {
    margin-top: 30px;
  }
}
.sidebar-project article {
  height: 100%;
  border-radius: 8px;
  border: 1px solid #e9e9ed;
  position: relative;
  overflow: hidden;
}
.sidebar-project article .img {
  overflow: hidden;
}
.sidebar-project article .img:hover a::after {
  background-color: #5BA7DB;
  border-color: #5BA7DB;
}
.sidebar-project article .img a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.sidebar-project article .img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.sidebar-project article .img a:hover {
  color: #5BA7DB;
}
.sidebar-project article .info {
  padding: 16px 6px 6px;
}
.sidebar-project article .name {
  margin-bottom: 0;
}
.sidebar-project article .name a {
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .sidebar-project article .name a {
    font-size: 14px;
  }
}
.sidebar-project article .desc {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-project article .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.sidebar-project article .meta .date {
  margin-right: auto;
}
.sidebar-project article .meta img {
  object-fit: contain;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.sidebar-project article .meta .share {
  position: relative;
  margin-left: 8px;
}

.sidebar-project__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .sidebar-project__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

h1.post-title {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  h1.post-title {
    font-size: 16px;
  }
}

.single .content-detail > * :not(h1, h2, h3, h4, h5) {
  font-family: "Lato", sans-serif !important;
  font-size: 1rem !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.single .content-detail > * :not(h1, h2, h3, h4, h5) img {
  margin: 1rem 0;
}

/* Single products*/
.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart {
  margin-bottom: 0;
}

.single-product .wvg-gallery-thumbnail-image {
  padding: 5px;
}
.single-product .block-content .title-content {
  margin-top: 3rem;
  padding: 0.5rem 1rem 0.5rem 0;
  color: #5BA7DB;
  text-transform: uppercase;
  border-bottom: 1px solid #dee2e6;margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .single-product .product-tskt {
    flex-wrap: wrap;
  }
  .single-product .product-tskt .tskt {
    width: 100%;
  }
}
.single-product .product-tskt .table {
  width: 100% !important;
  table-layout: auto;
}
.single-product .product-tskt .support {
  position: relative;
}
.single-product .product-tskt .support .contact-list {
  position: sticky;
  top: 0;
}
.single-product .product-tskt .support .contact-list .contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}
.single-product .product-tskt .support .contact-list .contact-item:first-child {
  padding-top: 0;
}
.single-product .product-tskt .support .contact-list .contact-item svg {
  width: 20px;
  height: 20px;
  fill: #5BA7DB;
}
.single-product .product-tskt .support .contact-list .contact-item .contact-text {
  line-height: 1.4;
  color: #5BA7DB;
}
.single-product .product-tskt .support .contact-list .contact-item .contact-phone {
  color: Red;
}
@media only screen and (max-width: 768px) {
  .single-product .product-tskt .support .contact-list {
    position: relative;
    top: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
}
.single-product .product-tskt .support .contact-text {
  width: max-content;
}
.single-product .product-tskt table p {
  margin: 0 !important;
}
.single-product .product-tskt table span {
  font-family: "Lato", sans-serif !important;
  width: 100%;
  display: block;
  min-width: max-content;
  font-size: 14px !important;
}
.single-product .product-tskt table tbody tr td {
  padding: 0.5rem !important;
}
.single-product .product-tskt table tbody tr td + span {
  padding: 0.5rem;
}
.single-product .product-tskt ul {
  padding-left: 15px;
}
.single-product .woo-variation-product-gallery {
  max-width: 100% !important;
}
.single-product .woo-variation-product-gallery .wvg-gallery-image.slick-slide.slick-current.slick-active img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.single-product .product_title {
  font-size: 1.2rem;
  font-family: "UTM-AvoBold", sans-serif;
  color: #0274ba;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.single-product .product-tskt {
  margin-top: 2rem;
}
.single-product .btn-desc {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.single-product .btn-desc .btn {
  flex: 1 1 0;
  align-items: center;
  padding: 0.7rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #d63e34;
  min-width: max-content;
}
.single-product .btn-desc .btn i {
  padding-right: 0.5rem;
}
.single-product .btn-desc .btn.primary {
  background-color: #d63e34;
  color: #fff;
  border: none;
}
.single-product .btn-desc .btn.outline {
  color: #d63e34;
  background-color: transparent;
}
.single-product .table-bordered > :not(caption) > * {
  border-color: #000;
}
.single-product .single_variation_wrap {
  display: none !important;
}
.single-product p.price {
  color: red !important;
}
.single-product .variations.table.table-bordered th.label {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1em !important;
}

.single-product .product-tskt table > * {
  font-size: 14px !important;
}

/* Single blog */
.page-body .detail-inner {
  border: 1px solid #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background-color: #fff !important;
  padding: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .page-body .detail-inner {
    padding: 0;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none;
  }
}
.page-body .detail-inner .title-category {
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #000;
  font-weight: 400;
  margin-bottom: 0.5rem !important;
  line-height: 1.2;
}
.page-body .detail-inner .date-post {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.page-body .detail-inner .date-post svg {
  width: 16px;
  height: 16px;
  fill: #5BA7DB;
}
.page-body .detail-inner .content-detail {
  margin: 1rem 0;
}
.page-body .detail-inner .content-detail ul {
  padding-left: 15px;
}
.page-body .related-articles .title-category {
  background-color: #5BA7DB;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125rem;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 25px !important;
  font-weight: 400;
}
.page-body .related-articles .row .box-news {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.page-body .related-articles .row .box-news .item-img a {
  color: #000;
}
.page-body .related-articles .row .box-news .item-img a img {
  aspect-ratio: 3/2;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.page-body .related-articles .row .box-news .content {
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .page-body .related-articles .row .box-news .content {
    padding: 7px;
  }
}
.page-body .related-articles .row .box-news .content .name {
  margin: 10px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .page-body .related-articles .row .box-news .content .name {
    font-size: 14px;
  }
}
.page-body .related-articles .row .box-news .content .name:hover {
  color: #5BA7DB;
}
.page-body .related-articles .row .box-news .content .desc {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-body .related-articles .gutters-10 [class^=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.share-social {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  column-gap: 10px;
}
.share-social a {
  background: #3b5997;
  border: 1px solid transparent;
  height: 30px;
  width: 30px;
  border-radius: 3px;
  transition: all 0.3s;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-social a:hover {
  background: #fff !important;
  border: 1px solid #3b5997;
}
.share-social a.twitter {
  background: #1DA0F2;
}
.share-social a.linkedin {
  background: #0077B6;
}
.share-social a.instagram {
  background: #E1306C;
}

/* Single project */
.title-project {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  margin-bottom: 30px;
}

.single-project .date-post {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.single-project .date-post svg {
  width: 16px;
  height: 16px;
  fill: #5BA7DB;
}
.contact-info a {
  font-weight: 400;
}
.contact-info .name {
  font-size: 20px;
  padding: 10px 0;
}
.contact-info .desc-item {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
}
.contact-info .desc-item svg {
  margin-right: 10px;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  fill: #5BA7DB;
}
.contact-info .desc-item .content {
  display: flex;
  align-items: baseline;
  font-size: 14px;
  margin-bottom: 5px;
}

.google-map, .google-map iframe {
  width: 100%;
  height: 100%;
}

.contact-forminfo {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}
.contact-forminfo .contact-forminfo__head {
  font-size: 16px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.contact-forminfo .form-group {
  margin-bottom: 15px;
}
.contact-forminfo .form-group label {
  display: none;
}
.contact-forminfo .form-group input,
.contact-forminfo .form-group textarea {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #495057;
  background-color: #fff;
}
.contact-forminfo .form-group input:focus,
.contact-forminfo .form-group textarea:focus {
  border-color: #FFCC29;
  outline: none;
  box-shadow: none;
}
.contact-forminfo .btn-send-message {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #212529;
  text-align: center;
  padding: 7px 20px;
  background-color: #FFCC29;
  border: 1px solid #FFCC29;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
}
.contact-forminfo .btn-send-message:hover {
  cursor: pointer;
  color: #212529;
  text-decoration: none;
  background-color: #ffdf77;
}