@font-face {
  font-family: "fontBeauty";
  src: url("/assets/fonts/Fz-MyEverything.ttf") format("truetype");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}

.footer {
  background-image: url("/assets/img/bg-contact.jpg");
}
.footer-qr img {
  height: 15rem;
  border-radius: 0.5rem;
}
.footer h2,
.footer h1 {
  color: #3263a3;
}
.footer .info-data {
  display: flex;
  align-items: center;
  color: #181818;
  padding: 1rem 1rem;
  font-weight: 500;
  border-radius: 1rem;
  transition: 0.3s linear;
}
.footer .info-data:hover {
  background-color: #ffdc71;
  color: #3263a3;
}
.footer .info-data .icon {
  font-size: 2rem;
  margin-right: 1rem;
}
.footer-social {
  display: flex;
  margin: 2rem 0;
}
@media only screen and (max-width: 1024px) {
  .footer-social {
    width: 100%;
    justify-content: center;
  }
}
.footer-social-item {
  display: flex;
  margin-left: 1rem;
  background: #3263a3;
  border-radius: 50%;
  padding: 1rem;
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .coppyright {
  text-align: center;
  border-top: 1px solid #fff;
  padding: 1.5rem 0;
}
.footer .coppyright a {
  color: red;
}
.footer-desc {
  max-width: 1536px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  padding: 3rem 8rem;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .footer-desc {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-desc-elm {
    width: 100%;
    margin-top: 3rem;
  }
}
.footer-desc-content {
  margin-top: 3rem;
}
.footer-desc-first {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .footer-desc-first {
    justify-content: center;
    width: 100%;
  }
}
.footer-desc-first .footer-desc-info {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .footer-desc-first .footer-desc-info {
    justify-content: center;
    width: 100%;
  }
}
.footer-desc-first img {
  height: 15rem;
}
@media only screen and (max-width: 1024px) {
  .footer-desc {
    padding: 1rem 1.5rem;
  }
}
.footer-desc-content {
  margin-top: 1rem;
}
.footer-desc .info-desc {
  display: flex;
  align-items: center;
}
.footer-desc .info-desc i {
  font-size: 2rem;
  margin-right: 0.5rem;
}
.footer-desc-title {
  font-weight: 600;
  font-size: 2rem;
  color: rgb(17, 62, 168);
}
.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}

.header {
  padding: 1rem 8rem;
  margin: 0 auto;
  max-width: 1536px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .header {
    padding: 1rem 1.5rem;
  }
}
.header-menu {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    display: block;
  }
}
.header-menu-toogle {
  position: relative;
  height: 3rem;
  width: 4rem;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
}
.header-menu-toogle span {
  height: 2px;
  width: 100%;
  background: #ffce3a;
  border-radius: 1rem;
}
.header-menu-toogle span:nth-child(2) {
  height: 2px;
}
.header-contact button {
  padding: 1.5rem 3rem;
  border-radius: 2rem;
  border: none;
  background: #3263a3;
  font-weight: 600;
  cursor: pointer;
  color: #e2efff;
  transition: 0.3s linear;
}
.header-contact button a {
  text-decoration: none;
  color: #ffce3a;
}
.header-contact button a:hover {
  color: #3263a3;
}
@media only screen and (max-width: 1024px) {
  .header-contact button {
    display: none;
  }
}
.header-contact button:hover {
  background: #ffce3a;
  color: #3263a3;
}
.header-contact button:hover a {
  color: #3263a3;
}
.header-list {
  height: 100%;
  color: rgba(51, 51, 51, 0.2);
  font-weight: 600;
  display: flex;
  align-content: center;
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  .header-list {
    display: none;
  }
}
.header-list li {
  padding: 0.5rem 1rem;
}
.header-list li:hover {
  transition: 0.1s linear;
  border-bottom: 2px solid #fff;
  border-bottom: 2px solid #ffce3a;
}
.header-list a {
  font-weight: 600;
  text-decoration: none;
  color: #3263a3;
  text-transform: uppercase;
  transition: 0.1s linear;
  cursor: pointer;
}
.header-list a:hover {
  color: #ffce3a;
}
.header-logo {
  display: flex;
  align-content: center;
}
.header-logo img {
  height: 9rem;
}

.about {
  padding: 2rem 8rem;
  background-image: url("/assets/img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .about {
    padding: 2rem 1.5rem;
  }
}
.about-product .swiper {
  width: 100%;
  height: 100%;
}
.about-product .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-product .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-head {
  text-align: center;
  max-width: 1536px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .about-head {
    padding: 2rem 1rem;
  }
}
.about-head .arrow {
  margin-top: 2rem;
}
.about-head .arrow a {
  padding: 2rem 2rem;
  font-weight: 600;
  color: white;
  background: #3263a3;
  text-decoration: none;
  border-radius: 2rem;
  margin: 2rem 0;
  margin-top: 2rem;
}
.about-head .arrow a:hover {
  background: #ffce3a;
  color: #3263a3;
}
.about-head p {
  padding: 2rem 16rem;
  text-align: center;
  line-height: 2.7rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1024px) {
  .about-head p {
    padding: 2rem 0;
  }
}
.about-head h2 {
  color: #3263a3;
  font-size: 3rem;
}
.about-title {
  font-family: "fontBeauty", Courier, monospace;
  font-size: 6rem;
}

