* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #B30B00;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

h1 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}

h2 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}

h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  line-height: 1.5;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(211, 211, 211);
  background: #c9c9c9;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #636363;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.btt {
  display: none;
  animation: getBBTUp 1s ease;
}

@keyframes getBBTUp {
  from {
    bottom: -100px;
  }
  to {
    bottom: 15px;
  }
}
.d-flex {
  display: flex;
}

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

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.me-1 {
  margin-right: 1rem;
}

.ms-1 {
  margin-left: 1rem;
}

.mx-1 {
  margin: 0 0.4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.border {
  border: 1px solid black;
}

.text-justify {
  text-align: justify;
}

.p-5 {
  padding: 1rem;
}

.text-light {
  color: rgb(97, 97, 97);
}

.ms-3 {
  margin-left: 3rem;
}

.pages {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.pages a,
.pages span {
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  border: 1px solid #ddd;
}

.pages a,
.pages span {
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
}

.pages a,
.pages span.active {
  background-color: #B30B00;
  color: #fff;
}

.pages a,
.pages span:hover:not(.active) {
  background-color: #ddd;
  color: black;
}

.text-green {
  color: rgb(48, 120, 48);
}

.divider .header {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.divider .header h2 {
  margin-bottom: 0;
  color: #4f4f4f;
}

marquee {
  margin: 0 auto;
  padding: 10px;
  background-color: #e9e9e9;
}
marquee a {
  font-size: 14px;
}

.subscribe-youtube {
  margin: 0 auto;
  padding: 10px;
  background-color: #e9e9e9;
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 29px;
}
.subscribe-youtube img {
  mix-blend-mode: color-burn;
}
.subscribe-youtube p {
  font-weight: 600;
  color: black;
}

.box-parent-recent {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.box-parent-recent .box {
  width: 33%;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #efefef;
}
.box-parent-recent .box h3 {
  font-size: 17px;
}
.box-parent-recent .box .recent {
  padding: 10px;
}
.box-parent-recent .box .recent a {
  padding: 7px;
  display: inline-block;
  width: 100%;
  font-size: 13px;
  color: black;
}
.box-parent-recent .box .recent a:hover {
  color: #B30B00;
}

@media screen and (max-width: 900px) {
  .box-parent-recent .box {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .box-parent-recent .box {
    width: 100%;
  }
}
.page-header {
  background-color: #B30B00;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-header a {
  padding: 10px;
  color: white;
  width: 33%;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .page-header a {
    width: 50%;
  }
}
.page-header a:hover {
  background-color: #a10b00;
}

.page-header-2 {
  background-color: #E9E9E9;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.page-header-2 a {
  padding: 10px;
  text-align: center;
  width: 25%;
  color: black;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .page-header-2 a {
    width: 50%;
  }
}
.page-header-2 a:hover {
  background-color: rgb(194, 194, 194);
}

.content-cover {
  max-height: 200px;
  overflow: auto;
  margin: 20px 0;
  padding: 4px;
  border: 1px solid gainsboro;
}

.input {
  background-color: rgb(239, 239, 239);
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid gray;
  padding: 10px;
}

#ads {
  max-width: 1100px;
  margin: 10px auto;
  border: 1px solid rgb(220, 220, 220);
  min-height: 300px;
  width: 100%;
}

.btt {
  height: auto;
  width: auto;
  color: #d02c42;
  background: #d6d6d6;
  border: 1px solid rgb(211, 211, 211);
  position: fixed;
  float: right;
  bottom: 15px;
  right: 15px;
  z-index: 11111111;
  font-size: 40px;
  padding: 0 13px;
  border-radius: 5px;
  line-height: 1.1;
  cursor: pointer;
}

.text-danger {
  color: rgb(168, 0, 0);
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.mx-5 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.ms-0 {
  margin-left: 0;
}

.ms-1 {
  margin-left: 0.25rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.ms-4 {
  margin-left: 1.5rem;
}

.ms-5 {
  margin-left: 3rem;
}

.me-0 {
  margin-right: 0;
}

.me-1 {
  margin-right: 0.25rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.me-4 {
  margin-right: 1.5rem;
}

.me-5 {
  margin-right: 3rem;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.px-5 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.ps-0 {
  padding-left: 0;
}

.ps-1 {
  padding-left: 0.25rem;
}

.ps-2 {
  padding-left: 0.5rem;
}

.ps-3 {
  padding-left: 1rem;
}

.ps-4 {
  padding-left: 1.5rem;
}

.ps-5 {
  padding-left: 3rem;
}

.pe-0 {
  padding-right: 0;
}

.pe-1 {
  padding-right: 0.25rem;
}

.pe-2 {
  padding-right: 0.5rem;
}

.pe-3 {
  padding-right: 1rem;
}

.pe-4 {
  padding-right: 1.5rem;
}

.pe-5 {
  padding-right: 3rem;
}

.g-0 {
  gap: 0;
}

.g-1 {
  gap: 0.25rem;
}

.g-2 {
  gap: 0.5rem;
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}

.gs-btn {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  transition: 0.1s ease;
  display: inline-block;
  cursor: pointer;
  background-color: #E9E9E9;
  border-radius: 5px;
  text-decoration: none !important;
}
.gs-btn:hover {
  color: rgb(7, 7, 7);
}
@media screen and (max-width: 767px) {
  .gs-btn {
    font-size: 15px;
  }
}

.gs-btn-sm {
  font-size: 14px;
  padding: 5px 10px;
}

.gs-btn-primary {
  background: #B30B00;
  color: white;
}
.gs-btn-primary:hover {
  color: rgb(255, 255, 255);
}

.gs-btn-second {
  background: #a10b00;
  color: white;
}
.gs-btn-second:hover {
  color: rgb(255, 255, 255);
}

.gs-btn-dark {
  background-color: #000000;
  color: white !important;
}

.gs-btn-light {
  background-color: #E9E9E9;
  color: rgb(32, 32, 32);
}
.gs-btn-light:hover {
  background-color: #000000;
  color: white;
}

.gs-btn-green {
  background-color: rgb(36, 100, 36);
  color: rgb(255, 255, 255);
}
.gs-btn-green:hover {
  background: #1f551f;
}

.extra-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.extra-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.extra-list h3 {
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #E9E9E9;
  padding: 7px;
}
.extra-list li {
  width: 100%;
}
.extra-list a.list-link {
  display: inline-block;
  padding: 7px;
  background-color: #E9E9E9;
  width: 100%;
  border-bottom: 1px solid rgb(207, 207, 207);
  border-right: 1px solid rgb(207, 207, 207);
  color: black;
}
.extra-list a.list-link:hover {
  background-color: #d6d6d6;
}
.extra-list li.list-50 {
  width: 50% !important;
}
.extra-list table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.extra-list table tr {
  border-bottom: 1px solid gainsboro;
}
.extra-list table tr:nth-child(odd) {
  background-color: #E9E9E9;
}
.extra-list table .model-list {
  padding: 5px 10px;
  width: 70%;
  text-align: start;
  text-transform: capitalize;
  font-size: 13px;
}
.extra-list table .price-list {
  font-size: 13px;
  padding: 5px;
  width: 30%;
  text-align: start;
  text-transform: capitalize;
}

.tag-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.tag-container .tag a {
  padding: 10px;
  background-color: #ededed;
  border-radius: 5px;
  display: inline-block;
}
.tag-container .tag a:hover {
  background-color: #dbdbdb;
}

.w-100 {
  width: 100% !important;
}

.news-detail-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Breadcrumb container */
.breadcrumb {
  padding: 8px;
  background-color: #f5f5f5;
  border-radius: 4px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Breadcrumb link */
.breadcrumb-item a {
  color: #B30B00;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item:not(:first-child)::before {
  content: "/";
  margin: 0 6px;
  color: #aaa;
}

header .meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
header .meta-header .logo-side {
  display: flex;
  align-items: center;
  width: auto;
  gap: 20px;
}
header .meta-header .logoimg {
  max-width: 160px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  header .meta-header .logoimg {
    max-width: 150px;
  }
}
header .meta-header .logoimg img {
  width: 100%;
  height: auto;
}
header .meta-header .search-box {
  max-width: 400px;
  width: 100%;
  position: relative;
}
header .meta-header .search-box #closeSearchBox {
  position: absolute;
  top: 50px;
  right: 10px;
  z-index: 1000;
  padding: 10px;
  background-color: #B30B00;
  border: 1px solid white;
  color: white;
  display: none;
}
@media screen and (max-width: 900px) {
  header .meta-header {
    position: fixed;
    background-color: white;
    left: 0;
    display: none;
    right: 0;
    border-bottom: 1px solid gray;
    z-index: 1001;
    padding: 10px;
    width: 100%;
    max-width: 100%;
  }
}
header .meta-header .search-box form {
  position: relative;
}
header .meta-header .search-box input {
  margin-bottom: 0;
}
header .meta-header .search-box button {
  position: absolute;
  opacity: 0.6;
  font-size: 1rem;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header .meta-header .meta-nav {
  display: flex;
  align-items: center;
}
header .meta-header .meta-nav li {
  position: relative;
}
header .meta-header .meta-nav li .nav-link {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  color: black;
}
header .meta-header .meta-nav li .nav-link:hover {
  color: #B30B00;
}
header .meta-header .meta-nav li .nav-link-dropdown {
  padding: 10px;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: black;
  align-items: center;
  gap: 7px;
}
@media screen and (max-width: 900px) {
  header .meta-header .meta-nav li .nav-link-dropdown {
    padding: 2px;
    font-size: 14px;
  }
}
header .meta-header .meta-nav li .main-dropdown {
  background-color: rgb(243, 243, 243);
  position: absolute;
  width: 180px;
  max-height: 500px;
  overflow: auto;
  z-index: 1000;
  border: 1px solid gainsboro;
  display: none;
  right: 0;
  box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.112);
}
@media screen and (max-width: 900px) {
  header .meta-header .meta-nav li .main-dropdown {
    top: 30px;
  }
}
header .meta-header .meta-nav li .main-dropdown li a {
  font-size: 13px;
  padding: 8px;
  width: 100%;
  color: black;
  display: inline-block;
}
header .meta-header .meta-nav li .main-dropdown li a:hover {
  background-color: rgb(206, 206, 206);
  color: #B30B00;
}
header .meta-header .meta-nav li:hover .main-dropdown {
  display: block;
}
header .navbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 5px;
  background-color: #B30B00;
}
header .navbar #openSearchBox {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 9px;
  background-color: #B30B00;
  color: white;
  display: none;
}
@media screen and (max-width: 900px) {
  header .navbar #openSearchBox {
    display: block;
  }
}
header .navbar .ham-burger {
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  display: none;
}
@media screen and (max-width: 900px) {
  header .navbar .ham-burger {
    display: flex;
  }
}
header .navbar .ham-burger div {
  width: 19px;
  height: 2px;
  background-color: rgb(255, 255, 255);
}
header .navbar .ham-burger div:nth-child(2) {
  margin: 4px 0;
}
header .navbar .menu-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  header .navbar .menu-list {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    background-color: #B30B00;
    z-index: 900;
  }
}
header .navbar .menu-list .nav-item {
  display: inline-block;
  position: relative;
}
header .navbar .menu-list .nav-item:hover .dropdown {
  display: block;
}
header .navbar .menu-list .nav-item .nav-link {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 900px) {
  header .navbar .menu-list .nav-item .nav-link {
    font-size: 14px;
  }
}
header .navbar .menu-list .nav-item .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.11);
}
header .navbar .menu-list .nav-item .dropdown {
  border: 1px solid rgb(214, 214, 214);
  display: none;
  position: absolute;
  width: 200px;
  background-color: rgb(234, 234, 234);
  z-index: 1001;
}
header .navbar .menu-list .nav-item .dropdown a {
  padding: 10px 6px;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: rgb(32, 32, 32);
}
header .navbar .menu-list .nav-item .dropdown a:hover {
  background-color: rgb(206, 206, 206);
}
header .fixed-nav-shift-fix {
  height: 50px;
}
header .fixed-navbar {
  position: fixed;
  background: linear-gradient(to bottom, #a10b00, #8d0000);
  left: 0;
  right: 0;
  top: 0;
  max-width: 1080px;
  margin: auto;
  z-index: 1000;
  animation: getNavDown 1s ease;
}
@keyframes getNavDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

main .container .main-content {
  width: 100%;
}
main .main-content .flex-sidebar-home {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
main .main-content .flex-sidebar-home .colums {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
main .main-content .flex-sidebar-home .colum-2 {
  content-visibility: auto;
  display: flex;
  align-items: center;
  border-radius: 3px;
  justify-content: center;
  flex-direction: column;
  width: calc(25% - 10px);
  text-align: center;
  padding: 10px;
}
main .main-content .flex-sidebar-home .colum-2 p.title {
  color: rgb(71, 71, 71);
  font-size: 13px;
  margin-bottom: 5px;
}
main .main-content .flex-sidebar-home .colum-2 p.price {
  font-size: 13px;
  color: #B30B00;
}
main .main-content .flex-sidebar-home .colum-2 img {
  width: 100%;
  object-fit: contain;
  height: 250px;
}
@media screen and (max-width: 900px) {
  main .main-content .flex-sidebar-home .colum-2 {
    width: calc(33% - 6px);
  }
}
@media screen and (max-width: 600px) {
  main .main-content .flex-sidebar-home .colum-2 {
    width: calc(50% - 6px);
  }
}
@media screen and (max-width: 900px) {
  main .main-content .flex-sidebar-home {
    gap: 10px;
  }
}
main .main-content .flex-sidebar-home .left {
  width: 100%;
  padding-right: 0;
}
@media screen and (max-width: 900px) {
  main .main-content .flex-sidebar-home .left {
    padding-right: 0;
    width: 100%;
  }
}
main .main-content .flex-sidebar-home .right {
  width: 25%;
}
@media screen and (max-width: 900px) {
  main .main-content .flex-sidebar-home .right {
    width: 100%;
  }
}
main .main-content .flex-sidebar-home .right .sidebar-heading,
main .main-content .flex-sidebar-home .right .more {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  background-color: #B30B00;
  color: white;
}
main .main-content .flex-sidebar-home .right .list {
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
}
main .main-content .flex-sidebar-home .right .list li {
  width: 50%;
}
main .main-content .flex-sidebar-home .right .list li a {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  display: inline-block;
  color: black;
}
main .main-content .flex-sidebar-home .right .list li a:hover {
  color: #B30B00;
  background-color: #E9E9E9;
}
main .main-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.sidebar-list {
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
}
.sidebar-list li {
  width: 50%;
}
.sidebar-list li a {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  display: inline-block;
  color: black;
}
.sidebar-list li a:hover {
  color: #B30B00;
  background-color: #E9E9E9;
}

.sidebar-list-full {
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
}
.sidebar-list-full li {
  width: 100%;
}
.sidebar-list-full li a {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  display: inline-block;
  color: black;
}
.sidebar-list-full li a:hover {
  color: #B30B00;
  background-color: #E9E9E9;
}

.sidebar-heading {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  background-color: #B30B00;
  color: white;
  margin-bottom: 0;
}

.filter-heading {
    width: 100%;
    display: inline-block;
    font-size: 15px;
    color: #B30B00;
    margin-bottom: 0;
    padding: 5px;
    background-color: #ccc;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
}
.news-container .news-post-item {
  width: 50%;
  padding: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .news-container .news-post-item {
    width: 100%;
  }
}
.news-container .news-post-item .news-post-link {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.news-container .news-post-item .news-post-link img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
}
.news-container .news-post-item .news-post-link .news-post-title {
  font-size: 17px;
  color: rgb(39, 39, 39);
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
}
.reviews-container .reviews-post-item {
  width: 50%;
  padding: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .reviews-container .reviews-post-item {
    width: 100%;
  }
}
.reviews-container .reviews-post-item .reviews-post-link {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.reviews-container .reviews-post-item .reviews-post-link img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
}
.reviews-container .reviews-post-item .reviews-post-link .reviews-post-title {
  font-size: 17px;
  color: rgb(39, 39, 39);
}

.image-box {
  display: flex;
  margin-bottom: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.image-box .detail-image {
  width: 40%;
  padding-right: 10px;
}
@media screen and (max-width: 600px) {
  .image-box .detail-image {
    padding-right: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.image-box .detail-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.image-box .detail-text {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .image-box .detail-text {
    width: 100%;
  }
}

.divider-price h2 {
  margin-bottom: 0;
}

.divider-price {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.variant-price {
  color: #a10b00;
}

.navigator {
  display: flex;
  background-color: #a10b00;
  margin-bottom: 10px;
}

.navigator a {
  display: inline-block;
  padding: 10px;
  color: white;
}

.navigator a:hover {
  background-color: #B30B00;
}

#spec,
.spec {
  margin: 10px 0;
}

#spec table {
  border: 1px solid #dadada;
  border-collapse: collapse;
  width: 100%;
}

#spec table td {
  border: 1px solid #dadada;
  padding: 4px;
}

.store-offers-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgb(200, 200, 200);
}
.store-offers-table td {
  padding: 5px;
  margin: 0;
  border: 1px solid rgb(200, 200, 200);
}

.color-rate {
  color: orange;
}

.give-rate {
  margin-bottom: 40px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.comment-row {
  display: flex;
  gap: 10px;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
}
.comment-row .comment-left {
  width: 37%;
}
@media screen and (max-width: 900px) {
  .comment-row .comment-left {
    width: 100%;
  }
}
.comment-row .comment-left .custom-input {
  font-size: 14px;
}
.comment-row .comment-right {
  width: 60%;
  height: 300px;
  overflow: auto;
  padding-right: 5px;
}
@media screen and (max-width: 900px) {
  .comment-row .comment-right {
    width: 100%;
  }
}
.comment-row .comment-right ul li {
  padding: 10px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  background-color: #f0f0f0;
  margin-bottom: 10px;
}
.comment-row .comment-right ul li p:first-child {
  font-weight: 600;
  color: rgb(66, 66, 66);
  font-size: 13px;
}
.comment-row .comment-right ul li p:last-child {
  color: rgb(117, 117, 117);
  font-size: 13px;
}

.mobile-box-compare {
  width: 27%;
}
@media screen and (max-width: 900px) {
  .mobile-box-compare {
    width: 48%;
  }
}
.mobile-box-compare .searchdiv {
  position: relative;
}
.mobile-box-compare .searchdiv .result-box {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
  box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.112);
  max-height: 300px;
  overflow: auto;
}
.mobile-box-compare .searchdiv .result-box li {
  width: 100%;
}
.mobile-box-compare .searchdiv .result-box li a {
  width: 100%;
  padding: 10px;
  color: black;
  display: inline-block;
}
.mobile-box-compare .searchdiv .result-box li a:hover {
  background-color: #E9E9E9;
}
.mobile-box-compare .compare-image-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
  gap: 15px;
}
.mobile-box-compare .compare-image-box .product-linkc {
  color: black;
}
.mobile-box-compare .compare-image-box img {
  object-fit: contain;
  height: 100px;
  width: 100%;
}

.mobile-compare-social-1 {
  width: 12%;
}
@media screen and (max-width: 900px) {
  .mobile-compare-social-1 {
    display: none;
  }
}

.comparepage {
  border: 1px solid gainsboro;
  margin-bottom: 20px;
}
.comparepage .flex-sidebar-home {
  justify-content: space-between;
  padding: 0 4px;
}

.custim_ads {
  width: 100%;
  height: 100px;
}

@media (min-width: 767px) {
  .custim_ads {
    width: 100%;
    height: 100px;
  }
}
table#compare {
  background-color: #f3f3f3;
  color: #ce112a;
  width: 100%;
  font-size: 14px;
}

table#compare th {
  background-color: #f3f3f3;
  color: #ce112a;
  width: 18%;
  padding: 8px;
  font-size: 14px;
}

table#compare tr {
  color: #444;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  border-right: 0;
}

table#compare tr td:nth-child(4) {
  border-right: 0;
}

table#compare tr:nth-child(even) {
  color: #000;
}

table#compare td.feature-detail {
  float: left;
  padding: 4px;
  border: 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  width: 28.41%;
  box-sizing: border-box;
  margin: 0 0 0 -1px;
}
@media screen and (max-width: 900px) {
  table#compare td.feature-detail {
    width: 35%;
  }
}

table#compare td.feature {
  float: left;
  padding: 4px 8px;
  width: 15%;
  height: auto;
  color: #d02c42;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  table#compare td.feature {
    width: 30%;
  }
}

@media screen and (max-width: 900px) {
  .compare-box-3 {
    display: none;
  }
}

.used-mobiles-container {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.used-mobiles-container .used-product-item {
  width: calc(33% - 5px);
  border-radius: 3px;
  border: 1px solid gainsboro;
  background-color: rgb(248, 248, 248);
}
@media screen and (max-width: 500px) {
  .used-mobiles-container .used-product-item {
    width: calc(50% - 5px);
  }
}
.used-mobiles-container .used-product-item .used-product-link {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.used-mobiles-container .used-product-item .used-product-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .used-mobiles-container .used-product-item .used-product-link img {
    height: 120px;
  }
}
.used-mobiles-container .used-product-item .used-product-link p {
  padding: 5px;
}
.used-mobiles-container .used-product-item .used-product-link .price {
  color: #494949;
  font-size: 13px;
}
.used-mobiles-container .used-product-item .used-product-link .used-product-title {
  font-size: 17px;
  color: rgb(39, 39, 39);
}

.user-product-list .item {
  width: calc(33% - 10px);
}
@media screen and (max-width: 700px) {
  .user-product-list .item {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .user-product-list .item {
    width: 100%;
  }
}
.user-product-list .item .inner {
  padding: 10px;
  border-radius: 10px;
  border: 2px solid gainsboro;
}
.user-product-list .item .inner .product-image {
  width: 100%;
  height: 100%;
  background-color: black;
}
.user-product-list .item .inner .product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.border-container {
  border: 1px solid #e1e1e1;
  background-color: white;
  padding: 15px;
  border-radius: 2px;
}

.product-detail-attr .attributes {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.product-detail-attr .attributes li {
  width: 50%;
  display: flex;
}
.product-detail-attr .attributes li .title {
  width: 50%;
  font-weight: 500;
}
.product-detail-attr .attributes li .value {
  width: 50%;
}
@media screen and (max-width: 786px) {
  .product-detail-attr .attributes li {
    width: 100%;
  }
}

.breadcrumb .breadcrumb-item a {
  color: #494949;
}

.product-detail-layout {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .product-detail-layout {
    flex-direction: column;
  }
}
.product-detail-layout .left {
  width: 70%;
}
@media screen and (max-width: 992px) {
  .product-detail-layout .left {
    width: 100%;
  }
}
.product-detail-layout .right {
  width: 30%;
}
@media screen and (max-width: 992px) {
  .product-detail-layout .right {
    width: 100%;
  }
}

#customSlider {
  width: 100%;
  overflow: hidden;
  height: 350px;
  background-color: #000000;
  position: relative;
}
@media screen and (max-width: 992px) {
  #customSlider {
    height: 250px;
  }
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100%;
  box-sizing: border-box;
}
.slider-item img {
  height: 350px;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 992px) {
  .slider-item img {
    height: 250px;
  }
}

.all-brands-list {
  display: flex;
  flex-wrap: wrap;
}
.all-brands-list .brand-box {
  width: 20%;
  text-align: center;
  padding: 10px;
}
.all-brands-list .brand-box .brand-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

footer {
  background: linear-gradient(to bottom, #670700, #000000);
  color: #fff;
  padding-top: 20px;
}
footer .desclimar {
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.475);
}

footer .container .col-footer {
  width: 25%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  footer .container .col-footer {
    width: 50%;
  }
}

footer .container .col-footer p {
  color: white;
  margin: 1rem 0;
  font-size: 12px;
}

footer .container .col-footer ul li a {
  color: white;
  font-size: 12px;
}

footer .container .col-footer ul li {
  margin: 10px 0;
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-info {
  color: white;
  padding: 10px 0;
}

.text-white {
  color: white;
}

footer .footer-info .footer-info-wrapper {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

footer .footer-info .footer-info-wrapper p {
  font-size: 13px;
}

/*# sourceMappingURL=main.css.map */
