body {
  background-color: #f8f8f8;
  padding-top: 125px;
}

nav ul {
  list-style: none;
}
nav ul li {
  display: inline-block;
}
nav ul li svg {
  width: 14px;
  height: 14px;
  fill: gray;
}

header .product-name {
  font-size: clamp(1.25rem, 0.814rem + 1.3953vw, 2rem);
  margin-bottom: 25px;
}

.badge-deal-type,
.badge-status {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 15px;
  border-radius: 2px;
}

.success {
  background-color: rgba(0, 186, 0, 0.85);
}

.danger {
  background-color: rgba(223, 0, 0, 0.85);
}

.blue {
  background-color: rgba(0, 66, 219, 0.85);
}

.price {
  color: #000000;
  font-size: 24px;
  margin-top: 30px;
  text-align: left;
  font-weight: bold;
}

.btn-toggle {
  padding-right: 10px;
}
.btn-toggle svg {
  width: 16px;
  height: 16px;
}

main #overview .item-box {
  margin: 10px 0px;
}
main #overview .item-box .key,
main #overview .item-box .val {
  text-align: center;
}
main #overview .item-box .key .count {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}
main #overview .item-box .val small {
  font-weight: 600;
}
main #overview .share,
main #overview .profile {
  width: 100%;
  background-color: #d9d9d9;
  padding: 10px 10px;
  cursor: pointer;
  text-align: center;
  border-radius: var(--border-radius);
  display: block;
  margin-top: 20px;
  color: #000000;
}
main #overview .share svg,
main #overview .profile svg {
  width: 22px;
  height: 22px;
}
main #overview .profile {
  background-color: #fff;
  border: solid 1px #d9d9d9;
}
main #overview iframe {
  width: 100%;
  height: 250px;
}

#attributes .attribute-box {
  border-left: 1px solid #ddd;
  height: 100%;
}
#attributes .end-box {
  border: none !important;
}
#attributes .attr-item {
  position: relative;
  padding-right: 30px;
  margin-bottom: 20px;
}
#attributes .attr-item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  right: 15px;
  top: 7px;
  background-color: var(--main-color);
}

#video .video-overlay {
  position: relative;
}
#video .video-overlay img {
  width: 100%;
  max-height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
}
#video .video-overlay .overlay {
  position: absolute;
  inset: 0px;
  background-color: rgba(0, 0, 0, 0.4588235294);
  width: 100%;
  height: 100%;
}
#video .video-overlay .overlay .overlay-content {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: red;
  border-radius: 50%;
}
#video .video-overlay .overlay .overlay-content svg {
  fill: #fff;
  width: 36px;
  height: 36px;
}
#video iframe {
  width: 100%;
  height: 720px;
}

#related {
  background-color: #fff;
  padding: 60px 0px;
}

.share-box {
  position: relative;
}
.share-box .parnet-links {
  display: none;
}
.share-box .share-links {
  background-color: #fff;
  position: absolute;
  bottom: 45px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.share-box .share-links a {
  background-color: #d9d9d9;
  width: 24%;
  height: 40px;
  text-align: center;
  line-height: 35px;
  border-radius: 3px;
}
.share-box .share-links svg {
  height: 22px;
  width: 22px;
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  .attribute-box {
    border: none !important;
  }
  .model-image img {
    width: 100% !important;
  }
}
.pagination {
  text-align: center;
  margin: 10px 0;
}
.pagination .nav-links {
  flex-wrap: wrap;
  display: inline-flex;
  gap: 1px;
  align-items: center;
}
.pagination .nav-links .page-numbers {
  background: #ffffff;
  display: flex;
  min-width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  border-radius: var(--border-radius);
  border: solid 1px var(--border-color);
  transition: background 0.3s, color 0.3s;
}
.pagination .nav-links .page-numbers:hover {
  background: var(--main-color);
  color: #fff;
  border: solid 1px var(--main-color);
}
.pagination .nav-links .page-numbers.current {
  background: var(--main-color);
  color: #fff;
  pointer-events: none;
}
.pagination .nav-links .page-numbers.dots {
  background: transparent;
  color: #6c757d;
  border: solid 1px var(--border-color) !important;
}
.pagination .nav-links .next,
.pagination .nav-links .prev {
  color: var(--text-black);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
.pagination .nav-links .next svg,
.pagination .nav-links .prev svg {
  width: 16px;
  height: 16px;
  fill: var(--main-color);
}
.pagination .nav-links .next:hover,
.pagination .nav-links .prev:hover {
  background: var(--main-color);
}
.pagination .nav-links .next:hover svg,
.pagination .nav-links .prev:hover svg {
  fill: #fff;
}/*# sourceMappingURL=show.css.map */