@font-face {
  font-family: "Noto_Sans_TC";
  src: url("fonts/Noto_Sans_TC/NotoSansTC-Regular.woff") format("woff"), url("fonts/Noto_Sans_TC/NotoSansTC-Regular.otf") format("opentype"), url("fonts/Noto_Sans_TC/NotoSansTC-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins/Poppins-Regular.woff") format("woff"), url("fonts/Poppins/Poppins-Regular.ttf") format("opentype"), url("fonts/Poppins/Poppins-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Poppins Lighter";
  src: url("fonts/Poppins/Poppins-Light.woff") format("woff"), url("fonts/Poppins/Poppins-Light.ttf") format("opentype"), url("fonts/Poppins/Poppins-Light.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Kaushan Script";
  src: url("fonts/Kaushan_Script/KaushanScript-Regular.ttf") format("opentype");
}
*::-webkit-scrollbar {
  height: 5px;
  width: 12px;
  background-color: #f0f0f0;
  border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 6px;
  border: 0;
}

html {
  padding: 0 !important;
  font-family: "Poppins", "Noto Sans TC", Arial, sans-serif;
}

body {
  font-family: "Poppins", "Noto Sans TC", Arial, sans-serif;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden !important;
  background-color: white;
  color: #999 !important;
  counter-reset: num;
  min-height: 900px;
}
@media (min-width: 769px) {
  body {
    font-size: 18px;
  }
}
body p,
body ul,
body li {
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
}
body a {
  text-decoration: none;
  transition: all 0.2s ease-in;
}
body mark,
body .mark {
  color: #ffff00 !important;
  padding: 0;
  font-weight: bold;
  background-color: transparent !important;
  margin: 0 0.2rem;
}
body .imp {
  color: red;
  font-size: 1.25rem;
}
body .btn {
  padding: 0.8rem 1.8rem 0.6rem 1.8rem;
  font-size: 1rem;
  border-radius: 0;
  text-transform: capitalize;
  transition: all 0.3s linear;
}
body .btn-none {
  border: 0;
  background-color: transparent;
  border-radius: 0;
}
body .btn-video {
  border-radius: 45px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
body .btn-video img {
  width: 100%;
  height: auto;
  transition: all 0.3s linear;
}
body .btn-video .play-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  transition: all 0.3s linear;
}
body .btn-video .play-icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
  z-index: -1;
  transition: all 0.3s linear;
}
body .btn-video .play-icon:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
  z-index: -1;
  transition: all 0.3s linear;
}
body .btn-video .play-icon i {
  color: #1d2088;
  font-size: 2rem;
  z-index: 1;
}
body .btn-video:hover, body .btn-video:active, body .btn-video:focus {
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}
body .btn-video:hover .play-icon:before, body .btn-video:active .play-icon:before, body .btn-video:focus .play-icon:before {
  background-color: rgb(255, 255, 255);
}
body .btn-video:hover .play-icon:after, body .btn-video:active .play-icon:after, body .btn-video:focus .play-icon:after {
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}
body .btn-video:hover img, body .btn-video:active img, body .btn-video:focus img {
  transform: scale(1.1);
}
body .btn-hollow {
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 16px rgba(255, 255, 0, 0.4);
  border-radius: 50px;
  color: #666;
  padding: 0.2rem 0.3rem 0.2rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
body .btn-hollow i {
  background-color: white;
  border-radius: 50px;
  color: #666;
  width: 30px;
  height: 30px;
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}
@media (min-width: 769px) {
  body .btn-hollow {
    padding: 0.2rem 0.3rem 0.2rem 1.8rem;
    font-size: 1rem;
  }
  body .btn-hollow i {
    margin-left: 2rem;
    width: 40px;
    height: 40px;
  }
}
body .btn-hollow:hover, body .btn-hollow:active, body .btn-hollow:focus {
  background-color: #ffff00 !important;
  color: #1d2088 !important;
  border: 1px solid #ffff00 !important;
}
body .btn-hollow:hover i, body .btn-hollow:active i, body .btn-hollow:focus i {
  color: #1d2088 !important;
  background-color: white;
}
body .btn-more {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 0;
  top: 2.5rem;
  border: 1px solid #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.5rem 0.3rem 0.5rem;
  z-index: 9;
}
body .btn-more i {
  font-size: 1.2rem;
  color: #999;
  transition: all 0.3s linear;
}
body .btn-more i:before {
  transition: all 0.3s linear;
}
body .btn-more:hover, body .btn-more:active, body .btn-more:focus {
  background-color: white;
  border: 1px solid white;
}
body .btn-more:hover i, body .btn-more:active i, body .btn-more:focus i {
  color: #1d2088;
}
@media (min-width: 992px) {
  body .btn-more {
    width: 45px;
    height: 45px;
    top: 4.5rem;
  }
  body .btn-more i {
    font-size: 1.4rem;
  }
}
body .btn-more-light {
  background-color: white;
  color: #666;
  border: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 1.8rem;
}
body .btn-more-light i {
  background-color: white;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin-left: 2rem;
  position: relative;
  z-index: 0;
  transition: all 0.3s linear;
}
body .btn-more-light i:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: #f0f0f0;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  z-index: -1;
  transition: all 0.3s linear;
}
body .btn-more-light:hover, body .btn-more-light:active, body .btn-more-light:focus {
  color: #1d2088;
  background-color: white;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}
body .btn-more-light:hover i, body .btn-more-light:active i, body .btn-more-light:focus i {
  background-color: white;
  color: #ffff00;
}
body .btn-more-light:hover i:after, body .btn-more-light:active i:after, body .btn-more-light:focus i:after {
  background-color: #1d2088;
}
body .btn-download {
  background-color: white;
  color: #999;
  border: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.3rem 0.3rem 1.8rem;
}
body .btn-download i {
  background-color: #f0f0f0;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  position: relative;
  z-index: 0;
  color: #666;
  font-size: 1.25rem;
  transition: all 0.3s linear;
}
body .btn-download:hover, body .btn-download:active, body .btn-download:focus {
  color: #1d2088;
  background-color: #f0f0f0;
  box-shadow: none;
}
body .btn-download:hover i, body .btn-download:active i, body .btn-download:focus i {
  background-color: #1d2088;
  color: white;
}
body .btn-compare {
  background-color: #4e50af;
  color: white;
  border: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 1.5rem 0.3rem 0.3rem;
}
body .btn-compare i {
  background-color: #f0f0f0;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  position: relative;
  z-index: 0;
  color: #666;
  transition: all 0.3s linear;
}
body .btn-compare:hover, body .btn-compare:active, body .btn-compare:focus {
  color: #1d2088;
  background-color: #f0f0f0;
  box-shadow: none;
}
body .btn-compare:hover i, body .btn-compare:active i, body .btn-compare:focus i {
  background-color: #1d2088;
  color: white;
}
body .btn-inquiry {
  background-color: #1d2088;
  color: white;
  border: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
}
body .btn-inquiry i {
  background-color: #f0f0f0;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  position: relative;
  z-index: 0;
  color: #666;
  transition: all 0.3s linear;
}
body .btn-inquiry:hover, body .btn-inquiry:active, body .btn-inquiry:focus {
  color: #1d2088;
  background-color: #f0f0f0;
  box-shadow: none;
}
body .btn-inquiry:hover i, body .btn-inquiry:active i, body .btn-inquiry:focus i {
  background-color: #1d2088;
  color: white;
}
body .link-img {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: block;
  transition: all 0.3s linear;
}
body .link-img p {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  font-size: 1.3rem;
  color: white;
}
body .link-img img {
  transition: all 0.3s linear;
}
@media (min-width: 1200px) {
  body .link-img {
    border-radius: 45px;
  }
  body .link-img p {
    bottom: 2rem;
    font-size: 1.67rem;
  }
}
body .link-img:hover, body .link-img:active, body .link-img:focus {
  box-shadow: none;
}
body .link-img:hover img, body .link-img:active img, body .link-img:focus img {
  transform: scale(1.1);
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  padding-right: calc(var(--bs-gutter-x) * 1) !important;
  padding-left: calc(var(--bs-gutter-x) * 1) !important;
}
@media (min-width: 769px) {
  .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 2.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 2.5) !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 3.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 3.5) !important;
  }
}

.spec, .prods .p-intro, .prods-list, .new-prods {
  padding: 3rem 0;
}
.spec .block-title, .prods .p-intro .block-title, .prods-list .block-title, .new-prods .block-title {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #666;
  display: inline-flex;
  align-items: center;
  font-weight: normal;
}
.spec .block-title:after, .prods .p-intro .block-title:after, .prods-list .block-title:after, .new-prods .block-title:after {
  margin-left: 15px;
  width: 60px;
  height: 2px;
  content: "";
  background-color: #ffff00;
}
.spec .block-title2, .prods .p-intro .block-title2, .prods-list .block-title2, .new-prods .block-title2 {
  font-size: 1.5rem;
  font-weight: normal;
  color: #1d2088;
  text-transform: inherit;
  margin-bottom: 1rem;
}
.spec .block-title3, .prods .p-intro .block-title3, .prods-list .block-title3, .new-prods .block-title3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: red;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.spec .slogan-grey, .prods .p-intro .slogan-grey, .prods-list .slogan-grey, .new-prods .slogan-grey {
  font-size: 1.8rem;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1em;
}
@media (min-width: 769px) {
  .spec .block-title, .prods .p-intro .block-title, .prods-list .block-title, .new-prods .block-title {
    font-size: 1.35rem;
  }
  .spec .block-title2, .prods .p-intro .block-title2, .prods-list .block-title2, .new-prods .block-title2 {
    font-size: 1.9rem;
  }
  .spec .slogan-grey, .prods .p-intro .slogan-grey, .prods-list .slogan-grey, .new-prods .slogan-grey {
    font-size: 2.4rem;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    margin: 1.5rem 0;
  }
}
@media (min-width: 992px) {
  .spec, .prods .p-intro, .prods-list, .new-prods {
    padding: 4.5rem 0;
  }
  .spec .block-title, .prods .p-intro .block-title, .prods-list .block-title, .new-prods .block-title {
    font-size: 1.67rem;
  }
  .spec .block-title2, .prods .p-intro .block-title2, .prods-list .block-title2, .new-prods .block-title2 {
    font-size: 2.3rem;
  }
  .spec .block-title3, .prods .p-intro .block-title3, .prods-list .block-title3, .new-prods .block-title3 {
    font-size: 1rem;
    font-weight: normal;
    color: red;
    text-transform: capitalize;
    margin-bottom: 1rem;
  }
  .spec .slogan-grey, .prods .p-intro .slogan-grey, .prods-list .slogan-grey, .new-prods .slogan-grey {
    font-size: 2.9rem;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  .spec .block-title, .prods .p-intro .block-title, .prods-list .block-title, .new-prods .block-title {
    font-size: 1.85rem;
  }
  .spec .slogan-grey, .prods .p-intro .slogan-grey, .prods-list .slogan-grey, .new-prods .slogan-grey {
    font-size: 3rem;
  }
}
@media (min-width: 1680px) {
  .spec .slogan-grey, .prods .p-intro .slogan-grey, .prods-list .slogan-grey, .new-prods .slogan-grey {
    font-size: 3.5rem;
  }
}

.modal .modal-dialog {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.modal .modal-dialog .modal-content {
  border: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 1.5rem 2rem !important;
}
.modal .modal-dialog .modal-content .modal-header h4 {
  color: #1d2088;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0 !important;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 1.5rem 2rem !important;
}
.modal .modal-dialog .modal-content .modal-body .form-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: bold;
  letter-spacing: 0;
}
.modal .modal-dialog .modal-content .modal-body .form-control {
  font-size: 0.9rem !important;
  color: #333 !important;
}
.modal .modal-dialog .modal-content .modal-body .form-control::placeholder {
  font-size: 0.9rem !important;
  color: #999 !important;
}
.modal .modal-dialog .modal-content .modal-body .note p {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0;
  letter-spacing: 0;
}
.modal .modal-dialog .modal-content .modal-body .note ol li {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.25rem !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: 0;
}
.modal .modal-header {
  border-bottom: 0;
  padding-bottom: 0;
}

.new-prods {
  width: 100%;
  text-align: center;
  background-image: url("../images/bg-prods-blue.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
}
.new-prods a img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: flex;
  margin: 1rem auto;
  transition: all 0.3s linear;
}
.new-prods a .p-name {
  font-size: 1.3rem;
  color: #333;
  font-weight: normal;
}
.new-prods a:hover img, .new-prods a:active img, .new-prods a:focus img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
}

.prods-list {
  width: 100%;
  position: relative;
  z-index: 1;
}
.prods-list:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../images/bg-prods.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  z-index: -1;
}
.prods-list:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #222;
  z-index: 0;
  opacity: 0;
  transition: all 0.3s linear;
}
.prods-list img {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: auto;
  display: flex;
  margin: 1rem auto;
  z-index: 2;
  transition: all 0.3s linear;
}
.prods-list .text-con {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
.prods-list .text-con .p-name {
  font-size: 1.4rem;
  font-weight: normal;
  color: #1d2088;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
@media (min-width: 769px) {
  .prods-list .text-con .p-name {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  .prods-list .text-con .p-name {
    font-size: 2.3rem;
  }
}
.prods-list .text-con p {
  font-size: 1rem;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  transition: all 0.3s linear;
}
@media (min-width: 992px) {
  .prods-list .text-con p {
    font-size: 1.1rem;
  }
}
.prods-list .text-con .btn-more-light {
  box-shadow: none;
}
.prods-list .text-con .btn-more-light i {
  box-shadow: none;
}
.prods-list .text-con .btn-more-light:hover, .prods-list .text-con .btn-more-light:active, .prods-list .text-con .btn-more-light:focus {
  background-color: white;
  color: #1d2088;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}
.prods-list .text-con .btn-more-light:hover i, .prods-list .text-con .btn-more-light:active i, .prods-list .text-con .btn-more-light:focus i {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.prods-list:nth-child(even):after {
  transform: rotate(180deg);
}
.prods-list:hover:before, .prods-list:active:before, .prods-list:focus:before {
  opacity: 0.1;
}
.prods-list:hover img, .prods-list:active img, .prods-list:focus img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.25));
}
.prods-list:hover p, .prods-list:active p, .prods-list:focus p {
  color: #333;
}

.prods .btn-p-finder {
  position: absolute;
  left: 0;
  top: -15px;
  background: linear-gradient(to right, rgb(69, 73, 233) 0%, rgb(29, 32, 136) 50%);
  border: 0;
  color: white;
  padding: 1rem 2rem 1rem 1.5rem;
  border-bottom-right-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s linear;
}
@media (min-width: 769px) {
  .prods .btn-p-finder {
    padding: 1rem 2rem 1rem 3.5rem;
  }
}
@media (min-width: 992px) {
  .prods .btn-p-finder {
    padding: 1rem 3rem 1rem 4rem;
  }
}
@media (min-width: 1200px) {
  .prods .btn-p-finder {
    padding: 1rem 3rem 1rem 5rem;
  }
}
.prods .btn-p-finder:hover, .prods .btn-p-finder:active, .prods .btn-p-finder:focus {
  color: #ffff00;
}
.prods .breadcrumb {
  margin-left: 0;
  margin-top: 2.75rem;
}
@media (min-width: 769px) {
  .prods .breadcrumb {
    margin-left: 13rem;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .prods .breadcrumb {
    margin-left: 14rem;
  }
}
.prods .p-intro {
  background-color: #f0f0f0;
  margin-top: 3rem;
}
.prods .p-intro p:last-child {
  margin-bottom: 0;
}
.prods .p-list {
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s linear;
}
.prods .p-list .p-name {
  font-size: 1rem;
  color: #999;
  font-weight: normal;
  margin: 1rem 0 0 0;
  transition: all 0.3s linear;
}
@media (min-width: 992px) {
  .prods .p-list .p-name {
    font-size: 1.1rem;
  }
}
.prods .p-list img {
  width: 100%;
  height: auto;
  transition: all 0.3s linear;
}
.prods .p-list:hover, .prods .p-list:active, .prods .p-list:focus {
  box-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}
.prods .p-list:hover .p-name, .prods .p-list:active .p-name, .prods .p-list:focus .p-name {
  color: #1d2088;
}
.prods .p-list:hover img, .prods .p-list:active img, .prods .p-list:focus img {
  transform: scale(1.1);
}
.prods .p-list span {
  color: red;
}
.prods .p-list2 {
  display: flex;
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s linear;
}
.prods .p-list2 img {
  max-width: 300px;
  width: 100%;
  height: auto;
  padding: 1rem;
  transition: all 0.3s linear;
}
@media (min-width: 769px) {
  .prods .p-list2 img {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .prods .p-list2 img {
    max-width: 300px;
  }
}
.prods .p-list2 a.spec {
  font-size: 0.8rem;
  text-align: left;
  padding: 1rem;
  margin-bottom: 2rem;
  display: block;
}
.prods .p-list2 a.spec .p-title {
  font-weight: bold;
  color: #1d2088;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: left;
  text-transform: inherit;
}
.prods .p-list2 a.spec .p-class {
  font-size: 0.85rem;
  color: #999;
}
.prods .p-list2 a.spec dl {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}
.prods .p-list2 a.spec dl dt {
  color: #333;
  padding: 0.3rem 0;
  font-weight: normal;
}
.prods .p-list2 a.spec dl dd {
  color: #999;
  padding: 0.3rem 0;
  margin: 0;
}
@media (min-width: 992px) {
  .prods .p-list2 a.spec dl dd {
    padding: 0.3rem 0 0.3rem 0.3rem;
  }
}
.prods .p-list2 a.spec dl:last-child {
  border-bottom: 0;
}
.prods .p-list2 .btn-group {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.prods .p-list2 .btn-group .btn-primary {
  padding: 0.4rem 2.4rem 0.4rem 1rem;
  border: 0;
  font-size: 0.9rem;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  background-color: #4e50af;
  margin-right: -1.5rem;
  z-index: 2;
  transition: all 0.3s linear;
}
.prods .p-list2 .btn-group .btn-primary span {
  display: inline-flex;
  transition: all 0.3s linear;
}
.prods .p-list2 .btn-group .btn-primary:hover, .prods .p-list2 .btn-group .btn-primary:active, .prods .p-list2 .btn-group .btn-primary:focus {
  background-color: #333;
}
.prods .p-list2 .btn-group .btn-secondary {
  padding: 0.4rem 1rem 0.4rem 1rem;
  border: 0;
  font-size: 0.9rem;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  background-color: #1d2088;
  z-index: 3;
  transition: all 0.3s linear;
}
.prods .p-list2 .btn-group .btn-secondary span {
  display: inline-flex;
  transition: all 0.3s linear;
}
.prods .p-list2 .btn-group .btn-secondary:hover, .prods .p-list2 .btn-group .btn-secondary:active, .prods .p-list2 .btn-group .btn-secondary:focus {
  background-color: #333;
}
@media (min-width: 992px) {
  .prods .p-list2 .btn-group .btn-primary {
    padding: 0.4rem 1.7rem 0.4rem 1rem;
  }
  .prods .p-list2 .btn-group .btn-primary span {
    display: none;
  }
  .prods .p-list2 .btn-group .btn-secondary {
    padding: 0.4rem 0.5rem 0.4rem 1rem;
  }
  .prods .p-list2 .btn-group .btn-secondary span {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .prods .p-list2 .col-12.col-lg-4.col-xxl-12 {
    padding-right: 0;
  }
  .prods .p-list2 .col-12.col-lg-8.col-xxl-12 {
    padding-left: 0;
  }
  .prods .p-list2 .col-12.col-lg-8.col-xxl-12 .spec {
    padding-left: 0;
  }
}
.prods .p-list2:hover, .prods .p-list2:active, .prods .p-list2:focus {
  box-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}
.prods .p-list2:hover img, .prods .p-list2:active img, .prods .p-list2:focus img {
  transform: scale(1.05);
}
.prods .p-list2:hover .btn-primary, .prods .p-list2:active .btn-primary, .prods .p-list2:focus .btn-primary {
  padding: 0.4rem 2.5rem 0.4rem 1rem;
}
.prods .p-list2:hover .btn-primary span, .prods .p-list2:active .btn-primary span, .prods .p-list2:focus .btn-primary span {
  display: inline-flex;
}
.prods .p-list2:hover .btn-secondary span, .prods .p-list2:active .btn-secondary span, .prods .p-list2:focus .btn-secondary span {
  display: inline-flex;
}
@media (min-width: 992px) {
  .prods .p-list2:hover .btn-primary, .prods .p-list2:active .btn-primary, .prods .p-list2:focus .btn-primary {
    padding: 0.4rem 2.8rem 0.4rem 1rem;
  }
  .prods .p-list2:hover .btn-secondary, .prods .p-list2:active .btn-secondary, .prods .p-list2:focus .btn-secondary {
    padding: 0.4rem 1rem;
  }
}

#offcanvas-comparison,
#offcanvas-inquiry {
  border: 0 !important;
  padding: 1.5rem 1rem;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
#offcanvas-comparison .offcanvas-header,
#offcanvas-inquiry .offcanvas-header {
  padding-bottom: 0;
}
#offcanvas-comparison .offcanvas-header .offcanvas-title,
#offcanvas-inquiry .offcanvas-header .offcanvas-title {
  color: #1d2088;
}
#offcanvas-comparison .offcanvas-body .msg,
#offcanvas-inquiry .offcanvas-body .msg {
  background-color: #ffff00;
  color: #1d2088;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}
#offcanvas-comparison .offcanvas-body .cmp-list,
#offcanvas-comparison .offcanvas-body .inq-list,
#offcanvas-inquiry .offcanvas-body .cmp-list,
#offcanvas-inquiry .offcanvas-body .inq-list {
  border-bottom: 1px solid #f0f0f0;
  padding: 0.8rem 0;
  margin: 1rem 0 0 0;
  position: relative;
  transition: all 0.3s linear;
}
#offcanvas-comparison .offcanvas-body .cmp-list a,
#offcanvas-comparison .offcanvas-body .inq-list a,
#offcanvas-inquiry .offcanvas-body .cmp-list a,
#offcanvas-inquiry .offcanvas-body .inq-list a {
  display: block;
}
#offcanvas-comparison .offcanvas-body .cmp-list img,
#offcanvas-comparison .offcanvas-body .inq-list img,
#offcanvas-inquiry .offcanvas-body .cmp-list img,
#offcanvas-inquiry .offcanvas-body .inq-list img {
  padding: 0.5rem 0.5rem 0.5rem 1.8rem;
}
#offcanvas-comparison .offcanvas-body .cmp-list .c-title,
#offcanvas-comparison .offcanvas-body .inq-list .c-title,
#offcanvas-inquiry .offcanvas-body .cmp-list .c-title,
#offcanvas-inquiry .offcanvas-body .inq-list .c-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1d2088;
  margin-bottom: 0.5rem;
}
#offcanvas-comparison .offcanvas-body .cmp-list .c-subtitle,
#offcanvas-comparison .offcanvas-body .inq-list .c-subtitle,
#offcanvas-inquiry .offcanvas-body .cmp-list .c-subtitle,
#offcanvas-inquiry .offcanvas-body .inq-list .c-subtitle {
  font-size: 0.85rem;
  font-weight: normal;
  color: #999;
  margin-bottom: 0.5rem;
}
#offcanvas-comparison .offcanvas-body .cmp-list .btn-none,
#offcanvas-comparison .offcanvas-body .inq-list .btn-none,
#offcanvas-inquiry .offcanvas-body .cmp-list .btn-none,
#offcanvas-inquiry .offcanvas-body .inq-list .btn-none {
  font-size: 0.85rem;
  color: #1d2088;
  padding: 0;
  margin-top: 0.5rem;
}
#offcanvas-comparison .offcanvas-body .cmp-list:hover, #offcanvas-comparison .offcanvas-body .cmp-list:active, #offcanvas-comparison .offcanvas-body .cmp-list:focus,
#offcanvas-comparison .offcanvas-body .inq-list:hover,
#offcanvas-comparison .offcanvas-body .inq-list:active,
#offcanvas-comparison .offcanvas-body .inq-list:focus,
#offcanvas-inquiry .offcanvas-body .cmp-list:hover,
#offcanvas-inquiry .offcanvas-body .cmp-list:active,
#offcanvas-inquiry .offcanvas-body .cmp-list:focus,
#offcanvas-inquiry .offcanvas-body .inq-list:hover,
#offcanvas-inquiry .offcanvas-body .inq-list:active,
#offcanvas-inquiry .offcanvas-body .inq-list:focus {
  background-color: #f0f0f0;
}
#offcanvas-comparison .offcanvas-body .cmp-list:before,
#offcanvas-comparison .offcanvas-body .inq-list:before,
#offcanvas-inquiry .offcanvas-body .cmp-list:before,
#offcanvas-inquiry .offcanvas-body .inq-list:before {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 1rem;
  content: "";
  width: 24px;
  height: 24px;
  background-color: #1d2088;
  border-radius: 50%;
}
#offcanvas-comparison .offcanvas-body .cmp-list:after,
#offcanvas-comparison .offcanvas-body .inq-list:after,
#offcanvas-inquiry .offcanvas-body .cmp-list:after,
#offcanvas-inquiry .offcanvas-body .inq-list:after {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  font-size: 0.8rem;
  color: white;
  text-align: center;
  width: 24px;
  height: 24px;
}
#offcanvas-comparison .offcanvas-body .inq-list img,
#offcanvas-inquiry .offcanvas-body .inq-list img {
  padding: 0.5rem;
}
#offcanvas-comparison .offcanvas-body .inq-list:before,
#offcanvas-inquiry .offcanvas-body .inq-list:before {
  display: none;
}
#offcanvas-comparison .offcanvas-body .inq-list:after,
#offcanvas-inquiry .offcanvas-body .inq-list:after {
  content: none;
}
#offcanvas-comparison .offcanvas-body .btn-next,
#offcanvas-inquiry .offcanvas-body .btn-next {
  background-color: #1d2088;
  color: white;
  border-radius: 35px;
  border: 0;
  padding: 0.3rem 0.3rem 0.3rem 1.2rem;
  display: flex;
  align-items: center;
}
#offcanvas-comparison .offcanvas-body .btn-next i,
#offcanvas-inquiry .offcanvas-body .btn-next i {
  width: 30px;
  height: 30px;
  background-color: white;
  color: #1d2088;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2.5rem;
}
#offcanvas-comparison .offcanvas-body .btn-next:hover, #offcanvas-comparison .offcanvas-body .btn-next:active, #offcanvas-comparison .offcanvas-body .btn-next:focus,
#offcanvas-inquiry .offcanvas-body .btn-next:hover,
#offcanvas-inquiry .offcanvas-body .btn-next:active,
#offcanvas-inquiry .offcanvas-body .btn-next:focus {
  background-color: #333;
}
#offcanvas-comparison .offcanvas-body .btn-next:hover i, #offcanvas-comparison .offcanvas-body .btn-next:active i, #offcanvas-comparison .offcanvas-body .btn-next:focus i,
#offcanvas-inquiry .offcanvas-body .btn-next:hover i,
#offcanvas-inquiry .offcanvas-body .btn-next:active i,
#offcanvas-inquiry .offcanvas-body .btn-next:focus i {
  color: #333;
}

/*products detail*/
.basic .p-img {
  padding: 0 3rem;
}
.basic .p-info-main .block-title3 a {
  color: red !important;
}
.basic .p-info-main .btn-info {
  transform: scale(1.1);
  padding: 0.4em !important;
}
.basic .p-info-main .btn-info img {
  width: 100%;
  height: auto;
}
.basic .p-info-main .btn-info:hover img {
  filter: invert(1) sepia(100%) saturate(2500%) hue-rotate(211deg) brightness(45%) contrast(100%);
}
.basic .p-info-main .feature {
  min-height: 50px;
}
.basic .p-info-main .feature p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.4em;
}
.basic .p-info-main .feature p:before {
  position: absolute;
  left: 0;
  top: 0.85rem;
  margin-right: 0.5rem;
  content: "";
  width: 12px;
  height: 1px;
  background-color: #1d2088;
}

.spec .spec-table {
  font-size: 1rem;
}
.spec .spec-table .row {
  border-bottom: 0;
  margin: 0;
}
.spec .spec-table .row:hover {
  background-color: #f0f0f0;
}
.spec .spec-table .row:first-child {
  background-color: #1d2088;
  color: white;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom: 0;
  font-weight: bold;
  display: none;
}
.spec .spec-table .row:first-child .col-6:first-child, .spec .spec-table .row:first-child .col-6:last-child {
  color: white;
  padding: 0.8rem 1.5rem;
}
@media (min-width: 769px) {
  .spec .spec-table .row {
    border-bottom: 1px solid #f0f0f0;
  }
  .spec .spec-table .row:first-child {
    display: flex;
  }
}
.spec .spec-table .row .col-6,
.spec .spec-table .row .col-md-6 {
  border-right: 0;
}
.spec .spec-table .row .col-6:first-child,
.spec .spec-table .row .col-md-6:first-child {
  color: #1d2088;
  font-weight: bold;
  padding: 0.5rem 0 0 0;
  font-size: 0.75rem;
}
.spec .spec-table .row .col-6:last-child,
.spec .spec-table .row .col-md-6:last-child {
  border-right: 0;
  padding: 0 0 0.5rem 0;
  font-size: 0.95rem;
}
@media (min-width: 769px) {
  .spec .spec-table .row .col-6,
  .spec .spec-table .row .col-md-6 {
    padding: 0.8rem 2rem;
    border-right: 1px solid #f0f0f0;
  }
  .spec .spec-table .row .col-6:first-child, .spec .spec-table .row .col-6:last-child,
  .spec .spec-table .row .col-md-6:first-child,
  .spec .spec-table .row .col-md-6:last-child {
    padding: 0.6rem 1.5rem;
  }
  .spec .spec-table .row .col-6:first-child,
  .spec .spec-table .row .col-md-6:first-child {
    color: #666;
    font-size: 0.95rem;
  }
}

.dimension img {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: flex;
}
@media (min-width: 769px) {
  .dimension img {
    max-width: 85%;
  }
}
@media (min-width: 1200px) {
  .dimension img {
    max-width: 70%;
  }
}

.table-responsive {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  position: relative;
  overflow: auto;
  max-height: 600px;
}
.table-responsive .table-primary {
  border: 0;
  margin: 0;
  font-size: 0.95rem;
}
.table-responsive .table-primary thead {
  position: relative;
  z-index: 1;
}
.table-responsive .table-primary thead tr {
  position: sticky;
  top: 0;
  background-color: #f0f0f0;
  z-index: 2;
  border: none;
}
.table-responsive .table-primary thead tr th {
  padding: 1rem 1.5rem;
  text-align: center;
  vertical-align: middle;
  position: sticky;
  left: 0;
  background-color: white;
  color: #999;
  max-width: 250px;
  border: 0;
  border-left: 1px solid white;
  z-index: 3;
}
.table-responsive .table-primary thead tr th:first-child {
  z-index: 4;
  left: 0;
  border-right: 0;
}
.table-responsive .table-primary thead tr th a {
  color: white !important;
  display: block;
}
.table-responsive .table-primary thead tr th img {
  max-width: 100%;
  width: 190px;
  height: auto;
}
@media (min-width: 769px) {
  .table-responsive .table-primary thead tr th img {
    width: 240px;
    height: auto;
  }
}
.table-responsive .table-primary thead tr th .btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.2rem !important;
}
.table-responsive .table-primary thead tr:nth-child(2) th {
  padding: 0.4rem 1rem 0.3rem 1rem;
  min-width: 180px;
  background-color: #1d2088 !important;
  color: white !important;
  text-align: left;
}
.table-responsive .table-primary thead tr:nth-child(2) th:first-child {
  color: white;
  min-width: 190px;
  font-weight: bold;
  z-index: 5;
  text-align: left;
}
.table-responsive .table-primary tbody {
  position: relative;
  z-index: 0;
}
.table-responsive .table-primary tbody tr {
  border: 1px solid #f0f0f0;
}
.table-responsive .table-primary tbody tr td {
  background-color: transparent;
  padding: 0.4rem 1rem 0.3rem 1rem;
  color: #999;
  min-width: 180px;
}
.table-responsive .table-primary tbody tr td:last-child {
  border-right: 0;
}
.table-responsive .table-primary tbody tr th {
  position: sticky;
  left: 0;
  border: 0;
  background-color: white;
  padding: 0.4rem 1rem 0.3rem 1rem;
  color: #1d2088;
  min-width: 190px;
  font-weight: bold;
  z-index: 1;
}
.table-responsive .table-primary tbody tr:first-child td {
  font-weight: bold;
}
.table-responsive .table-primary tbody tr:first-child a {
  color: #1d2088;
}
.table-responsive .table-primary tbody tr a {
  color: #999;
  display: block;
}
.table-responsive .table-primary tbody tr:hover {
  background-color: #f0f0f0 !important;
}
.table-responsive .table-primary tbody tr:hover th {
  color: #1d2088 !important;
  background-color: #f0f0f0 !important;
}
.table-responsive .table-primary tbody tr:hover td {
  background-color: #f0f0f0 !important;
  color: #999 !important;
}

.table > :not(caption) > * > * {
  box-shadow: none;
}

/*Product Finder*/
.finder .breadcrumb-top,
.finder .breadcrumb-top.fixed {
  background-color: transparent;
}
.finder .breadcrumb-top .container-fluid,
.finder .breadcrumb-top.fixed .container-fluid {
  display: none;
}

.process {
  position: inherit;
  padding: 0 1.5rem 1.5rem;
  z-index: 0;
  top: auto;
  left: auto;
  width: 100%;
  background-color: #f0f0f0;
  transition: all 0.3s linear;
}
@media (min-width: 769px) {
  .process {
    position: absolute;
    width: 35%;
    padding: 5rem 2rem 1.5rem 2.5rem;
    top: -2.5rem;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 30px;
    background-color: white;
  }
}
@media (min-width: 1200px) {
  .process {
    width: 30%;
    padding: 5rem 2.5rem 1.5rem 4.5rem;
  }
}
.process p {
  line-height: 1.2em;
}
.process .f-title {
  font-size: 1.4rem;
  padding: 0.5rem 0;
  font-weight: bold;
  line-height: 1.2em;
  color: #1d2088;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .process .f-title {
    font-size: 1.25rem;
    padding: 0.5rem 0;
  }
}
@media (min-width: 996px) {
  .process .f-title {
    font-size: 1.1rem;
    padding: 0.7rem 0;
  }
}
@media (min-width: 1200px) {
  .process .f-title {
    font-size: 1.55rem;
  }
}
@media (min-width: 1680px) {
  .process .f-title {
    font-size: 1.85rem;
  }
}
.process ul {
  margin: 0;
  padding: 0;
}
@media (min-width: 769px) {
  .process ul {
    margin: 2rem 0 0 0;
  }
}
.process ul li {
  list-style: none;
  font-size: 1rem;
  padding: 0.5rem;
  font-weight: bold;
  line-height: 1.2em;
  border-bottom: 1px solid #f0f0f0;
}
.process ul li a {
  color: #1d2088;
  display: block;
  transition: all 0.3s linear;
}
.process ul li a:hover, .process ul li a:active, .process ul li a:focus {
  color: red;
}
@media (min-width: 576px) {
  .process ul li {
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 0;
  }
}
@media (min-width: 996px) {
  .process ul li {
    font-size: 1.1rem;
    padding: 0.7rem 0;
  }
}
@media (min-width: 1200px) {
  .process ul li {
    font-size: 1.2rem;
  }
}
@media (min-width: 1680px) {
  .process ul li {
    font-size: 1.7rem;
  }
}
.process .accordion-item {
  background-color: transparent;
}
.process .accordion-button {
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  border-top: 1px solid #1d2088;
  border-bottom: 0;
  align-items: flex-start;
  background-color: transparent;
}
.process .accordion-button:after {
  width: 12px;
  height: 1rem;
  background-size: 100% auto;
  background-position: center;
}
.process .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
@media (min-width: 1400px) {
  .process .accordion-button {
    font-size: 1.1rem;
  }
}
.process .accordion-body {
  padding: 0 0 1rem 0;
}
.process .accordion-body .form-check {
  color: #666;
}
.process .accordion-body .form-check .form-check-input {
  border-radius: 3px;
  width: 14px;
  height: 14px;
  margin-top: 0.5em;
}
.process .accordion-body .form-check .form-check-input:checked {
  background-color: red;
  border: 1px solid red;
}
.process .accordion-body .form-check .form-check-label {
  font-size: 0.9rem;
  min-width: 35px;
}
.process .btn-next {
  background-color: #ffff00;
  color: #1d2088;
  border-radius: 35px;
  border: 0;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  display: flex;
  align-items: center;
}
.process .btn-next i {
  width: 30px;
  height: 30px;
  background-color: white;
  color: #1d2088;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.5rem;
}
.process .btn-next:hover, .process .btn-next:active, .process .btn-next:focus {
  background-color: #333;
  color: white;
}
.process .btn-next:hover i, .process .btn-next:active i, .process .btn-next:focus i {
  color: #333;
}
.process .btn-reset {
  color: #1d2088;
  padding: 1rem 0;
  border: 0;
  background-color: transparent;
  transition: all 0.3s linear;
}
.process .btn-reset:hover, .process .btn-reset:active, .process .btn-reset:focus {
  color: red;
}
.process a {
  display: inline-flex;
}

