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

body,
html {
  overflow-x: hidden;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

.content {
  margin-top: 86px;
}

.carousel .carousel-inner .carousel-item a img {
  width: 100%;
}
.carousel .carousel-control-prev {
  left: -4.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  height: 5%;
}
.carousel .carousel-control-prev .carousel-control-prev-icon {
  border: 2px solid rgb(239, 239, 239);
  background-color: #000;
  opacity: 0.25;
}
.carousel .carousel-control-next {
  right: -4.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  height: 5%;
}
.carousel .carousel-control-next .carousel-control-next-icon {
  border: 2px solid rgb(239, 239, 239);
  background-color: #000;
  opacity: 0.25;
}

.featured {
  margin: 30px 0px 0px;
  height: 20%;
}
.featured h2 {
  letter-spacing: 1px;
}
.featured .carousel {
  margin-top: 0px;
}

.new_arrivals {
  display: flex;
  margin: 20px 0px;
  align-items: center;
  justify-content: space-between;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content h2 {
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .view_all {
  background: #000;
  display: flex;
  align-items: flex-end;
  padding: 8px 12px 6px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .view_all a {
  text-decoration: none;
  color: #ffffff;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .nav-pills {
  padding-left: 0px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .nav-pills .nav-item .nav-link {
  border-radius: 0;
  background-color: transparent;
  color: #000;
  padding-left: 0px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .nav-pills .nav-item .nav-link.active {
  font-weight: 700;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container.col-md-3 {
  flex: 0 0 25%;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container.col-md-3 .product_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .col-sm-6 a:hover > .product_item .btn-view {
  opacity: 1;
  transition: all 0.5s;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container img {
  max-width: 100%;
  max-height: 100%;
  background-color: #f1f1f1;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container h5 {
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 0.5rem;
  color: #000;
  text-decoration: none;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container p {
  color: #757575;
  margin-bottom: 0px;
  font-size: 14px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .product-footer {
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 10px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .product-footer button {
  background-color: #1da1f2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .product-footer div {
  color: #333;
  font-weight: bold;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .btn-favorite {
  position: absolute;
  top: 20px;
  left: 20px;
  border: unset;
  background-color: transparent;
  font-size: 20px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .btn-favorite .fa-heart {
  color: #000;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .btn-favorite .span-favorite {
  display: flex;
  justify-content: center;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .btn-view {
  position: absolute;
  text-align: center;
  opacity: 0;
  width: 45%;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .btn-view button {
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  background: #000;
  color: #ffffff;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content .carousel-inner .carousel-item .product_item_container .btn-view button:hover {
  opacity: 0.8;
  color: white;
  background: rgb(36, 70, 150);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content .col-sm-6 a:hover > .clothing_item .btn-view {
  opacity: 1;
  transition: all 0.5s;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div {
  overflow: hidden;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a:hover .card_slide .clothing_item_first-image {
  transform: translateX(-100%);
  visibility: hidden;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a:hover .card_slide .clothing_item_second-image {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .clothing_item img {
  max-width: 100%;
  max-height: 100%;
  background-color: #f1f1f1;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .clothing_item h5 {
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 0.5rem;
  color: #000;
  text-decoration: none;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .clothing_item p {
  color: #757575;
  margin-bottom: 0px;
  font-size: 14px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .clothing_item .clothing-footer {
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 10px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .clothing_item .clothing-footer button {
  background-color: #1da1f2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .clothing_item .clothing-footer div {
  color: #333;
  font-weight: bold;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .card_slide img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .card_slide .clothing_item-image {
  transition: transform 0.65s ease 0s;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .card_slide .clothing_item_first-image {
  transform: translateX(0%);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .card_slide .clothing_item_second-image {
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.65s ease 0s;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .btn-view {
  position: absolute;
  text-align: center;
  opacity: 0;
  width: 45%;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .btn-view button {
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  background: #000;
  color: #ffffff;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .btn-view button:hover {
  opacity: 0.8;
  color: white;
  background: rgb(36, 70, 150);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .btn-favorite {
  position: absolute;
  top: 20px;
  left: 20px;
  border: unset;
  background-color: transparent;
  font-size: 20px;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .btn-favorite .fa-heart {
  color: #000;
}
.new_arrivals .arrivals_wrapper .arrivals_header .arrivals_header_content #clothing_item_content div a .btn-favorite .span-favorite {
  display: flex;
  justify-content: center;
}

.new_collection {
  display: flex;
  margin: 20px 0px;
  align-items: center;
  justify-content: space-between;
}
.new_collection .collection_wrapper .collection_header .collection_header_content h2 {
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.new_collection .collection_wrapper .collection_header .collection_header_content .view_all {
  background: #000;
  display: flex;
  align-items: flex-end;
  padding: 8px 12px 6px;
}
.new_collection .collection_wrapper .collection_header .collection_header_content .view_all a {
  text-decoration: none;
  color: #ffffff;
}
.new_collection .collection_wrapper .collection_header .collection_header_content .nav-pills {
  padding-left: 0px;
}
.new_collection .collection_wrapper .collection_header .collection_header_content .nav-pills .nav-item .nav-link {
  border-radius: 0;
  background-color: transparent;
  color: #000;
  padding-left: 0px;
}
.new_collection .collection_wrapper .collection_header .collection_header_content .nav-pills .nav-item .nav-link.active {
  font-weight: 700;
}
.new_collection .collection_body #collection_item {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.new_collection .collection_body #collection_item img {
  max-width: 100%;
  height: auto;
}
.new_collection .collection_body #collection_item img.col-md-3 {
  flex: 0 0 25%;
}
.new_collection .collection_body #collection_item img.col-md-3 .collection_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.new_collection .collection_body .btn-view {
  position: absolute;
  text-align: center;
  opacity: 0;
  width: 45%;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.new_collection .collection_body .btn-view button {
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  background: #000;
  color: #ffffff;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.new_collection .collection_body .btn-view button:hover {
  opacity: 0.8;
  color: #ffffff;
  background: rgb(36, 70, 150);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.new_collection .collection_body .col-sm-6 a:hover > .collection_item .btn-view {
  opacity: 1;
  transition: all 0.3s;
}
.new_collection .collection_body img {
  max-width: 100%;
  max-height: 100%;
  background-color: #f1f1f1;
}
.new_collection .collection_body h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.new_collection .collection_body p {
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
.new_collection .collection_body .collection-footer {
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 10px;
}
.new_collection .collection_body .collection-footer button {
  background-color: #1da1f2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
.new_collection .collection_body .collection-footer div {
  color: #333;
  font-weight: bold;
}
.new_collection .collection_body .btn-favorite {
  position: absolute;
  top: 20px;
  left: 20px;
  border: unset;
  background-color: transparent;
  font-size: 20px;
}
.new_collection .collection_body .btn-favorite .fa-heart {
  color: #000;
}
.new_collection .collection_body .btn-favorite .span-favorite {
  display: flex;
  justify-content: center;
}

.gender .carousel-inner .gender-item {
  position: relative;
  overflow: hidden;
}
.gender .carousel-inner .gender-item .gender-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
}
.gender .carousel-inner .gender-item::before {
  content: "";
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: all 0.8s;
}
.gender .carousel-inner .gender-item:hover .gender-item-overlay {
  opacity: 1;
}
.gender .carousel-inner .gender-item:hover::before {
  left: 125%;
}

.latest_news {
  margin-bottom: 60px;
}
.latest_news .row .heading h2 {
  font-weight: 400;
  color: #111111;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.latest_news .row .heading h2 a {
  text-decoration: none;
  position: relative;
  color: #111111;
  font-weight: inherit;
  background: transparent;
  transition: all 0.5s;
}
.latest_news .row .heading h2 a:hover {
  color: #bd091c;
}
.latest_news .row .heading h2 a::before {
  left: -15px;
  padding-left: 9999px;
  margin-left: -9999px;
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  height: 1px;
  background: #e8e8e8;
}
.latest_news .row .heading h2 a::after {
  right: -15px;
  padding-right: 9999px;
  margin-right: -9999px;
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  height: 1px;
  background: #e8e8e8;
}
.latest_news .row .content_latest_news .carousel-indicators {
  bottom: -50px;
}
.latest_news .row .content_latest_news .carousel-indicators [data-bs-target] {
  background-color: #111;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
  border-top: unset;
  border-bottom: unset;
  cursor: pointer;
}
.latest_news .row .content_latest_news .carousel-indicators [data-bs-target].active {
  background: #c11e33;
  opacity: 1;
  width: 24px;
  height: 8px;
  border-radius: 6px;
}
.latest_news .row .carousel-inner .carousel-item .card {
  height: 500px;
  transition: all 0.5s;
  text-align: center;
}
.latest_news .row .carousel-inner .carousel-item .card:hover {
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.12);
}
.latest_news .row .carousel-inner .carousel-item .card a .card-img-top {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest_news .row .carousel-inner .carousel-item .card a .img {
  width: 100%;
}
.latest_news .row .carousel-inner .carousel-item .card .card-body .card-title a {
  text-decoration: none;
  font-size: 16px;
  color: #252525;
  text-transform: uppercase;
  transition: all 0.5s;
}
.latest_news .row .carousel-inner .carousel-item .card .card-body .card-title a:hover {
  color: #a21a10;
}
.latest_news .row .carousel-inner .carousel-item .card .card-body .card-text {
  font-size: 12px;
  color: #757575;
}
.latest_news .row .carousel-inner .carousel-item .card .card-body .date_news {
  font-size: 12px;
  color: #757575;
}

.related_categories .related_categories_title {
  border-top: 1px solid #e5e5e5;
  display: flex;
  padding-top: 60px;
  width: 100%;
  font-weight: 400;
}
.related_categories .related_categories_category_list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}
.related_categories .related_categories_category_list .related_categories_list_item {
  margin-bottom: 10px;
  margin-right: 8px;
  padding: 8px 20px;
  border-radius: 20px;
  background: 0 0;
  color: #757575;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: inset 0 1px 0 0 #ccc, inset -1px 0 0 0 #ccc, inset 0 -1px 0 0 #ccc, inset 1px 0 0 0 #ccc;
}
.related_categories .related_categories_category_list .related_categories_list_item:hover {
  box-shadow: inset 0 1.5px 0 0 #ccc, inset -1.5px 0 0 0 #ccc, inset 0 -1.5px 0 0 #ccc, inset 1.5px 0 0 0 #ccc;
  background-color: #a21a10;
}
.related_categories .related_categories_category_list .related_categories_list_item:hover a {
  color: #ffffff;
}
.related_categories .related_categories_category_list .related_categories_list_item a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #757575;
  line-height: 1.5;
  display: flex;
  background-color: transparent;
}

header .header_content {
  background: #ffffff;
  position: fixed;
  z-index: 99;
  left: 0px;
  right: 0px;
  top: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
  overflow-x: hidden;
  width: 100%;
}
header .header_content .header_top {
  display: flex;
  padding: 4px 0;
  background-color: rgb(36, 70, 150);
  font-size: 12px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  overflow-x: hidden;
  width: 100%;
}
header .header_content .header_top .span-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
header .header_content .header_bottom {
  background-color: transparent;
  transition: all 0.3s;
  border-bottom: none;
  padding: 0px !important;
}
header .header_content .header_bottom nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
header .header_content .header_bottom nav .navbar-brand {
  color: initial;
  display: inline-flex;
}
header .header_content .header_bottom nav .navbar-brand .logo {
  background-image: url(https://image.hsv-tech.io/300x90/reebok/common/9bdaba97-cc23-4f8d-bb2c-2649dd79dc17.webp);
  height: 30px;
  width: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  align-items: center;
  margin-right: 38px;
}
header .header_content .header_bottom nav .navbar-toggler {
  padding: 0;
  border: unset;
}
header .header_content .header_bottom nav .header-menu .navbar-nav {
  display: inline-flex;
}
header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 8px 15px;
  transition: all 0.3s;
}
header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link .link {
  position: relative;
}
header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link .link::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 0.5s;
}
header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link .link:hover::before {
  width: 100%;
}
header .header_content .header_bottom nav .header-menu .search-form {
  grid-template-columns: 5fr 1fr 1fr 1fr;
}
header .header_content .header_bottom nav .header-menu .search-form form {
  position: relative;
}
header .header_content .header_bottom nav .header-menu .search-form form .form-control {
  border-radius: unset;
}
header .header_content .header_bottom nav .header-menu .search-form form .form-control:focus::-moz-placeholder {
  color: transparent;
}
header .header_content .header_bottom nav .header-menu .search-form form .form-control:focus::placeholder {
  color: transparent;
}
header .header_content .header_bottom nav .header-menu .search-form form .search-icon {
  position: absolute;
  cursor: pointer;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header_content .header_bottom nav .header-menu .user-info {
  position: relative;
  border: unset;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header_content .header_bottom nav .header-menu .user-info .user-icon {
  font-size: 20px;
}
header .header_content .header_bottom nav .header-menu .user-info .notification {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 22px;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #000;
  background-color: #ffd200;
  animation: notify 3s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}
header .header_content .header_bottom nav .header-menu .favorite {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .header_content .header_bottom nav .header-menu .favorite .favorite-content {
  font-size: 20px;
}
header .header_content .header_bottom nav .header-menu .favorite .favorite-notification {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 22px;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  background-color: #000;
  display: none;
  text-align: center;
}
header .header_content .header_bottom nav .header-menu .cart-shopping {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header_content .header_bottom nav .header-menu .cart-shopping .btn-cart .shopping-icon {
  font-size: 20px;
}

@media screen and (max-width: 1199px) {
  header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link {
    padding: 6px !important;
  }
  header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link .link {
    font-size: 14px;
  }
  header .header_content .header_bottom nav .header-menu .search-form .search-icon {
    right: 17.5%;
  }
  header .header_content .header_bottom nav .header-menu .search-form .user-info .user-icon {
    font-size: 16px;
  }
  header .header_content .header_bottom nav .header-menu .search-form .favorite .favorite-content {
    font-size: 16px;
  }
  header .header_content .header_bottom nav .header-menu .search-form .cart-shopping .btn-cart .shopping-icon {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  header .header_content .header_bottom nav .header-menu .navbar-nav {
    margin-right: auto;
    text-align: left;
  }
  header .header_content .header_bottom nav .header-menu .navbar-nav .nav-item .nav-link .link {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .header_top {
    padding: 7px 0 !important;
  }
  .span-container {
    font-size: 8px;
  }
}
.modal-backdrop {
  z-index: 1 !important;
}

.modal-dialog {
  width: 520px;
  transform-origin: -142px -79px;
  top: 80px;
}
.modal-dialog .link-modal {
  color: #000;
}
.modal-dialog .modal-content {
  border-radius: unset;
  position: relative;
}
.modal-dialog .modal-content .modal-header {
  border-bottom: unset;
  color: #000;
}
.modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  top: -10px;
  right: 0px;
  border: 1px solid #1c1c1c;
  border-radius: unset;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  font-size: 10px;
  padding: 12px;
}
.modal-dialog .modal-content .modal-body {
  color: #000;
}

.modal.fade .modal-dialog.modal-dialog-slide-out {
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog.modal-dialog-slide-out {
  transform: translateX(0);
}

.modal-dialog.modal-dialog-slide-out {
  height: 100vh;
  width: 450px;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.modal-content {
  height: 100%; /* Ensure content takes full height */
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#clearFavorites {
  background-color: rgb(255, 255, 255);
  border-color: transparent;
  color: #000;
}
#clearFavorites:hover {
  background: rgba(0, 0, 0, 0.08);
  color: rgb(0, 0, 0);
}

.favorite-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.favorite-item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.favorite-item .item-info {
  flex: 1;
  margin-left: 1rem;
}

.favorite-item .item-info h6 {
  margin: 0;
}

.favorite-item .item-info p {
  margin: 0;
}

.favorite-item .btn-view-detail {
  margin-left: 1rem;
}

@keyframes notify {
  0%, 9%, 18% {
    transform: translateY(0);
  }
  2% {
    transform: translateY(-10px);
  }
  3% {
    transform: translateY(-3px);
  }
  5% {
    transform: translateY(-8px);
  }
  7% {
    transform: translateY(-2px);
  }
  11% {
    transform: translateY(-10px);
  }
  12% {
    transform: translateY(-3px);
  }
  14% {
    transform: translateY(-8px);
  }
  16% {
    transform: translateY(-2px);
  }
}
footer {
  padding-top: 32px;
}
footer .footer_top .top_wrapper {
  padding: 0;
  display: flex;
  border: 1px solid #e5e5e5;
}
footer .footer_top .top_wrapper .footer_item {
  font-size: 16px;
  line-height: 1.67;
}
footer .footer_top .top_wrapper .footer_item .title {
  font-size: 24px;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}
footer .footer_top .top_wrapper .footer_item .row ul li {
  margin-bottom: 0.25rem;
}
footer .footer_top .top_wrapper .footer_item .row ul li a {
  position: relative;
  text-decoration: none;
  color: #757575;
  font-weight: 400;
  font-size: 14px;
}
footer .footer_top .top_wrapper .footer_item .row ul li a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: #a21a10;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: all 0.5s;
}
footer .footer_top .top_wrapper .footer_item .row ul li a:hover::before {
  width: 100%;
}
footer .footer_top .top_wrapper .footer_item .row ul li a:hover {
  color: #a21a10;
}
footer .footer_top .top_wrapper .footer_item_column {
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .footer_top .top_wrapper .footer_item_column:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
footer .footer_body .body_content {
  background-color: #ffffff;
}
footer .footer_body .body_content .body_content_item {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  width: 100%;
}
footer .footer_body .body_content .body_content_item .form {
  width: 236px;
}
footer .footer_body .body_content .body_content_item .form h3 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
footer .footer_body .body_content .body_content_item .form p {
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
footer .footer_body .body_content .body_content_item .form .form-floating .form-control {
  border: 1px solid #000;
  border-radius: 0.375rem;
}
footer .footer_body .body_content .body_content_item .form .form-floating .form-control:focus {
  border-color: #1da1f2;
  box-shadow: 0 0 0 0.1rem #1da1f2;
}
footer .footer_body .body_content .body_content_item .form .form-floating .error {
  color: #a21a10;
  font-size: 14px;
  display: none;
}
footer .footer_body .body_content .body_content_item .form .form-floating .error.show {
  display: block;
}
footer .footer_body .body_content .body_content_item .form .form-check .form-check-input {
  width: 24px;
  height: 24px;
  border: 1px solid #000;
}
footer .footer_body .body_content .body_content_item .form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: #1da1f2;
}
footer .footer_body .body_content .body_content_item .form .form-check .form-check-label {
  margin-left: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
footer .footer_body .body_content .body_content_item .form .form-check .form-check-label a {
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
footer .footer_body .body_content .body_content_item .form #floatingInput {
  font-size: 16px;
  font-weight: 400;
  color: #757575;
}
footer .footer_body .body_content .body_content_item .form .error {
  color: #a21a10;
  font-size: 14px;
  display: none;
}
footer .footer_body .body_content .body_content_item .form .error.show {
  display: block;
}
footer .footer_body .body_content .body_content_item .form button {
  width: 100%;
  background-color: #757575;
}
footer .footer_body .body_content .body_content_item .social_media {
  display: flex;
  order: 2, 2;
  align-items: flex-start;
  padding: 0;
  width: auto;
  flex-direction: column;
}
footer .footer_body .body_content .body_content_item .social_media h3 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
footer .footer_body .body_content .body_content_item .social_media ul {
  padding-left: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_1:hover {
  background-color: #1da1f2;
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_1 a {
  font-size: 20px;
  font-weight: 500;
  color: #757575;
  display: flex;
  padding: 8px;
  margin: 0;
  text-decoration: none;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_1 a:hover {
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_1 a i {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_2:hover {
  background-color: #3b5998;
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_2 a {
  font-size: 20px;
  font-weight: 500;
  color: #757575;
  display: flex;
  padding: 8px;
  margin: 0;
  text-decoration: none;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_2 a:hover {
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_2 a i {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_3:hover {
  background-color: #bd091c;
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_3 a {
  font-size: 20px;
  font-weight: 500;
  color: #757575;
  display: flex;
  padding: 8px;
  margin: 0;
  text-decoration: none;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_3 a:hover {
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_3 a i {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_4:hover {
  background-color: #bd091c;
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_4 a {
  font-size: 20px;
  font-weight: 500;
  color: #757575;
  display: flex;
  padding: 8px;
  margin: 0;
  text-decoration: none;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_4 a:hover {
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_4 a i {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_5:hover {
  background-color: #833ab4;
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_5 a {
  font-size: 20px;
  font-weight: 500;
  color: #757575;
  display: flex;
  padding: 8px;
  margin: 0;
  text-decoration: none;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_5 a:hover {
  color: #ffffff;
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .social_media ul .item_5 a i {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
footer .footer_body .body_content .body_content_item .store h3 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
footer .footer_body .body_content .body_content_item .store p {
  margin: 15px 0;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
footer .footer_body .body_content .body_content_item .store button {
  padding: 15px 20px;
  border-radius: 8px;
  background-color: #757575;
  color: #ffffff;
  opacity: 1;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  transition: all 0.5s;
}
footer .footer_body .body_content .body_content_item .store button:hover {
  opacity: 0.5;
  transition: all 0.5s;
  cursor: pointer;
}
footer .footer_body .body_content .body_content_item .store button:hover {
  background-color: #000;
  opacity: 0.8;
}
footer .footer_body .body_content .body_content_item .store button a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
footer .footer_body .body_content .payment_content {
  padding: 40px 0px 25px;
}
footer .footer_body .body_content .payment_content .payment {
  display: flex;
  margin-right: 50px;
  align-items: center;
}
footer .footer_body .body_content .payment_content .payment span {
  font-size: 14px;
  font-weight: 800;
  color: #000;
  margin-right: 40px;
}
footer .footer_body .body_content .payment_content .payment .payment_method {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-right: 40px;
}
footer .footer_body .body_content .payment_content .payment .payment_method .method_item img {
  width: 66px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer_body .body_content .payment_content .gov {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 0%;
  min-width: 100px;
}
footer .footer_body .body_content .payment_content .gov a img {
  width: 122px;
  height: 46px;
  vertical-align: middle;
  border-style: none;
}
footer .footer_copyright {
  background-color: #ffffff;
}
footer .footer_copyright .copyright_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
footer .footer_copyright .copyright_content .copyright_left {
  text-align: left;
  max-width: 500px;
  margin-right: 20px;
  padding: 20px 0px;
}
footer .footer_copyright .copyright_content .copyright_right {
  text-align: right;
}

.backToTop {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  visibility: hidden;
  opacity: 0;
}
.backToTop:hover {
  opacity: 0.8;
  border-color: #1c1c1c;
  outline: 0.0625rem solid #1c1c1c;
}
.backToTop i {
  background: rgb(255, 255, 255);
  color: #000;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  transition: background 0.25s ease-out;
  font-size: 16px;
  border: 0.0625rem solid #000;
}

.cd-top--is-visible {
  visibility: visible;
  opacity: 1;
}

#register {
  background: url(./../../image/bg_footer.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
#register .register_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 12px;
  padding: 10px 20px;
  background: transparent;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
#register .register_form .register_title h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 60px;
  font-weight: 800;
  color: #c11e33;
}
#register .register_form .form_body label {
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
#register .register_form .form_body .btn {
  padding: 10px 30px;
  border-radius: 8px;
  background-color: #c11e33;
  color: rgb(255, 255, 255);
  opacity: 1;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
}
#register .register_form .form_body .btn:hover {
  opacity: 1;
  transition: all 0.5s;
  color: #c11e33;
  background-color: rgb(255, 255, 255);
  font-weight: 500;
  cursor: pointer;
}
#register .register_form .form_body .backHome {
  padding-left: 290px;
  padding-top: 100px;
}
#register .register_form .form_body .backHome a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
#register .register_form .form_body .backHome a i {
  padding-right: 5px;
}
#register .register_form .form_body .backHome a:hover {
  font-size: 20px;
  font-weight: 500;
  color: #bd091c;
  transition: all 0.5s;
}

.bubble-contact-wrapper .bubble-contact-listing-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 1rem;
  bottom: 0;
  z-index: 1000;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper.active .bubble-contact-action {
  transition-delay: 0.1s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper.active + .bubble-contact .svgico .svgico--close {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper.active + .bubble-contact .svgico > svg {
  transform: scale(0.3);
  opacity: 0;
  visibility: hidden;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper.active + .bubble-contact .item-livestream {
  opacity: 0;
  visibility: hidden;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action {
  position: absolute;
  bottom: 180px;
  border-radius: 12px;
  right: 1rem;
  max-width: 300px;
  overflow: hidden;
  background-color: #f5f6fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform-origin: 100% bottom;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list {
  padding: 0;
  margin: 0;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item {
  margin: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item:not(:last-of-type) {
  border-bottom: 1px solid #ecedf1;
  box-shadow: 0 1px 0 0 #ffffff;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item .bubble-contact-item--icon {
  width: 100%;
  height: 31px;
  border-radius: 0;
  box-shadow: none;
  display: -moz-flex;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item .bubble-contact-item--icon:hover .tooltip-text {
  color: #0d6efd;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item .bubble-contact-item--icon svg {
  display: block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item .bubble-contact-item--icon .tooltip-text {
  opacity: 1;
  visibility: visible;
  position: initial;
  width: 100%;
  padding-left: 0.5rem;
  text-align: left;
  background: 0 0;
  color: #333;
  font-size: 12px;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item .bubble-contact-item--icon .tooltip-text b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-action .bubble-contact-list .bubble-contact-item .bubble-contact-item--icon .tooltip-text small {
  display: block;
  clear: both;
  font-size: 12px;
  line-height: 1.2;
  color: #555;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-close {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  border: 0;
  outline: 0;
  padding: 6px;
  background: 0 0;
}
.bubble-contact-wrapper .bubble-contact-listing-wrapper .bubble-contact-close svg {
  opacity: 0.6;
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
}
.bubble-contact-wrapper .bubble-contact {
  position: fixed;
  bottom: 130px;
  right: 1rem;
  margin: 0;
  z-index: 9999;
  cursor: pointer;
}
.bubble-contact-wrapper .bubble-contact .box-item {
  position: relative;
}
.bubble-contact-wrapper .bubble-contact .box-item + .bubble-contact-wrapper .bubble-contact .box-item::before {
  animation: 2s ease-out infinite bubbleContactPulse;
  position: absolute;
  content: "";
  height: 48px;
  width: 48px;
  left: 0;
  top: 0;
  background: #c11e33;
  border-radius: 50%;
}
.bubble-contact-wrapper .bubble-contact .box-item::after {
  animation: 2s ease-out 0.4s infinite bubbleContactPulse;
  position: absolute;
  content: "";
  height: 48px;
  width: 48px;
  left: 0;
  top: 0;
  background: #ff0101;
  border-radius: 50%;
}
.bubble-contact-wrapper .bubble-contact .box-item .svgico {
  position: relative;
  z-index: 4;
  height: 48px;
  width: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  cursor: pointer;
  background: #ff0101;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  animation: 2s infinite pulse;
}
.bubble-contact-wrapper .bubble-contact .box-item .svgico > svg {
  animation: bubbleContactSkew 1s ease-out infinite;
}
.bubble-contact-wrapper .bubble-contact .box-item .svgico svg {
  fill: #ffffff;
  width: 28px;
  height: 46px;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}
.bubble-contact-wrapper .bubble-contact .box-item .svgico .svgico--close {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}
.bubble-contact-wrapper .bubble-contact .box-item .svgico .svgico--close svg {
  fill: #ffffff;
  width: 17px;
  height: 46px;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}

@keyframes bubbleContactSkew {
  0%, 100%, 50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
}
@keyframes bubbleContactPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */