@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --width: 92%;
  --width-screen: 1280px;
  --main-color: #fff000;
  --main-color-second: #000;
  --main-color-third: #000;
  --main-color-other: #000;
  --color-body: #333;
  --color-link: #003c86;
  --color-link-active: #da251d;
  --color-field: #333;
  --color-title: #000;
  --color-title-sub: #000;
  --color-error: #da251d;
  --color-message: #003c86;
  --color-notes: #666;
  --line-height: 1.5rem;
  --nav-height: 2rem;

  /* v2 */
  --main-color-v2: #066d6a;
  --second-color-v2: #fff;
}

* {
  font-family: "Asap", sans-serif;
  line-height: var(--line-height);
  text-decoration: none;
  box-sizing: border-box;
  word-spacing: 1px;
  margin: 0;
}

html {
  font-size: 18px;
}

body {
  font-size: 1rem;
  color: var(--color-body);
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-active);
}

input,
select,
textarea {
  color: var(--color-field);
  font-size: 1rem;
  margin: 0;
  padding: 0.5rem;
  outline: 0;
  border: solid 1px #999;
  border-radius: 0.2rem;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:hover,
select:hover,
textarea:hover {
  border: solid 1px #666;
}

input:focus,
select:focus,
textarea:focus {
  border: solid 1px rgb(255, 162, 0);
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input:is([type="checkbox"], [type="radio"]) {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.3rem;
  cursor: pointer;
}

select {
  cursor: pointer;
}

button {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

h1 {
  color: var(--color-title);
  font-size: 1.8rem;
  line-height: 130%;
  margin-bottom: 1rem;
}

.gw-container {
  width: var(--width);
  max-width: var(--width-screen);
  margin-left: auto;
  margin-right: auto;
}

.gw-container .gw-container {
  width: 100%;
}

.gw-pp-container {
  font-size: 1rem;
}

.gw-other {
  font-size: 110%;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gw-view-mobile {
  display: none;
}

/* margin */

.margin-1 {
  margin: 1rem;
}

.margin-2 {
  margin: 2rem;
}

.margin-3 {
  margin: 3rem;
}

.margin-top-bottom-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.margin-top-bottom-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.margin-top-bottom-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-2 {
  margin-top: 2rem;
}

.margin-top-3 {
  margin-top: 3rem;
}

.margin-bottom-1 {
  margin-bottom: 1rem;
}

.margin-bottom-2 {
  margin-bottom: 2rem;
}

.margin-bottom-3 {
  margin-bottom: 3rem;
}

/* padding */

.padding-1 {
  padding: 1rem;
}

.padding-2 {
  padding: 2rem;
}

.padding-3 {
  padding: 3rem;
}

.padding-top-bottom-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.padding-top-bottom-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.padding-top-bottom-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-top-1 {
  padding-top: 1rem;
}

.padding-top-2 {
  padding-top: 2rem;
}

.padding-top-3 {
  padding-top: 3rem;
}

.padding-bottom-1 {
  padding-bottom: 1rem;
}

.padding-bottom-2 {
  padding-bottom: 2rem;
}

.padding-bottom-3 {
  padding-bottom: 3rem;
}

/*grid*/
.grid {
  --width: 15rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--width), 1fr));
  gap: 1rem;
}

.reverse .grid {
  grid-auto-flow: dense;
}
.reverse .grid .item:nth-child(1) {
  grid-column: 2;
}
.reverse .grid .item:nth-child(2) {
  grid-column: 1;
}

.gw-view-post .item .item-title{
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.gw-view-post .item .item-title::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    background-color: cyan;
    bottom: -1px;
}

.direction-column .grid {
  flex-direction: column;
}

.col-1 .grid {
  --width: var(--width);
  --width-max: 1fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 2rem;
}

.col-2 .grid {
  --width: 40%;
  --width-max: 0.5fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 2rem;
}

.col-3 .grid {
  --width: 30%;
  --width-max: 0.333fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 1.5rem;
}

.col-4 .grid {
  --width: 22%;
  --width-max: 0.25fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 1.5rem;
}

.col-5 .grid {
  --width: 18%;
  --width-max: 0.2fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 1rem;
}

.col-6 .grid {
  --width: 14.5%;
  --width-max: 0.166fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 1rem;
}

.col-7 .grid {
  --width: 12%;
  --width-max: 0.1428fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 0.5rem;
}

.col-8 .grid {
  --width: 10%;
  --width-max: 0.125fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 0.5rem;
}

.col-9 .grid {
  --width: 9%;
  --width-max: 0.111fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 0.5rem;
}

.col-10 .grid {
  --width: 8%;
  --width-max: 0.1fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 0.3rem;
}

.col-11 .grid {
  --width: 7%;
  --width-max: 0.0909fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 0.3rem;
}

.col-12 .grid {
  --width: 6%;
  --width-max: 0.0833fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--width), var(--width-max))
  );
  gap: 0.3rem;
}

.gap-0 .grid {
  gap: 0rem;
}

.gap-1 .grid {
  gap: 1rem;
}

.gap-2 .grid {
  gap: 2rem;
}

.gap-3 .grid {
  gap: 3rem;
}

.align-center .grid {
  align-items: center;
}

.align-start .grid {
  align-items: start;
}

.align-end .grid {
  align-items: end;
}

/* flex */

.flex {
  --columns: 4;
  --spacing: 1.5rem;
  display: flex;
  gap: var(--spacing);
}

.flex > .item {
  width: calc(100% / var(--columns) - var(--spacing));
}

.flex.col-1 {
  --columns: 1;
  --spacing: 2rem;
}

.flex.col-2 {
  --columns: 2;
  --spacing: 2rem;
}

.flex.col-3 {
  --columns: 3;
  --spacing: 1.5rem;
}

.flex.col-4 {
  --columns: 4;
  --spacing: 1.5rem;
}

.flex.col-5 {
  --columns: 5;
  --spacing: 1rem;
}

.flex.col-6 {
  --columns: 6;
  --spacing: 1rem;
}

.flex.col-7 {
  --columns: 7;
  --spacing: 0.5rem;
}

.flex.col-8 {
  --columns: 8;
  --spacing: 0.5rem;
}

.flex.col-9 {
  --columns: 9;
  --spacing: 0.5rem;
}

.flex.col-10 {
  --columns: 10;
  --spacing: 0.3rem;
}

.flex.col-11 {
  --columns: 11;
  --spacing: 0.3rem;
}

.flex.col-12 {
  --columns: 12;
  --spacing: 0.3rem;
}

.flex.gap-0 {
  --spacing: 0rem;
}

.flex.gap-1 {
  --spacing: 1rem;
}

.flex.gap-2 {
  --spacing: 2rem;
}

.flex.gap-3 {
  --spacing: 3rem;
}

.flex.row {
  flex-direction: row;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.column {
  flex-direction: column;
}

.flex.column.reverse {
  flex-direction: column-reverse;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex.flex-start {
  justify-content: flex-start;
}

.flex.flex-end {
  justify-content: flex-end;
}

.flex.flex-center {
  justify-content: center;
}

.flex.flex-around {
  justify-content: space-around;
}

.flex.flex-between {
  justify-content: space-between;
}

.flex.items-stretch {
  align-items: stretch;
}

.flex.items-baseline {
  align-items: baseline;
}

.flex.items-center {
  align-items: center;
}

.flex.items-start {
  align-items: flex-start;
}

.flex.items-end {
  align-items: flex-start;
}

.flex.content-baseline {
  align-content: baseline;
}

.flex.content-center {
  align-content: center;
}

.flex.content-start {
  align-content: flex-start;
}

.flex.content-end {
  align-content: flex-end;
}

.flex.content-around {
  align-content: space-around;
}

.flex.content-between {
  align-content: space-between;
}

.bg-main {
  background-color: var(--main-color);
}
.bg-main-second {
  background-color: var(--main-color-second);
}
.bg-white {
  background-color: white;
}
.bg-black {
  background-color: black;
}
.bg-gray {
  background-color: gray;
}
.bg-silver {
  background-color: silver;
}
.bg-green {
  background-color: green;
}
.bg-blue {
  background-color: var(--color-link);
}
.bg-red {
  background-color: #f00;
}
.bg-yellow {
  background-color: yellow;
}
.bg-orange {
  background-color: orange;
}

.color-main,
.color-main a {
  color: var(--main-color);
}
.color-main-second,
.color-main-second a {
  color: var(--main-color-second);
}
.color-white,
.color-white a {
  color: white;
}
.color-black,
.color-black a {
  color: black;
}
.color-gray,
.color-gray a {
  color: gray;
}
.color-silver,
.color-silver a {
  color: silver;
}
.color-green,
.color-green a {
  color: green;
}
.color-blue,
.color-blue a {
  color: var(--color-link);
}
.color-red,
.color-red a {
  color: #f00;
}
.color-yellow,
.color-yellow a {
  color: yellow;
}
.color-orange,
.color-orange a {
  color: orange;
}

.color-white,
.color-white a {
  color: #fff;
}
.color-white .gw-title-block {
  color: #fff;
}
.color-white .gw-title-block::before {
  border-bottom-color: #fff;
}
.color-white .gw-title-block span::before {
  border-bottom-color: #fff;
}

.scale-130 {
  transform: scale(1.3);
}
.scale-125 {
  transform: scale(1.25);
}
.scale-120 {
  transform: scale(1.2);
}
.scale-115 {
  transform: scale(1.15);
}
.scale-110 {
  transform: scale(1.1);
}
.scale-105 {
  transform: scale(1.05);
}
.scale-95 {
  transform: scale(0.95);
}
.scale-90 {
  transform: scale(0.9);
}
.scale-85 {
  transform: scale(0.85);
}
.scale-80 {
  transform: scale(0.8);
}
.scale-75 {
  transform: scale(0.75);
}
.scale-70 {
  transform: scale(0.7);
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.text-50-left .gw-view-post {
  margin-right: 50%;
}
.text-50-right .gw-view-post {
  margin-left: 50%;
}

.box-shadow {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}

/*img*/
.img,
.img a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.img img {
  max-width: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.img-mw {
  max-width: 100%;
  max-height: none;
}

.img-mh {
  max-width: none;
  max-height: 100%;
}

.img-1x1 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.img-2x1 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2/1;
}

.img-1x2 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/2;
}

.img-3x1 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/1;
}

.img-1x3 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/3;
}

.img-4x1 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/1;
}

.img-1x4 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/4;
}

.img-5x1 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 5/1;
}

.img-1x5 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/5;
}

.img-4x3 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.img-3x4 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.img-16x9 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.img-9x16 {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 9/16;
}
/*END img*/

/*corner*/

.corner {
  border-radius: 0.2rem;
}

.corner-small {
  border-radius: 0.3rem;
}

.corner-medium {
  border-radius: 0.5rem;
}

.corner-large {
  border-radius: 1rem;
}

.corner-all {
  border-radius: 50%;
}

/*hiệu ứng*/
.gw-bar-process {
  color: #fff;
  background: linear-gradient(
      to left,
      rgba(0, 0, 245, 0) 50%,
      rgba(0, 0, 245, 1) 50%
    )
    right;
  background-size: 200%;
  transition: 0.2s ease-out;
}

.gw-bar-process:hover {
  background-position: left;
}

.gw-button {
  border: 0;
}

.gw-button::before,
.gw-button::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.gw-draw {
  transition: color 0.1s;
}

.gw-draw::before,
.gw-draw::after {
  border-bottom: 2px solid transparent;
  width: 0;
  height: 0;
}

.gw-draw::before {
  top: 0;
  left: 0;
}

.gw-draw::after {
  bottom: 0;
  right: 0;
}

.gw-draw:hover .gw-draw:hover::before,
.gw-draw:hover::after {
  width: 100%;
  height: 100%;
}

.gw-draw:hover::after {
  border-bottom-color: #ff8000;
  transition: border-color 0s ease-out 0.2s, width 0.1s ease-out 0.2s,
    height 0.1s ease-out 0.3s;
}

.gw-pp .gw-document-title,
.gw-form-lead .gw-document-title {
  background-color: #2283c5;
}

.gw-list ul {
  margin: 0;
}
.gw-list ul li {
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}
.gw-list ul li::before {
  color: var(--main-color);
  font-size: 80%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f0d0";
  position: absolute;
  left: 0;
}

.pulse {
  --position: 0;
  --color: #e60000;
  position: relative;
}

.pulse::before {
  content: "";
  width: calc(100% + 10%);
  height: calc(100% + 10%);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: var(--position);
  top: var(--position);
  animation: pulse 2s linear infinite;
}

.pulse::after {
  content: "";
  width: calc(100% + 10%);
  height: calc(100% + 10%);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: var(--position);
  top: var(--position);
  animation: pulse 2s linear infinite;
  animation-delay: 0.3s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
/*END hiệu ứng*/

/*gw-title*/
.gw-title-block {
  color: var(--color-title);
  text-align: center;
  text-transform: uppercase;
  margin: 1rem 0 2rem 0;
  position: relative;
}
.gw-title-block::before {
  content: " ";
  width: 100%;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
}
.gw-title-block span {
  display: inline-block;
  max-width: 90%;
  font-size: 1.8rem;
  line-height: 130%;
  position: relative;
  z-index: 2;
}
.gw-title-block span::before {
  --width: 60px;
  --spacing: 30px;
  content: " ";
  width: var(--width);
  height: 4px;
  background-color: var(--color-title);
  border-radius: 5px;
  margin: auto;
  position: absolute;
  bottom: -0.6rem;
  left: calc(100% / 2 - var(--spacing));
}

.gw-title-sub {
  color: var(--color-title-sub);
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #999;
  position: relative;
}

.gw-title-sub a {
  color: var(--color-title-sub);
}

.gw-title-sub a:hover {
  color: var(--color-title-sub);
  text-decoration: none;
}

.gw-title-sub:before {
  content: "";
  display: block;
  width: 15%;
  height: 1px;
  background-color: var(--color-title-sub);
  position: absolute;
  left: 0%;
  bottom: -1px;
}

/*END gw-title*/

/*gw-page-70-30*/
.gw-page-70,
.gw-page-30 {
  margin-bottom: 35px;
}

.gw-page-70 {
  width: 75%;
  float: left;
}

.gw-page-30 {
  width: 22%;
  float: right;
}

.gw-page-30 .item {
  width: 100% !important;
  clear: both;
}
/*END gw-page-70-30*/

/*gw-block-view*/
.gw-block-view .gw-block-view .gw-item {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}

.gw-block-view .gw-name {
  color: var(--main-color);
  text-align: center;
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
}

.gw-block-view .gw-name:after {
  content: " ";
  width: 16%;
  height: 3px;
  background-color: #ff8000;
  position: absolute;
  bottom: 0;
  left: 42%;
}

.gw-block-view .gw-border,
.gw-block-view .gw-img {
  height: 180px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gw-block-view .gw-border {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border: solid 1px #ff8000;
  margin-bottom: 45px;
}

.gw-block-view .gw-img {
  border-top-left-radius: 22px;
  border-bottom-right-radius: 22px;
  overflow: hidden;
  top: 10px;
  left: 10px;
}

.gw-block-view .gw-img img {
  max-width: 100%;
  vertical-align: middle;
}

.gw-block-view .other {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  font-size: 130%;
  position: absolute;
  bottom: -40px;
  left: 40%;
  z-index: 2;
}

.gw-block-view .other:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid var(--main-color);
}

.gw-block-view .other:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--main-color);
}

.gw-block-view .other i {
  position: relative;
  z-index: 3;
}

.gw-block-view .gw-item:nth-child(even) .other:before {
  border-bottom: 30px solid #ff8000;
}

.gw-block-view .gw-item:nth-child(even) .other:after {
  border-top: 30px solid #ff8000;
}

/*END gw-block-view*/

/*gw-navigator*/
.gw-navigator {
  margin-bottom: 0;
  padding: 12px 20px;
}

.gw-navigator .gw-navigator-item,
.gw-navigator .gw-navigator-item a,
.gw-navigator .gw-navigator-item i {
  color: #666;
}

/*END gw-navigator*/

/*gw-multi-level*/
.gw-multi-level {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.gw-multi-level > li {
  margin: 0 1px 0 0;
  position: relative;
  z-index: 1;
}
.gw-multi-level > li > a {
  /* color: var(--color-body); */
  color: #fff;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.2s;
}

.gw-multi-level li a {
  display: block;
  text-align: center;
  padding: 0px 0.8rem;
}

.gw-multi-level li li {
  margin: 0 1rem;
}

.gw-multi-level .fas,
.gw-multi-level .far {
  margin-right: 0.5rem;
}

.gw-multi-level > li:hover > a,
.gw-multi-level > .active > a {
  color: var(--main-color-second);
  transform: scale(1.1);
}

.gw-multi-level .menu-icon a {
  font-size: 1.6rem;
  padding-left: 0.2rem;
  padding-right: 0;
}
.gw-multi-level li ul {
  border-top: solid 3px var(--main-color);
}
/*END gw-multi-level*/

/*gw-menu-product*/
.gw-menu-product {
  position: relative;
}

.gw-menu-product ul {
  width: 100%;
  font-size: 90%;
  padding: 0px 10px 30px 10px;
  position: fixed;
  left: 0;
  background-color: #fff !important;
}

.gw-menu-product li .text {
  display: none;
}

.gw-menu-product ul ul {
  display: none;
}

.gw-menu-product ul li {
  width: 25%;
  float: left;
  padding: 15px;
  margin: 0 !important;
  box-sizing: border-box !important;
  border: none !important;
}

.gw-menu-product ul li:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.gw-menu-product ul a {
  width: 100% !important;
}

.gw-menu-product ul li:hover a,
.gw-menu-product ul li:hover .title {
  color: var(--main-color) !important;
}

.gw-menu-product ul li a {
  padding: 0 !important;
  margin: 0 !important;
}

.gw-menu-product ul li a .label {
  display: none;
}

.gw-menu-product ul li .img {
  display: block;
  height: 100px;
  line-height: 100px;
}

.gw-menu-product ul li .text {
  display: block;
  text-align: center;
}

.gw-menu-product ul li .title {
  display: block;
  color: #404040;
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 3px;
}

.gw-menu-product ul li .price {
  display: block;
}

.gw-menu-product ul li .promotion {
  color: #f00;
  font-style: italic;
}
/*END gw-menu-product*/

/*gw-search-form*/
.gw-search-form {
  display: flex;
  align-items: center;
  width: 15rem;
  max-width: 100%;
}
.gw-search-text {
  width: 80%;
  line-height: 2rem;
  font-size: 90%;
  padding: 0 0.5rem;
  border: solid 1px #ccc;
  outline: none;
  margin: 0;
}
.gw-search-btn {
  display: inline;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border: solid 1px #ccc;
  background-color: #ccc;
  outline: solid 1px #ccc;
  margin: 0;
  padding: 0 0.5rem;
  cursor: pointer;
}

.gw-search-menu {
  background-color: #cc8cb0;
  border-radius: 100px;
}
#gw-menu-mobile-nav .gw-search-menu {
  background-color: unset;
}
/*END gw-search-form*/
.gw-header-top {
  background-color: #0c71b6;
  padding: 4px 0;
}

.gw-header-top .gw-container {
  display: flex;
  justify-content: space-between;
}

.gw-header-top .gw-header-top_left {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 0;
}

@media only screen and (max-width: 980px) {
  .gw-header-top .gw-container {
    justify-content: center;
  }
  .gw-header-top .gw-header-top_right {
    display: none !important;
  }
  /* .gw-header-mid .gw-container .gw-header-contact{
    display: none !important;
  } */

  /* .gw-header-logo {
    width: 100% !important;
  } */
     .gw-header-mid .gw-container .gw-header-contact {
      gap: 1.8rem;
     }
}

@media only screen and (min-width: 769px) {
  .gw-product .block.grid {
      grid-template-columns: repeat(auto-fill, minmax(var(--width), var(--width))) !important;
      justify-content: center !important;
    }
}



.gw-header-top .gw-header-top_right {
  display: flex;
  list-style: none;
}

.gw-header-top .gw-header-top_right li {
  padding: 0 10px;
  font-size: 13px;
  color: hsla(0, 0%, 100%, .8);
}

.gw-header-top .gw-header-top_right li:last-child {
  padding-right: 0;
}

.gw-header-mid {
  padding: 10px 0;
}
.gw-header-mid .gw-container {
  display: flex;
  justify-content: space-between;
}

.gw-header-mid .gw-container .gw-header-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  gap: 2.2rem;
}

.gw-header-contact a {
  all: unset;
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 10px;
}

.gw-header-contact a .gw-header-contact_icon{
  color: #3b559f;
  font-size: 2.2rem;
}

.gw-header-contact a .gw-header-contact_icon > img{
  width: 2.2rem;
  height: 2.2rem;
}

.gw-header-contact a .gw-header-contact_info span {
  font-size: 0.7rem;
}

.gw-header-contact a .gw-header-contact_info h3 {
  font-size: 1.1rem;
  color: #000;
}

/*gw-header*/
.gw-header {
  font-size: 1rem;
  /* background-color: #fff; */
  background-color: #0c71b6;
}
.gw-header .gw-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4px 0;
}
.gw-header-logo {
  text-align: center;
  text-transform: uppercase;
}
.gw-header-logo a {
  color: var(--main-color);
}
.gw-header-logo a:hover {
  text-decoration: none;
}
.gw-header-logo img {
  height: 4rem;
  max-height: 100%;
  vertical-align: middle;
}
.gw-header-logo span {
  font-weight: bold;
  margin-left: 0.5rem;
}

.gw-header-brand {
  display: inline-block;
  padding: 0.5rem 0;
}
.gw-header-brand .name {
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
}

.gw-header-phone {
  display: inline-block;
  float: right;
}

.gw-phone-btn a {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem 1rem 0.5rem 0.25rem;
  background-color: var(--main-color);
  border-radius: 10rem;
}
.gw-phone-btn a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b62018;
}
.gw-phone-btn .icon {
  display: inline-block;
  color: #b62018;
  background-color: #fff;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 10rem;
}

.gw-header-menu {
  font-size: 90%;
}

.gw-header-fix {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
}

#gw-menu-mobile .gw-menu-mobile-logo img {
  height: 3rem;
  max-height: 3rem !important;
}

#gw-menu-mobile .gw-menu-mobile-close {
  color: #222;
}

#gw-menu-mobile-nav ul li i {
  display: none;
}

#gw-menu-mobile-btn {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border: solid 1px var(--main-color-second);
  background-color: var(--main-color-second);
}
/*END gw-header*/

/*slider*/
.slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.slider .list {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.slider .list .item {
  display: none;
  position: relative;
  z-index: 1;
  animation: fadeOut 0.3s;
}

.slider.carousel .list {
  display: flex;
  transition: transform 800ms cubic-bezier(0.7, 0, 0.175, 1);
}

.slider.carousel .list .item {
  display: block;
  flex-shrink: 0;
  animation: none;
}

.slider .list .item a {
  display: block;
}

.slider .list .active {
  display: block;
  animation: fadeIn 0.6s;
}

.slider .nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  position: absolute;
  bottom: 1rem;
  z-index: 3;
}

.slider .nav .item {
  width: 0.8rem;
  height: 0.8rem;
  border: solid 1px rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  cursor: pointer;
}

.slider .nav .active {
  background-color: var(--main-color);
}

.slider .control {
  display: none;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
  cursor: pointer;
}

.slider:hover .control {
  display: flex;
}

.slider .control.prev {
  left: 0;
}

.slider .control.next {
  right: 0;
}

.slider .control .btn {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  border: solid 1px #999;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}

.slider .control .btn:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.8);
}

.slider .control.prev .btn::before {
  content: "\f30a";
}

.slider .control.next .btn::before {
  content: "\f30b";
}
/*END slider*/

/*gw-images-slide*/
.gw-images-slide img {
  display: none;
}

.gw-images-slide img:first-child {
  display: block;
}
/*END gw-images-slide*/

/*gw-slideshow*/
.gw-slideshow {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gw-slideshow-btn {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.gw-slideshow-btn:hover {
  color: #e60000;
}
.gw-slideshow-btn.clock {
  cursor: no-drop;
  color: #ddd;
}
.gw-slideshow-list {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gw-slideshow-item {
  display: none;
  flex-direction: column;
  align-items: center;
}
.gw-slideshow-item:nth-child(1) {
  display: flex;
}
.gw-slideshow-item .img {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  overflow: hidden;
  border: solid 3px #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.gw-slideshow-item .img img {
  width: 100%;
  object-fit: cover;
}
.gw-slideshow-item .name {
  font-weight: normal;
  font-style: italic;
}
/*END gw-slideshow*/

/*gw-slidecolor*/
.gw-slidecolor {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gw-slidecolor-list {
  display: flex;
  margin-bottom: 1rem;
}
.gw-slidecolor-item {
  display: none;
  width: 100%;
  position: relative;
}
.gw-slidecolor-item.active {
  display: block;
}
.gw-slidecolor-item .img {
  width: 80%;
  position: relative;
  overflow: hidden;
  margin-left: 10%;
  margin-right: 10%;
}
.gw-slidecolor-item .img img {
  width: 100%;
  object-fit: contain;
}
.gw-slidecolor-item .content {
  position: absolute;
  left: 5%;
  bottom: 5%;
}
.gw-slidecolor-item .name {
  font-size: 110%;
  margin-bottom: 1rem;
}
.gw-slidecolor-select {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.gw-slidecolor-select .color {
  width: 2rem;
  height: 2rem;
  border: solid 1px #ccc;
  cursor: pointer;
  position: relative;
}
.gw-slidecolor-select .active:before {
  color: #f1f1f1;
  font-size: 110%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f00c";
  position: absolute;
  width: 100%;
  line-height: 2rem;
  text-align: center;
  text-shadow: 0 0 2px #333;
}
.gw-slidecolor-select .mautrang {
  background-color: #fff;
}
.gw-slidecolor-select .mauden {
  background-color: #000;
}
.gw-slidecolor-select .maudo {
  background-color: #e60000;
}
.gw-slidecolor-select .maudodo {
  background-color: #e60000;
}
.gw-slidecolor-select .maubac,
.gw-slidecolor-select .maughibac {
  background-color: #ddd;
}
.gw-slidecolor-select .mauxam {
  background-color: #999;
}
.gw-slidecolor-select .maughivang {
  background-color: #e3dbd6;
}
.gw-slidecolor-select .mauvang {
  background-color: #edbb41;
}
.gw-slidecolor-select .maucam {
  background-color: #c66226;
}
.gw-slidecolor-select .mauxanhduong {
  background-color: #00016e;
}
.gw-slidecolor-select .mauxanhla {
  background-color: #223830;
}
.gw-slidecolor-select .maunau {
  background-color: #685f59;
}
/*END gw-slidecolor*/

/*gw-line*/
.height-100 {
  height: 100vh;
}
.height-75 {
  height: 75vh;
}
.height-66 {
  height: 66vh;
}
.height-50 {
  height: 50vh;
}
.height-33 {
  height: 33vh;
}
.height-25 {
  height: 25vh;
}

.gw-line-1 {
  position: relative;
  margin-bottom: 5rem;
}
.gw-line-1::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0%;
  bottom: -1.25rem;
  border-width: 1.3rem 0 0 100vw;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
}
.gw-line-1::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0%;
  bottom: -1.95rem;
  border-width: 2rem 0 0 100vw;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
  opacity: 0.5;
}
.gw-line-2 {
  position: relative;
  margin-top: 5rem;
}
.gw-line-2::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0%;
  top: -1.25rem;
  border-width: 1.3rem 0 0 100vw;
  border-style: solid;
  border-color: transparent transparent transparent var(--main-color);
}
.gw-line-2::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0%;
  top: -1.95rem;
  border-width: 2rem 0 0 100vw;
  border-style: solid;
  border-color: transparent transparent transparent var(--main-color);
  opacity: 0.5;
}
/*END gw-line*/

/*gw-menu-right*/
.gw-menu-right {
  list-style: none;
  margin: 0 0 35px 0;
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 5px;
}

.gw-menu-right a {
  display: block;
  font-size: 100%;
  font-weight: 500;
  padding: 10px 0;
  border-top: dashed 1px #ccc;
}

.gw-menu-right a i {
  font-size: 70%;
  margin-right: 7px;
}

.gw-menu-right li:first-child a {
  border-top: none;
}

.gw-advertise-img {
  margin-bottom: 35px;
}

.gw-advertise-img .gw-item {
  margin-bottom: 10px;
}

.gw-advertise-img .gw-img {
  display: block;
  text-align: center;
}

.gw-advertise-img .gw-img img {
  max-width: 100%;
}

/*END gw-menu-right*/

/*gw-posts-view*/
.gw-posts-view-3 .view {
  width: 60%;
  float: left;
}

.gw-posts-view-3 .list {
  width: 40%;
  float: right;
  overflow-y: auto;
}

.gw-posts-view-3 .list-title {
  font-size: 130%;
}

.gw-posts-view-3 .width-max {
  margin: auto;
}

.gw-posts-view-3 .view-item {
  display: none;
  position: relative;
}

.gw-posts-view-3 .view-item.active {
  display: block;
}

.gw-posts-view-3 .view-item .img {
  position: relative;
}

.gw-posts-view-3 .view-item .img img {
  object-fit: contain;
}

.gw-posts-view-3 .view-item .content {
  width: 100%;
  color: #fff;
  padding: 2% 5% 0% 5%;
  position: absolute;
  left: 0%;
  bottom: 0%;
  background: #000;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1)
  );
}

.gw-posts-view-3 .view-item .name {
  color: #fff;
  font-size: 120%;
}

.gw-posts-view-3 .view-item .info {
  font-size: 100%;
}

.gw-posts-view-3 .list-item {
  color: #222;
  padding: 10px 10px 10px 45px;
  border-bottom: solid 1px #ededed;
  cursor: pointer;
}

.gw-posts-view-3 .list-title {
  font-weight: bold;
  font-size: 110%;
  text-transform: uppercase;
  padding: 12px 10px 12px 45px;
}

.gw-posts-view-3 .list-item.active {
  color: #fff;
  background-color: var(--main-color);
  position: relative;
}

.gw-posts-view-3 .active:before {
  color: #fff;
  font-size: 110%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f053";
  position: absolute;
  top: 30%;
  left: 10px;
}

.gw-posts-view-4 {
  margin-bottom: 55px;
}

.gw-posts-view-4 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gw-posts-view-4 .img {
  display: inline-block;
  width: 33.3%;
  overflow: hidden;
  text-align: center;
}
/*END gw-posts-view*/

/*gw-article*/
.gw-article .gw-article .block .gw-article .list {
  margin-bottom: 20px;
}

.gw-article .gw-page-list {
  text-align: center;
}

.gw-article .item {
  max-width: 350px;
  margin: auto auto 35px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.gw-article .item.show {
  opacity: 1;
  transform: translateY(0);
}

.gw-article .item .img {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-bottom: 5px;
}

.gw-article .item .name {
  font-size: 100%;
  margin-bottom: 6px;
  padding: 0 12px;
}

.gw-article .item .date {
  color: #666;
  font-size: 90%;
  margin-bottom: 3px;
  padding: 0 12px;
}

.gw-article .item .info {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 90%;
  text-align: justify;
  overflow: hidden;
}

/*END gw-article*/

/*gw-product*/
.price-view {
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.price-view .price {
  color: brown;
}
/* .price-view .price::before {
    content: "\f4c0";
    font-size: 90%;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    margin-right: 0.2rem;
    opacity: 0.5;
} */
.price-view .price-current {
  color: #666;
  font-size: 70%;
  text-decoration: line-through;
}
.price-view .discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 3.5rem;
  height: 1.3rem;
  font-size: 80%;
  font-weight: bold;
  color: #fff;
  padding-left: 1px;
  padding-right: 0.3rem;
  border-radius: 20px;
  background: rgb(255, 173, 48);
  background: linear-gradient(
    90deg,
    rgba(254, 156, 4, 1) 0%,
    rgba(217, 32, 32, 1) 100%
  );
}
.price-view .discount:before {
  content: "\f0e7";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  color: rgb(255, 173, 48);
  font-size: 90%;
  font-family: "Font Awesome 5 Free";
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
}

.price-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.price-group .group-label {
  font-size: 90%;
  font-weight: bold;
  margin-right: 0.3rem;
}
.price-group .group-item {
  font-size: 75%;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  padding: 0.2rem 0.2rem;
  border: solid 1px #ccc;
  cursor: pointer;
  user-select: none;
}
.price-group .group-item.group-active {
  color: #fff;
  border: solid 1px #666;
  background-color: #666;
}

.gw-product .block .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;

  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.gw-product .block .item.show{
  opacity: 1;
  transform: translateY(0);
}

.gw-product .block .item:hover {
  background-color: #fff;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.gw-product .block .item .img {
  width: 100%;
}
.gw-product .block .item .name {
  font-size: 100%;
  font-weight: bold;
  text-align: center;
  margin: 0.8rem 0.5rem;
}
.gw-product .block .item .name a {
  color: var(--main-color-second);
}
.gw-product .block .item .price-group {
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gw-product .block .item-list .name {
  font-weight: 500;
}

.gw-product .code {
  margin-bottom: 0.5rem;
}
.gw-product .text-align {
  text-align: center;
}

.gw-product .summary {
  width: 100%;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.gw-product .summary .promotion {
  color: var(--main-color);
  margin-bottom: 0.5rem;
}
.gw-product .summary .promotion::before {
  content: "\f06b";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  margin-right: 0.3rem;
}
.gw-product .summary .other {
  color: #666;
}
.gw-product .summary .other::before {
  content: "\f00c";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  margin-right: 0.3rem;
}

.gw-product .item-list .name,
.gw-product .item-list .summary {
  text-align: center;
}

.gw-product .btn-action {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5%;
}
.gw-product .btn-action .btn {
  width: 49.5%;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 0.4rem 0;
  margin-bottom: 0.5%;
  cursor: pointer;
}
.gw-product .btn-action .btn100 {
  width: 100%;
}

.gw-product .promotion-item {
  display: block;
}
.gw-product .promotion-item:before {
  content: "\f00c";
  display: inline-block;
  width: 22px;
  color: rgb(255, 173, 48);
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  text-align: center;
}

.gw-product .item .action {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1.5rem;
}
.gw-product .item:hover .action {
  display: flex;
}
.gw-product .item .action .btn {
  width: 50%;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
}
.gw-product .item .action .btn:hover {
  text-decoration: none;
}

.gw-side-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 75%;
  color: #111;
  position: fixed;
  top: 20%;
  left: 1%;
  z-index: 11;
}
.gw-side-navigation .icon {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  /* color: var(--main-color); */
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  cursor: pointer;
}
.gw-side-navigation:hover .item {
  display: inline !important;
}
.gw-side-navigation .item {
  display: none;
  margin-bottom: 0.3rem;
  padding-right: 0.5rem;
  background-color: #fff;
  box-shadow: 0px 1px 2px #999;
  border-left: solid 2px #666;
  cursor: pointer;
}
.gw-side-navigation .item .name {
  padding-left: 0.5rem;
}
.gw-side-navigation .item:hover {
  /* color: var(--main-color);
  border-left-color: var(--main-color); */
  color: red;
  border-left-color: red;
}

.gw-product-detail {
  padding: 1rem 0;
}
.gw-product-detail .gw-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: solid 2px #eee;
}

.gw-product-img {
  display: flex;
  flex-wrap: wrap;
  /* TODO */
  /* justify-content: space-between; */
  gap: 20px;
}
.gw-product-img .img {
  width: 19%;
  height: 80px;
  text-align: center;
  overflow: hidden;
}
.gw-product-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gw-product-img .first {
  width: 100%;
  height: auto !important;
  max-height: 450px;
  margin-bottom: 0.5rem;
  border: solid 1px #ccc;
}
.gw-product-img .first.img img {
  object-fit: contain;
}

.gw-product-info .price-view,
.gw-product-info .price-group {
  margin-bottom: 1rem;
}
.gw-product-info .price-view {
  justify-content: flex-start;
  font-size: 1.1rem;
}
.gw-product-info .price-view .price {
  font-weight: bold;
  font-size: 110%;
}
.gw-product-info .price-view .price-item {
  margin-right: 1rem;
}
.gw-product-info .price-group .group-item {
  font-size: 90%;
}

.gw-product-info .promotion {
  margin-bottom: 0.8rem;
}
.gw-product-info .promotion-item {
  font-size: 1rem;
  line-height: 2rem;
}
.gw-product-info .uudai {
  padding: 0 0.8rem;
  border: solid 1px #f1f1f1;
  margin-bottom: 1rem;
}
.gw-product-info .uudai-item:nth-child(odd) {
  border-top: none;
}

.gw-product-always {
  border: solid 1px #f4f4f4;
}
.gw-product-always .item,
.gw-product-always > p {
  line-height: 1.5rem;
  min-height: 3rem;
  padding: 0.8rem 0.8rem 0.8rem 3.5rem;
  border-top: solid 1px #f1f1f1;
  vertical-align: middle;
  position: relative;
}
.gw-product-always .item:first-child,
.gw-product-always > p:first-child {
  border-top: none;
}
.gw-product-always .item:before,
.gw-product-always > p:before {
  content: "\f00c";
  width: 3.5rem;
  line-height: 3rem;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.gw-product-always .gift:before {
  content: "\f06b";
}
.gw-product-always .shield:before {
  content: "\f3ed";
}
.gw-product-always .exchange:before {
  content: "\f362";
}
.gw-product-always .history:before {
  content: "\f1da";
}
.gw-product-always .shipping:before {
  content: "\f48b";
}

.gw-product-action {
  margin-bottom: 1rem;
}
.gw-product-action .quantity {
  margin-bottom: 1rem;
}
.gw-product-action .label {
  line-height: 2.5rem;
}

.gw-product-list-info {
  width: 32%;
  float: right;
  border: solid 1px #eee;
}
.gw-product-list-info .list-info-title {
  font-size: 120%;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gw-product-list-info .list-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.gw-product-list-info .list-info-item:nth-child(even) {
  background-color: #f6f6f6;
}
.gw-product-list-info .list-info-item:nth-child(odd) {
  background-color: #fff;
}
.gw-product-list-info .list-info-name {
  width: 35%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.gw-product-list-info .list-info-value {
  width: 62%;
  padding-right: 0.5rem;
}

.gw-product-other {
  margin-top: 3rem;
}
.gw-product-other .gw-other-title {
  text-decoration: underline;
  font-size: 130%;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}
/*END gw-product*/

/*gw-news*/
.gw-news {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  margin: 2rem 0 3rem 0;
}
.gw-news .date {
  color: #666;
}

.gw-news-01 {
  width: 100%;
  margin-bottom: 2rem;
}
.gw-news-01 .name {
  font-size: 1.2rem;
}
.gw-news-01 .date {
  margin: 0.5rem 0;
}
.gw-news-01 .info {
  line-height: 1.5rem;
}

.gw-news-02 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.gw-news-02 .item {
  width: 48%;
}
.gw-news-02 .name {
  font-size: 1rem;
}
.gw-news-02 .date {
  font-size: 90%;
  margin: 0.3rem 0;
}
.gw-news-02 .info {
  display: none;
}

.gw-news-03 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.gw-news-03 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.gw-news-03 .item:last-child {
  margin-bottom: 0;
}
.gw-news-03 .item a {
  color: rgba(0, 0, 0, 0.9);
}
.gw-news-03 .name {
  font-weight: normal;
  font-size: 1rem;
  margin-left: 1rem;
}
.gw-news-03 .date {
  display: none;
}
.gw-news-03 .info {
  display: none;
}

.gw-news-04 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin: 3rem 0;
}
.gw-news-04 .item {
  width: 48%;
  margin-bottom: 1rem;
}
.gw-news-04 .name {
  font-size: 1rem;
}
.gw-news-04 .date {
  margin: 0.5rem 0;
}
.gw-news-04 .info {
  display: none;
  color: #ddd;
  font-size: 90%;
}
/*END gw-news*/

/*gw-library*/
.gw-library .item {
  width: 23.5%;
  float: left;
  margin-left: 2%;
  margin-bottom: 35px;
}

.gw-library .item .name {
  font-size: 100%;
  margin: 12px 0 8px 0;
}

.gw-library .item .name a {
  font-weight: bold;
}

.gw-library .item .info {
  overflow: hidden;
  margin-bottom: 10px;
}

.gw-library .item .video {
  position: relative;
  z-index: 1;
}

.gw-library .item .video:before {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-weight: bold;
  font-size: 260%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 45%;
  left: 45%;
  z-index: 2;
}

/*END gw-library*/

/*gw-images*/
.gw-images {
  margin-bottom: 35px;
}

.gw-images a {
  display: inline-block;
  width: 19%;
  height: 150px;
  text-align: center;
  overflow: hidden;
  margin: 0.3% 0.5%;
  border: solid 1px #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gw-images a img {
  max-width: 100%;
  vertical-align: middle;
}

/*END gw-images*/

/*gw-faqs*/
.gw-faqs-home {
  margin-bottom: 35px;
}

.gw-faqs-home .gw-img {
  width: 48%;
  float: left;
  text-align: center;
}

.gw-faqs-home .gw-img img {
  max-width: 100%;
}

.gw-faqs-home .gw-content {
  width: 48%;
  float: right;
}

.gw-faqs-home .gw-title-sub {
  text-transform: uppercase;
}

.gw-faqs-home .gw-item {
  margin: 25px 0;
}

.gw-faqs-home .gw-cauhoi {
  margin-bottom: 5px;
}

.gw-faqs-home .gw-date {
  color: #666;
  font-style: italic;
  margin-bottom: 7px;
}

.gw-faqs-home .gw-view {
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
}

/*END gw-faqs*/

/*gw-chuyendoi-home*/
.gw-chuyendoi-home .fas,
.gw-chuyendoi-home .far {
  font-size: 200%;
}

.gw-chuyendoi-home a {
  font-size: 100%;
}

.gw-chuyendoi-home a:hover {
  text-decoration: none;
}

/*END gw-chuyendoi-home*/

/*gw-service*/
.gw-service .block .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.gw-service .block .item .name {
  font-size: 100%;
  text-transform: uppercase;
  margin: 1rem 0;
}

.gw-service .block .item .name a {
  color: var(--main-color-second);
  font-weight: bold;
}

.gw-service .block .item .content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1;
}

.gw-service .block .item .info {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.gw-service .block .item .view {
  font-size: 85%;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
/*END gw-service*/

/*gw-contact*/
#gw-google-map {
  width: 100%;
  height: 450px;
}

/*END gw-contact*/

/*gw-plus-minus*/
.gw-plus-minus {
  display: inline-flex;
  justify-content: space-between;
  align-content: space-between;
  width: 8rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

.gw-plus-minus .gw-btn {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  color: #666;
  text-align: center;
  background-color: #f6f6f6;
  border: solid 1px #ccc;
  outline: none;
  cursor: pointer;
}

.gw-plus-minus .gw-value {
  width: 3rem;
  height: 2.5rem;
  text-align: center;
  border: none;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  outline: none;
}

.gw-plus-minus .gw-value::-webkit-outer-spin-button,
.gw-plus-minus .gw-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gw-plus-minus .gw-value[type="number"] {
  appearance: textfield;
}

/*END gw-plus-minus*/

/*gw-cart*/
.gw-cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: baseline;
  margin-bottom: 3rem;
}

.gw-cart .left {
  width: 70%;
  margin-bottom: 0;
  background-color: #fff;
}

.gw-cart .right {
  width: 25%;
  padding: 3rem 1.5rem;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.gw-cart .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0.5rem 0;
  border-top: solid 1px #ccc;
}

.gw-cart .list .item:first-child {
  border-top: none;
}

.gw-cart .item .img {
  width: 80px !important;
  height: 80px !important;
  overflow: hidden;
  border: solid 1px #ccc;
}
.gw-cart .item .img a {
  display: block;
}
.gw-cart .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-cart .item .name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  align-content: space-between;
  width: 50%;
  font-size: 90%;
}

.gw-cart .item .name a {
  color: #666;
}

.gw-cart .item .name a:hover {
  color: #000;
  text-decoration: none;
}

.gw-cart .item .name .price-view {
  width: 10rem;
  margin-top: 0.5rem;
  padding: 0;
}

.gw-cart .item .width-item {
  width: 8rem;
  font-size: 0.8rem;
}

.gw-cart .item .price {
  font-size: 90%;
  font-weight: bold;
  text-align: right;
}

.gw-cart .item .sotien {
  color: #b62018;
}

.gw-cart .item .vnd {
  font-size: 70%;
}

.gw-cart .item .remove {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  color: #fff;
  font-size: 80%;
  text-align: center;
  background-color: #999;
  border-radius: 3px;
  cursor: pointer;
}

.gw-cart .total {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  color: #777;
  font-weight: 500;
  font-size: 100%;
}

.gw-cart .total .label {
  color: rgba(255, 0, 0, 0.8);
  font-size: 130%;
  font-weight: bold;
  text-align: right;
}

.gw-cart .total .btn {
  width: 100%;
}
.gw-cart .total .btn a {
  display: block;
  margin-top: 1rem;
}

.gw-cart .empty {
  text-align: center;
}

.gw-cart .empty .icon {
  font-size: 100px;
  opacity: 0.5;
}

.gw-cart-page {
  padding-bottom: 20px;
}

[data-cart-view-quick] {
  display: none;
  width: 230px;
  max-height: 80vh;
  overflow: auto;
  font-size: 80%;
  padding: 0.5rem;
  background-color: #fff;
  border: solid 1px #ccc;
  position: absolute;
  z-index: 11;
}
[data-cart-view-quick] .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 10px;
  border-bottom: solid 1px #ccc;
}
[data-cart-view-quick] .name {
  width: 100%;
}
[data-cart-view-quick] .name,
[data-cart-view-quick] .name a {
  font-weight: normal;
  text-align: left;
  color: #666 !important;
  background-color: rgba(0, 0, 0, 0) !important;
}
[data-cart-view-quick] .img,
[data-cart-view-quick] .price-view,
[data-cart-view-quick] [data-cart-remove] {
  display: none;
}

.gw-cart-quantity .gw-cart-quantity a {
  color: var(--main-color);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.gw-cart-quantity [data-cart="cart-quantity"] {
  display: inline-block;
  color: #111;
  font-size: 120%;
  font-weight: 500;
  text-align: center;
  border-radius: 30px;
  padding-bottom: 2px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 5%;
  right: 30%;
}

.gw-cart-quantity:hover [data-cart-view-quick] {
  display: block;
}

.gw-cart-icon {
  display: block;
  color: var(--main-color-second);
  font-size: 120%;
}
.gw-cart-icon:hover {
  color: #fff;
  text-decoration: none;
}
.gw-cart-icon .label {
  display: none;
}
/*END gw-cart*/

/*gw-footer*/
footer {
  font-size: 1rem;
  border-top: solid 1px #ccc;
}

.gw-footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 16px;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  background-color: #0c71b6;
  color: var(--second-color-v2);
}
.gw-footer-copyright a {
  color: #fff;
}

#gw-dmca {
  margin-top: 15px;
}