.noibat {
  width: 100%;
  background: #3263a3;
}
.noibat-dev {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1536px;
  margin: 0 auto;
  padding: 3rem 8rem;
}
@media only screen and (max-width: 1024px) {
  .noibat-dev {
    padding: 3rem 1rem;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .noibat-dev {
    flex-wrap: wrap;
  }
}
.noibat-content {
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .noibat-content {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .noibat img {
    display: none;
  }
}
.noibat-element {
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
  display: flex;
}
.noibat-element:nth-child(2) {
  margin-top: 6rem;
}
@media only screen and (max-width: 1024px) {
  .noibat-element:nth-child(2) {
    margin-top: 0;
  }
}
.noibat-element-desc {
  margin-left: 1rem;
}
.noibat-element-desc #titles {
  font-weight: 600;
  color: #ffdc71;
  font-size: 2.5rem;
}
.noibat-element-desc p {
  color: #fff;
}
.noibat-element-icon {
  height: 9rem;
  width: 9rem;
  border: 3px solid #ffdc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noibat-element-icon i {
  color: #ffdc71;
  font-size: 5rem;
}
@media only screen and (max-width: 1024px) {
  .noibat-element-icon i {
    font-size: 4rem;
  }
}

.title {
  margin: 2rem 0;
  font-weight: 600;
  font-size: 2.8rem;
  color: #3263a3;
  text-align: center;
}
.title p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}

.banner {
  position: relative;
  z-index: 2;
}
.banner img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.banner .swiper {
  width: 100%;
  height: 100%;
}
.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .banner .swiper-slide img {
    height: 25rem;
  }
}

.product {
  display: grid;
  grid-template-columns: repeat(8, 20vw);
  grid-row: 1;
  padding: 3rem 0;
  max-width: 1536px;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px 20px;
}
.product .descs {
  margin-top: 1rem;
}
@media only screen and (max-width: 1280px) {
  .product {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 680px) {
  .product {
    grid-template-columns: auto;
  }
}
.product-detail {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .product-detail {
    width: 100%;
    margin-top: 2rem;
  }
}
.product-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-content {
  padding: 2rem 2rem;
}
.product-detail-content .name {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3263a3;
}
.product-detail-content .price {
  font-weight: 600;
  font-size: 1.6rem;
  color: #181818;
  margin: 1rem 0;
}
.product-detail-content .price a {
  color: #181818;
  text-decoration: none;
}
.product-detail-img img {
  width: 100%;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  object-fit: cover;
}

.train {
  margin-top: 6rem;
}

.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 110px;
  height: 110px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}

.hotline-phone-ring-circle {
  width: 85px;
  height: 85px;
  top: 10px;
  left: 10px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #ffdc71;
  -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
  width: 55px;
  height: 55px;
  top: 25px;
  left: 25px;
  position: absolute;
  background-color: #ffce3a;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.hotline-phone-ring-img-circle {
  background-color: #ffce3a;
  width: 33px;
  height: 33px;
  top: 37px;
  left: 37px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotline-phone-ring-img-circle .pps-btn-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hotline-phone-ring-img-circle .pps-btn-img img {
  width: 20px;
  height: 20px;
}

.hotline-bar {
  position: absolute;
  background: #ffce3a;
  height: 4rem;
  width: 180px;
  line-height: 4rem;
  border-radius: 3px;
  padding: 0 10px;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  z-index: 9;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50px !important;
  /* width: 175px !important; */
  left: 33px;
  bottom: 37px;
}

.hotline-bar > a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  text-indent: 50px;
  display: block;
  letter-spacing: 1px;
  line-height: 40px;
  font-family: Arial;
}

.hotline-bar > a:hover,
.hotline-bar > a:active {
  color: #fff;
}

@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@media (max-width: 768px) {
  .hotline-bar {
    display: none;
  }
}
.oldsale {
  font-weight: 500;
  color: rgba(51, 51, 51, 0.6392156863);
  display: flex;
  align-content: center;
}