.btn-filter {
  border: 0;
  background-color: #f0f0f0;
  color: #222;
}
.btn-filter:not(:disabled) {
  background-color: #f0f0f0;
  color: #222;
  border-radius: 30px;
}

#filterDiv {
  display: none;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
@media (min-width: 769px) {
  #filterDiv {
    display: block;
  }
}

.filter-result {
  margin-left: 0;
  margin-top: 2rem;
  width: 100%;
  --bs-gutter-x: 1.5rem;
  padding-right: calc(var(--bs-gutter-x) * 1) !important;
  padding-left: calc(var(--bs-gutter-x) * 1) !important;
}
@media (min-width: 769px) {
  .filter-result {
    margin-left: 35%;
    margin-top: 0;
    width: 65%;
    padding-right: calc(var(--bs-gutter-x) * 2) !important;
    padding-left: calc(var(--bs-gutter-x) * 1.5) !important;
  }
}
@media (min-width: 1200px) {
  .filter-result {
    margin-left: 30%;
    width: 70%;
    padding-right: calc(var(--bs-gutter-x) * 3.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 1.5) !important;
  }
}
@media (min-width: 1400px) {
  .filter-result {
    padding-right: calc(var(--bs-gutter-x) * 3.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 2) !important;
  }
}

.result {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.result span {
  font-weight: bold;
  color: red;
}
@media (min-width: 769px) {
  .result {
    font-size: 1.5rem;
  }
}

.btn-info {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 0;
  background-color: #999;
  color: white;
  padding: 0.5rem !important;
  display: inline-flex;
  justify-content: center;
  align-content: center;
}
.btn-info:hover, .btn-info:active, .btn-info:focus {
  background-color: #ffff00 !important;
  color: #1d2088 !important;
}/*# sourceMappingURL=prods.css.map */