.gw-footer-main {
    background-color: #cccccd !important;
    padding: 20px 0;
}

.gw-footer-main .gw-footer-block {
    box-sizing: border-box;
}

.col-1.gw-footer-block {
    flex: calc(100% / 1);
}
.col-2.gw-footer-block {
    flex: calc(100% / 2);
}
.col-3.gw-footer-block {
    flex: calc(100% / 3);
}
.col-4.gw-footer-block {
    flex: calc(100% / 4);
}
.col-6.gw-footer-block {
    flex: calc(100% / 6);
}
.col-12.gw-footer-block {
    flex: calc(100% / 12);
}

/* Responsive nhỏ hơn 768px = mobile */
@media (max-width: 768px) {
    .col-sm-1.gw-footer-block {
      flex: calc(100% / 1);
    }
  
    .col-sm-2.gw-footer-block {
      flex: calc(100% / 2);
    }
  
    .col-sm-3.gw-footer-block {
      flex: calc(100% / 3);
    }
  
    .col-sm-4.gw-footer-block {
      flex: calc(100% / 4);
    }
  
    .col-sm-6.gw-footer-block {
      flex: calc(100% / 6);
    }
  
    .col-sm-12.gw-footer-block {
      flex: calc(100% / 12);
    }
}

.gw-footer-bg {
  position: relative;
  background-size: 100%;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 200px 0 0 0;
  @media (max-width: 768px) {
    padding: 60px 0 0 0;
  }
}