.contact {
  background: #fff;
  padding: 4rem 8rem;
}
@media only screen and (max-width: 1024px) {
  .contact {
    padding: 1rem 1rem;
  }
}
.contact-content {
  max-width: 1536px;
  margin: 0 auto;
  width: 100%;
}
.contact-content .group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .contact-content .group {
    flex-wrap: wrap;
  }
}
.contact-content .subscribe {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.contact-content .subscribe button {
  padding: 1.5rem 3rem;
  font-weight: 600;
  border-radius: 2rem;
  cursor: pointer;
  background-image: url("/assets/img/bg-contact.jpg");
  background-position: bottom;
  border: none;
  color: #fff;
}
.contact-content input {
  padding: 1.5rem 2rem;
  width: 32%;
  border-radius: 1rem;
  border: 1px solid #ffce3a;
}
@media only screen and (max-width: 1024px) {
  .contact-content input {
    width: 100%;
    margin: 1rem 0;
  }
}

@media only screen and (max-width: 1024px) {
  .mbh {
    display: none;
  }
}

.echbaychbay-sms-messenger div.phonering-alo-zalo,
.-sms-messenger div.phonering-alo-alo {
  background-color: #0084ff;
}

.echbay-sms-messenger div.phonering-alo-sms {
  background-color: #ffce3a;
}

.echbay-sms-messenger div.phonering-alo-messenger {
  background-color: #ffce3a;
}

.echbay-sms-messenger {
  width: 6rem;
}

.echbay-sms-messenger a {
  line-height: 6rem;
  color: transparent;
  display: block;
}

.echbay-sms-messenger {
  display: block;
}

.echbay-sms-messenger div.phonering-alo-zalo {
  display: block;
}

.echbay-sms-messenger div.phonering-alo-alo {
  background-image: url(https://giuseart.com/wp-content/uploads/2022/11/call.png);
}

.echbay-sms-messenger div.phonering-alo-sms {
  background-image: url(https://giuseart.com/wp-content/uploads/2022/11/mail.png);
  background-color: #ffce3a;
  background-size: 60%;
}

.echbay-sms-messenger div.phonering-alo-zalo {
  background-image: url(https://giuseart.com/wp-content/uploads/2022/11/zalo.png);
}

.echbay-sms-messenger div.phonering-alo-messenger {
  background-image: url(https://giuseart.com/wp-content/uploads/2022/11/messenger.png);
  background-color: #ffce3a;
}

.echbay-sms-messenger div {
  margin: 1rem 0;
  background: #0084ff center no-repeat;
  background-size: 70%;
  border-radius: 50%;
  box-shadow: 0 3px 10px #888;
}

.echbay-sms-messenger {
  text-align: center;
  right: 20px;
  position: fixed;
  bottom: 2rem;
  z-index: 999;
}

.sidebar {
  width: 100%;
  position: fixed;
  z-index: 1999999;
  top: 0;
  display: none;
  height: 100vh;
  background: rgba(51, 51, 51, 0.4509803922);
}
.sidebar-close {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.sidebar .close {
  position: absolute;
  right: 1rem;
  margin-top: 2rem;
  font-size: 3rem;
  cursor: pointer;
}
.sidebar-content {
  padding: 1rem 2rem;
  width: 80%;
  height: 100%;
  background: #fff;
  position: relative;
}
.sidebar-content-list {
  list-style: none;
}
.sidebar-content-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(84, 84, 84, 0.168627451);
  font-weight: 600;
}
.sidebar-content-list li a {
  text-decoration: none;
  color: #333333;
  transition: 0.3s linear;
  font-weight: 700;
}
.sidebar-content-list li a:hover {
  color: #ffce3a;
}
.sidebar-content-logo {
  position: relative;
  display: flex;
  align-items: center;
}
.sidebar-content-logo img {
  height: 12rem;
}

.sbactive {
  display: block;
}

.loading {
  background: rgba(0, 0, 0, 0.608);
  height: 100vh;
  z-index: 9999998;
  position: fixed;
  top: 0;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.loading-elm {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.dot-spinner {
  --uib-size: 40px;
  --uib-speed: 0.9s;
  --uib-color: #fff;
  position: relative;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse calc(var(--uib-speed) * 1.111) ease-in-out infinite;
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
.flex {
  display: flex;
}

.fade-loading {
  width: 30px;
  height: 30px;
  background-color: #ffce3a;
  border-radius: 100rem;
  margin: 10px auto;
  position: relative;
}

.fade-loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  animation: fade 1s forwards infinite linear;
}

@keyframes fade {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
.swal-button {
  background: #ffce3a;
  color: #3263a3;
}

.foot {
  background: #ffce3a;
  width: 100%;
  padding: 4rem 8rem;
}

.category-product {
  display: grid;
  grid-template-columns: auto auto auto auto;
  display: grid;
  grid-gap: 30px 20px;
  margin: 0 auto;
  max-width: 1536px;
}
@media only screen and (max-width: 1280px) {
  .category-product {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 700px) {
  .category-product {
    grid-template-columns: auto;
  }
}
.category-product .product-detail {
  padding: 0 0;
  width: 100%;
}
.category .product-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category .product-detail-img {
  width: 100%;
  height: 27rem;
}
.category .product-detail img {
  height: 27rem;
  width: 100%;
  object-fit: cover;
}
.category .product-detail .buy {
  font-size: 2.8rem;
  display: flex;
  align-content: center;
}
.category .product-detail .buy a {
  text-decoration: none;
  color: #e68404;
}
.category .product-detail .name {
  display: flex;
  margin: 1rem 0;
  margin-bottom: 3.5rem;
}
.category .product-detail-content {
  padding: 1rem 1rem;
  width: 100%;
}
.category .product-detail-asf {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  padding: 1rem 1rem;
  width: 100%;
  left: 0;
}
.category .product-detail-asf .price {
  display: flex;
  align-content: center;
}
.category .product-detail-asf .price a {
  margin-left: 0.5rem;
}

.hgw {
  color: #0084ff;
}

@media only screen and (max-width: 1024px) {
  .rqew {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