.gw-footer-main .gw-footer-block  .footer-block-title {
    width: max-content;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--main-color-v2);
    padding-bottom: 2px;
    border-bottom: 2px solid #e5e5e5;

    margin-bottom: 20px;
}

.gw-footer-main .gw-footer-block .footer-block-content {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gw-footer-block .footer-block-content li{
  font-size: 13px;
  color: #3D3D3D;
  padding: 2px 0;
}

.gw-footer-block .footer-block-content li i{
  padding-right: 10px;
}

.gw-footer-block .footer-block-info {
  color: #3D3D3D;
}

.gw-footer-block .footer-block-info .block-info-title{
  font-size: 14px;
  font-weight: 600;
}

.gw-footer-block .footer-block-info .block-info-row {
  font-size: 14px;
}

.footer-block-info .block-info-row .block-info-highlight {
  font-weight: 600;
}

.footer-block-info .block-info-row .bllock-info-content {
  
}

/*END gw-footer*/

.avatar {
  margin: auto;
  border-radius: 100%;
  border: solid 3px #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/*gw-skills*/
.gw-skills {
  display: flex;
  flex-direction: column;
  margin: 0 10% 3rem 10%;
}

.gw-skills .item {
  display: flex;
  justify-content: space-around;
  color: #fff;
  margin: 10px 0;
  padding: 0.5rem 0;
  background-color: var(--main-color);
  border-radius: 30px;
  transition: 0.4s linear;
  transition-property: width, background-color;
}

.gw-skills .item p:nth-child(1) {
  width: 70%;
}

.gw-skills .item p:nth-child(2) {
  width: 30%;
  text-align: right;
}

.gw-skills .progress {
  animation: progressAnimation 2s;
}

@keyframes progressAnimation {
  0% {
    width: 15%;
  }
}
/*END gw-skills*/

/*gw-timeline*/
.gw-timeline {
  margin-bottom: 3rem;
  position: relative;
}
.gw-timeline .item {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  border-bottom: dashed 1px #ccc;
}
.gw-timeline .item:last-child {
  border-bottom: none;
}
.gw-timeline .name {
  width: 30%;
  color: var(--main-color);
  text-align: right;
  font-weight: bold;
  margin-right: 4%;
  padding-right: 6%;
  position: relative;
}
.gw-timeline .name::after {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-size: 1.2rem;
  color: var(--main-color);
  position: absolute;
  right: 0;
  top: 0;
}
.gw-timeline .info {
  width: 65%;
}
/*END gw-timeline*/

/*gw-menu-quick*/
.gw-menu-quick {
  display: flex;
  flex-direction: column;
  align-items: end;
  height: 10rem;
  font-size: 90%;
  position: fixed;
  top: 8rem;
  right: 0;
  z-index: 10;
}
.gw-menu-quick a {
  display: inline;
  color: var(--main-color-second);
  background-color: #fff;
  border-bottom: solid 1px #ccc;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.gw-menu-quick .icon {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
}
.gw-menu-quick .text {
  display: none;
}
.gw-menu-quick a:hover {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.gw-menu-quick a:hover > .text {
  display: inline-block;
}
.gw-menu-quick a .blue {
  background-color: var(--color-link);
}
.gw-menu-quick a .red {
  color: #fff;
  background-color: red;
}
.gw-menu-quick a .green {
  color: #fff;
  background-color: green;
}
.gw-menu-quick a .yellow {
  background-color: yellow;
}
.gw-menu-quick a .orange {
  color: #fff;
  background-color: orange;
}
.gw-menu-quick a .gray {
  color: #fff;
  background-color: gray;
}
/*END gw-menu-quick*/

/* giao xe */
.gw-giaoxe-form {
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gw-giaoxe-hinhanh {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #310906;
  background-repeat: no-repeat;
  background-size: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.gw-giaoxe-hinhanh .header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-align: center;
}
.gw-giaoxe-hinhanh .title {
  font-size: 5rem;
  line-height: 5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 3%;
}
.gw-giaoxe-hinhanh .product {
  width: 30rem;
  margin: auto;
  margin-bottom: 2%;
}
.gw-giaoxe-hinhanh .product img {
  width: 100%;
}
.gw-giaoxe-hinhanh .info {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
}
.gw-giaoxe-hinhanh .welcome {
  font-style: italic;
  font-weight: 100;
  margin-bottom: 2rem;
}
.gw-giaoxe-hinhanh .name {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3.5rem;
}
.gw-giaoxe-hinhanh .content {
  margin-left: 10%;
  margin-bottom: 1vh;
}
.gw-giaoxe-hinhanh .img {
  width: 50vw;
  height: 40vh;
}
.gw-giaoxe-hinhanh .img img {
  width: auto;
  height: 100%;
}
.gw-giaoxe-hinhanh .footer {
  width: auto;
  color: #fff;
  font-size: 90%;
  padding: 1rem 1rem 0.5rem 2rem;
  background-color: #111;
  border-top-left-radius: 3rem;
  border-top: solid 2px var(--main-color);
  border-left: solid 2px var(--main-color);
  position: absolute;
  bottom: 0;
  right: 0;
}
.gw-giaoxe-hinhanh .brand {
  font-size: 1.1rem;
}
.gw-giaoxe-hinhanh .date {
  font-style: italic;
}
.gw-giaoxe-hinhanh .date,
.gw-giaoxe-hinhanh .address {
  color: rgba(255, 255, 255, 0.8);
}
/* END giao xe */
@media only screen and (max-width: 1280px) {
  html {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 1180px) {
  html {
    font-size: 14px !important;
  }
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 980px) {
  html {
    font-size: 13px !important;
  }

  .gw-container {
    width: var(--width);
    max-width: var(--width-screen);
    margin-left: auto;
    margin-right: auto;
  }

  .gw-view-mobile {
    display: unset;
  }

  .gw-view-desktop {
    display: none;
  }

  .gw-text-50-left .gw-view-post {
    margin-right: unset;
  }
  .gw-text-50-right .gw-view-post {
    margin-left: unset;
  }

  .reverse .grid .gw-view-post .item{
    background-color: red;
  }

  /*grid*/
  .reverse .grid .item:nth-child(1) {
    grid-column-start: 1;
    grid-row-start: 1;
  }

  .col-2 .grid,
  .col-3 .grid,
  .col-4 .grid,
  .col-5 .grid,
  .col-6 .grid,
  .col-7 .grid,
  .col-8 .grid,
  .col-9 .grid,
  .col-10 .grid,
  .col-11 .grid,
  .col-12 .grid {
    --width: 15rem;
    grid-template-columns: repeat(auto-fit, minmax(var(--width), 1fr));
  }

  /*gw-title-block*/
  .gw-title-block span {
    font-size: 1.5rem;
  }

  /*gw-header*/
  .gw-header {
    background-size: cover;
  }
  .gw-header-logo {
    width: auto;
    position: relative;
  }
  .gw-header-logo img {
    height: 3rem;
  }
  .gw-header-brand {
    display: none;
  }
  .gw-header-brand .name {
    font-size: 85%;
    word-spacing: 0;
    letter-spacing: 0;
  }
  .gw-header-brand .info {
    font-size: 75%;
    line-height: 1.1rem;
  }

  .gw-phone-btn a {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 0.25rem 0.5rem 0.25rem;
    background-color: var(--main-color);
    border-radius: 10rem;
  }
  .gw-phone-btn .label {
    display: none;
  }
  /*END gw-header*/

  /*gw-menu-quick*/
  .gw-menu-quick {
    width: 100%;
    height: 3.3rem;
    flex-direction: row;
    justify-content: space-around;
    align-items: end;
    background-color: var(--main-color);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
  }
  .gw-menu-quick a {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: none;
    box-shadow: none;
  }
  .gw-menu-quick .icon {
    color: var(--main-color-second);
    background-color: var(--main-color);
    border-radius: 50%;
    border: solid 2px #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  }
  .gw-menu-quick .icon.large {
    width: 2.8rem;
    height: 2.8rem;
    line-height: 2.8rem;
  }
  .gw-menu-quick .text {
    display: block;
    color: var(--main-color-second);
    font-size: 80%;
    margin-bottom: 0.3rem;
  }
  /*END gw-menu-quick*/

  /*gw-posts-view*/
  .gw-posts-view-3 .view {
    width: unset;
    float: unset;
  }

  .gw-posts-view-3 .list {
    width: unset;
    float: unset;
  }

  .gw-posts-view-3 .view-item .name {
    font-size: 100%;
    margin-bottom: 0.5rem;
  }

  .gw-posts-view-3 .view-item .info {
    display: none;
  }

  /*gw-cart*/
  .gw-cart {
    flex-direction: column;
    gap: 3rem;
  }
  .gw-cart .left {
    width: 100%;
    margin-bottom: 0;
    background-color: #fff;
  }
  .gw-cart .right {
    width: 100%;
  }

  .gw-cart .item {
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top-width: 2px;
  }
  .gw-cart .item .img {
    width: 6rem;
    height: 4.5rem;
  }
  .gw-cart .item .name {
    min-width: 70%;
  }
  .gw-cart .item .name a {
    display: block;
    height: 3rem;
    line-height: 1.5rem;
    overflow: hidden;
  }

  /*gw-footer*/
  .gw-footer-copyright {
    padding-bottom: 3rem;
  }
}

@media only screen and (max-width: 420px) {
  /*gw-title-block*/
  .gw-title-block span {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 280px) {
  html {
    font-size: 12px;
  }
}


/* ver new */
/* product */
.item .thumbnail{
  position: static;
  background-color: #fff;
}

.item .thumbnail a{
  display: flex;
  align-items: center;
  overflow: hidden;
}

.item .thumbnail a img{
  width: 100%;
  align-items: center;
  margin: 0 auto;
}

.item .info {
  padding: 0 20px;
}

.item .info h3{
  margin: 8px 0;
  overflow: hidden;
  max-height: 52px;
}

.item .info h3 a{
  display: -webkit-box;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #003c86 !important ;
  text-decoration: none;
}

.item .info .price-box {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 10px 0 20px 0;
}

.item .info .price-box .special-price {
  display: inline-block;
  color: #066d6a;
  font-size: 18px;
}

.item .info .price-box .old-price {
  padding-left: 10px;
  display: inline-block;
  color: #999;
  font-size: 17px;
  text-decoration: line-through;
}

.item .info .price-box .discount-price {
  position: absolute;
  top: -10px;
  right: 0;
  background-color: red;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.gw-product-info .price-box {
  padding: 20px 0;
  display: flex;
  gap: 10px;
  position: relative;
  width: max-content;
}

.gw-product-info .price-box .special-price {
  color: #066d6a;
  font-size: 1.7rem;
}

.gw-product-info .price-box .old-price {
  display: inline-block;
  color: #999;
  font-size: 1.1rem;
  text-decoration: line-through;
}

.gw-product-info .price-box .discount-price {
  position: absolute;
  top: -5px;
  right: -60px;
  background-color: red;
  color: #fff;
  padding: 4px 8px;
  font-size: 1rem;
  font-weight: 500;
}

/* new footer */
.gw_new-footer {
  background: linear-gradient(to bottom, #5aa0d6, #3d7bb3);
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
}

.gw_new-footer .gw_new-footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gw_new-footer .footer-col {
  flex: 1;
  min-width: 250px;
}

.gw_new-footer h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.gw_new-footer h4 {
  color: #ffd700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.gw_new-footer p {
  margin: 5px 0;
  line-height: 1.5;
  font-size: 0.8rem;
}

.gw_new-footer p > a{
  all: unset;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.gw_new-footer p > a:hover {
  color: red;
}

.gw_new-footer ul {
  list-style: none;
  padding: 0;
}

.gw_new-footer ul li {
  margin-bottom: 8px;
}

.gw_new-footer ul li > h3 {
  font-size: 0.9rem !important;
  margin: 0 !important
}

.gw_new-footer ul li > p {
  margin: 0 !important;
  font-size: 0.8rem;
}

.gw_new-footer ul li > p > span{
  font-weight: 600;
}

.gw_new-footer .footer-social iframe {
  display: block;
  margin-bottom: 15px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gw_new-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom span {
  color: #ffcc00;
}
/* end new footer */

/* contact bar icon */
.gw_contact-bar {
  position: fixed;
  bottom: 10%;
  right: 1.2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 9999;
}

.gw_contact-bar .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  animation: ring 2.2s infinite;
}

.gw_contact-bar .icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Màu nền */
.gw_contact-bar .icon.messenger {
  background-color: #0084ff;
}

.gw_contact-bar .icon.zalo {
  background-color: #0068ffc7;
}

.gw_contact-bar .icon.phone {
  background-color: #fff;
}

/* Hover phóng to nhẹ */
.gw_contact-bar .icon:hover {
  transform: scale(1.15);
}

/* Hiệu ứng rung xoay (cho tất cả icon) */
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(6deg);
  }

  40% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(3deg);
  }

  60% {
    transform: rotate(-3deg);
  }

  70%,
  100% {
    transform: rotate(0deg);
  }
}
/* end contact bar icon */