@charset "UTF-8";

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

.no-padding-left {
  padding-left: 0;
}
body {
  background: #fff;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

@media (max-width: 767px) {
  body {
    margin-bottom: 50px;
  }
}
.ui-datepicker-month {
  padding-left: 3px !important;
  padding-right: 3px !important;
  margin-left: 0px !important;
  margin-right: 3px !important;
  font-size: 12px !important;
  width: 55% !important;
  float: left;
}
.ui-datepicker-year {
  width: 35% !important;
  padding-left: 3px !important;
  padding-right: 3px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  font-size: 12px !important;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea.form-control,
select.form-control {
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ebebeb;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea.form-control:focus,
select.form-control:focus {
  outline: none;
  box-shadow: none;
}

a:hover,
a:focus {
  text-decoration: none;
}
:root {
  --text-color: #000000;
  --text-secondary-color: #666666;
  --primary-color: #e93100;
  --secondary-color: #fbd947;
  --price-color: #d41e25;
  --topbar-bg: #fdd835;
  --topbar-color: #000000;
  --header-background: #e85933;
  --header-color: #f0f0f0;
  --label-background: #d41e25;
  --label-color: #e85933;
  --show-loadmore: none !important;
  --order-loadmore: -1 !important;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --countdown-background: #ff4949;
  --countdown-color: #ffffff;
}
@keyframes play {
  0% {
    transform: scale(1);
  }

  15% {
    box-shadow: 0 0 0 5px rgba(67, 181, 30, 0.4);
  }

  25% {
    box-shadow: 0 0 0 10px rgba(67, 181, 30, 0.4),
      0 0 0 20px rgba(67, 181, 30, 0.2);
  }

  25% {
    box-shadow: 0 0 0 15px rgba(67, 181, 30, 0.4),
      0 0 0 30px rgba(67, 181, 30, 0.2);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@keyframes status {
  0% {
    visibility: visible;
  }

  50% {
    visibility: hidden;
  }
}

@-webkit-keyframes status {
  0% {
    visibility: visible;
  }

  50% {
    visibility: hidden;
  }
}

@-moz-keyframes status {
  0% {
    visibility: visible;
  }

  50% {
    visibility: hidden;
  }
}

@-o-keyframes status {
  0% {
    visibility: visible;
  }

  50% {
    visibility: hidden;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@-moz-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@-o-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.ega-dot {
  width: 10px;
  height: 10px;
  background-color: #f00;
  border-radius: 100%;
  margin: 0 20px 0px;
  display: inline-block;
  background-color: #ff4949;
}

.ega-dot .ega-ping {
  border: 1px solid #ff4949;
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: transparent;
  opacity: 0.2;
  border-radius: 100%;
  -moz-animation: sonar_animation 0.8s linear infinite;
  -o-animation: sonar_animation 0.8s linear infinite;
  -webkit-animation: sonar_animation 0.8s linear infinite;
  animation: sonar_animation 0.8s linear infinite;
  display: block;
  margin: 0;
}

@-webkit-keyframes sonar_animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(4);
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes sonar_animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(4);
    transform: scale(4);
    opacity: 0;
  }
}
.scroll::-webkit-scrollbar {
  width: 3px;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #ff5722;
  outline: 1px solid #ff5722;
}

.scroll::-webkit-scrollbar-button {
  height: 0px;
}

.scroll::-webkit-scrollbar-track {
  background: none;
  border: none;
  box-shadow: 0px 0px 0px #dfdfdf inset;
  border-radius: 0px;
}

.scroll_v::-webkit-scrollbar {
  height: 5px;
}

.scroll_v::-webkit-scrollbar-thumb {
  background-color: #1e90ff;
  outline: 1px solid #1e90ff;
}

.scroll_v::-webkit-scrollbar-button {
  height: 0px;
  width: 0px;
}

.scroll_v::-webkit-scrollbar-track {
  background: none;
  border: none;
  box-shadow: 0px 0px 0px #dfdfdf inset;
  border-radius: 0px;
}

.disable {
  background: #aaa !important;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

.disable_text {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #aaa !important;
}

.bold {
  font-weight: 700;
}

.bg_violet {
  background: #bd10e0 !important;
}

.bg_green {
  background-color: #8bc34a !important;
}
.bg_red {
  background-color: #ff2853 !important;
}
.bg_black {
  background-color: #484848 !important;
}
.bg_orange {
  background-color: #f60 !important;
}
.bg_blue {
  background-color: #2c7abe !important;
}
.color_violet {
  color: #bd10e0 !important;
}
.color_green {
  color: #8bc34a !important;
}
.color_orange {
  color: #f60 !important;
}
.color_blue {
  color: #2c7abe !important;
}
.color_red {
  color: #f00 !important;
}
.chap_view {
  background: #555 !important;
}
.hide_button {
  display: none !important;
}
.check_link {
  height: 40px;
  line-height: 40px;
  font-style: italic;
}
.check_link.ok {
  color: green;
}
.check_link.error {
  color: red;
}
.a_action {
  display: inline-block;
  width: 100%;
  height: 25px;
  line-height: 25px;
  background: #f60;
  color: #fff !important;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 5px;
  font-size: 12px;
}
.a_action:hover {
  background: #f00 !important;
}
.a_line {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  padding-left: 15px;
  padding-right: 15px;
  background: #f60;
  color: #fff !important;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 5px;
  font-size: 12px;
}
.a_line:hover {
  background: #f00 !important;
}
.title_right {
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product_info {
  width: 100%;
}
.product_info td {
  padding: 7px;
}
.button_to_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-top: 20px;
  font-size: 50px;
  color: rgb(142 77 53);
}

.load_overlay {
  position: fixed;
  background: #000;
  opacity: 0.8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  display: none;
}

.load_process {
  position: fixed;
  margin: auto;
  z-index: 99999;
  background: #fff;
  width: 400px;
  max-width: calc(90% - 10px);
  height: 100px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  overflow: hidden;
  display: none;
}

.load_note {
  color: #f60;
}

.box_popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
}

.box_popup .box_popup_content {
  position: relative;
  margin: auto;
  padding: 5px;
  width: 650px;
  height: auto;
  margin-top: 30px;
  max-width: calc(100% - 20px);
  max-height: calc(100vh - 60px);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.box_popup .box_popup_content .box_title {
  position: absolute;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: 700;
}
.box_popup .box_popup_content .box_title i {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 10px;
  color: #fff;
}
.box_popup .box_popup_content .content_box {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.box_popup .box_popup_content .content_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phantrang {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.phantrang a {
  background: #757575;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.phantrang a:hover {
  background: #000;
}

.phantrang span {
  background: #ff0000;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  cursor: default;
}
.box_noidung {
  padding: 10px;
  width: 100%;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}
.li_input {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}
.li_input label {
  width: 100%;
  margin-bottom: 10px;
  display: inline-block;
}
.li_input input[type="text"] {
  margin: 0;
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #354052;
  margin-bottom: 10px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%) !important;
}
.li_input input[type="password"] {
  margin: 0;
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #354052;
  margin-bottom: 10px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%) !important;
}
.li_input input[type="email"] {
  margin: 0;
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #354052;
  margin-bottom: 10px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%) !important;
}
.li_input input:focus {
  border: 1px solid #f00;
}
.li_input textarea {
  margin: 0;
  width: 100%;
  height: 100px;
  font-size: 15px;
  color: #354052;
  margin-bottom: 10px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%) !important;
}
.li_input textarea:focus {
  border: 1px solid #f00;
}
.li_input button {
  background: #f60;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
}
.button {
  width: 100%;
  display: inline-block;
  padding: 10px 15px;
  background: #f60;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
}
.button_top {
  position: fixed;
  right: 32px;
  bottom: 135px;
  width: 33px;
  height: 34px;
  background: #ff5722;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: 14px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 999;
}
@media all AND (max-width: 768px) {
  .button_top {
    display: none;
  }
}
.box_note {
  position: fixed;
  width: 200px;
  background: #f0564a;
  left: 10px;
  bottom: 10px;
  z-index: 999;
  color: #fff;
  display: none;
}
.box_note .note_title {
  position: relative;
  width: 100%;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 30px;
}
.box_note .note_title i {
  position: absolute;
  margin: auto;
  right: 0px;
  top: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.box_note .note_content {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  /*    display: -webkit-box;
    word-break: break-word;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
  width: 100%;
  font-size: 12px;
}
.box_note .note_content a {
  color: #fbff00;
  font-weight: 700;
}
.box_pop {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.box_pop .box_pop_content {
  left: 50% !important;
  top: 50% !important;
  position: fixed !important;
  transform: translate(-50%, -50%) !important;
  padding: 15px 20px;
  padding-bottom: 25px;
  width: 430px;
  max-width: calc(100% - 20px);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  background: #fff;
}

.box_pop .box_pop_content .pop_title {
  font-size: 20px;
  text-align: center;
  margin: 10px 0 20px 0;
  font-weight: 600;
  text-transform: uppercase;
}

.box_pop .box_pop_content .pop_content {
  width: 100%;
  display: inline-block;
}

.box_pop .box_pop_content .pop_content .li_input {
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
}

.box_pop .box_pop_content .pop_content .li_input label {
  width: 100%;
  display: inline-block;
  height: 20px;
  margin-bottom: 10px;
}
.box_pop .box_pop_content .pop_content .li_input input {
  margin: 0;
  width: 100%;
  height: 49px;
  font-size: 15px;
  color: #354052;
  margin-bottom: 10px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15) !important;
}
.box_pop .box_pop_content .pop_content .li_input select {
  margin: 0;
  width: 100%;
  height: 49px;
  font-size: 15px;
  color: #354052;
  margin-bottom: 10px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15) !important;
}
.box_pop .box_pop_content .pop_content .li_input button {
  border: none;
  border-radius: 5px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 13px;
  width: 100%;
  cursor: pointer;
  background-color: #f0564a;
  font-weight: 600;
}

.box_pop .box_pop_content .pop_button {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}

.box_pop .box_pop_content .pop_button .text_left {
  float: left;
  line-height: 35px;
}

.box_pop .box_pop_content .pop_button .text_left a:hover {
  color: #f0564a;
}

.box_pop .box_pop_content .pop_button .text_right {
  float: right;
}
.box_pop .box_pop_content .pop_button .text_center {
  text-align: center;
}
.box_pop .box_pop_content .pop_button .text_center button {
  padding: 0 10px;
  border: none;
  border-radius: 5px;
  line-height: 35px;
  color: #fff;
  font-size: 13px;
  width: 100px;
  cursor: pointer;
  margin-left: 5px;
  background-color: #f0564a;
  font-weight: 600;
}
.box_pop .box_pop_content .pop_button .text_right button {
  padding: 0 10px;
  border: none;
  border-radius: 5px;
  line-height: 35px;
  color: #fff;
  font-size: 13px;
  width: 100px;
  cursor: pointer;
  margin-left: 5px;
  background-color: #f0564a;
  font-weight: 600;
}

.page_redirect {
  margin: 20px 0;
  padding-bottom: 20px;
  text-align: center;
  max-width: 100%;
}

.page_redirect a {
  margin: 0 4px;
  line-height: 35px;
  width: 35px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.page_redirect a:hover {
  background-color: #f0564a;
  color: white;
  transition: 0.5s;
}
.page_redirect a.active {
  background-color: #f0564a;
  color: white;
}
.row {
  margin-right: -5px;
  margin-left: -5px;
}
@media all AND (min-width: 1024px) {
  .row_header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.container_member {
  display: inline-block;
  width: 100%;
}
.container_member .box_left {
  width: 280px;
  padding: 10px 10px;
  float: left;
}
.container_member .box_right {
  width: calc(100% - 280px);
  padding: 10px 10px;
  float: left;
}
.container_member .box_left .avatar {
  position: relative;
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.container_member .box_left .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container_member .box_left .name {
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
  font-family: Roboto;
}
.container_member .box_left .email {
  text-align: center;
  color: #777;
  margin-top: 5px;
}
.container_member .box_left .list_info {
  margin-bottom: 20px;
  margin-top: 10px;
  padding-left: 0;
}
.container_member .box_left .list_info .list-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: white;
  border: 1px solid #ddd;
}
.container_member .box_left .list_info .list-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.container_member .box_left .list_info .list-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.container_member .box_right .list_action {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.container_member .box_right .list_action .action {
  display: flex;
  width: calc(100% / 6);
  padding: 5px 5px;
  height: 125px;
  align-items: center;
}
.container_member .box_right .list_action .action a {
  display: flex;
  width: 100%;
  height: 100%;
  border: none;
  padding: 5px 5px;
  text-align: center;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.container_member .box_right .list_action .action a.active {
  background: #fff700;
}
.container_member .box_right .list_action .action a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.container_member .box_right .list_action .action a h2 {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  color: #204b45;
  font-size: 12px;
}
.container_member .box_right h1 {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  color: #204b45;
  text-transform: uppercase;
  font-family: "Roboto";
}
.container_member .box_right .box_profile {
  position: relative;
  margin: auto;
  width: 100%;
  margin-top: 20px;
}

.container_member .box_right .box_profile .list_thongbao {
  position: relative;
  margin: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.container_member .box_right .box_profile .list_thongbao .li_thongbao {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dedede;
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao:last-of-type {
  border-bottom: none;
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao
  .minh_hoa {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao
  .minh_hoa
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.container_member .box_right .box_profile .list_thongbao .li_thongbao .info {
  width: calc(100% - 90px);
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao
  .info
  .name {
  font-weight: 500px;
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao
  .info
  .name
  a:hover {
  color: #f00;
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao
  .info
  .name
  a
  span {
  color: #fff;
  background: #f00;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 5px;
  height: 16px;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  border-radius: 3px;
}
.container_member
  .box_right
  .box_profile
  .list_thongbao
  .li_thongbao
  .info
  .time {
  color: #9d9d9d;
  font-style: italic;
}
.container_member .box_right .box_profile .col_100 {
  width: 100%;
}
.container_member .box_right .box_profile .col_50 {
  width: 50%;
  padding-right: 15px;
  float: left;
}
.container_member .box_right .box_profile .col_30 {
  width: calc(100% / 3);
  padding-right: 15px;
  float: left;
}
.container_member .box_right .box_profile .box_avatar {
  position: relative;
  margin: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
}
.container_member .box_right .box_profile .box_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container_member .box_right .box_profile .change_avatar {
  cursor: pointer;
  color: #f60;
}
.container_member .box_right .box_profile .title_muc {
  font-size: 16px;
  font-family: SF-Pro-Text-Bold;
  color: #204b45;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
}
.container_member .box_right .box_profile .title_muc_2 {
  font-family: SF-Pro-Text-Bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.container_member .box_right .box_profile .table_danhsach {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.container_member .box_right .box_profile .table_danhsach th {
  text-align: center;
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 14px;
  font-weight: 700;
  background: #006fbc;
  color: #fff;
}
.container_member .box_right .box_profile .table_danhsach.print th {
  text-align: center;
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: #212529;
}
.container_member .box_right .box_profile .table_danhsach td {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 14px;
}
.container_member .box_right .box_profile .table_danhsach td input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 5px 5px;
}
.container_member .box_right .box_profile .table_danhsach td .del_row {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #f60;
}
.container_member .box_right .box_profile .table_danhsach td h2 {
  font-weight: 700;
}
.container_member .box_right .box_profile .table_danhsach td i {
  color: #9c5e5e;
}
.container_member .box_right .box_profile .table_danhsach td .ma_don {
  text-transform: uppercase;
}
.container_member .box_right .box_profile .table_danhsach td .status {
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
}
.container_member .box_right .box_profile .table_danhsach td a.action_more {
  background: #006fbc;
  color: #fff;
  padding: 5px 15px;
}
.container_member .box_right .box_profile hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #eee;
}
.container_member .box_right .box_profile .add_list {
  padding: 10px 10px;
  background: #006fbc;
}
.container_member .box_right .box_profile .box_text {
  padding: 10px 10px;
  border: 1px solid #abd4f0;
  background: #dff2ff;
  margin-bottom: 7px;
}
.container_member .box_right .box_profile .tieu_ngu {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
.container_member .box_right .box_profile .tieu_ngu_2 {
  text-align: center;
  font-size: 18px;
}
.container_member .box_right .box_profile .input_dashed {
  text-align: center;
  border: none;
  height: 25px;
  box-shadow: 0 0 0 0 rgb(136 152 170 / 15%) !important;
  text-transform: uppercase;
  border-bottom: 1px dashed #dedede;
  border-radius: 0px;
}
.container_member .box_right .box_profile .text_inline {
  line-height: 40px;
}
.container_member .box_right .box_profile .text_inline .text_left {
  float: left;
  display: inline-block;
  width: 80px;
  padding-right: 10px;
  text-align: right;
}
.container_member .box_right .box_profile .text_inline input {
  width: calc(100% - 80px);
  float: left;
}
.container_member .box_right .box_profile .text_inline .text_right {
  width: 380px;
  padding-left: 10px;
  text-align: right;
}
.container_member .box_right .box_profile .li_text {
  line-height: 30px;
  width: 100%;
  display: inline-block;
}
.container_member .box_right .box_profile .text_center {
  text-align: center;
  width: 100%;
  display: inline-block;
}
.container_member .box_right .box_profile .li_text .text_left {
  float: left;
  display: inline-block;
  width: 120px;
  padding-right: 10px;
  text-align: right;
}
.container_member .box_right .box_profile .li_text .text_right {
  font-weight: 700;
}
.container_member .box_right .box_profile .li_text .text_right .status {
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
}
.container_member .box_right .box_profile .button_print {
  margin: auto;
  margin-top: 20px;
  display: inline-block;
  border: none;
  padding: 10px 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  border-radius: 15px;
  font-size: 20px;
  border: 1px solid #f60;
  background: #f60;
  color: #fff;
}
.container_member .box_right .box_profile .button_download {
  margin: auto;
  margin-top: 20px;
  display: inline-block;
  border: none;
  padding: 10px 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  border-radius: 15px;
  font-size: 20px;
  border: 1px solid #80c601;
  background: #80c601;
  color: #fff;
}
#ui-datepicker-div {
  z-index: 9999 !important;
}
@media (max-width: 480px) {
  .row {
    margin-right: -5px;
    margin-left: -5px;
  }
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 480px) {
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-xs-1,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.container {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-15 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}

.btn-blues {
  color: #fff;
  background: #ff5722;
  border-color: #ff5722;
  border-radius: 2px !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-blues:hover {
  color: #fff;
  background-color: #ff6a3c;
}

.footer .tt-footer-default {
  background: #ff5722;
  color: #ffffff;
  padding: 10px 0;
}

.footer .tt-footer-default .tt-newsletter .tt-mobile-collapse {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 480px) {
  .footer .tt-footer-default .tt-newsletter .tt-mobile-collapse {
    display: block;
    display: block;
    display: block;
  }
}

.footer .tt-footer-default .tt-newsletter .tt-collapse-title {
  margin: 0;
  margin-right: 106px;
  padding-bottom: 0;
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

@media (max-width: 767px) {
  .footer .tt-footer-default .tt-newsletter .tt-collapse-title {
    margin-right: 50px;
  }
}

@media (max-width: 480px) {
  .footer .tt-footer-default .tt-newsletter .tt-collapse-title {
    margin-right: 0;
    text-align: center;
  }
}

.footer .tt-footer-default .tt-newsletter .tt-collapse-content {
  width: 100%;
  display: block;
}

.footer .tt-footer-default .tt-newsletter .tt-collapse-content form {
  position: relative;
  margin-bottom: 0;
}

.footer .tt-footer-default .tt-newsletter .tt-collapse-content form input {
  border: none;
  border-radius: 0;
  padding: 0 10px;
}

.footer .tt-footer-default .tt-newsletter .tt-collapse-content form button {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

.footer
  .tt-footer-default
  .tt-newsletter
  .tt-collapse-content
  form
  button:hover,
.footer
  .tt-footer-default
  .tt-newsletter
  .tt-collapse-content
  form
  button:focus {
  background-color: #ff5722;
}

.footer .tt-footer-default .tt-social-icon {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

.footer .tt-footer-default .tt-social-icon li {
  display: inline-block;
  padding: 0 5px;
}

.footer .tt-footer-default .tt-social-icon li a {
  color: #fff;
  line-height: 40px;
  font-size: 15px;
}

.footer .tt-footer-default .tt-social-icon li a:hover,
.footer .tt-footer-default .tt-social-icon li a:focus {
  color: #000;
}

.footer .site-footer {
  background-color: #191919;
}

.footer .site-footer .footer-widget h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 767px) {
  .footer .site-footer .footer-widget h3 {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer .site-footer .footer-widget h3:before {
    content: "\f107";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    color: #888;
  }

  .footer .site-footer .footer-widget h3.active:before {
    content: "\f106";
  }
}

.footer .site-footer .footer-widget .ul-footer-contact li span {
  color: #fff;
}

.footer .site-footer .footer-widget .ul-footer-contact li a.a-phone {
  color: #ff5722;
}

.footer .site-footer .list-menu a:hover,
.footer .site-footer .list-menu a:focus {
  color: #ff5722;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer .site-footer .list-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer .site-footer .col-mb {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .footer .site-footer .col-no-mb .footer-widget h3:before {
    display: none;
  }

  .footer .site-footer .col-no-mb .list-menu {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .footer .site-footer .footer-inner .col-sm-6:nth-child(3) {
    clear: left;
  }
}

.footer .copyright {
  background-color: #0f0f0f;
  color: #888;
  font-size: 13px;
}

.footer .copyright a {
  color: #888;
}

.footer .copyright a:hover,
.footer .copyright a:focus {
  color: #ff5722;
  text-decoration: none;
}

header.header {
  background-color: #ff5722;
}

header.header .topbar {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.header .topbar .top-left-info li {
  display: inline-block;
}
header.header .topbar .top-left-info li.li_note {
  display: none;
}
@media all AND (max-width: 768px) {
  header.header .topbar .top-left-info li.li_note {
    display: inline-block;
  }
}
header.header .topbar .top-left-info li a {
  color: #fff;
  padding: 0 5px;
  position: relative;
}
header.header .topbar .top-left-info li a .count_note {
  position: absolute;
  display: inline-block;
  height: 18px;
  width: 18px;
  background: #f00;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
  font-family: "Roboto";
  text-align: center;
  left: 13px;
}
header.header .topbar .top-left-info li a:hover,
header.header .topbar .top-left-info li a:focus {
  color: #fdcb00;
}

@media (max-width: 767px) {
  header.header .topbar .top-left-info {
    text-align: center;
  }
}

header.header .topbar .top-right-info {
  text-align: right;
}

header.header .topbar .top-right-info li {
  display: inline-block;
}

header.header .topbar .top-right-info li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 5px;
  padding-left: 7px;
}

header.header .topbar .top-right-info li a {
  color: #fff;
  font-size: 13px;
  position: relative;
}
header.header .topbar .top-right-info li a .count_note {
  position: absolute;
  display: inline-block;
  height: 18px;
  width: 18px;
  background: #f00;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
  font-family: "Roboto";
  text-align: center;
}
header.header .topbar .top-right-info li a:hover,
header.header .topbar .top-right-info li a:focus {
  color: #fdcb00;
}

header.header .topbar .top-right-info li.li-account {
  position: relative;
}

header.header .topbar .top-right-info li.li-account:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 100%;
  height: 25px;
  background: 0 0;
  display: none;
  z-index: 8;
}

header.header .topbar .top-right-info li.li-account ul {
  position: absolute;
  top: 31px;
  min-width: 200px;
  border: 1px solid #ff7e55;
  background: #fff;
  margin: 0;
  padding: 10px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.18);
  z-index: 1599;
  border-top: none;
  text-align: start;
  display: none;
}

header.header .topbar .top-right-info li.li-account ul:before {
  border: 9px solid transparent;
  border-bottom: 9px solid #fff;
  margin-left: -9px;
  bottom: 100%;
  left: 20%;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

header.header .topbar .top-right-info li.li-account ul li {
  display: block;
  margin-left: 0;
  padding-left: 0;
}

header.header .topbar .top-right-info li.li-account ul li a {
  color: #000;
  padding: 7px 10px;
  background-color: #f7f7f7;
  display: block;
  font-weight: 500;
}

header.header .topbar .top-right-info li.li-account ul li + li {
  margin-top: 10px;
}

header.header .topbar .top-right-info li.li-account ul li:hover a {
  color: #fff;
  background-color: rgb(122, 170, 225);
  border-radius: 3px;
}

header.header .topbar .top-right-info li.li-account:hover .a-account {
  color: #fdcb00;
}

header.header .topbar .top-right-info li.li-account:hover:before {
  display: block;
}

header.header .topbar .top-right-info li.li-account:hover ul {
  display: block;
}

header.header .header-main {
  padding: 7px 0;
}

header.header .header-main .logo {
  padding: 0;
}

header.header .header-main .header_search {
  padding: 12px 0;
  position: relative;
}

@media (max-width: 991px) {
  header.header .header-main .header_search {
    padding-bottom: 0;
    padding-top: 5px;
  }
}

header.header .header-main .header_search form {
  margin-bottom: 0;
}

header.header .header-main .header_search form input {
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 0 3px 3px 0 rgb(0 0 0 / 6%);
}

header.header .header-main .header_search form button {
  border: 1px solid #fff;
  background-color: #ff5722;
  color: #fff;
  border-right: none;
  border-radius: 5px !important;
}

header.header .header-main .header-right {
  padding: 10px 0;
}

header.header .header-main .header-right .hotline_dathang {
  width: 155px;
  text-align: center;
  background-color: #ee3900;
  border-radius: 10px;
  padding: 1px 5px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  border: 1px solid transparent;
}

@media (max-width: 1024px) {
  header.header .header-main .header-right .hotline_dathang {
    width: 145px;
  }
}

header.header .header-main .header-right .hotline_dathang .icon_hotline {
  color: #fff;
  font-size: 18px;
  float: left;
  width: 30px;
  line-height: 38px;
}

header.header .header-main .header-right .hotline_dathang .content_hotline {
  float: left;
  line-height: 1.3;
  text-align: left;
}

header.header .header-main .header-right .hotline_dathang .content_hotline a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

header.header
  .header-main
  .header-right
  .hotline_dathang
  .content_hotline
  span {
  display: block;
  font-size: 12px;
  color: #fff;
}

header.header .header-main .header-right .hotline_dathang:hover {
  border-color: #fff;
}

header.header .header-main .header-right .top-cart-contain {
  width: 155px;
  float: left;
  text-align: center;
  background-color: #ee3900;
  border-radius: 10px;
  padding: 1px 5px;
  position: relative;
  border: 1px solid transparent;
}

@media (max-width: 1024px) {
  header.header .header-main .header-right .top-cart-contain {
    width: 145px;
  }
}

header.header
  .header-main
  .header-right
  .top-cart-contain
  .heading-cart
  .icon_hotline {
  color: #fff;
  font-size: 18px;
  float: left;
  width: 30px;
  line-height: 38px;
}

header.header
  .header-main
  .header-right
  .top-cart-contain
  .heading-cart
  .content_cart_header {
  line-height: 1.3;
  float: left;
  text-align: left;
}

header.header
  .header-main
  .header-right
  .top-cart-contain
  .heading-cart
  .content_cart_header
  a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

header.header
  .header-main
  .header-right
  .top-cart-contain
  .heading-cart
  .content_cart_header
  span.text-giohang {
  display: block;
  font-size: 12px;
  color: #fff;
}

header.header .header-main .header-right .top-cart-contain:hover {
  border-color: #fff;
}

/* Thêm kiểu để header.header nav cuộn theo trang */
/* header.header nav {
  z-index: 1000;
  background: #fff;
  width: 100%;
}

header.header nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  width: 100%;
} */

/* Đảm bảo topbar và header-main không bị ảnh hưởng */
.topbar,
.header-main {
  position: relative;
}

/* Các kiểu ban đầu của bạn */
header.header nav .mainmenu {
  background: #ee3900;
  height: auto;
  color: #fff;
  cursor: pointer;
  padding: 0 10px;
}

header.header nav .mainmenu span {
  background: transparent;
  display: block;
  position: relative;
  z-index: 11;
  padding: 14px 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
}

header.header nav .mainmenu span i {
  font-size: 20px;
  position: relative;
  top: 2px;
}

header.header nav .mainmenu .nav-cate {
  overflow: visible;
  clear: both;
  position: absolute;
  top: 53px;
  left: -1px;
  right: 0;
  z-index: 10;
  height: 0;
  display: none;
}

@media (min-width: 1025px) {
  header.header nav .mainmenu .nav-cate {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    animation: menu-to-bottom 0.25s ease;
    -webkit-animation: menu-to-bottom 0.25s ease;
  }
}

header.header nav .mainmenu .nav-cate ul {
  width: 100%;
  min-height: 364px;
  background: #fff;
  overflow: visible;
  border: 1px solid #ff5722;
  border-top: none;
}

@media (max-width: 1024px) {
  header.header nav .mainmenu .nav-cate ul {
    min-height: 300px;
    overflow-y: scroll;
  }
}

header.header nav .mainmenu .nav-cate ul li {
  display: block;
  overflow: visible;
  padding: 10px 10px;
  cursor: pointer;
  clear: both;
}

header.header nav .mainmenu .nav-cate ul li h3 {
  position: relative;
  display: block;
  color: #666;
  line-height: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

header.header nav .mainmenu .nav-cate ul li h3 a {
  display: block;
  font-size: 14px;
  color: #666;
}

header.header nav .mainmenu .nav-cate ul li h3 a:hover,
header.header nav .mainmenu .nav-cate ul li h3 a:focus {
  color: #ff5722;
}

header.header nav .mainmenu .nav-cate ul li h3 img {
  max-width: 22px;
  float: left;
  margin-right: 5px;
}

header.header nav .mainmenu .nav-cate ul li:last-child h3 {
  border-bottom: none;
}

header.header nav .mainmenu .nav-cate ul li.dropdown {
  position: static;
}

header.header nav .mainmenu .nav-cate ul li.dropdown h3 a:before {
  content: "\f0da";
  font-family: FontAwesome;
  text-align: center;
  font-size: 14px;
  top: 50%;
  position: absolute;
  right: 0px;
  line-height: 100%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  color: #999;
}

header.header nav .mainmenu .nav-cate ul li.dropdown:hover h3 a:before {
  color: #fff;
}

header.header nav .mainmenu .nav-cate ul li.dropdown:hover .subcate {
  display: block;
  border-color: #ff5722;
  border-left: none;
}

@media (min-width: 1025px) {
  header.header nav .mainmenu .nav-cate ul li.dropdown:hover .subcate {
    visibility: visible;
    opacity: 1;
    pointer-events: visible;
    animation: menu-in-left 0.25s ease;
    -webkit-animation: menu-in-left 0.25s ease;
    min-height: 100%;
  }
}

header.header nav .mainmenu .nav-cate ul li .subcate {
  display: none;
  cursor: default;
  position: absolute;
  top: 0;
  left: 100%;
  min-height: 379px;
  background: #fff;
  padding: 0;
  width: 100%;
  border: 1px solid transparent;
}

@media (min-width: 1025px) {
  header.header nav .mainmenu .nav-cate ul li .subcate {
    animation: menu-to-right 0.25s ease;
    -webkit-animation: menu-to-right 0.25s ease;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    opacity: 0;
    display: block;
  }
}

@media (max-width: 1024px) {
  header.header nav .mainmenu .nav-cate ul li .subcate {
    min-height: 337px;
  }
}

header.header nav .mainmenu .nav-cate ul li .subcate .sub-flex ul {
  border: none;
  background-color: transparent;
}

header.header nav .mainmenu .nav-cate ul li .subcate .sub-flex ul li {
  padding: 8.9px 10px;
}

header.header nav .mainmenu .nav-cate ul li .subcate .sub-flex ul li .sub-a {
  display: block;
  overflow: visible;
  cursor: pointer;
  clear: both;
  background-color: transparent;
  color: #666;
}

header.header nav .mainmenu .nav-cate ul li .subcate .sub-flex ul li:hover {
  background-color: #ff5722;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li:hover
  .sub-a {
  color: #fff;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li:hover
  .sub-a:before {
  color: #fff !important;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub {
  position: static;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub
  .sub-a {
  position: relative;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub
  .sub-a:before {
  content: "\f0da";
  font-family: FontAwesome;
  text-align: center;
  font-size: 14px;
  top: 50%;
  position: absolute;
  right: -5px;
  line-height: 100%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  color: #999;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub
  .subcate2 {
  display: none;
  cursor: default;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 100%;
  min-height: 379px;
  background: #fff;
  padding: 0;
  width: 100%;
  border: 1px solid transparent;
  top: -1px;
  margin-left: 1px;
}

@media (min-width: 1025px) {
  header.header
    nav
    .mainmenu
    .nav-cate
    ul
    li
    .subcate
    .sub-flex
    ul
    li.sub-hassub
    .subcate2 {
    animation: menu-to-right 0.25s ease;
    -webkit-animation: menu-to-right 0.25s ease;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    opacity: 0;
    display: block;
  }
}

@media (max-width: 1024px) {
  header.header
    nav
    .mainmenu
    .nav-cate
    ul
    li
    .subcate
    .sub-flex
    ul
    li.sub-hassub
    .subcate2 {
    min-height: 337px;
  }
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub
  .subcate2
  a {
  display: block;
  overflow: visible;
  cursor: pointer;
  clear: both;
  padding: 8.9px 10px;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub
  .subcate2
  a:hover,
header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub
  .subcate2
  a:focus {
  color: #fff;
  background-color: #ff5722;
}

header.header
  nav
  .mainmenu
  .nav-cate
  ul
  li
  .subcate
  .sub-flex
  ul
  li.sub-hassub:hover
  .subcate2 {
  display: block;
  border-color: #ff5722;
  margin-left: -1px;
}

@media (min-width: 1025px) {
  header.header
    nav
    .mainmenu
    .nav-cate
    ul
    li
    .subcate
    .sub-flex
    ul
    li.sub-hassub:hover
    .subcate2 {
    visibility: visible;
    opacity: 1;
    pointer-events: visible;
    animation: menu-in-left 0.25s ease;
    -webkit-animation: menu-in-left 0.25s ease;
  }
}

header.header nav .mainmenu .nav-cate ul li:hover {
  background-color: #ff5722;
}

header.header nav .mainmenu .nav-cate ul li:hover h3 a {
  color: #fff;
}

header.header nav .mainmenu .nav-cate ul li:hover h3 img {
  -webkit-filter: grayscale(0) invert(1);
  filter: grayscale(0) invert(1);
}

header.header nav .mainmenu:hover .nav-cate {
  display: block;
}

@media (min-width: 1025px) {
  header.header nav .mainmenu:hover .nav-cate {
    visibility: visible;
    opacity: 1;
    animation: menu-in-top 0.25s ease;
    -webkit-animation: menu-in-top 0.25s ease;
  }
}

header.header nav .mainmenu.mainmenu-other .nav-cate {
  display: none;
}

header.header nav .mainmenu.mainmenu-other:hover .nav-cate {
  display: block;
}

header.header nav .nav-item > a {
  padding: 15px;
}

header.header nav #nav .nav-item ul.dropdown-menu {
  padding: 0;
  border: none;
  background: #fff none repeat scroll 0 0;
  border-radius: 0;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  font-weight: 500;
}

@media (min-width: 1025px) {
  header.header nav #nav .nav-item ul.dropdown-menu {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -moz-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    -webkit-transition: 0.2s ease-out;
    -ms-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

header.header nav #nav .nav-item ul.dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #f7f7f7;
}

header.header nav #nav .nav-item ul.dropdown-menu li:last-child {
  border-bottom: none;
}

header.header nav #nav .nav-item ul.dropdown-menu li a {
  padding: 10px 5px;
  position: relative;
  padding-right: 20px;
}

header.header nav #nav .nav-item ul.dropdown-menu li a i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

header.header nav #nav .nav-item ul.dropdown-menu li a:hover,
header.header nav #nav .nav-item ul.dropdown-menu li a:focus {
  background-color: transparent;
  color: #ff5722;
}

header.header
  nav
  #nav
  .nav-item
  ul.dropdown-menu
  li.dropdown-submenu
  .dropdown-menu {
  top: 0;
}

header.header nav #nav .nav-item:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

@media (min-width: 1025px) {
  header.header nav #nav .nav-item:hover > .dropdown-menu {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
    -moz-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

header.header
  nav
  #nav
  .nav-item:hover
  > .dropdown-menu
  .dropdown-submenu:hover
  .dropdown-menu {
  display: block;
  margin-top: 0;
}

@media (min-width: 1025px) {
  header.header
    nav
    #nav
    .nav-item:hover
    > .dropdown-menu
    .dropdown-submenu:hover
    .dropdown-menu {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
    -moz-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes menu-in-left {
  from {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes menu-in-left {
  from {
    -webkit-transform: translate3d(-15px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes menu-in-top {
  from {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes menu-in-top {
  from {
    -webkit-transform: translate3d(0, -15px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes menu-to-top {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
}

@-webkit-keyframes menu-to-top {
  from {
    -webkit-transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, -15px, 0);
  }
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.home-slider.owl-carousel .owl-nav .owl-next,
#collection-owl.owl-carousel .owl-nav .owl-prev,
#collection-owl.owl-carousel .owl-nav .owl-next {
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}

.home-slider.owl-carousel .owl-nav .owl-next,
#collection-owl.owl-carousel .owl-nav .owl-next {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  right: -50px;
}

.home-slider.owl-carousel .owl-nav .owl-next.disabled,
#collection-owl.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.2 !important;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
#collection-owl.owl-carousel .owl-nav .owl-prev {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  left: -50px;
}

.home-slider.owl-carousel .owl-nav .owl-prev.disabled,
#collection-owl.owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.2 !important;
}

.home-slider.owl-carousel:hover .owl-nav .owl-prev,
#collection-owl.owl-carousel:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
  visibility: inherit;
}

.home-slider.owl-carousel:hover .owl-nav .owl-next,
#collection-owl.owl-carousel:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
  visibility: inherit;
}

@media (max-width: 767px) {
  .home-slider.owl-carousel .owl-dots,
  #collection-owl.owl-carousel .owl-dots {
    display: none;
  }
}

.section_banner_1 {
  padding: 15px 0;
}

@media (max-width: 480px) {
  .section_banner_1 {
    padding: 7px 0;
  }
}

.section_banner_1 .elementor-widget-wrap {
  width: 100%;
  position: relative;
}

.section_banner_1 .elementor-widget-wrap .elementor-element {
  position: relative;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  img {
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-18px, 0, 0) scale(1.1);
  transform: translate3d(-18px, 0, 0) scale(1.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption {
  position: absolute;
  font-size: inherit;
  left: 30px;
  top: 18px;
  color: #fff;
  text-align: left;
}

@media (min-width: 567px) and (max-width: 767px) {
  .section_banner_1
    .elementor-widget-wrap
    .elementor-element
    .elementor-widget-container
    .tz-banner
    figcaption
    .main-caption {
    top: 10px;
    left: 20px;
  }
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  h3 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.1;
  margin: 15px 0;
}

@media (min-width: 567px) and (max-width: 767px) {
  .section_banner_1
    .elementor-widget-wrap
    .elementor-element
    .elementor-widget-container
    .tz-banner
    figcaption
    .main-caption
    h3 {
    margin-bottom: 5px;
  }
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  h3
  span {
  font-weight: 300;
  font-size: 18px;
  display: block;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  .p-from {
  font-weight: normal;
  font-size: 14px;
  margin: 0 0 34px 0;
  padding-top: 5px;
  line-height: 1.618;
}

@media (min-width: 567px) and (max-width: 767px) {
  .section_banner_1
    .elementor-widget-wrap
    .elementor-element
    .elementor-widget-container
    .tz-banner
    figcaption
    .main-caption
    .p-from {
    margin: 0 0 10px 0;
  }
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  .p-from
  span {
  font-weight: 500;
  font-size: 23px;
  color: #ff5722;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  .p-button {
  margin-bottom: 0;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  .p-button
  .button {
  text-transform: none;
  color: #fff;
  background-color: #ff5722;
  border-radius: 2px;
  display: inline-block;
  cursor: pointer;
  border: 0;
  box-shadow: none;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  .p-button
  .button:hover,
.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  figcaption
  .main-caption
  .p-button
  .button:focus {
  background-color: #ee3900;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner
  a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner:hover
  img {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.section_banner_1
  .elementor-widget-wrap
  .elementor-element
  .elementor-widget-container
  .tz-banner:hover
  figcaption
  .main-caption
  .p-button
  .button {
  background-color: #ee3900;
}

.section_banner_1 .banner-owl .owl-nav,
.section_banner_1 .banner-owl .owl-dots {
  display: none;
}

.section_deal {
  padding: 15px 0;
}

.section_deal .home-title h2 {
  display: block;
  font-size: 24px;
  line-height: 40px;
  margin: 0;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 14px;
  position: relative;
}

.section_deal .home-title h2 a {
  color: #222;
}

.section_deal .home-title h2 a:hover,
.section_deal .home-title h2 a:focus {
  color: #ff5722;
}

.section_deal .home-title h2:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  bottom: -2px;
  content: "";
  width: 76px;
  height: 2px;
  display: inline-block;
  background: #ff5722;
  position: absolute;
}

.section_deal .e-tabs .tabs-title.ajax {
  text-align: center;
  z-index: 1;
  width: 100%;
  padding: 5px 0 0;
  border-bottom: none;
  margin: 0 auto 30px;
  position: relative;
}

.section_deal .e-tabs .tabs-title.ajax .tab-link {
  background: #eee;
  line-height: 1;
  color: #222;
  border-radius: 20px;
  font-size: 13px;
  padding: 9px 25px;
  display: inline-block;
  margin-right: 6px;
  font-weight: 500;
}

.section_deal .e-tabs .tabs-title.ajax .tab-link.current,
.section_deal .e-tabs .tabs-title.ajax .tab-link:hover {
  color: #fff;
  background-color: #ff5722;
}

.section_deal .e-tabs .tabs-title.tab-mobile {
  text-align: center;
  font-size: 16px;
}

.section_deal .e-tabs .tabs-title.tab-mobile li {
  padding: 0 5px;
}

.section_deal .e-tabs .tabs-title.tab-mobile li.tab-title.current {
  color: #ff5722;
}

.section_deal .section-tour-owl.owl-carousel .owl-nav .owl-prev,
.section_deal .section-tour-owl.owl-carousel .owl-nav .owl-next {
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}

.section_deal .section-tour-owl.owl-carousel .owl-nav .owl-next {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  right: -50px;
}

.section_deal .section-tour-owl.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.2 !important;
}

.section_deal .section-tour-owl.owl-carousel .owl-nav .owl-prev {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  left: -50px;
}

.section_deal .section-tour-owl.owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.2 !important;
}

.section_deal .section-tour-owl.owl-carousel .owl-dots {
  position: relative;
  display: none;
}

@media (max-width: 767px) {
  .section_deal .section-tour-owl.owl-carousel .owl-dots {
    display: block;
  }
}

.section_deal .section-tour-owl.owl-carousel .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  background-color: #e5e5e5;
}

.section_deal .section-tour-owl.owl-carousel .owl-dots .owl-dot.active {
  background-color: #ff5722;
}

.section_deal .section-tour-owl.owl-carousel:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
  visibility: inherit;
}

.section_deal .section-tour-owl.owl-carousel:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
  visibility: inherit;
}

.section_deal .products-view-grid .product-item .product-item-container {
  margin-bottom: 0;
}

.section_deal
  .products-view-grid
  .product-item
  .product-item-container
  .product-image
  .grid-view-item__link {
  height: 222px;
  position: relative;
}

@media (max-width: 1024px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 182px;
  }
}

@media (max-width: 991px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 222px;
  }
}

@media (max-width: 767px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 353px;
  }
}

@media (max-width: 668px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 318px;
  }
}

@media (max-width: 569px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 269px;
  }
}

@media (max-width: 480px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 197px;
  }
}

@media (max-width: 376px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 178px;
  }
}

@media (max-width: 321px) {
  .section_deal
    .products-view-grid
    .product-item
    .product-item-container
    .product-image
    .grid-view-item__link {
    height: 150px;
  }
}

.section_deal
  .products-view-grid
  .product-item
  .product-item-container
  .product-image
  .grid-view-item__link
  img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.products-view-grid .product-item {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0px 0px 6px 0px rgb(50 50 93 / 10%), 1px 1px 5px rgb(0 0 0 / 2%);
}

.products-view-grid .product-item .product-item-container {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  background-color: #fff;
  margin: 0 0 10px 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
}

.products-view-grid .product-item .product-item-container .left-block {
  position: relative;
  text-align: center;
  height: 226px;
}

.products-view-grid .product-item .product-item-container .left-block > a {
  position: relative;
  display: block;
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .label-product {
  position: absolute;
  top: 7px;
  left: -41px;
  width: 120px;
  text-align: center;
  background: linear-gradient(135deg, #ff4b2b 0%, #e03a1a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  transform: rotate(-44deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 1;
}

/* .products-view-grid
  .product-item
  .product-item-container
  .left-block
  .label-product.label-sale {
  background: #ed3f46;
  left: 20px;
} */

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link {
  padding: 0;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  bottom: -80px;
  width: 100%;
  display: table;
  text-align: center;
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link
  .btn_df {
  display: block;
  margin-top: 10px;
  padding: 0;
  background-color: #fff;
  color: #ed3f46;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -moz-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  -o-transform: translate(50px, 0px);
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border: 1px solid #ff5722;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link
  .btn_df
  i {
  font-size: 18px;
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link
  form {
  margin-bottom: 0;
  text-align: center;
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link
  button.btn_df {
  width: auto;
  border-radius: 30px;
  padding: 0px 15px;
  background: #ff5722;
  color: #fff;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  display: inline-block;
  margin-top: 10px;
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link
  button.btn_df:hover {
  color: #fff;
  background-color: #ee3900;
}

@media (max-width: 1024px) {
  .products-view-grid
    .product-item
    .product-item-container
    .left-block
    .button-link
    button.btn_df {
    padding: 0 10px;
  }
}

.products-view-grid
  .product-item
  .product-item-container
  .left-block
  .button-link
  button.btn_df
  span {
  padding-left: 5px;
  font-weight: 500;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .products-view-grid
    .product-item
    .product-item-container
    .left-block
    .button-link {
    display: none;
  }
}

.products-view-grid .product-item .product-item-container .right-block {
  padding: 10px 10px 13px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clear: both;
  text-align: center;
  position: relative;
}

@media (max-width: 480px) {
  .products-view-grid .product-item .product-item-container .right-block {
    padding: 7px;
  }
}

.products-view-grid .product-item .product-item-container .right-block h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  margin: 0 0 5px;
}

.products-view-grid .product-item .product-item-container .right-block h4 a {
  color: #222;
}

.products-view-grid .product-item .product-item-container .right-block .price {
  overflow: hidden;
  width: 100%;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 1023px) and (max-width: 1024px) {
  .products-view-grid
    .product-item
    .product-item-container
    .right-block
    .price {
    min-height: 36px;
  }
}

@media (max-width: 480px) {
  .products-view-grid
    .product-item
    .product-item-container
    .right-block
    .price {
    min-height: 36px;
    line-height: 1.3;
  }
}

.products-view-grid
  .product-item
  .product-item-container
  .right-block
  .price
  .price-old {
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
  display: inline-block;
  line-height: 100%;
  font-weight: 500;
}

@media (min-width: 1023px) and (max-width: 1024px) {
  .products-view-grid
    .product-item
    .product-item-container
    .right-block
    .price
    .price-old {
    display: block;
  }
}

@media (max-width: 480px) {
  .products-view-grid
    .product-item
    .product-item-container
    .right-block
    .price
    .price-old {
    display: block;
  }
}

.products-view-grid
  .product-item
  .product-item-container
  .right-block
  .price
  .price-new {
  margin-left: 5px;
  color: #ff5722;
  font-size: 14px;
  vertical-align: top;
  font-weight: 600;
}

@media (min-width: 1023px) and (max-width: 1024px) {
  .products-view-grid
    .product-item
    .product-item-container
    .right-block
    .price
    .price-new {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .products-view-grid
    .product-item
    .product-item-container
    .right-block
    .price
    .price-new {
    display: block;
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .products-view-grid .product-item .product-item-container:hover .right-block {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
  }

  .products-view-grid
    .product-item
    .product-item-container:hover
    .button-link
    .btn_df {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    opacity: 1;
  }
}
.products-view-grid .product-item .product-item-container .icon_label {
  padding: 0px 6px 0px 4px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clear: both;
  text-align: center;
  position: absolute;
  height: 25px;
  top: 10px;
  width: fit-content;
  left: 154px;
}

.products-view-grid .product-item .product-item-container .icon_label.text {
  background: #f20000;
  color: #fff;
  text-transform: uppercase;
  line-height: 25px;
  font-size: 12px;
  height: 25px;
  font-weight: 700;
}
.products-view-grid .product-item .product-item-container .icon_label img {
  width: auto;
  max-width: 100%;
  height: 18px;
}
.section_banner_2 {
  padding: 15px 0;
}

@media (max-width: 767px) {
  .section_banner_2 {
    padding: 5px 0;
  }
}

.section_banner_2 img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(0);
  -webkit-backface-visibility: hidden;
}

.section_banner_2 img:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .section_banner_2 img {
    padding: 5px 0;
  }
}

.section_product {
  padding: 15px 0;
}

.section_product .group-top-product {
  background: #f7f7f7;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.section_product .group-top-product .section_product_title {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 6px 15px;
  position: relative;
  text-transform: none;
  float: left;
  border-radius: 0 3px 3px 0;
}

.section_product .group-top-product .section_product_title:after {
  position: absolute;
  content: "";
  border-top: 19px solid transparent;
  border-left: 13px solid rgba(255, 255, 255, 0.2);
  border-right: 0 solid transparent;
  border-bottom: 19px solid transparent;
  right: -5px;
  top: 1px;
}

@media (max-width: 480px) {
  .section_product .group-top-product .section_product_title {
    font-size: 16px;
    line-height: 28px;
  }
}

.section_product .group-top-product .menu-button-edit {
  display: none;
}

@media (max-width: 991px) {
  .section_product .group-top-product .menu-button-edit {
    display: inline-block;
    float: right;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 25px;
    color: #ff5722;
    font-weight: 500;
  }
}

.section_product .group-top-product .menu-button-edit.active i:before {
  content: "\f406";
}

.section_product .group-top-product ul {
  float: right;
}

.section_product .group-top-product ul li {
  display: inline-block;
}

.section_product .group-top-product ul li a {
  color: #333;
  font-size: 13px;
  padding: 9px 5px;
  display: block;
}

.section_product .group-top-product ul li a:hover,
.section_product .group-top-product ul li a:focus {
  color: #ff5722;
}

.section_product .group-top-product ul li:last-child {
  padding-right: 10px;
}

.section_product .group-top-product ul li:last-child a {
  font-weight: 500;
}

@media (max-width: 991px) {
  .section_product .group-top-product ul {
    float: none;
    width: 100%;
    clear: both;
    display: none;
  }

  .section_product .group-top-product ul li {
    display: block;
  }

  .section_product .group-top-product ul li:last-child {
    padding-right: 0px;
  }
}

.section_product.color_group_1 .group-top-product .section_product_title {
  background-color: #ff5722;
}

.section_product.color_group_1 .group-top-product .section_product_title:after {
  border-left-color: #ff5722;
}

.section_product.color_group_1 .group-brand {
  border: 2px solid #ff5722;
}

.section_product.color_group_1 .group-brand .title {
  background-color: #ff5722;
}

.section_product.color_group_2 .group-top-product .section_product_title {
  background-color: #ff5722;
}

.section_product.color_group_2 .group-top-product .section_product_title:after {
  border-left-color: #ff5722;
}

.section_product.color_group_2 .group-brand {
  border: 2px solid #ff5722;
}

.section_product.color_group_2 .group-brand .title {
  background-color: #ff5722;
}

.section_product .grp-nature {
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: none;
  border-top: none;
}

@media (max-width: 991px) {
  .section_product .grp-nature {
    display: -webkit-block;
    display: -moz-block;
    display: block;
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
    display: block;
  }
}

.section_product .grp-nature .group-list-product .product_4s {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.section_product
  .grp-nature
  .group-list-product
  .product_4s
  .products-view-grid {
  padding: 5px;
}

.section_product
  .grp-nature
  .group-list-product
  .product_4s
  .products-view-grid
  .product-item-container {
  margin-bottom: 0;
}

.section_product .grp-nature .group-list-product .product_4s:hover {
  /*box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);*/
  position: relative;
  z-index: 2;
}

.section_product .group-brand {
  text-align: center;
  margin-top: 1px;
  border: 2px solid #ff5722;
}

.section_product .group-brand .title {
  display: block;
  background-color: #ff5722;
  color: #fff;
  text-align: center;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 500;
}

.section_product .group-brand .title a {
  color: #fff;
}

.section_product .group-brand .title a:hover,
.section_product .group-brand .title a:focus {
  color: #fff;
}

.section_product .group-brand .brand-list.owl-carousel .owl-dots {
  position: relative;
  bottom: 0;
  margin: 1.5px 0;
}

.section_product .group-brand .brand-list.owl-carousel .owl-dots .owl-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: #e5e5e5;
}

.section_product
  .group-brand
  .brand-list.owl-carousel
  .owl-dots
  .owl-dot.active {
  background-color: #ff5722;
}

.section_product .group-list-product .product-image .grid-view-item__link {
  height: 204px;
  position: relative;
}

@media (max-width: 1024px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 168px;
  }
}

@media (max-width: 991px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 173px;
  }
}

@media (max-width: 767px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 348px;
  }
}

@media (max-width: 668px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 314px;
  }
}

@media (max-width: 569px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 264px;
  }
}

@media (max-width: 480px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 192px;
  }
}

@media (max-width: 376px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 173px;
  }
}

@media (max-width: 321px) {
  .section_product .group-list-product .product-image .grid-view-item__link {
    height: 145px;
  }
}

.section_product .group-list-product .product-image .grid-view-item__link img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.search-main form input {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
}

.search-main form button {
  color: #fff;
  background-color: #ff5722;
  border-radius: 3px;
}

.search-main form button:hover,
.search-main form button:focus {
  color: #fff;
  background-color: #ee3900;
}

.search-main .products-view-grid .product-image .grid-view-item__link {
  height: 210px;
  position: relative;
}

@media (max-width: 1024px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 217px;
  }
}

@media (max-width: 991px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 223px;
  }
}

@media (max-width: 767px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 338px;
  }
}

@media (max-width: 668px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 304px;
  }
}

@media (max-width: 569px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 254px;
  }
}

@media (max-width: 480px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 182px;
  }
}

@media (max-width: 376px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 163px;
  }
}

@media (max-width: 321px) {
  .search-main .products-view-grid .product-image .grid-view-item__link {
    height: 135px;
  }
}

.search-main .products-view-grid .product-image .grid-view-item__link img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.main_container .products-view-grid .product-image .grid-view-item__link {
  height: 199px;
  position: relative;
}

@media (max-width: 1024px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 162px;
  }
}

@media (max-width: 991px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 230px;
  }
}

@media (max-width: 767px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 348px;
  }
}

@media (max-width: 668px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 314px;
  }
}

@media (max-width: 569px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 264px;
  }
}

@media (max-width: 480px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 197px;
  }
}

@media (max-width: 376px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 178px;
  }
}

@media (max-width: 321px) {
  .main_container .products-view-grid .product-image .grid-view-item__link {
    height: 150px;
  }
}

.main_container .products-view-grid .product-image .grid-view-item__link img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.related-product .products-view-grid .product-image .grid-view-item__link {
  height: 222px;
  position: relative;
}

@media (max-width: 1024px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 182px;
  }
}

@media (max-width: 991px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 237px;
  }
}

@media (max-width: 767px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 353px;
  }
}

@media (max-width: 668px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 319px;
  }
}

@media (max-width: 569px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 269px;
  }
}

@media (max-width: 480px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 197px;
  }
}

@media (max-width: 376px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 177px;
  }
}

@media (max-width: 321px) {
  .related-product .products-view-grid .product-image .grid-view-item__link {
    height: 150px;
  }
}

.related-product .products-view-grid .product-image .grid-view-item__link img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.section_banner_3 {
  padding-bottom: 15px;
}

.section-news h2.home-title {
  display: block;
  font-size: 24px;
  line-height: 40px;
  margin: 0;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 14px;
  position: relative;
}

@media (max-width: 480px) {
  .section-news h2.home-title {
    font-size: 16px;
  }
}

.section-news h2.home-title a {
  color: #222;
}

.section-news h2.home-title a:hover,
.section-news h2.home-title a:focus {
  color: #ff5722;
}

.section-news h2.home-title:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  bottom: -2px;
  content: "";
  width: 76px;
  height: 2px;
  display: inline-block;
  background: #ff5722;
  position: absolute;
}

.section-news .list-blogs-link .blog-item .blog-item-thumbnail {
  position: relative;
  overflow: hidden;
}

.section-news .list-blogs-link .blog-item .blog-item-thumbnail:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding-bottom: 100%;
  margin-top: -50%;
  opacity: 0;
  background: #ff5722;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
  z-index: 1;
}

@media (max-width: 767px) {
  .section-news .list-blogs-link .blog-item .blog-item-thumbnail {
    width: 210px;
    float: left;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .section-news .list-blogs-link .blog-item .blog-item-thumbnail {
    width: 110px;
  }
}

.section-news .list-blogs-link .blog-item .blog-item-name {
  font-size: 14px;
}

@media (max-width: 767px) {
  .section-news .list-blogs-link .blog-item .blog-item-name {
    margin-top: 0 !important;
  }
}

.section-news .list-blogs-link .blog-item .blog-item-name a {
  font-size: 14px;
  color: #222;
}

.section-news .list-blogs-link .blog-item .blog-item-name a:hover,
.section-news .list-blogs-link .blog-item .blog-item-name a:focus {
  color: #ff5722;
}

.section-news .list-blogs-link .blog-item .post-time {
  padding: 3px 0;
  font-size: 13px;
  color: #999;
}

@media (max-width: 480px) {
  .section-news .list-blogs-link .blog-item .blog-item-summary {
    display: none;
  }
}

.section-news .list-blogs-link .blog-item:hover .blog-item-thumbnail:before {
  opacity: 0.4;
  -webkit-transform: scale(1.55);
  -moz-transform: scale(1.55);
  -ms-transform: scale(1.55);
  transform: scale(1.55);
}

.section-news .list-blogs-link .blog-item:hover .blog-item-name a {
  color: #ff5722;
}

.section_index_brand .brand-owl.owl-carousel .owl-nav .owl-prev,
.section_index_brand .brand-owl.owl-carousel .owl-nav .owl-next {
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}

.section_index_brand .brand-owl.owl-carousel .owl-nav .owl-next {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  right: -50px;
}

.section_index_brand .brand-owl.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.2 !important;
}

.section_index_brand .brand-owl.owl-carousel .owl-nav .owl-prev {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  left: -50px;
}

.section_index_brand .brand-owl.owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.2 !important;
}

.section_index_brand .brand-owl.owl-carousel .owl-dots {
  position: relative;
  display: none;
}

@media (max-width: 767px) {
  .section_index_brand .brand-owl.owl-carousel .owl-dots {
    display: block;
  }
}

.section_index_brand .brand-owl.owl-carousel .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  background-color: #e5e5e5;
}

.section_index_brand .brand-owl.owl-carousel .owl-dots .owl-dot.active {
  background-color: #ff5722;
}

.section_index_brand .brand-owl.owl-carousel:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
  visibility: inherit;
}

.section_index_brand .brand-owl.owl-carousel:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
  visibility: inherit;
}

.backdrop__body-backdrop___1rvky {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.backdrop__body-backdrop___1rvky.active {
  transition: opacity 0.5s ease;
  visibility: visible;
  opacity: 1;
}

.c-menu--slide-left {
  height: 100vh;
  overflow: hidden;
  width: 300px;
  position: fixed;
  background-color: #f6f6f7;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  z-index: 999999 !important;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
}

.c-menu--slide-left::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px transparent;
  -moz-box-shadow: inset 0 0 0px transparent;
  border-radius: 0px;
  background-color: #fff;
}

.c-menu--slide-left::-webkit-scrollbar {
  width: 0px;
  background-color: #fff;
}

.c-menu--slide-left::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 0px transparent;
  -moz-box-shadow: inset 0 0 0px transparent;
  background-color: #e5e5e5;
}

.c-menu--slide-left.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.c-menu--slide-left #close-nav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  z-index: 5;
  display: block;
  cursor: pointer;
}

.c-menu--slide-left .la-nav-top-login {
  padding: 30px 15px;
  background: #ff5722 url(images/lines-web-pattern.png?v=497);
  height: 180px;
  background-size: cover;
  box-shadow: 0px 1px 2px #999;
  position: relative;
  overflow: hidden;
}

.c-menu--slide-left .la-nav-top-login .la-avatar-nav > a {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  background-color: #ff4409;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  line-height: 50px;
  text-align: center;
}

.c-menu--slide-left .la-nav-top-login .la-avatar-nav > a i {
  height: auto;
  display: block;
  font-size: 30px;
  color: #fff;
  line-height: 50px;
}

.c-menu--slide-left .la-nav-top-login .la-avatar-nav .la-hello-user-nav {
  color: #fff;
  margin-top: 10px;
  text-shadow: 1px 1px 1px #444;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.c-menu--slide-left .la-action-link-nav {
  margin-top: 15px;
}

.c-menu--slide-left .la-action-link-nav > a {
  text-transform: uppercase;
  height: 35px;
  line-height: 35px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 5px;
  display: inline-block;
  width: 120px;
  text-align: center;
}

.c-menu--slide-left .la-action-link-nav > a:last-child {
  margin-right: 0px;
}

.c-menu--slide-left .la-scroll-fix-infor-user {
  height: calc(100vh - 180px);
  overflow-y: auto;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-title-nav-items {
  padding: 10px;
  color: #888888;
  font-size: 13px;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items {
  position: relative;
  background: #fff;
  display: inline-block;
  width: 100%;
}
.title_menu_mobile {
  padding: 10px;
  color: #888888;
  font-size: 13px;
  background: #f7f7f7;
}
@media (min-width: 767px) and (max-width: 991px) {
  .c-menu--slide-left
    .la-scroll-fix-infor-user
    .la-nav-menu-items
    .la-nav-list-items {
    height: 55vh;
  }
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  li {
  width: 100%;
  float: left;
  padding: 0px;
  border-bottom: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  li
  a {
  display: block;
  color: #444;
  font-size: 14px;
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  padding-right: 20px;
  position: relative;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child1
  a,
.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child2
  a {
  position: relative;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child1
  a
  i,
.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child2
  a
  i {
  padding: 3px 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child1
  a
  i.active:before,
.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child2
  a
  i.active:before {
  content: "\f068";
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child1
  .ul-has-child1 {
  padding-left: 10px;
  display: none;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child1
  .ul-has-child1
  li {
  border: none;
}

.c-menu--slide-left
  .la-scroll-fix-infor-user
  .la-nav-menu-items
  .la-nav-list-items
  .ng-has-child1
  .ul-has-child1
  .ul-has-child2 {
  padding-left: 20px;
  display: none;
}

.c-menu--slide-left .la-scroll-fix-infor-user .la-nav-slide-banner {
  margin-top: 5px;
  padding: 0px 5px 0px 5px;
}

.c-menu--slide-left .la-scroll-fix-infor-user .la-nav-slide-banner img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 5px;
}

.page-login #login .title-head {
  display: block;
  font-size: 20px;
  line-height: 40px;
  margin: 0;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 400;
}

@media (max-width: 480px) {
  .page-login #login .title-head {
    font-size: 18px;
  }
}

.page-login #login .title-head:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  bottom: -2px;
  content: "";
  width: 76px;
  height: 2px;
  display: inline-block;
  background: #ff5722;
  position: absolute;
}

.page-login #login .btn-blues {
  background: transparent;
  color: #ff5722;
  text-transform: uppercase;
  position: relative;
  outline: none;
  display: inline-block;
  padding: 0 30px;
  font-size: 13px;
  border: 1px solid;
  border-color: #ff5722;
  font-weight: 500;
  z-index: 2;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.page-login #login .btn-blues:hover,
.page-login #login .btn-blues:focus {
  color: #fff;
  background-color: #ff5722;
}

.page-login #login p.text-center {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.page-login #login p.text-center .btn-link-style {
  margin-top: 15px;
  font-weight: 600;
  color: #222;
  display: inline-block;
}

.page-login #login p.text-center .btn-link-style:hover,
.page-login #login p.text-center .btn-link-style:focus {
  color: #ff5722;
}

.page-login #login .text-login p {
  color: #222;
}

.page-login #login .text-login p a {
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  color: #777777;
}

.page-login #login .text-login p a:hover,
.page-login #login .text-login p a:focus {
  color: #ff5722;
}

.page-login #recover-password .title-head {
  display: block;
  font-size: 24px;
  line-height: 40px;
  margin: 0;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 400;
}

@media (max-width: 480px) {
  .page-login #recover-password .title-head {
    font-size: 18px;
  }
}

.page-login #recover-password .title-head:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  bottom: -2px;
  content: "";
  width: 76px;
  height: 2px;
  display: inline-block;
  background: #ff5722;
  position: absolute;
}

.page-login #recover-password .btn-blues {
  background: transparent;
  color: #ff5722;
  text-transform: uppercase;
  position: relative;
  outline: none;
  display: inline-block;
  padding: 0 30px;
  font-size: 13px;
  border: 1px solid;
  border-color: #ff5722;
  font-weight: 500;
  z-index: 2;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.page-login #recover-password .btn-blues:hover,
.page-login #recover-password .btn-blues:focus {
  color: #fff;
  background-color: #ff5722;
}

.page-login #recover-password .action_bottom {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.page-login #recover-password .text-login p {
  color: #222;
}

.page-login #recover-password .text-login p a {
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  color: #777777;
}

.page-login #recover-password .text-login p a:hover,
.page-login #recover-password .text-login p a:focus {
  color: #ff5722;
}

.account-page h2 {
  margin-top: 0;
  font-size: 16px;
}

.contact-info-page li {
  display: table;
  margin-bottom: 7px;
}

.contact-info-page li i {
  display: table-cell;
  width: 20px;
  text-align: center;
}

.contact-info-page li a {
  color: #000;
}

.contact-info-page li a:hover,
.contact-info-page li a:focus {
  color: #ff5722;
}

.account-page h1.title-head,
.account-page h2.title-head,
.page-contact h1.title-head,
.page-contact h2.title-head,
.related-product h1.title-head,
.related-product h2.title-head {
  font-weight: 500;
  font-size: 22px;
  padding: 0px 0 10px;
  margin-bottom: 0;
  margin-top: 10px;
}

.btn-blues,
#btnnewreview {
  color: #fff;
  background: #ff5722;
  border-color: #ff5722;
  border-radius: 2px !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-blues:hover,
#btnnewreview:hover {
  color: #fff;
}

.contact .in-fo-page-content {
  margin-bottom: 10px;
}

.contact .in-fo-page-content h1 {
  color: #fff;
  font-size: 14px;
  margin: 0;
  background-color: #ff5722;
  padding: 10px;
  text-transform: uppercase;
}

.contact .in-fo-page-content .contact-info-page {
  border: 1px solid #e5e5e5;
  padding: 10px;
  border-top: none;
}

.contact .in-fo-page-content .contact-info-page li {
  display: table;
  margin-bottom: 7px;
}

.contact .in-fo-page-content .contact-info-page li i {
  display: table-cell;
  width: 20px;
  text-align: center;
}

.contact .in-fo-page-content .contact-info-page li a {
  color: #000;
}

.contact .in-fo-page-content .contact-info-page li a:hover,
.contact .in-fo-page-content .contact-info-page li a:focus {
  color: #ff5722;
}

.cart_desktop_page form {
  margin-bottom: 0;
}

/*Cart Mobile*/
.cart-mobile {
  padding: 10px 0px 0px 0px;
}

.cart-mobile .header-cart {
  padding: 10px;
}

.cart-mobile .title-cart {
  line-height: 10px;
}

.cart-mobile .title-cart h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.cart-mobile .title-cart a {
  margin-top: -30px !important;
}

.cart-mobile .header-cart-content {
  margin-top: 0px;
  padding: 10px;
}

.cart-mobile .header-cart-content .content-product-list {
  min-height: 110px;
}

.cart-mobile .header-cart-content .content-product-list .item-product {
  min-height: 110px;
  border-bottom: solid 1px #f1f1f1;
  overflow: hidden;
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

.item-product-cart-mobile {
  width: 100px;
  margin-right: 10px;
}

.item-product-cart-mobile img {
  max-width: 100px;
  margin-right: 10px;
}

.title-product-cart-mobile h3 {
  line-height: 1;
  margin: 0;
  font-weight: normal;
}

.title-product-cart-mobile a {
  word-break: break-word;
  font-size: 14px;
  color: #363636;
}

.title-product-cart-mobile p {
  line-height: 2;
  font-size: 14px;
  color: #898989;
}

.title-product-cart-mobile span {
  color: #ff5722;
}

.item-product-cart-mobile,
.title-product-cart-mobile {
  display: table-cell;
  vertical-align: top;
  padding-right: 5px;
}

.select-item-qty-mobile {
  float: right;
  text-align: center;
  margin-top: 10px;
}

.select-item-qty-mobile .txt_center input {
  height: 25px;
  width: 24px;
  text-align: center;
  margin: 0px;
  padding: 0;
  position: absolute;
  left: 22px;
  min-height: 0;
  border: solid thin #ddd;
  border-radius: 0;
}

.select-item-qty-mobile > div {
  position: relative;
  width: 69px;
  height: 25px;
}

.cart-mobile
  .select-item-qty-mobile
  .txt_center
  button.reduced.items-count.btn-minus {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  line-height: 1;
  height: 25px;
  border-style: hidden;
  background: none !important;
  color: #000;
  border: solid thin #ddd;
  width: 24px;
}

.cart-mobile
  .select-item-qty-mobile
  .txt_center
  button.increase.items-count.btn-plus {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  height: 25px;
  display: inline-block;
  line-height: 1;
  border-style: hidden;
  color: #fff;
  background: none !important;
  color: #000;
  border: solid thin #ddd;
  width: 24px;
}

.select-item-qty-mobile a {
  line-height: 1;
  color: #fff;
  margin-top: 10px;
}

.cart-mobile .header-cart-price {
  padding: 18px 0px;
  padding-bottom: 0;
}

.cart-mobile .title-cart h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0;
}

.cart-mobile .title-cart a {
  float: right;
  margin-top: -28px;
  color: #ff5722;
  font-size: 16px;
  line-height: 27px;
}

.btn-proceed-checkout-mobile {
  width: 100%;
  line-height: 27px;
  color: #fff;
  height: 40px;
  font-size: 14px;
  border: none;
  background: #ff5722;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 10px;
  border-radius: 4px;
}

.btn-proceed-continues-mobile {
  background-color: #fff !important;
  color: #ff5722 !important;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  text-transform: uppercase;
  border: 1px solid #ff5722;
  border-radius: 4px;
}

.shopping-cart-item {
  background-color: transparent;
  padding: 15px 0;
  margin: 0;
}

.shopping-cart-item + .shopping-cart-item {
  border-top: 1px solid #e5e5e5;
}

.shopping-cart-item .col-xs-3 {
  padding-left: 0;
}

.shopping-cart-item .col-xs-3 p {
  margin: 0;
}

.shopping-cart-item .col-right {
  padding-left: 0;
}

.shopping-cart-item .col-right .box-info-product {
  width: 350px;
  padding-right: 10px;
  padding-left: 10px;
  float: left;
}

@media (max-width: 1024px) {
  .shopping-cart-item .col-right .box-info-product {
    width: 270px;
  }
}

.shopping-cart-item .col-right .box-info-product .name {
  font-size: 14px;
  margin-bottom: 7px;
  line-height: 20px;
  font-weight: 500;
  padding-top: 0;
}

.shopping-cart-item .col-right .box-info-product .name a {
  color: #242424;
  font-weight: 500;
}

.shopping-cart-item .col-right .box-info-product .name a:hover,
.shopping-cart-item .col-right .box-info-product .name a:focus {
  color: #ff5722;
  text-decoration: none;
}

.shopping-cart-item .col-right .box-info-product .seller-by {
  font-size: 13px;
  margin-bottom: 12px;
}

.shopping-cart-item .col-right .box-info-product .action {
  position: relative;
  padding: 0 !important;
  margin-bottom: 0;
  margin-top: 0;
}

.shopping-cart-item .col-right .box-info-product .action .btn-link {
  border: 0;
  color: #ff5722;
  font-size: 13px;
  position: static;
  padding: 0;
  line-height: 1.1;
}

.shopping-cart-item .col-right .box-price {
  float: left;
  width: 110px;
  padding-right: 10px;
}

.shopping-cart-item .col-right .box-price .price {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
  padding-top: 0;
  color: #ff5722;
}

.shopping-cart-item .col-right .quantity-block {
  width: 120px;
  float: right;
}

.shopping-cart-item .col-right .quantity-block .input-group-btn button {
  height: 28px;
}

.shopping-cart-item
  .col-right
  .quantity-block
  .input-group-btn
  button.bootstrap-touchspin-down {
  border-radius: 3px 0 0 3px;
  border: 1px solid #e5e5e5;
  border-right: 0;
  border-color: #e5e5e5;
  color: #999;
  line-height: 20px;
  padding: 3px 9px;
  margin: 0;
  width: 28px;
  background-color: #fff;
  float: right;
}

.shopping-cart-item
  .col-right
  .quantity-block
  .input-group-btn
  button.bootstrap-touchspin-up {
  border-radius: 0 3px 3px 0;
  border: 1px solid #e5e5e5;
  border-color: #e5e5e5;
  border-left: 0;
  color: #999;
  line-height: 20px;
  padding: 3px 9px;
  margin: 0;
  width: 28px;
  background-color: #fff;
  float: right;
}

.shopping-cart-item .col-right .quantity-block .input-group-btn button:focus,
.shopping-cart-item .col-right .quantity-block .input-group-btn button:hover {
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.shopping-cart-item
  .col-right
  .quantity-block
  .input-group-btn
  .js-quantity-product {
  display: inline-block;
  height: 28px;
  padding: 0 5px;
  text-align: center;
  border-radius: 0;
  width: 35px;
  float: right;
  min-height: 28px;
  border: 1px solid #e5e5e5;
}
#right-affix .each-row {
  width: 100%;
  clear: both;
}

#right-affix .each-row .box-style {
  background-color: transparent;
  padding: 17px 0 21px 0;
}

#right-affix .each-row .box-style.fee .list-info-price {
  margin: 0;
}

#right-affix .each-row .box-style.fee .list-info-price span {
  font-weight: 500;
}

#right-affix .each-row .box-style.fee .list-info-price strong {
  float: right;
  font-weight: 700;
}

#right-affix .each-row .box-style.fee .total2 {
  font-weight: 500;
}

#right-affix .each-row .box-style.fee .total2 .text-label {
  margin-top: 5px;
  display: inline-block;
}

#right-affix .each-row .box-style.fee .total2 .amount {
  float: right;
}

#right-affix .each-row .box-style.fee .total2 .amount p {
  margin: 0;
  text-align: right;
  line-height: 1.1;
}

#right-affix .each-row .box-style.fee .total2 .amount p strong {
  color: #ff5722;
  font-size: 22px;
  font-weight: 700;
}

#right-affix .each-row .box-style.fee .total2 .amount p small {
  font-weight: 500;
}

#right-affix .each-row .box-style + .box-style {
  border-top: 1px solid #f4f4f4;
}

#right-affix .btn-checkout {
  margin-top: 10px;
  padding: 10px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  user-select: none;
  color: #fff;
  background-color: #ff5722;
  border-color: #ff5722;
  height: 40px;
}

#right-affix .btn-checkout:hover,
#right-affix .btn-checkout:focus {
  background-color: #ee3900;
  border-color: #ee3900;
}

#right-affix .btn-checkouts {
  margin-top: 10px;
  padding: 10px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  user-select: none;
  color: #ff5722;
  background-color: #fff;
  border-color: #ff5722;
  height: 40px;
}

#right-affix .btn-checkouts:hover,
#right-affix .btn-checkouts:focus {
  outline: none;
  box-shadow: none;
  background-color: #fff;
  border-color: #ee3900;
  color: #ee3900;
}

/*END Giỏ hàng*/
/*Giỏ hàng*/
.lbl-shopping-cart-gio-hang {
  margin-top: 20px;
}

.lbl-shopping-cart-gio-hang.lbl-shopping-cart {
  color: #333;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.lbl-shopping-cart-gio-hang.lbl-shopping-cart span {
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  h4
  a:hover,
.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  h4
  a:focus {
  color: #12cca7;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  .cart-product-info
  span
  span {
  color: #0b816a;
}

.shopping-cart .shopping-cart-table table tbody tr .cart-product-edit a:hover,
.shopping-cart .shopping-cart-table table tbody tr .cart-product-edit a:focus {
  color: #12cca7;
}

.shopping-cart .cart-shopping-total table thead tr th .cart-grand-total {
  color: #0b816a;
  margin-top: 15px;
}

.shopping-cart-table table tbody tr td .quant-input .arrows .arrow:hover,
.shopping-cart-table table tbody tr td .quant-input .arrows .arrow:focus {
  color: #12cca7;
}

.shopping-cart
  .estimate-ship-tax
  table
  tbody
  .unicase-form-control
  .dropdown-menu.open
  ul
  li
  a:hover,
.shopping-cart
  .estimate-ship-tax
  table
  tbody
  .unicase-form-control
  .dropdown-menu.open
  ul
  li
  a:focus {
  color: #12cca7;
}

.shopping-cart .shopping-cart-table {
  margin-bottom: 10px;
}

.shopping-cart .shopping-cart-table table {
  margin-bottom: 0px !important;
}

.shopping-cart .shopping-cart-table table tbody tr td {
  vertical-align: middle;
}

.shopping-cart .cart-image img {
  width: 150px;
}

.cart-shopping-total {
  background: #f8f8f8;
}

.shopping-cart .shopping-cart-table table tbody tr .romove-item a {
  font-size: 18px;
  color: #666666;
}

.shopping-cart .shopping-cart-table table tbody tr .romove-item a:hover,
.shopping-cart .shopping-cart-table table tbody tr .romove-item a:focus {
  color: #fff000 !important;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-image
  .entry-thumbnail {
  display: block;
  text-align: center;
}

.shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info {
  vertical-align: middle !important;
}

.shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info h4 {
  margin-top: 0px;
  font-size: 16px;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  h4
  a {
  color: #555;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  .reviews {
  font-size: 11px;
  color: #aaa;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  .cart-product-info {
  margin-top: 10px;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  .cart-product-info
  span {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
}

.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-name-info
  .cart-product-info
  span
  span {
  font-size: 12px;
  text-transform: lowercase;
  margin-left: 14px;
}

.shopping-cart .shopping-cart-table table tbody tr .cart-product-edit a {
  color: #666666;
  text-decoration: underline;
}

.shopping-cart .shopping-cart-table .table > thead > tr > th {
  text-align: center;
  padding: 16px;
  font-size: 15px;
}

.shopping-cart .shopping-cart-table .shopping-cart-btn span {
  padding: 20px 0px;
  display: block;
}

.shopping-cart .estimate-ship-tax table thead tr th .estimate-title {
  font-size: 14px;
  color: #555;
  margin-bottom: 2px;
  margin-top: 0px;
  display: block;
}

.shopping-cart .estimate-ship-tax table thead tr th p {
  font-size: 13px;
  color: #666666;
  font-weight: normal;
  margin-bottom: 0px;
}

.shopping-cart .estimate-ship-tax table thead tr > th {
  padding: 24px 10px 20px 10px;
}

.shopping-cart .estimate-ship-tax table tbody tr > td {
  padding: 24px 10px !important;
}

.shopping-cart
  .estimate-ship-tax
  table
  tbody
  .unicase-form-control
  .selectpicker {
  background: #fff;
  color: #999;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #eee;
}

.shopping-cart
  .estimate-ship-tax
  table
  tbody
  .unicase-form-control
  .dropdown-menu.open
  ul
  li
  a:hover,
.shopping-cart
  .estimate-ship-tax
  table
  tbody
  .unicase-form-control
  .dropdown-menu.open
  ul
  li
  a:focus {
  background: transparent;
}

.shopping-cart .cart-shopping-total table thead tr th {
  background-color: #fafafa;
  text-align: right;
  padding: 10px 15px;
  border: none;
}

.shopping-cart .cart-shopping-total table thead tr th .cart-sub-total {
  color: #555;
  margin-bottom: 7px;
}

.shopping-cart .cart-shopping-total table tbody tr td {
  padding: 10px 15px;
}

.shopping-cart
  .cart-shopping-total
  table
  tbody
  tr
  td
  .cart-checkout-btn
  button {
  float: right !important;
  margin-bottom: 8px;
}

.shopping-cart .cart-shopping-total table tbody tr td .cart-checkout-btn span {
  display: block;
  font-weight: normal;
  color: #666666;
}

.shopping-cart .shopping-cart-table table tbody tr .romove-item,
.shopping-cart .shopping-cart-table table tbody tr .cart-product-edit,
.shopping-cart .shopping-cart-table table tbody tr .cart-product-sub-total,
.shopping-cart .shopping-cart-table table tbody tr .cart-product-grand-total,
.shopping-cart .shopping-cart-table table tbody tr .cart-product-quantity {
  text-align: center;
}

.shopping-cart .shopping-cart-table table tbody tr .cart-product-sub-total span,
.shopping-cart
  .shopping-cart-table
  table
  tbody
  tr
  .cart-product-grand-total
  span {
  display: block;
  font-size: 16px;
  color: #555;
  text-transform: uppercase;
}

.shopping-cart .estimate-ship-tax table tbody tr td .form-group label,
.shopping-cart .estimate-ship-tax table tbody tr td .form-group input,
.blog-page .blog-write-comment .form-group label,
.blog-page .blog-write-comment .form-group input,
.contact-page .contact-form form label,
.contact-page .contact-form form input {
  font-size: 13px;
  font-weight: normal;
  color: #999;
}

.contact-page .contact-form form label {
  font-weight: 600;
}

.shopping-cart .estimate-ship-tax table tbody tr td .form-group label span,
.blog-page .blog-write-comment label span,
.contact-page .contact-form form label span,
.checkout-box
  .checkout-steps
  .checkout-step-01
  .already-registered-login
  form
  .form-group
  label
  span {
  color: red;
}

.shopping-cart .cart-shopping-total table thead tr th .cart-sub-total,
.shopping-cart .cart-shopping-total table thead tr th .cart-grand-total {
  font-size: 16px;
}

.shopping-cart-table table tbody tr td .quant-input {
  display: inline-block;
  height: 35px;
  position: relative;
  width: 70px;
}

.shopping-cart-table table tbody tr td .quant-input .arrows {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.shopping-cart-table table tbody tr td .quant-input .arrows .arrow {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 40px;
}

.shopping-cart-table
  table
  tbody
  tr
  td
  .quant-input
  .arrows
  .arrow
  .ir
  .icon.fa-sort-asc {
  top: 5px;
}

.shopping-cart-table
  table
  tbody
  tr
  td
  .quant-input
  .arrows
  .arrow
  .ir
  .icon.fa-sort-desc {
  top: -7px;
}

.shopping-cart-table table tbody tr td .quant-input .arrows .arrow .ir .icon {
  position: relative;
}

.shopping-cart-table table tbody tr td .quant-input input {
  background: none repeat scroll 0 0 #ffffff;
  border: 1px solid #f2f2f2;
  box-sizing: border-box;
  font-size: 15px;
  height: 35px;
  left: 0;
  padding: 0 20px 0 18px;
  position: absolute;
  top: 0;
  width: 70px;
  z-index: 1;
}

/*Cart Desktop*/
.shopping-cart .col-main .cart .bg-scroll {
  border-top: none;
  margin-top: 20px;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  border-right: none;
}

.shopping-cart .col-main .cart .cart-thead {
  background: #fbfbfb;
  font-weight: bold;
  font-size: 13px;
  clear: both;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  border-right: none;
  border-left: none;
  float: left;
  min-width: 600px;
}

.shopping-cart .col-main .cart .cart-thead div {
  float: left;
  padding: 10px 0px;
  color: #333;
  text-align: center;
  font-size: 13px;
}

.shopping-cart .col-main .cart .cart-tbody {
  width: 100%;
  float: left;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart {
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  float: left;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart div {
  float: left;
  padding: 20px 10px 6px;
  line-height: 20px;
  vertical-align: top;
  height: 135px;
  overflow: hidden;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart .product-image {
  min-height: 75px;
  display: block;
  height: auto;
  width: 100%;
  padding: 0 20px;
}

.shopping-cart .col-main .cart .item-cart .image .product-image img {
  max-width: 100%;
  height: auto;
  max-height: 98px;
  width: auto;
  display: inherit;
  margin: 0 auto;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart div .product-name {
  margin: 0px;
  padding-bottom: 0px;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  margin-top: 10%;
}

.shopping-cart .col-main .cart .variant-title {
  color: #686868;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart div .price {
  font-size: 16px;
  font-weight: bold;
  line-height: 6;
  color: #ff5722;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart div .input_qty_pr {
  height: auto;
  border-right: none;
  width: 100%;
  margin-top: 15px;
  padding: 20px 0px 0px 0px;
}

.shopping-cart
  .col-main
  .cart
  .cart-tbody
  .item-cart
  .input_qty_pr
  .items-count {
  border: 1px solid #ddd;
  outline: none;
  background: #fff;
  height: 24px;
  width: 24px;
  vertical-align: baseline;
  text-align: center;
  padding: 0;
  display: inline-block;
  margin: 0;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart .number-sidebar {
  min-height: 0;
  position: static;
  display: inline-block;
  float: none;
  margin-bottom: 0;
  border: 1px solid #ddd;
  height: 24px;
  margin-left: -1px;
  text-align: center;
  width: 23px;
  margin-right: -1px;
  padding: 0;
  line-height: 15px;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart div:nth-child(6) {
  padding: 10px 0 6px;
  position: relative;
}

.shopping-cart .col-main .cart .cart-tbody .item-cart div a.remove-item span {
  display: none;
}

.shopping-cart
  .col-main
  .cart
  .bg-scroll
  .cart-tbody
  .item-cart
  div
  a.remove-item {
  background-color: #fff;
  background-image: url(//theme.hstatic.net/1000362795/1000658450/14/bin.png?v=497);
  width: 22px;
  height: 26px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.shopping-cart .col-main .cart .totals .inner {
  padding: 0px 0 15px;
  margin-top: 0;
  margin-right: 1px;
}

.shopping-cart .col-main .cart #shopping-cart-totals-table {
  width: 100%;
  padding-bottom: 8px;
  background: #fff;
}

.shopping-cart .col-main .cart ul.checkout {
  clear: left;
  padding: 20px;
  border: 1px solid #ebebeb;
  margin-bottom: 30px;
}

.shopping-cart .col-main .cart .btn-proceed-checkout {
  background: #ff5722;
  line-height: 20px;
  color: #fff;
  height: 40px;
  font-size: 16px;
  border: none;
  text-transform: uppercase;
}

.shopping-cart .col-main .cart #shopping-cart-totals-table tr td.a-right {
  width: 231px;
  border-left: 1px solid #ebebeb;
}

.shopping-cart .col-main .cart #shopping-cart-totals-table tr td {
  border: #ebebeb thin solid;
  border-top: none;
  border-bottom: none;
  padding: 20px;
}

.shopping-cart .col-main .cart span.totals_price.price {
  color: #ff5722;
  font-size: 16px;
}

.shopping-cart .col-main .cart .btn.btn-white {
  margin-right: 10px;
}

.shopping-cart .col-main .cart .btn.btn-white:hover,
.shopping-cart .col-main .cart .btn.btn-white:focus {
  background-color: #ff5722;
  border-color: #ff5722;
}

.cart-empty img {
  max-width: 200px;
}

.cart-empty .btn-cart-empty {
  margin-top: 20px;
  text-align: center;
}

.cart-empty .btn-cart-empty a {
  color: #fff;
  background: #ff5722;
  border-color: #ff5722;
  border-radius: 2px !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  padding: 15px 30px;
  line-height: 1.1;
  height: auto;
}

.cart-empty .btn-cart-empty a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #ff6a3c;
  border-radius: inherit;
  z-index: -1;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.cart-empty .btn-cart-empty a:hover {
  color: #fff;
}

.cart-empty .btn-cart-empty a:hover:after {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}

.list-category .col-sm-12 .col-title h3 {
  font-weight: 500;
  font-size: 20px;
  padding: 0;
  margin: 10px 0;
  float: left;
}

.list-category .col-sm-12 .col-title h3 span {
  font-size: 14px;
}

.list-category .col-sm-12 .col-title a {
  float: right;
  color: #ff5722;
  font-size: 14px;
  margin-top: 12px;
}

.list-category .owl-carousel.products-view-grid .owl-nav .owl-prev,
.list-category .owl-carousel.products-view-grid .owl-nav .owl-next {
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}

.list-category .owl-carousel.products-view-grid .owl-nav .owl-next {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  right: -50px;
}

.list-category .owl-carousel.products-view-grid .owl-nav .owl-next.disabled {
  opacity: 0.2 !important;
}

.list-category .owl-carousel.products-view-grid .owl-nav .owl-prev {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  left: -50px;
}

.list-category .owl-carousel.products-view-grid .owl-nav .owl-prev.disabled {
  opacity: 0.2 !important;
}

.list-category .owl-carousel.products-view-grid:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
  visibility: inherit;
}

.list-category .owl-carousel.products-view-grid:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
  visibility: inherit;
}

.aside-item.collection-category .aside-title .title-head {
  margin: 0;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  border-left: solid #ff5722 4px;
  background-color: #f7f7f7;
}

.aside-item.collection-category
  .aside-hidden-mobile
  .filter-container
  .aside-item
  .aside-title
  .title-head {
  border: none;
  padding: 0;
  margin-bottom: 10px;
  background-color: transparent;
  font-size: 14px;
}

.aside-item.collection-category .aside-content {
  border-top: none;
  border-radius: 0 0 3px 3px;
}

.aside-item.collection-category .nav li a {
  font-size: 14px;
  padding-left: 5px;
  padding-right: 25px;
  color: #222;
  white-space: normal;
}

.aside-item.collection-category .nav li a:hover,
.aside-item.collection-category .nav li a:focus {
  color: #ff5722;
  background-color: transparent;
}

.aside-item.collection-category .nav > li > a {
  border-bottom: 1px solid #f8f8f8;
}

.aside-item.collection-category .nav > li:last-child > a {
  border-bottom: none;
}

.aside-item.collection-category .nav > li.nav-item .fa {
  top: 7px;
}

.aside-item.collection-category
  .nav
  > li.nav-item
  .dropdown-menu
  .nav-item
  .fa {
  top: 5px;
}

.aside-item.collection-category .heading h2 {
  margin: 0;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 0;
  padding-left: 10px;
  border-top: none;
  border-left: solid #ff5722 4px;
}

.aside-item .heading .title-head {
  margin: 0;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  border-left: solid #ff5722 4px;
  background-color: #f7f7f7;
}

.aside-item .list-blogs .blog-item {
  margin-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
}

.aside-item .list-blogs .blog-item-name {
  margin: 0;
  font-size: 13px;
  font-weight: normal;
}

.aside-item .list-blogs .blog-item-name a {
  color: #333;
}

.aside-item .list-blogs .blog-item-name a:hover,
.aside-item .list-blogs .blog-item-name a:focus {
  color: #ff5722;
}

.aside-item .list-blogs .panel-box-media {
  display: block;
  float: left;
  width: 70px;
  margin-right: 10px;
}

.aside-item .list-blogs .blogs-rights {
  padding-left: 80px;
}

.aside-item .list-blogs .post-time {
  font-size: 11px;
  font-style: italic;
}

.aside-filter .aside-hidden-mobile .aside-item .field-search {
  margin-bottom: 10px;
}

.aside-filter .aside-hidden-mobile .aside-item .field-search input {
  min-height: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 0 7px;
}

.aside-filter .aside-hidden-mobile .aside-item .field-search button {
  height: 34px;
  line-height: 30px;
  padding: 0 10px;
  background-color: #ff5722;
  color: #fff;
}

.aside-filter .aside-hidden-mobile .aside-item .aside-content.filter-group {
  border-bottom: 1px dashed #f7f7f7;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-radius: 0;
}

.aside-filter
  .aside-hidden-mobile
  .aside-item:last-child
  .aside-content.filter-group {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.news-list-main .later_news_big .tempvideo {
  box-shadow: 0 0 10px -3px #ccc;
  border: solid #fff 10px;
  overflow: hidden;
  position: relative;
}

.news-list-main .later_news_big .tempvideo:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding-bottom: 100%;
  margin-top: -50%;
  opacity: 0;
  background: #ff5722;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
  z-index: 1;
}

.news-list-main .later_news_big h3 {
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}

.news-list-main .later_news_big h3 a {
  color: #222;
}

.news-list-main .later_news_big h3 a:hover,
.news-list-main .later_news_big h3 a:focus {
  color: #ff5722;
}

.news-list-main .later_news_big .post-time {
  padding: 3px 0;
  font-size: 13px;
  color: #999;
}

.news-list-main .later_news_big:hover .tempvideo:before {
  opacity: 0.5;
  -webkit-transform: scale(1.55);
  -moz-transform: scale(1.55);
  -ms-transform: scale(1.55);
  transform: scale(1.55);
}

.list-blog-page .box-heading {
  padding: 10px 0;
}

.list-blog-page .box-heading .title-head {
  font-weight: 500;
  margin: 0;
  font-size: 22px;
}

.list-blog-page .list-blogs .blog-item {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .list-blog-page .list-blogs .blog-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 10px;
  }
}

.list-blog-page .list-blogs .blog-item .blog-item-thumbnail {
  float: left;
  width: 240px;
  height: auto;
  margin-right: 10px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .list-blog-page .list-blogs .blog-item .blog-item-thumbnail {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.list-blog-page .list-blogs .blog-item .blog-item-thumbnail img {
  border-radius: 4px;
}

.list-blog-page .list-blogs .blog-item .blog-item-mains {
  padding-left: 250px;
}

@media (max-width: 480px) {
  .list-blog-page .list-blogs .blog-item .blog-item-mains {
    padding-left: 0;
  }
}

.list-blog-page .list-blogs .blog-item .blog-item-mains .blog-item-name {
  display: block;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.list-blog-page .list-blogs .blog-item .blog-item-mains .blog-item-name a {
  color: #333;
}

.list-blog-page .list-blogs .blog-item .blog-item-mains .blog-item-name a:hover,
.list-blog-page
  .list-blogs
  .blog-item
  .blog-item-mains
  .blog-item-name
  a:focus {
  color: #ff5722;
}

.list-blog-page .list-blogs .blog-item .blog-item-mains .post-time {
  font-size: 12px;
  color: #9b9b9b;
  margin: 0 10px 0 0;
}

.list-blog-page .list-blogs .blog-item .blog-item-mains .blog-item-summary {
  color: #4d4d4d;
}

@media (max-width: 767px) {
  .list-blog-page .list-blogs .blog-item .blog-item-mains .blog-item-summary {
    display: none;
  }
}

.article-wraper .article-main .title-head {
  font-weight: 500;
  font-size: 22px;
  padding: 0px 0 10px;
  margin-bottom: 0;
  margin-top: 0;
}

.article-wraper .article-main .postby {
  font-size: 12px;
  color: #b2b2b2;
  margin: 8px 0;
}

.article-wraper .article-main .article-content iframe {
  max-width: 100%;
}

.article-wraper .article-main .article-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100% !important;
  height: auto !important;
}

.article-wraper .article-main .article-content .service-scroll-image img {
  -webkit-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.article-wraper .article-main .article-content h2 {
  font-size: 17px;
  font-weight: 600;
}

.article-wraper .article-main .blog_related {
  background-color: #f8f8f8;
  padding: 15px;
  margin-bottom: 15px;
  margin-top: 15px;
  border-radius: 5px;
}

@media (max-width: 480px) {
  .article-wraper .article-main .blog_related {
    padding: 10px;
  }
}

.article-wraper .article-main .blog_related h2 {
  color: #222;
  margin: 0;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .article-wraper .article-main .blog_related h2 {
    font-size: 16px;
  }
}

.article-wraper .article-main .blog_related .blog_entry {
  margin-bottom: 7px;
}

@media (max-width: 767px) {
  .article-wraper .article-main .blog_related .blog_entry {
    margin-bottom: 7px;
  }
}

.article-wraper .article-main .blog_related .blog_entry h3 {
  margin: 5px 0;
  font-size: 14px;
}

@media (max-width: 767px) {
  .article-wraper .article-main .blog_related .blog_entry h3 {
    margin-top: 0;
  }
}

.article-wraper .article-main .blog_related .blog_entry h3 a {
  font-size: 14px;
  color: #222;
}

.article-wraper .article-main .blog_related .blog_entry h3 a:hover,
.article-wraper .article-main .blog_related .blog_entry h3 a:focus {
  color: #ff5722;
  text-decoration: none;
}

.article-wraper .article-main .blog_related .blog_entry .tempvideo {
  position: relative;
  height: 128px;
}

@media (max-width: 1024px) {
  .article-wraper .article-main .blog_related .blog_entry .tempvideo {
    height: 103px;
  }
}

@media (max-width: 991px) {
  .article-wraper .article-main .blog_related .blog_entry .tempvideo {
    height: 105px;
  }
}

@media (max-width: 767px) {
  .article-wraper .article-main .blog_related .blog_entry .tempvideo {
    width: 100px;
    height: 70px;
    float: left;
    margin-right: 10px;
  }
}

.article-wraper .article-main .blog_related .blog_entry .tempvideo img {
  width: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .article-wraper
    .article-main
    .blog_related
    .pagination
    .page-item.active
    .page-link {
    background-color: #f8f8f8;
  }
}

.article-wraper
  .article-main
  #RelatedProducts
  .feature_category_title
  .title-head {
  padding-bottom: 0;
}

.article-wraper .article-main #RelatedProducts .products {
  border-top: 1px solid #f3f3f3;
  border-left: 1px solid #f3f3f3;
  overflow: hidden;
}

.article-wraper .article-main #RelatedProducts .products .product-box {
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  padding: 3px;
  margin-bottom: 0;
}

.article-wraper .article-main.article-service .title-head {
  color: #ff5722;
  text-transform: uppercase;
  position: relative;
}

.article-wraper .article-main.article-service .title-head:before {
  content: "";
  height: 4px;
  width: 100px;
  background-color: #ff5722;
  position: absolute;
  left: 0;
  bottom: 10px;
}

.article-wraper .article-main.article-service .fix-content-service {
  margin-top: 40px;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  h2:first-child {
  font-size: 24px;
  padding-left: 20px;
  text-transform: uppercase;
  color: #ff5722;
  position: relative;
}

@media (max-width: 480px) {
  .article-wraper
    .article-main.article-service
    .fix-content-service
    h2:first-child {
    font-size: 18px;
  }
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  h2:first-child:before {
  content: "\f105";
  font-family: "fontawesome";
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

@media (max-width: 480px) {
  .article-wraper
    .article-main.article-service
    .fix-content-service
    h2:first-child:before {
    font-size: 18px;
  }
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-scrolls {
  max-height: 280px;
  overflow-y: scroll;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-scrolls
  img:first-child {
  display: none;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-scrolls::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-scrolls::-webkit-scrollbar {
  width: 5px;
  background-color: #ff5722;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-scrolls::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #ff5722;
}

.article-wraper
  .article-main.article-service
  .fix-content-service:nth-child(2n + 1)
  .service-scroll-image {
  left: 50%;
}

@media (max-width: 991px) {
  .article-wraper
    .article-main.article-service
    .fix-content-service:nth-child(2n + 1)
    .service-scroll-image {
    left: 0;
  }
}

.article-wraper
  .article-main.article-service
  .fix-content-service:nth-child(2n + 1)
  .service-scroll {
  right: 50%;
}

@media (max-width: 991px) {
  .article-wraper
    .article-main.article-service
    .fix-content-service:nth-child(2n + 1)
    .service-scroll {
    right: 0;
  }
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-cta {
  margin-top: 15px;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-cta
  .btn-icon {
  height: 46px;
  width: auto;
  border-radius: 22px;
  padding-left: 50px;
  padding-right: 40px;
  padding-top: 2px;
  margin-right: 20px;
  border: 2px solid #ff5722;
  display: inline-block;
  outline: none;
  text-transform: uppercase;
  color: #ff5722;
  background: #fff;
  font-size: 13px;
  position: relative;
  font-weight: 600;
}

@media (max-width: 480px) {
  .article-wraper
    .article-main.article-service
    .fix-content-service
    .service-cta
    .btn-icon {
    padding-right: 35px;
    margin-right: 10px;
  }

  .article-wraper
    .article-main.article-service
    .fix-content-service
    .service-cta
    .btn-icon:last-child {
    margin-right: 0;
  }
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-cta
  .btn-icon:before {
  content: "";
  width: 22px;
  height: 45px;
  position: absolute;
  left: -1px;
  top: -2px;
  background: #ee3900;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-cta
  .btn-icon:after {
  content: "";
  width: 22px;
  height: 45px;
  position: absolute;
  left: 21px;
  top: -2px;
  background: #ff5722;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-cta
  .btn-icon
  span:before {
  background-image: url(//theme.hstatic.net/1000362795/1000658450/14/call.png?v=497);
  content: "";
  width: 30px;
  height: 30px;
  left: 6px;
  top: 6px;
  z-index: 10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
}

.article-wraper
  .article-main.article-service
  .fix-content-service
  .service-cta
  .btn-icon.btn-form
  span:before {
  background-image: url(//theme.hstatic.net/1000362795/1000658450/14/support.png?v=497);
}

.article-wraper .article-main.article-service .article-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100% !important;
  height: auto !important;
}

.article-wraper
  .article-main.article-service
  .article-content
  .service-scroll-image
  img {
  -webkit-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

@media (max-width: 991px) {
  .article-wraper
    .article-main.article-service
    .article-content
    .service-scroll-image
    img {
    margin-bottom: 20px;
  }
}
.box_coupon {
  width: 100%;
  margin-top: 10px;
  display: none;
}
.box_coupon .box_title {
  height: 40px;
  background: #f7f7f7;
  margin: 0;
  overflow: hidden;
  width: 100%;
}
.box_coupon .box_title h2 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 6px 15px;
  position: relative;
  text-transform: none;
  float: left;
  border-radius: 0 3px 3px 0;
  background: #af008f !important;
  text-transform: uppercase;
}
.box_coupon .box_title h2:after {
  position: absolute;
  content: "";
  border-top: 19px solid transparent;
  border-left: 13px solid rgba(255, 255, 255, 0.2);
  border-right: 0 solid transparent;
  border-bottom: 19px solid transparent;
  border-left-color: #af008f;
  right: -5px;
  top: 1px;
}
.box_coupon .list_coupon {
  width: 100%;
  height: 110px;
  background: rgb(239, 239, 239);
}
.box_coupon .list_coupon .li_coupon {
  width: calc(100% / 3 - 20px);
  height: 90px;
  margin: 10px;
  display: flex;
}
.box_coupon .list_coupon .li_coupon .li_coupon_left {
  position: relative;
  width: calc(100% - 20px);
  height: 90px;
  display: flex;
}
.box_coupon .list_coupon .li_coupon .li_coupon_left .li_coupon_left_content {
  position: relative;
  padding: 10px;
  width: 104%;
  height: 90px;
  background: #f00;
  background-size: 100%;
  display: flex;
  border-radius: 5px;
  flex-wrap: wrap;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_top {
  margin: auto;
  position: relative;
  height: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #f00;
  font-family: "Roboto";
  background: #fff;
  border-radius: 5px;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_top
  div {
  width: 100%;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_top
  span {
  padding-left: 5px;
  color: #f00;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_ma {
  margin: auto;
  position: relative;
  height: 25px;
  line-height: 25px;
  width: 100%;
  margin-top: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  font-family: "Roboto";
  text-transform: uppercase;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_ma
  span {
  font-size: 12px;
  color: #f00;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_time {
  margin: auto;
  position: relative;
  height: 20px;
  width: 302px;
  margin-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: "Roboto";
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.75;
}
.box_coupon
  .list_coupon
  .li_coupon
  .li_coupon_left
  .li_coupon_left_content
  .li_coupon_left_content_time
  span {
  font-size: 20px;
  color: #f00;
}
@media all AND (max-width: 768px) {
  .box_coupon .list_coupon .li_coupon .li_coupon_left {
    position: relative;
    width: 100%;
    height: 160px;
    display: flex;
  }
  .box_coupon .list_coupon .li_coupon .li_coupon_left .li_coupon_left_content {
    position: relative;
    padding: 10px;
    width: 100%;
    height: 90px;
    background: #f00;
    background-size: 100%;
    display: flex;
    border-radius: 5px;
    flex-wrap: wrap;
  }
}
@media all AND (max-width: 1024px) {
  .box_coupon .list_coupon .li_coupon .li_coupon_left {
    position: relative;
    width: calc(100% - 20px);
    height: 160px;
    display: flex;
  }
  .box_coupon .list_coupon .li_coupon .li_coupon_left .li_coupon_left_content {
    position: relative;
    padding: 10px;
    width: 100%;
    height: 90px;
    background: #f00;
    background-size: 100%;
    display: flex;
    border-radius: 5px;
    flex-wrap: wrap;
  }
}
.box_coupon .list_coupon .li_coupon .li_coupon_left .circle_top {
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 10px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  background: rgb(239, 239, 239);
  z-index: 2;
}
.box_coupon .list_coupon .li_coupon .li_coupon_left .circle_bottom {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 20px;
  height: 10px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: rgb(239, 239, 239);
  z-index: 2;
}
.box_coupon .list_coupon .li_coupon .li_coupon_right {
  position: relative;
  width: calc(100% - 354px);
  height: 160px;
  background: #fff;
  display: flex;
  border-radius: 5px;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Roboto";
}
.box_coupon .list_coupon .li_coupon .li_coupon_right div {
  width: 100%;
  text-align: center;
}
.box_flash_sale {
  width: 100%;
  margin-top: 10px;
  display: none;
}
.box_flash_sale .box_title {
  height: 40px;
  background: #f7f7f7;
  margin: 0;
  overflow: hidden;
  width: 100%;
}
.box_flash_sale .box_title h2 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 6px 15px;
  position: relative;
  text-transform: none;
  float: left;
  border-radius: 0 3px 3px 0;
  background: #af008f !important;
  text-transform: uppercase;
}
.box_flash_sale .box_title h2:after {
  position: absolute;
  content: "";
  border-top: 19px solid transparent;
  border-left: 13px solid rgba(255, 255, 255, 0.2);
  border-right: 0 solid transparent;
  border-bottom: 19px solid transparent;
  border-left-color: #af008f;
  right: -5px;
  top: 1px;
}
.box_flash_sale .list_flash_sale {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.box_flash_sale .list_flash_sale .li_flash_sale {
  width: calc(100% / 4);
  padding: 5px;
  margin-top: 5px;
}
.box_flash_sale .list_flash_sale .li_flash_sale .li_flash_sale_content {
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0px 0px 6px 0px rgb(50 50 93 / 10%), 1px 1px 5px rgb(0 0 0 / 2%);
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .minh_hoa {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  text-align: center;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .minh_hoa
  img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info {
  position: relative;
  width: 100%;
  height: auto;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .title-product {
  position: relative;
  width: 100%;
  height: 40px;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .title-product
  a {
  position: relative;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 700;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .count_down {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
  font-weight: 700;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .count_down
  .time_countdown {
  background: #f00;
  color: #fff;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: center;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .count_down
  .text_count {
  color: #f00;
  padding: 2px;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .price {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .price
  .price-old {
  text-decoration: line-through;
  padding-left: 10px;
  padding-right: 10px;
  color: #999999;
}
.box_flash_sale
  .list_flash_sale
  .li_flash_sale
  .li_flash_sale_content
  .li_flash_sale_info
  .price
  .price-new {
  color: #ff5722;
  font-weight: 700;
  font-size: 18px;
  padding-right: 10px;
  padding-left: 10px;
}
@media all AND (max-width: 480px) {
  .box_flash_sale .list_flash_sale .li_flash_sale {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
  }
  .box_flash_sale
    .list_flash_sale
    .li_flash_sale
    .li_flash_sale_content
    .li_flash_sale_info
    .price
    .price-old {
    text-decoration: line-through;
    padding-left: 10px;
    padding-right: 10px;
    color: #999999;
  }
  .box_flash_sale
    .list_flash_sale
    .li_flash_sale
    .li_flash_sale_content
    .li_flash_sale_info
    .price
    .price-new {
    color: #ff5722;
    font-weight: 700;
    font-size: 18px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media all AND (min-width: 481px) AND (max-width: 768px) {
  .box_flash_sale .list_flash_sale .li_flash_sale {
    width: calc(100% / 2);
    padding: 5px;
    margin-top: 5px;
  }
}
.list_tintuc_index {
  position: relative;
  width: 100%;
  display: flex;
}
.list_tintuc_index .li_tintuc {
  width: 25%;
  padding: 5px;
}
.list_tintuc_index .li_tintuc .li_tintuc_content {
  width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
}
.list_tintuc_index .li_tintuc .minh_hoa {
  width: 100%;
  position: relative;
  height: 1px;
  padding-bottom: 75%;
}
.list_tintuc_index .li_tintuc .minh_hoa a {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.list_tintuc_index .li_tintuc .minh_hoa a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.list_tintuc_index .li_tintuc .info {
  width: 100%;
}
.list_tintuc_index .li_tintuc .info .post-time {
  width: 100%;
  opacity: 0.6;
  font-style: italic;
}
.list_tintuc_index .li_tintuc .info h3 {
  width: 100%;
  padding: 0px;
  margin: 0 auto;
  font-size: 16px;
  margin-top: 5px;
}
.list_tintuc_index .li_tintuc .info h3 a {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 19px;
  height: 38px;
}
.list_tintuc_index .li_tintuc .info .desc {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 19px;
  height: 57px;
}
@media all AND (max-width: 480px) {
  .list_tintuc_index {
    flex-wrap: wrap;
  }
  .list_tintuc_index .li_tintuc {
    width: 100%;
    padding: 5px;
  }
}
@media all AND (min-width: 481px) AND (max-width: 768px) {
  .list_tintuc_index {
    flex-wrap: wrap;
  }
  .list_tintuc_index .li_tintuc {
    width: 50%;
    padding: 5px;
  }
}
.main_container.collection .title-head {
  text-transform: uppercase;
}

.category-products .sortPagiBar .view-mode a .button-view-mode {
  display: inline-block;
  width: 38px;
  height: 38px;
  color: #333;
  line-height: 37px;
  text-align: center;
  background: #ebebeb;
  background: #fff;
  font-size: 20px;
  padding-top: 0px;
  border: 1px solid #ebebeb;
}

.category-products .sortPagiBar .view-mode a .button-view-mode.active,
.category-products .sortPagiBar .view-mode a .button-view-mode:hover {
  background-color: #ff5722;
  border-color: #ff5722;
  color: #fff;
}

.category-products .products-view-list .border-rs {
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.category-products .products-view-list .product-box {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  padding-bottom: 7px;
  padding-top: 7px;
}

.category-products .products-view-list .product-box .product-thumbnail {
  padding: 10px;
}

.category-products
  .products-view-list
  .product-box
  .product-thumbnail
  .tt-label-location {
  font-size: 10px;
  color: #fff;
  text-align: center;
  display: block;
  position: absolute;
  z-index: 1;
  font-weight: normal;
  line-height: normal;
  margin-top: 0px;
  margin-left: 0px;
  background: #e53939;
  line-height: 10px;
  border-radius: 2px;
  left: 6px;
  top: 6px;
  padding: 4px 8px;
}

.category-products
  .products-view-list
  .product-box
  .product-thumbnail
  .pr-button {
  border: 0 none;
  position: absolute;
  top: 30px;
  opacity: 0;
  z-index: 12;
  padding-left: 4%;
  overflow: hidden;
  transition: all 0.5s ease-out 0s;
}

.category-products
  .products-view-list
  .product-box
  .product-thumbnail
  .pr-button
  .mt-button {
  border-right: 0 none;
  float: none;
  margin-bottom: 8px;
  text-align: center;
  transform: scale(0);
  transition: all 0.4s ease 0s;
  width: 40px;
  line-height: 20px;
}

.category-products
  .products-view-list
  .product-box
  .product-thumbnail
  .pr-button
  .mt-button
  a {
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 10px 3px 8px;
  font-weight: normal;
  background-color: #444;
  border-radius: 2px;
  margin: 0;
  border: none;
  height: auto;
  line-height: inherit;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-name {
  margin-top: 15px;
  font-size: 20px;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-name
  a {
  font-size: 20px;
  color: #333;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-name
  a:hover,
.category-products
  .products-view-list
  .product-box
  .product-info
  .product-name
  a:focus {
  color: #ff5722;
}

.category-products .products-view-list .product-box .product-info .price-box {
  min-height: 1px;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .price-box
  .special-price {
  display: inline-block;
  width: auto;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .price-box
  .old-price {
  margin-left: 10px;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-summary {
  color: #4a4a4a;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-summary
  p {
  margin-bottom: 5px;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-summary
  img {
  display: none;
}

.category-products
  .products-view-list
  .product-box
  .product-info
  .product-summary
  th,
.category-products
  .products-view-list
  .product-box
  .product-info
  .product-summary
  td {
  padding: 5px;
}

.category-products .products-view-list .product-box .pro-action {
  display: block;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  margin-top: 10px;
}

.category-products .products-view-list .product-box .pro-action form {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 5px;
  float: left;
}

.category-products .products-view-list .product-box .pro-action button {
  width: auto;
  border-radius: 30px;
  padding: 0px 15px;
  background: #ff5722;
  color: #fff;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  display: block;
  margin-top: 10px;
  height: 35px;
  line-height: 33px;
}

.category-products .products-view-list .product-box .pro-action button a {
  font-size: 18px;
}

.category-products .products-view-list .product-box .pro-action .mt-button {
  display: inline-block;
  margin-right: 5px;
  float: left;
}

.category-products .products-view-list .product-box .pro-action .mt-button a {
  display: block;
  margin-top: 10px;
  padding: 0;
  background-color: #fff;
  color: #ff5722;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 100%;
  text-align: center;
  border: 1px solid #ff5722;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.category-products .products-view-list .product-box .pro-action .mt-button a i {
  font-size: 18px;
  position: relative;
  top: 2px;
}

.category-products
  .products-view-list
  .product-box:hover
  .product-thumbnail
  .pr-button {
  background: none;
  opacity: 1;
}

.category-products
  .products-view-list
  .product-box:hover
  .product-thumbnail
  .pr-button
  .mt-button {
  transform: scale(1);
}

.category-products
  .products-view-list
  .product-box:hover
  .product-thumbnail
  .pr-button
  .mt-button
  a:hover {
  background: #ff5722;
  color: #fff;
  border: 0px #ff5722 solid;
}

.category-products
  .products-view-grid
  .product-item
  .product-thumbnail
  .pr-img-area {
  position: relative;
  height: 203px;
}

@media (max-width: 1024px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 166px;
  }
}

@media (max-width: 991px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 232px;
  }
}

@media (max-width: 767px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 345px;
  }
}

@media (max-width: 668px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 312px;
  }
}

@media (max-width: 569px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 267px;
  }
}

@media (max-width: 480px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 191px;
  }
}

@media (max-width: 376px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 171px;
  }
}

@media (max-width: 321px) {
  .category-products
    .products-view-grid
    .product-item
    .product-thumbnail
    .pr-img-area {
    height: 144px;
  }
}

.category-products
  .products-view-grid
  .product-item
  .product-thumbnail
  .pr-img-area
  img {
  width: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.collections_des_and_menu_list .title {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

@media (max-width: 767px) {
  .collections_des_and_menu_list .title {
    border: 1px dashed #f5f5f5;
    padding: 5px;
    margin-bottom: 10px !important;
  }

  .collections_des_and_menu_list .title:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    right: 10px;
    line-height: 21px;
    transition: all 0.55s 0.25s;
    transform: rotate(0);
    top: 50%;
    transform: translate(0, -50%);
  }
}

@media (max-width: 767px) {
  .collections_des_and_menu_list .list-inline {
    display: none;
  }
}

.collections_des_and_menu_list .list-inline li a {
  display: block;
  padding: 5px 10px;
  border: 1px dashed #f5f5f5;
  margin-bottom: 10px;
}

.collections_des_and_menu_list .list-inline li:hover a,
.collections_des_and_menu_list .list-inline li.active a {
  border-color: #ff5722;
  color: #ff5722;
}

@media (max-width: 767px) {
  .collections_des_and_menu_list .list-inline li {
    display: block;
    width: 100%;
  }
}
.box_deal_soc {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}

.box_deal_soc .container {
  background: #fff;
  padding: 10px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  -o-border-radius: 7px;
  padding-bottom: 10px;
}

.box_deal_soc .box_title {
  width: 100%;
  border-bottom: 1px solid #eee;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box_deal_soc .box_title h2 {
  font-size: 14px;
  text-transform: uppercase;
}
.box_deal_soc .box_title .more {
  font-size: 14px;
}
.box_deal_soc .box_title .more a:hover {
  font-size: 14px;
  color: #ee4d2d;
}
.box_deal_soc .box_list_deal {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.box_deal_soc .box_list_deal .main_product {
  width: 25%;
  padding-bottom: 10px;
  padding-top: 10px;
}
.box_deal_soc .box_list_deal .icon_plus {
  font-size: 40px;
  width: 30px;
  text-align: center;
  color: #d41e25;
}
.box_deal_soc .box_list_deal .main_product .li_product {
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
}

.box_deal_soc .box_list_deal .main_product .li_product .product-content {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: #fff;
  font-size: 16px;
  height: 100%;
  box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.1),
    1px 1px 5px rgba(0, 0, 0, 0.02);
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-thumbnail {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-thumbnail
  .product-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  z-index: 9;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-thumbnail
  .minh_hoa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-thumbnail
  .minh_hoa.size_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .label_product {
  position: absolute;
  top: 0;
  right: 0;
  background: #d41e25;
  padding: 7px 2px;
  font-weight: bold;
  font-size: 12px;
  z-index: 3;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .label_product
  .label_wrapper {
  width: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .label_product::after {
  content: "";
  width: 0;
  height: 0;
  left: 0;
  bottom: -5px;
  position: absolute;
  border-color: transparent var(--label-background);
  border-style: solid;
  border-width: 0 20px 5px;
}
.box_deal_soc .box_list_deal .main_product .li_product .product-content:hover {
  box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.1),
    1px 1px 5px rgba(0, 0, 0, 0.02);
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content:hover
  .product-name
  a {
  color: #d41e25;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-info {
  padding: 10px;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: initial;
  margin: 10px 0 5px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .price-box {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .price-contact,
.box_deal_soc .box_list_deal .main_product .li_product .product-content .price {
  font-weight: bold;
  color: #d41e25;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .compare-price {
  color: var(--text-secondary-color);
  text-decoration: line-through;
  font-size: 14px;
}

.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .product-badge {
  max-height: 16px !important;
  width: auto !important;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  display: block;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 10px;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product
  label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  cursor: pointer;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product
  input {
  display: none;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product
  label
  .fa {
  padding-right: 5px;
  font-size: 18px;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product
  label
  .fa-check-square {
  display: none;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product
  input:checked
  + label
  .fa-square-o {
  display: none;
}
.box_deal_soc
  .box_list_deal
  .main_product
  .li_product
  .product-content
  .check_product
  input:checked
  + label
  .fa-check-square {
  display: block;
  color: #ffe0e1;
}
.box_deal_soc .box_list_deal .list_product {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.box_deal_soc .box_list_deal .list_product .button_deal_soc {
  text-align: center;
  width: calc(25% - 30px);
}
.box_deal_soc .box_list_deal .list_product .button_deal_soc button {
  color: #ee4d2d;
  background-color: rgba(255, 87, 34, 0.1);
  border: 1px solid #ee4d2d;
  padding: 10px;
  cursor: pointer;
}
.box_deal_soc .box_list_deal .list_product .li_product {
  padding-right: 5px;
  padding-left: 5px;
  width: calc(100% / 4);
  position: relative;
  min-height: 1px;
  height: calc(100% - 10px);
}
@media all AND (max-width: 480px) {
  .box_deal_soc .box_list_deal .list_product .li_product {
    padding-right: 5px;
    padding-left: 5px;
    width: 50%;
    position: relative;
    min-height: 1px;
    height: calc(100% - 10px);
  }
  .box_deal_soc .box_list_deal .list_product .li_product:first-of-type {
    padding-right: 5px;
    padding-left: 5px;
    width: 100%;
    position: relative;
    min-height: 1px;
    height: calc(100% - 10px);
  }
  .box_deal_soc .box_list_deal .icon_plus {
    font-size: 40px;
    width: 100%;
    text-align: center;
    color: #d41e25;
  }
  .box_deal_soc .box_list_deal .list_product .button_deal_soc {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
  .box_deal_soc .box_list_deal .list_product .button_deal_soc button {
    color: #ee4d2d;
    background-color: rgba(255, 87, 34, 0.1);
    border: 1px solid #ee4d2d;
    padding: 10px;
    cursor: pointer;
    width: 100%;
  }
}
.box_deal_soc .box_list_deal .list_product .li_product .product-content {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: #fff;
  font-size: 16px;
  height: 100%;
  box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.1),
    1px 1px 5px rgba(0, 0, 0, 0.02);
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-thumbnail {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-thumbnail
  .product-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  z-index: 9;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-thumbnail
  .minh_hoa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-thumbnail
  .minh_hoa.size_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .label_product {
  position: absolute;
  top: 0;
  right: 0;
  background: #d41e25;
  padding: 7px 2px;
  font-weight: bold;
  font-size: 12px;
  z-index: 3;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .label_product
  .label_wrapper {
  width: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .label_product::after {
  content: "";
  width: 0;
  height: 0;
  left: 0;
  bottom: -5px;
  position: absolute;
  border-color: transparent var(--label-background);
  border-style: solid;
  border-width: 0 20px 5px;
}
.box_deal_soc .box_list_deal .list_product .li_product .product-content:hover {
  box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.1),
    1px 1px 5px rgba(0, 0, 0, 0.02);
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content:hover
  .product-name
  a {
  color: #d41e25;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-info {
  padding: 10px;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: initial;
  margin: 10px 0 5px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .price-box {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
}

.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .price-contact,
.box_deal_soc .box_list_deal .list_product .li_product .product-content .price {
  font-weight: bold;
  color: #d41e25;
}
@media all AND (max-width: 480px) {
  .box_deal_soc
    .box_list_deal
    .list_product
    .li_product
    .product-content
    .price-box {
    display: flex;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
  }
  .box_deal_soc
    .box_list_deal
    .list_product
    .li_product
    .product-content
    .price-contact,
  .box_deal_soc
    .box_list_deal
    .list_product
    .li_product
    .product-content
    .price {
    font-weight: bold;
    color: #d41e25;
    width: 100%;
  }
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .compare-price {
  color: var(--text-secondary-color);
  text-decoration: line-through;
  font-size: 14px;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 10px;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product
  label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  cursor: pointer;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product
  input {
  display: none;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product
  label
  .fa {
  padding-right: 5px;
  font-size: 18px;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product
  label
  .fa-check-square {
  display: none;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product
  input:checked
  + label
  .fa-square-o {
  display: none;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .check_product
  input:checked
  + label
  .fa-check-square {
  display: block;
  color: #d41e25;
}
.box_deal_soc
  .box_list_deal
  .list_product
  .li_product
  .product-content
  .product-badge {
  max-height: 16px !important;
  width: auto !important;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  display: block;
}
.recent_products {
  border: 1px solid #eee;
  padding: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.recent_products .module-header .module-title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.recent_products #recent-content .owl-item .item {
  border: 1px solid #efefef;
  padding: 3px;
}

.recent_products #recent-content .owl-item .item .box-image {
  position: relative;
  height: 96px;
}

@media (max-width: 1024px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 76px;
  }
}

@media (max-width: 991px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 102px;
  }
}

@media (max-width: 767px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 123px;
  }
}

@media (max-width: 569px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 89px;
  }
}

@media (max-width: 480px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 113px;
  }
}

@media (max-width: 376px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 100px;
  }
}

@media (max-width: 321px) {
  .recent_products #recent-content .owl-item .item .box-image {
    height: 81px;
  }
}

.recent_products #recent-content .owl-item .item .box-image img {
  width: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.recent_products #recent-content.owl-carousel .owl-nav {
  display: none !important;
}

.recent_products #recent-content.owl-carousel .owl-dots {
  position: relative;
  bottom: 0;
}

.recent_products #recent-content.owl-carousel .owl-dots .owl-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid #ececec;
}

.recent_products #recent-content.owl-carousel .owl-dots .owl-dot span {
  display: none !important;
}

.recent_products #recent-content.owl-carousel .owl-dots .owl-dot.active {
  border-color: #ff5722;
}

.details-product .product-image-block .large-image .button_wh_40 {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: none;
  background-color: #f5f5f5;
  border-radius: 50%;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel
  .owl-nav
  .owl-prev,
.details-product
  .product-image-block
  #gallery_01.owl-carousel
  .owl-nav
  .owl-next {
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel
  .owl-nav
  .owl-next {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  right: -50px;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel
  .owl-nav
  .owl-next.disabled {
  opacity: 0.2 !important;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel
  .owl-nav
  .owl-prev {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  left: -50px;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel
  .owl-nav
  .owl-prev.disabled {
  opacity: 0.2 !important;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel:hover
  .owl-nav
  .owl-prev {
  left: 0;
  opacity: 1;
  visibility: inherit;
}

.details-product
  .product-image-block
  #gallery_01.owl-carousel:hover
  .owl-nav
  .owl-next {
  right: 0;
  opacity: 1;
  visibility: inherit;
}

.details-product .product-image-block #gallery_01.owl-carousel .owl-dots {
  display: none;
}

.details-product .product-image-block #gallery_01.owl-carousel .item {
  border: 1px solid #e5e5e5;
  padding: 2px;
  position: relative;
  height: 97px;
  margin: 1px;
}

@media (max-width: 1024px) {
  .details-product .product-image-block #gallery_01.owl-carousel .item {
    height: 68px;
  }
}

@media (max-width: 991px) {
  .details-product .product-image-block #gallery_01.owl-carousel .item {
    height: 81px;
  }
}

@media (max-width: 767px) {
  .details-product .product-image-block #gallery_01.owl-carousel .item {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .details-product .product-image-block #gallery_01.owl-carousel .item {
    height: 97px;
  }
}

.details-product .product-image-block #gallery_01.owl-carousel .item img {
  width: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.details-product .details-pro {
  background: #fafafa;
  padding: 10px;
}
.details-product .details-pro .box_flashsale {
  width: 100%;
}
.details-product .details-pro .box_flashsale .flashsale_header {
  width: 100%;
}
.details-product
  .details-pro
  .box_flashsale
  .flashsale_header
  .flashsale_title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-weight: 700;
}
.details-product
  .details-pro
  .box_flashsale
  .flashsale_header
  .flashsale_title
  h5 {
  font-weight: 700;
}
.details-product
  .details-pro
  .box_flashsale
  .flashsale_header
  .flashsale_countdown-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.details-product
  .details-pro
  .box_flashsale
  .flashsale_header
  .flashsale_countdown-wrapper
  .time_countdown {
  display: inline-block;
  width: 35px;
  height: 32px;
  font-size: 20px;
  line-height: 32px;
  background: #ff4949;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
.details-product
  .details-pro
  .box_flashsale
  .flashsale_header
  .flashsale_countdown-wrapper
  .text_day {
  display: inline-block;
  width: 35px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
.details-product
  .details-pro
  .box_flashsale
  .flashsale_header
  .flashsale_countdown-wrapper
  .text_count {
  display: inline-block;
  width: 15px;
  height: 32px;
  font-size: 20px;
  line-height: 32px;
  color: #ff4949;
  text-align: center;
}
@media (max-width: 767px) {
  .details-product .details-pro {
    margin-top: 10px;
    padding: 10px 5px;
  }
}

.details-product .details-pro .price-box .special-price {
  display: inline-block;
  float: left;
}

.details-product .details-pro .price-box .special-price .product-price {
  display: inline-block;
  overflow: hidden;
  font-size: 24px;
  color: #ff5722;
  vertical-align: middle;
  margin-right: 10px;
  font-weight: 600;
}

.details-product .details-pro .price-box .old-price {
  display: inline-block;
  float: left;
}

.details-product .details-pro .price-box .old-price .product-price-old {
  font-size: 18px;
  color: #bbb;
}

.details-product .details-pro .inventory_quantity .stock-brand-title {
  color: #333;
}

.details-product .details-pro .inventory_quantity .a-stock {
  color: #30a43b;
}

.details-product .product-summary .rte p {
  margin-bottom: 7px;
}

.details-product .form-product .swatch {
  margin: 10px 0;
}

.details-product .form-product .swatch .header {
  display: block;
  float: none;
}

.details-product .form-product form {
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .details-product .form-product form {
    margin-bottom: 0;
  }
}

.details-product .form-product .form-group {
  width: 100%;
}

.details-product .form-product .form-group .custom-btn-number {
  width: 150px;
  display: inline-block;
  float: left;
  position: relative;
  padding: 0;
  margin-bottom: 30px;
  border: none;
  box-shadow: none;
  height: 45px;
  background-color: transparent;
}

@media (max-width: 480px) {
  .details-product .form-product .form-group .custom-btn-number {
    margin-bottom: 35px;
  }
}

.details-product .form-product .form-group .custom-btn-number input {
  margin: 0px;
  display: block;
  float: left;
  height: 40px;
  border: solid 1px #ebebeb;
  border-right: none;
  border-left: none;
  width: 55px;
  text-align: center;
  box-shadow: none;
  border-radius: 0px;
  font-size: 15px;
  outline: none;
}

.details-product .form-product .form-group .custom-btn-number button {
  font-size: 20px;
  line-height: 0px;
  border: solid 1px #ebebeb;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff;
  float: left;
  color: #333;
  text-align: center;
  padding: 0px;
}

.details-product .form-product .form-group .custom-btn-number button.btn-minus {
  border-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.details-product .form-product .form-group .custom-btn-number button.btn-plus {
  border-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.details-product .form-product .form-group .custom-btn-number button:hover,
.details-product .form-product .form-group .custom-btn-number button:focus {
  background-color: #ff5722;
  border-color: #ff5722;
  color: #fff;
}

.details-product .form-product .form-group button {
  background: #ff5722;
  font-size: 16px;
  outline: none;
  box-shadow: none;
  padding: 10px;
  color: #fff;
  height: auto;
  line-height: inherit;
  width: 100%;
  border-radius: 10px;
  height: 50px;
  border: 2px solid #ff5722;
}

.details-product .form-product .form-group button span {
  display: block;
  width: 100%;
  text-align: center;
}

.details-product .form-product .form-group button span.txt-main {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.details-product .form-product .form-group button:hover,
.details-product .form-product .form-group button:focus {
  color: #ff5722;
  background-color: #fff;
}

@media (max-width: 480px) {
  .details-product .form-product .form-group button {
    width: 100%;
  }
}

.details-product .form-product .box-variant .selector-wrapper select {
  height: 40px;
}

.details-product .product-top .title-head {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  margin: 0px 0px 15px;
  line-height: normal;
}

.details-product .product-top .iddanhgia {
  float: left;
}

.details-product .product-top .iddanhgia:hover {
  cursor: pointer;
  color: #ff5722;
}

.details-product .product-tab .tabs-title {
  border-bottom: 1px solid #ebebeb;
}

.details-product .product-tab .tabs-title .tab-link {
  margin-right: 0;
  padding: 0 20px;
  background: #f3f2f2;
  border-radius: 4px 4px 0 0;
}

@media (max-width: 480px) {
  .details-product .product-tab .tabs-title .tab-link {
    width: 100%;
    border-radius: 0;
    margin-top: 2px;
  }
}

.details-product .product-tab .tabs-title .tab-link h3 {
  color: #a8acb3;
  font-size: 14px;
  text-transform: uppercase;
}

.details-product .product-tab .tabs-title .tab-link h3 span {
  font-size: 14px;
}

.details-product .product-tab .tabs-title .tab-link.current,
.details-product .product-tab .tabs-title .tab-link:hover {
  background-color: #ff5722;
}

.details-product .product-tab .tabs-title .tab-link.current h3,
.details-product .product-tab .tabs-title .tab-link:hover h3 {
  color: #fff;
}

.details-product .product-tab .product-well {
  min-height: 20px;
  padding: 0;
  padding-bottom: 35px;
  background-color: #fff;
  position: relative;
  margin-bottom: 18px;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 0;
}

.emty-text {
  text-align: center;
}

.details-product .product-tab .product-well.expanded .ba-text-fpt {
  height: auto;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  transition: height 0.2s;
}

.details-product .product-tab .product-well.expanded .less-text {
  display: block;
}

.details-product .product-tab .product-well.expanded .more-text {
  display: none;
}

.details-product .product-tab .product-well.expanded .show-more::before {
  display: none;
}

.details-product .product-tab .product-well .show-more {
  position: relative;
}

.details-product .product-tab .product-well .show-more .btn--view-more {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 120px;
  margin-left: -60px;
  margin-top: 0px;
  text-align: center;
  background-color: transparent;
  color: #0a5bff;
  font-weight: normal;
  outline: none;
  box-shadow: none;
}

.details-product .product-tab .product-well .show-more .btn--view-more:hover,
.details-product .product-tab .product-well .show-more .btn--view-more:focus {
  color: #ff5722;
  border-color: #ff5722;
  outline: none;
  box-shadow: none;
}

.details-product .product-tab .product-well .show-more::before {
  display: block;
  content: "";
  height: 120px;
  position: absolute;
  top: -120px;
  width: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.33) 33%,
    rgba(255, 255, 255, 0.8) 83%,
    #fff
  );
}

.details-product .product-tab .product-well .less-text {
  display: none;
}

.related-product .home-title h2 {
  display: block;
  font-size: 24px;
  line-height: 40px;
  margin: 0;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 14px;
  position: relative;
}

@media (max-width: 480px) {
  .related-product .home-title h2 {
    font-size: 18px;
  }
}

.related-product .home-title h2 a {
  color: #222;
}

.related-product .home-title h2 a:hover,
.related-product .home-title h2 a:focus {
  color: #ff5722;
}

.related-product .home-title h2:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  bottom: -2px;
  content: "";
  width: 76px;
  height: 2px;
  display: inline-block;
  background: #ff5722;
  position: absolute;
}

.related-product .section-tour-owl.owl-carousel .owl-nav .owl-prev,
.related-product .section-tour-owl.owl-carousel .owl-nav .owl-next {
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}

.related-product .section-tour-owl.owl-carousel .owl-nav .owl-next {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  right: -50px;
}

.related-product .section-tour-owl.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.2 !important;
}

.related-product .section-tour-owl.owl-carousel .owl-nav .owl-prev {
  height: 51px;
  width: 32px;
  border: 1px solid #f1f5f6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 51px;
  top: 50%;
  transform: translate(0, -50%);
  color: #878fa0;
  font-size: 20px;
  margin: 0;
  left: -50px;
}
.breadcrumb
  .related-product
  .section-tour-owl.owl-carousel
  .owl-nav
  .owl-prev.disabled {
  opacity: 0.2 !important;
}

.related-product .section-tour-owl.owl-carousel:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
  visibility: inherit;
}

.related-product .section-tour-owl.owl-carousel:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
  visibility: inherit;
}

.related-product .section-tour-owl.owl-carousel .owl-dots {
  display: none !important;
}

.zoomLens {
  border: none !important;
}

#btnnewreview {
  background: #ff5722 !important;
}

.module_service_details .wrap_module_service {
  background: #f7f7f7;
  border-radius: 0;
  border: 1px solid #ececec;
}

.module_service_details .wrap_module_service .item_service {
  padding: 0px 10px;
  border-bottom: dashed 1px #ececec;
}

.module_service_details .wrap_module_service .item_service .wrap_item_ {
  position: relative;
  padding: 15px 0;
  display: table;
}

.module_service_details
  .wrap_module_service
  .item_service
  .wrap_item_
  .image_service {
  display: table-cell;
  width: 40px;
  vertical-align: middle;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}

.module_service_details
  .wrap_module_service
  .item_service
  .wrap_item_
  .content_service {
  margin-left: 10px;
}

.module_service_details
  .wrap_module_service
  .item_service
  .wrap_item_
  .content_service
  p {
  font-weight: 500;
  margin-bottom: 0;
}

.module_service_details
  .wrap_module_service
  .item_service
  .wrap_item_
  .content_service
  span {
  color: #707070;
  font-size: 13px;
}

.module_service_details
  .wrap_module_service
  .item_service
  .wrap_item_
  .content_service
  a {
  color: #707070;
}

.module_service_details
  .wrap_module_service
  .item_service:hover
  .wrap_item_
  .content_service
  p {
  color: #ff5722;
}

.module_service_details
  .wrap_module_service
  .item_service:hover
  .wrap_item_
  .image_service {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.module_service_details .wrap_module_service .item_service:last-child {
  border-bottom: none;
}

@media (min-width: 1025px) {
  .my-account .dashboard .recent-orders .thead-default {
    border-top: 1px solid #e1e1e1;
  }
}

.required {
  font-size: 13px;
  color: red;
}

.line-clamp {
  position: relative;
  height: 38px;
  /* exactly three lines */
  overflow: hidden;
  display: block;
}

.line-clamp:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 19px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%);
}

@supports (-webkit-line-clamp: 2) {
  .line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 38px;
    /* I needed this to get it to work */
    height: auto;
    min-height: 38px;
  }

  .line-clamp:after {
    display: none;
  }
}

.line-clamps {
  position: relative;
  height: 42px;
  /* exactly three lines */
  overflow: hidden;
  display: block;
}

.line-clamps:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 21px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%);
}

@supports (-webkit-line-clamp: 2) {
  .line-clamps {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 42px;
    /* I needed this to get it to work */
    height: auto;
    min-height: 42px;
  }

  .line-clamps:after {
    display: none;
  }
}

.line-clampss {
  position: relative;
  height: 39px;
  /* exactly three lines */
  overflow: hidden;
  display: block;
}

.line-clampss:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 19px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%);
}

@supports (-webkit-line-clamp: 2) {
  .line-clampss {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 39px;
    /* I needed this to get it to work */
    height: auto;
    min-height: 39px;
  }

  .line-clampss:after {
    display: none;
  }
}

.left-content {
  margin-bottom: 10px;
}

.left-content .box_sidebar .left-module .layered .title_block {
  margin: 0;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  border-left: solid #ff5722 4px;
  background-color: #f7f7f7;
}

@media (max-width: 767px) {
  .left-content .box_sidebar .left-module .layered .title_block {
    margin-top: 5px;
  }
}

@media (max-width: 991px) {
  .left-content .box_sidebar .left-module .layered .title_block {
    text-align: left;
    border: 1px solid #eee;
    padding: 7px;
    font-size: 14px;
    position: relative;
    color: #333;
    background-color: #fff;
  }

  .left-content .box_sidebar .left-module .layered .title_block:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    right: 10px;
    line-height: 21px;
    transition: all 0.55s 0.25s;
    transform: rotate(0);
    top: 50%;
    transform: translate(0, -50%);
  }

  .left-content .box_sidebar .left-module .layered .title_block.active:after {
    content: "\f106";
  }
}

.left-content .box_sidebar .content-filter .option {
  margin-top: 30px;
}

.left-content .box_sidebar .option .lb-filter {
  display: block;
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 0px;
}

.left-content .box_sidebar .custom-dropdown {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0px;
}

.left-content .box_sidebar .custom-dropdown::after {
  content: "\f078";
  font-family: FontAwesome;
  font-size: 13px;
  color: #333;
  opacity: 0.42;
  display: block;
  position: absolute;
  top: 10px;
  right: 17px;
}

.left-content .box_sidebar .option .custom-dropdown .custom-dropdown__select {
  font-size: 14px;
  width: 100%;
  display: block;
  height: 30px;
  padding: 0 20px 0 0;
  border-color: transparent;
  border-bottom: 1px solid #000;
  background-color: #fff;
  outline: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-indent: 1px;
}

.left-content .box_sidebar .option .custom-dropdown {
  width: 100%;
}

.left-content .box_sidebar .option .custom-dropdown::after {
  content: "\f103";
  font-family: FontAwesome;
  font-size: 14px;
  color: #000;
  display: block;
  position: absolute;
  top: 9px;
  right: 2px;
}

.left-content .box_sidebar .option .option-children:not(:first-child) {
  margin-bottom: 30px;
}

.left-content .box_sidebar .option select option {
  background: #fff;
}

.left-content .box_sidebar .option.browse-tags .lb-filter {
  display: inline-block;
}

.left-content .box_sidebar .option.browse-tags .custom-dropdown {
  width: auto;
  float: right;
}

.left-content .box_sidebar .left-module {
  margin-bottom: 20px;
  overflow: hidden;
}

.left-content .box_sidebar .block .title_block {
  display: block;
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: 700;
  text-transform: uppercase;
  background: #f5f5f5;
  padding: 8px 15px;
}

.left-content .box_sidebar .layered .layered_subtitle {
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 0 10px;
  cursor: pointer;
  position: relative;
}

.left-content .box_sidebar .layered .layered_subtitle span {
  font-weight: 600;
  font-size: 13px;
}

.left-content .box_sidebar .layered span.icon-control {
  position: relative;
  top: -2px;
  left: 5px;
  font-size: 8px;
}

.left-content
  .box_sidebar
  .group-filter[aria-expanded="false"]
  .dropdown-filter
  .icon-control
  i:before {
  content: "\f067";
}

.left-content
  .box_sidebar
  .group-filter[aria-expanded="false"]
  .layered-content {
  display: none;
  height: 0;
}

.left-content
  .box_sidebar
  .group-filter[aria-expanded="true"]
  .layered-content {
  height: auto;
}

.left-content .box_sidebar .group-filter .layered-content {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.left-content .box_sidebar .check-box-list {
  margin: 0 0 10px;
}

.left-content .box_sidebar .check-box-list label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
  color: #333;
}

.left-content .box_sidebar .check-box-list li:hover label {
  color: #ff5722;
}

.left-content .box_sidebar .check-box-list input[type="checkbox"] {
  display: none;
}

.left-content .box_sidebar .filter-price li {
  font-size: 14px;
  margin-bottom: 5px;
}

.left-content .box_sidebar .filter-price li:last-child {
  margin-bottom: 0;
}

.left-content .box_sidebar .filter-color ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.left-content .box_sidebar .filter-color li {
  display: inline;
  margin: 0 10px 10px 0;
  line-height: normal;
  float: left;
}

.left-content .box_sidebar .filter-color li label {
  border: 1px solid #eaeaea;
  width: 25px;
  height: 25px;
  border-radius: 0;
  float: left;
  position: relative;
  background-size: contain;
}

.left-content
  .box_sidebar
  .filter-color
  li
  input[type="checkbox"]:checked
  + label:before {
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: "";
  border-width: 0 0 2px 2px !important;
  height: 5px;
  width: 9px;
  z-index: 99;
  border: solid #fff;
  margin: 7px 0 0 7px;
}

.left-content .box_sidebar .filter-size li {
  text-align: center;
  margin-right: -1px;
  margin-bottom: -1px;
  float: left;
}

.left-content .box_sidebar .filter-size li label {
  width: 42px;
  height: 42px;
  line-height: 42px;
  position: relative;
  border: 1px solid #e5e5e5;
}

.left-content
  .box_sidebar
  .filter-size
  li
  input[type="checkbox"]:checked
  + label,
.left-content .box_sidebar .size-filter li:hover label {
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
}

.left-content .box_sidebar .block .block_content {
  overflow-y: auto;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .left-content .box_sidebar .block .block_content {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .left-content .box_sidebar .block .block_content {
    display: none;
  }
}

.left-content .box_sidebar .bl-filter [type="checkbox"]:not(:checked),
.left-content .box_sidebar .bl-filter [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

.left-content .box_sidebar .bl-filter [type="checkbox"]:not(:checked) + label,
.left-content .box_sidebar .bl-filter [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 22px;
  cursor: pointer;
}

.left-content
  .box_sidebar
  .bl-filter
  [type="checkbox"]:not(:checked)
  + label:before,
.left-content .box_sidebar .bl-filter [type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 2px;
}

.left-content .box_sidebar .bl-filter [type="checkbox"]:checked + label:before {
  border: 1px solid #000;
}

.left-content
  .box_sidebar
  .bl-filter
  [type="checkbox"]:not(:checked)
  + label:after,
.left-content .box_sidebar .bl-filter [type="checkbox"]:checked + label:after {
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: "";
  border-width: 0 0 2px 2px !important;
  height: 4px;
  width: 7px;
  border: solid #111;
  margin: 9px 0 0 4px;
  left: 0;
  top: 0px;
  transition: all 0.2s;
}

.left-content
  .box_sidebar
  .bl-filter
  [type="checkbox"]:not(:checked)
  + label:after {
  opacity: 0;
}

.left-content .box_sidebar .bl-filter [type="checkbox"]:checked + label:after {
  opacity: 1;
}

.left-content .box_sidebar .bl-filter label:hover:before {
  border: 1px solid #000 !important;
}

@media (max-width: 991px) {
  .col-100-h {
    clear: both;
    height: 45px;
  }

  .col-100-h:before {
    display: table;
    content: " ";
  }

  .col-100-h:after {
    content: "";
    display: table;
    clear: both;
  }

  .col-100-h #trigger-mobile {
    width: 35px;
    float: left;
    margin: 0;
    padding: 0;
    display: block;
    text-align: left;
    margin-top: 8px;
    margin-right: 5px;
    margin-bottom: 8px;
  }

  .col-100-h #trigger-mobile .icon-bar {
    background-color: #fff;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
  }

  .col-100-h #trigger-mobile .icon-bar.icon-bar {
    margin-top: 4px;
  }

  .col-100-h .mobile-search {
    width: 40px;
    float: left;
    position: relative;
    padding-left: 0;
    margin: 0;
    left: 5px;
    top: 10px;
    text-align: left;
  }

  .col-100-h .mobile-search i {
    color: #000;
    font-size: 18px;
  }

  .col-100-h .mobile-cart {
    position: absolute;
    right: 15px;
    top: 8px;
  }

  .col-100-h .mobile-cart a {
    color: #fff;
  }

  .col-100-h .mobile-cart a i {
    font-size: 25px;
  }

  .col-100-h .mobile-cart .count_item_pr {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    background: -webkit-linear-gradient(left, #ff9800, #f44336);
    background: linear-gradient(to right, #ff9800, #f44336);
    font-size: 12px;
    right: -10px;
    top: -10px;
    color: #fff;
  }

  .col-100-h .logo-wrapper {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 150px;
    top: 0;
    text-align: center;
    padding: 5px 0;
  }

  .col-100-h .logo-wrapper img {
    max-width: 145px !important;
    position: relative;
    top: -6px;
    height: auto !important;
    max-height: 50px !important;
  }

  .aside-hidden-mobile {
    display: none;
    margin-top: 10px;
  }

  .select-item-qty-mobile > div {
    width: 74px;
  }

  .cart-mobile
    .select-item-qty-mobile
    .txt_center
    button.reduced.items-count.btn-minus,
  .cart-mobile
    .select-item-qty-mobile
    .txt_center
    button.increase.items-count.btn-plus {
    width: 25px !important;
    padding: 1px 0;
  }

  .select-item-qty-mobile .txt_center input {
    border-left: none;
    border-right: none;
    left: 25px;
  }
}

@media (max-width: 480px) {
  .s480-f {
    display: block;
    font-size: 0;
    clear: both;
  }
}

.page-404 h1 {
  font-size: 25px;
  color: #ff5722;
  text-transform: uppercase;
}

/*Sale Pop*/
.jas-sale-pop {
  background: #fff;
  bottom: -100%;
  left: 20px;
  right: 20px;
  padding: 10px 30px 10px 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
  z-index: 99999;
  position: fixed;
  right: auto;
}

@media (max-width: 480px) {
  .jas-sale-pop {
    left: 10px;
    right: 10px;
    max-width: 300px;
  }

  .jas-sale-pop .jas-sale-pop-content {
    max-width: 180px;
  }
}

.jas-sale-pop .mr__20 {
  margin-right: 10px;
}

.jas-sale-pop h4 {
  color: #222;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
}

.jas-sale-pop h3 {
  margin: 0;
  font-size: 15px;
  max-width: 255px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jas-sale-pop h3 a {
  color: #222;
  margin: 0;
  font-size: 14px;
}

.jas-sale-pop .jas-sale-pop-timeago {
  color: #878787;
  font-size: 12px;
}

.jas-sale-pop .pe-7s-close {
  right: 5px;
  top: 0px;
  cursor: pointer;
  position: absolute;
  font-family: FontAwesome;
}

.jas-sale-pop .pe-7s-close:before {
  content: "\f00d";
}

.jas-sale-pop.slideUp {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.jas-sale-pop.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.jas-sale-pop.flex {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#search_suggestion {
  padding: 0 0 10px 0;
  color: #555;
  position: absolute;
  top: 0;
  z-index: 9999;
  width: 100%;
  min-width: 226px;
  max-width: 100%;
  background-color: #f8f8f8;
  display: none;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  #search_suggestion {
    width: 100% !important;
  }
}

#search_suggestion h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  background-color: #eee;
  padding: 5px;
}

#search_suggestion ul {
  padding: 0;
}

#search_suggestion ul li {
  background-color: #fff;
  padding: 5px;
  font-size: 14px;
}

#search_suggestion ul li:hover {
  background-color: #eee;
}

#search_suggestion ul li a {
  color: #787878;
  display: block;
  overflow: hidden;
}

#search_suggestion ul li .item_image {
  text-align: center;
  float: left;
  width: 100px;
  margin-right: 5px;
}

@media (max-width: 480px) {
  #search_suggestion ul li .item_image {
    width: 60px;
  }
}

#search_suggestion ul li .item_image img {
  max-width: 100%;
}

#search_suggestion ul li .item_detail {
  overflow: hidden;
}

@media (max-width: 480px) {
  #search_suggestion ul li .item_title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

#search_suggestion ul li .item_title h4 {
  text-transform: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 480px) {
  #search_suggestion ul li .item_title h4 {
    font-size: 12px;
    display: initial;
  }
}

#search_suggestion ul li .item_price ins {
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-right: 5px;
  font-size: 13px;
  color: #d0021b;
}

@media (max-width: 480px) {
  #search_suggestion ul li .item_price ins {
    font-size: 12px;
  }
}

#search_suggestion ul li .item_price del {
  color: #666;
  font-size: 12px;
}

@media (max-width: 480px) {
  #search_suggestion ul li .item_price del {
    font-size: 11px;
  }
}

#search_top {
  max-height: 400px;
  overflow-y: auto;
}

#search_top::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}

#search_top::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

#search_top::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #e5e5e5;
}

#search_bottom {
  text-align: center;
  padding-top: 10px;
}

#search_bottom a {
  color: #444;
  text-decoration: underline;
  font-weight: 500;
}

#search_bottom a span {
  color: #ff0000;
}

#show_shops .show-title {
  color: #fff;
  position: relative;
  padding: 5px 0;
  display: block;
  padding: 10px;
  line-height: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: #ff5722;
}

#show_shops ul {
  background-color: #f5f5f5;
  min-height: 392px;
  max-height: 392px;
  overflow-y: scroll;
}

#show_shops ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}

#show_shops ul::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

#show_shops ul::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #e5e5e5;
}

#show_shops ul li {
  padding: 4px 6px;
}

#show_shops ul li.active,
#show_shops ul li:hover {
  color: #fff;
  background: #315399;
}

.choose_address select {
  text-transform: capitalize;
  background-image: url(ico-selects.png) !important;
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.grecaptcha-badge {
  display: none !important;
}

.addThis_listSharing {
  position: fixed;
  bottom: 85px;
  z-index: 999;
  right: -15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.addThis_listSharing.is-show {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.addThis_listing .addThis_item {
  margin-bottom: 5px;
  margin-right: 24px;
}

.addThis_listing .addThis_item .addThis_item--icon {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.11);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.addThis_listing .addThis_item .addThis_item--icon .tooltip-text {
  position: absolute;
  top: 4px;
  right: 55px;
  z-index: 9;
  height: 32px;
  line-height: 26px;
  padding: 3px 10px;
  width: auto;
  border-radius: 5px;
  font-size: 11px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background-color: black;
  visibility: hidden;
  opacity: 0;
  -ms-transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.addThis_listing .addThis_item .addThis_item--icon .tooltip-text:after {
  content: "";
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  -ms-transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.addThis_listing .addThis_item .addThis_item--icon:hover {
  text-decoration: none;
  opacity: 0.9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.13);
}

.addThis_listing .addThis_item .addThis_item--icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.actionToolbar_mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  height: 45px;
  width: 100%;
  border-top: 1px solid #e7e7e7;
  background: #fff;
  padding: 5px 10px;
}

.actionToolbar_mobile ul.actionToolbar_listing {
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.actionToolbar_mobile ul.actionToolbar_listing li {
  width: 20%;
  float: left;
}

.actionToolbar_mobile ul.actionToolbar_listing li a {
  display: block;
  color: #696969;
  font-size: 12px;
  text-align: center;
  position: relative;
}
.actionToolbar_mobile ul.actionToolbar_listing li a i {
  fill: #696969;
  width: 35px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
}
.actionToolbar_mobile ul.actionToolbar_listing li a svg {
  fill: #696969;
  width: 35px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
}

.actionToolbar_mobile
  ul.actionToolbar_listing
  li.actionToolbar_chatbot
  a
  .messenger_absolute {
  margin-top: -25px;
  display: inline-block;
  vertical-align: top;
}

.actionToolbar_mobile ul.actionToolbar_listing li.actionToolbar_chatbot a svg {
  width: 44px;
  height: 44px;
}

/* modal- center */
.modal-addThis {
  font-size: 0;
  text-align: center;
  padding: 0 !important;
  background: rgba(3, 17, 27, 0.7);
  -webkit-transition: opacity 0.35s linear;
  -o-transition: opacity 0.35s linear;
  transition: opacity 0.35s linear;
}

.modal-addThis:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-addThis .modal-dialog-centered {
  font-size: 14px;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-addThis.fade .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-addThis .modal-dialog-centered .modal-content {
  width: 100%;
}

.modal-addThis .modal-dialog-centered {
  margin: 30px auto 50px;
}

.modal-addThis.fade .modal-dialog-centered {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

.modal-addThis.fade.in .modal-dialog-centered {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.modal-addThis .modal-header .modal-title {
  padding: 0;
  min-height: unset;
}

.modal-addThis .modal-header .close {
  position: relative;
  z-index: 99;
}

.modal-addThis .contact-form {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .modal-addThis .modal-dialog-centered {
    margin: 30px 10px 40px;
  }
}

.custom-dropdown__select {
  font-size: 14px;
  width: 100%;
  display: block;
  height: 30px;
  padding: 0 25px 0 22px;
  border-color: transparent;
  border-bottom: 1px solid #000;
  background-color: #fff;
  outline: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-indent: 1px;
}
@media all AND (max-width: 980px) {
  .container_member .box_left {
    width: 100%;
    padding: 10px 10px;
  }
  .container_member .box_right {
    width: 100%;
    padding: 10px 10px;
    float: left;
  }
  .container_member .box_right .list_action {
    width: 100%;
    display: inline-block;
    flex-wrap: wrap;
    justify-content: center;
  }
  .container_member .box_right .list_action .action {
    width: calc(100% / 3);
    padding: 5px 5px;
    height: 125px;
    float: left;
  }
  .container_member .box_right .box_profile {
    position: relative;
    margin: auto;
    width: 100% !important;
    margin-top: 20px;
  }
  .container_member .box_right .box_profile .col_30 {
    width: 100%;
    padding-right: 0px;
    float: left;
  }
  .mobile_hide {
    display: none !important;
  }
}
/*7-4 */
.feature-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; /* Căn giữa */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 20px; /* Khớp với đệm của banner */
  box-sizing: border-box;
}

.feature-box {
  flex: 1 1 22%;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin: 5px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-sizing: border-box;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-icon i {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 8px;
}

.feature-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}

.feature-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

/* Tablet */
@media (max-width: 992px) {
  .feature-box {
    flex: 1 1 calc(50% - 20px);
    padding: 8px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .feature-container {
    padding: 10px 10px;
  }

  .feature-box {
    flex: 1 1 calc(50% - 10px);
    margin: 5px;
    padding: 8px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-title {
    font-size: 12px;
  }

  .feature-desc {
    font-size: 11px;
  }
}

.banner-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px; /* Khớp với max-width của feature-container */
  width: 100%; /* Đảm bảo co giãn theo viewport */
  margin: 10px auto; /* Căn giữa và bỏ lề cố định hai bên */
  padding: 0 25px; /* Thêm đệm để nội dung không sát mép */
  box-sizing: border-box;
}
.banner-item {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.banner-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .banner-wrapper {
    flex-direction: column;
    margin: 10px auto; /* Giữ căn giữa */
    padding: 0 10px; /* Giảm đệm trên di động */
    gap: 10px;
  }

  .banner-item {
    width: 100%;
  }

  .banner-item img {
    height: auto;
  }

  .banner-content {
    padding: 10px;
  }

  .banner-title {
    font-size: 18px;
  }

  .banner-price {
    font-size: 16px;
    color: #e74c3c;
  }
}

/*9-4*/
.testimonial-section {
  max-width: 1200px;
  margin: 5px auto;
  padding: 0 20px;
}

.testimonial-section .testimonial-header {
  background: linear-gradient(135deg, #8b0000 0%, #a52a2a 100%);
  color: white;
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 10px; /* Giảm margin-bottom để gọn hơn */
  box-shadow: 0 2px 10px rgba(139, 0, 0, 0.15);
}

.testimonial-section .testimonial-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.testimonial-section .testimonial-header p {
  margin: 8px auto 0;
  font-size: 14px;
  opacity: 0.9;
}

.testimonial-section .swiper {
  padding: 10px 0 40px;
  position: relative;
}

.testimonial-section .swiper-slide {
  height: auto;
  margin-right: 20px;
  border: 1px solid #dddddd0a;
  border-radius: 10px;
}

.testimonial-section .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 150px; /* Giảm chiều cao tối thiểu của thẻ */
  margin: 0;
  padding: 15px; /* Giảm padding từ 20px xuống 15px */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #f9f9f9; /* Thêm nền xám nhạt để phân biệt */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Thêm transition cho hiệu ứng */
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Tăng bóng đổ khi hover */
}

.testimonial-section .testimonial-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px; /* Giảm margin-bottom từ 12px xuống 8px */
}

.testimonial-section .avatar-container {
  position: relative;
  margin-right: 12px;
}

.testimonial-section .avatar {
  width: 45px; /* Giảm kích thước avatar từ 55px xuống 45px */
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8b0000;
  box-shadow: 0 2px 6px rgba(139, 0, 0, 0.15);
}

.testimonial-section .quote {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: rgba(139, 0, 0, 0.1);
  font-family: Georgia, serif;
}

.testimonial-section .user-info {
  flex: 1;
}

.testimonial-section .name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.testimonial-section .role {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}

.testimonial-section .stars {
  color: #ffd700;
  font-size: 14px;
  margin: 6px 0;
  display: flex;
  gap: 2px;
}

.testimonial-section .content {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin: 0;
  font-style: italic;
  position: relative;
  min-height: auto; /* Loại bỏ min-height để tự động theo nội dung */
  padding: 10px 0; /* Thêm padding trên/dưới 10px như yêu cầu */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Giới hạn 2 dòng vì nội dung thường chỉ có 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-section .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.testimonial-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 4px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: #8b0000;
  transform: scale(1.2);
  opacity: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .testimonial-section {
    margin: 20px auto;
    padding: 0;
  }

  .testimonial-section .testimonial-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Giảm margin-bottom trên mobile */
    flex-wrap: nowrap;
    align-content: stretch;
    flex-direction: column;
  }

  .testimonial-section .testimonial-header {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 0;
  }

  .testimonial-section .testimonial-header h2 {
    font-size: 15px;
  }

  .testimonial-section .testimonial-card {
    margin: 0;
    padding: 12px; /* Giảm padding trên mobile từ 16px xuống 12px */
    min-height: 140px; /* Giảm chiều cao tối thiểu trên mobile */
  }

  .testimonial-section .avatar {
    width: 40px; /* Giảm kích thước avatar trên mobile */
    height: 40px;
  }

  .testimonial-section .quote {
    font-size: 24px;
    top: 8px;
    right: 8px;
  }

  .testimonial-section .name {
    font-size: 14px; /* Giảm font-size trên mobile */
  }

  .testimonial-section .role {
    font-size: 12px;
  }

  .testimonial-section .stars {
    font-size: 13px;
  }

  .testimonial-section .content {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 8px;
    text-align: center;
    padding: 8px 0; /* Giảm padding trên mobile */
  }

  .testimonial-section .swiper {
    padding: 10px 0 20px;
    height: auto; /* Loại bỏ chiều cao cố định để tự động theo nội dung */
  }
}

/* Thanh cuộn cho toàn trang */
::-webkit-scrollbar {
  width: 10px; /* Chiều rộng thanh cuộn dọc */
  height: 10px; /* Chiều cao thanh cuộn ngang (nếu có) */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Màu nền track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ff4d4f; /* Màu của thanh trượt */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e63c3f; /* Màu khi hover */
}

@media (max-width: 991px) {
  header.header nav.fixed {
    top: 80px; /* Điều chỉnh top cho màn hình nhỏ */
  }
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px;
  margin-top: 5px;
}

.search-result h3 {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.featured-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.search-list .search-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.search-list .search-item:last-child {
  border-bottom: none;
}

.search-item {
  display: flex;
  align-items: center;
  padding: 8px;
}

.search-item-img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.search-item-info {
  flex: 1;
}

.search-item-info h4 {
  font-size: 13px;
  margin: 0 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.search-item-info h4 a {
  color: #333;
  text-decoration: none;
}

.search-item-info h4 a:hover {
  color: #ff4500;
}

.search-item-info .price-box {
  font-size: 13px;
}

.old-price-search {
  color: #999;
  text-decoration: line-through;
  margin-right: 5px;
}

.special-price-search {
  color: #f00;
  font-weight: bold;
}

.featured-products h3,
.search-products h3 {
  margin: 0;
}

.search-products {
  display: none;
}

.icon_label.flash-sale {
  display: flex;
  align-items: center;
  background: #ff4500; /* Nền đỏ giống nhãn flash sale hiện tại */
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.icon_label.flash-sale .flash-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #ffffff; /* Vàng cho tia sét */
  border-radius: 50%;
  margin-right: 4px;
}

.icon_label.flash-sale .flash-icon i.fa-bolt {
  color: #ff4500; /* Màu đỏ cho tia sét */
  font-size: 10px;
}

.icon_label.flash-sale .flash-quantity {
  font-weight: bold;
}

fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
  font-size: 16px;
  margin: 0 0 0 2px;
}

@media (max-width: 991px) {
  header.header nav.fixed {
    top: 80px; /* Điều chỉnh top cho màn hình nhỏ */
  }
}

/* Định dạng cho box giỏ hàng và hỗ trợ khách hàng */
header.header .header-main .header-right .top-cart-contain,
header.header .header-main .header-right .hotline_dathang {
  position: relative;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

/* Đảm bảo nội dung bên trong không bị ảnh hưởng */
header.header .header-main .header-right .top-cart-contain .mini-cart,
header.header .header-main .header-right .hotline_dathang .content_hotline {
  position: relative;
  z-index: 2;
}

/* Điều chỉnh cho màn hình nhỏ */
@media (max-width: 991px) {
  header.header .header-main .header-right .top-cart-contain,
  header.header .header-main .header-right .hotline_dathang {
    border-radius: 5px;
  }
}
header.header {
  position: relative;
  z-index: 999;
  background: #fff;
  transition: all 0.3s ease;
}

header.header .header-main {
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.header nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
  z-index: 99;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-main .logo-wrapper img {
  transition: all 0.3s ease;
}

.header-main .logo-wrapper:hover img {
  transform: scale(1.05);
}

.header_search .search-bar {
  transition: all 0.3s ease;
}

.header_search .search-bar:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-right .top-cart-contain,
.header-right .hotline_dathang {
  transition: all 0.3s ease;
}

.header-right .top-cart-contain:hover,
.header-right .hotline_dathang:hover {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  header.header nav.fixed {
    position: static;
    animation: none;
    box-shadow: none;
  }

  .header-main {
    padding: 10px 0;
  }
}

.coupon-header {
  text-align: center;
}
.coupon-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.header-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  margin: 10px auto;
  border-radius: 2px;
}

.coupon-list {
  max-width: 100%;
  margin: 0 auto;
}

.coupon-list .slick-slide {
  padding: 4px;
}

.coupon-list .slick-dots {
  margin-top: 20px;
}

.coupon-list .slick-dots li button:before {
  font-size: 12px;
  color: #ff416c;
  opacity: 0.5;
}

.coupon-list .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .coupon-section {
    padding: 1px 0;
  }

  .coupon-header h2 {
    font-size: 24px;
  }

  .coupon-list .slick-slide {
    padding: 5px;
  }
}
.coupon-code .code-text {
  display: inline-block;
  max-width: 100px;
  /* tương đương khoảng 8 ký tự */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.coupon-item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  font-family: "Roboto", sans-serif;
}

.coupon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.coupon-content {
  /* padding: 20px; */
  text-align: center;
}

.coupon-top {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  /* padding: 15px; */
  border-radius: 10px 10px 0 0;
}

.coupon-discount {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.coupon-label {
  font-size: 14px;
  opacity: 0.9;
}

.coupon-code {
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
}

.coupon-code .code-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  background: #f1f1f1;
  padding: 8px 15px;
  border-radius: 35px;
  border: 2px solid #e3e3e3;
}

.coupon-code .copy-btn {
  background: #1069ef;
  color: #fff;
  border: none;
  padding: 3px 9px;
  border-radius: 21px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.coupon-code .copy-btn:hover {
  background: #e03a1a;
}

.coupon-code .copy-btn:active {
  transform: scale(0.95);
}

.coupon-expiry {
  font-size: 14px;
  color: #666;
}

.coupon-expiry i {
  margin-right: 5px;
  color: #ff4b2b;
}

/* Copied animation */
.coupon-code .copy-btn.copied::after {
  content: "Đã sao chép!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #28a745;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  animation: fadeInOut 1.5s ease forwards;
}

.coupon-section {
}

.coupon-section .container {
  max-width: 1200px;
  /* Khớp với banner và feature-container */
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  /* Đệm nhất quán */
  box-sizing: border-box;
}

.coupon-header {
  text-align: center;
}

.coupon-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.coupon-list {
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .coupon-section .container {
    padding: 0 10px;
    /* Khớp với đệm của banner trên di động */
  }

  .coupon-header h2 {
    font-size: 24px;
  }

  .coupon-list .slick-slide {
    padding: 5px;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  80% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coupon-item {
    margin: 0 5px;
  }

  .coupon-discount {
    font-size: 20px;
  }

  .coupon-code .code-text {
    font-size: 16px;
    padding: 6px 12px;
  }

  .coupon-code .copy-btn {
    padding: 4px 12px;
    font-size: 19px;
  }
}
.details-product .product-tab .product-well .ba-text-fpt {
  height: 150px;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ba-text-fpt.expanded {
  height: auto;
}

.show-more {
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.show-more::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ba-text-fpt.expanded + .show-more::before {
  opacity: 0;
}

.btn-show-more {
  background: #fff;
  border: 2px solid #2196f3;
  color: #2196f3;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.btn-show-more:hover {
  background: #2196f3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.btn-show-more:active {
  transform: translateY(0);
}

.btn-show-more i {
  transition: transform 0.3s ease;
}

.btn-show-more:hover i {
  transform: translateY(2px);
}

.less-text {
  display: none;
}

.ba-text-fpt.expanded + .show-more .more-text {
  display: none;
}

.ba-text-fpt.expanded + .show-more .less-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-show-more {
  animation: fadeIn 0.5s ease;
}
.flash-sale-section {
  /* border: 2px solid #ff4b2b; */
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px auto;
  max-width: 1155px;
}

.flash-sale-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.flash-sale-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.flash-sale-image .label-sale:empty,
.flash-sale-image .label-sale:empty::before,
.flash-sale-image .label-sale:empty::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.flash-sale-image .label-sale::before,
.flash-sale-image .label-sale::after {
  content: none !important;
  display: none !important;
}

/* Adding a folded effect using pseudo-elements */
.flash-sale-image .label-sale::before,
.flash-sale-image .label-sale::after {
  content: "";
  position: absolute;
  border: 3px solid transparent;
}

.flash-sale-image .label-sale::before {
  top: 0;
  left: -3px;
  border-top-color: rgba(255, 255, 255, 0.3);
  /* Light fold effect */
  border-right-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
}

.flash-sale-image .label-sale::after {
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  /* Shadow under the fold */
  transform: perspective(10px) rotateX(10deg);
  /* 3D fold effect */
}

.flash-sale-image .label-sale:hover {
  transform: rotate(-45deg) scale(1.05);
  /* Slight scale-up on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  /* Enhanced shadow on hover */
}

.flash-sale-image .label-sale:empty,
.flash-sale-image .label-sale:empty::before,
.flash-sale-image .label-sale:empty::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.flash-sale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 15px;
}

.flash-sale-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* .flash-sale-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 24px;
  background: #ff4b2b;
  border-radius: 2px;
} */

.flash-sale-timer {
  margin: 9px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.flash-sale-timer .timer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
}

.flash-sale-timer .time_countdown {
  background: #ff4b2b;
  color: #fff;
  padding: 3px 8px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flash-sale-timer .text_count {
  color: #ff4b2b;
  font-size: 14px;
  font-weight: 600;
}

.flash-sale-list {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.flash-sale-list .slick-slide {
  padding: 10px;
  transition: transform 0.3s ease;
}

.flash-sale-list .slick-dots {
  margin-top: 20px;
}

.flash-sale-list .slick-dots li button:before {
  font-size: 12px;
  color: #ff4b2b;
  opacity: 0.5;
}

.flash-sale-list .slick-dots li.slick-active button:before {
  opacity: 1;
}

.flash-sale-item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Roboto", sans-serif;
  border: 1px solid #e0e0e0;
}

.flash-sale-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: #ff4b2b;
}

.flash-sale-content {
  display: flex;
  flex-direction: column;
}

.flash-sale-image {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}

.flash-sale-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.flash-sale-item:hover .flash-sale-image img {
  opacity: 0.9;
}

.flash-sale-image .label-sale {
  position: absolute;
  top: 7px;
  left: -41px;
  width: 120px;
  text-align: center;
  background: linear-gradient(135deg, #ff4b2b 0%, #e03a1a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  transform: rotate(-44deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 1;
}

.flash-sale-image .flash-sale-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.flash-sale-item:hover .flash-sale-actions {
  opacity: 1;
}

.flash-sale-actions button {
  background: #ff4b2b;
  color: #fff;
  border: none;
  padding: 9px 12px;
  border-radius: 5px;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flash-sale-actions button:hover {
  background: #e03a1a;
}

.flash-sale-actions button:active {
  transform: scale(0.95);
}

.flash-sale-info {
  padding: 10px;
  text-align: center;
}

.title-product {
  margin: 0 0 10px;
  height: 40px;
  overflow: hidden;
}

.title-product a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.title-product a:hover {
  color: #ff4b2b;
}

.flash-sale-price {
}

.flash-sale-price .price-new {
  font-size: 14px;
  font-weight: 700;
  color: #ff4b2b;
  margin-right: 10px;
}

.flash-sale-price .price-old {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

@media (max-width: 1200px) {
  .flash-sale-section {
    max-width: 100%;
    margin: 20px 15px;
  }

  .flash-sale-section .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .flash-sale-section {
    border-width: 1px;
    border-radius: 10px;
    margin: 10px 15px;
  }

  .flash-sale-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .flash-sale-header h2 {
    font-size: 24px;
    padding-left: 66px;
  }

  .flash-sale-timer {
    font-size: 14px;
    padding: 6px 12px;
  }

  .flash-sale-timer .time_countdown {
    padding: 4px 6px;
    font-size: 12px;
    min-width: 25px;
  }

  .flash-sale-list .slick-slide {
    padding: 5px;
  }

  .flash-sale-item {
    margin: 0 5px;
    border-radius: 8px;
  }

  .flash-sale-info {
    padding: 8px;
  }

  .title-product a {
    font-size: 13px;
  }

  .flash-sale-price .price-new {
    font-size: 19px;
  }
  .products-view-grid .product-item .product-item-container .icon_label {
    left: 129px;
  }
  .flash-sale-price .price-old {
    font-size: 12px;
  }

  .flash-sale-actions button {
    padding: 6px 12px;
    font-size: 13px;
  }
}

#flash-sale-bell {
  position: fixed;
  bottom: 62px;
  left: 30px;
  z-index: 10001;
}

#bell-icon {
  background: #ff4b2b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

#bell-icon i {
  color: #fff;
  font-size: 22px;
}

#flash-sale-popup {
  display: none;
  position: absolute;
  left: 27px;
  bottom: 23px;
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.flash-sale-bell-header {
  background: #ff4b2b;
  color: #fff;
  font-weight: bold;
  padding: 1px 8px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin: 0;
  position: relative;
}

.flash-sale-bell-header-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#close-flash-sale {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#flash-sale-content {
  padding: 8px;
  display: flex;
  align-items: center;
}

.bell-product-image-container {
  flex: 0 0 60px;
  position: relative;
}

.bell-product-image-container img {
  max-width: 180px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.bell-discount-badge {
  position: absolute;
  top: -7px;
  right: -10px;
  background: #ff4b2b;
  color: #fff;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 56px;
}

.bell-product-info {
  flex: 1;
  margin-left: 8px;
}

.bell-product-title {
  font-weight: bold;
  font-size: 13px;
  color: #222;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
  line-height: 1.2;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bell-product-new-price {
  color: #ff4b2b;
  font-size: 16px;
  font-weight: bold;
}

.bell-product-old-price {
  margin: 4px 0 2px 0;
  color: #999;
  text-decoration: line-through;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  #flash-sale-bell {
    left: 10px;
    bottom: 70px;
  }
  #flash-sale-popup {
    min-width: 180px;
    max-width: 240px;
  }
  .bell-discount-badge {
    position: absolute;
    top: -2px;
    right: 1px;
    background: #ff4b2b;
    color: #fff;
    font-size: 7px;
    padding: 2px 2px;
    border-radius: 6px;
  }
  .bell-product-image-container img {
    max-width: 60px;
    max-height: 60px;
  }
  .bell-product-title {
    font-size: 12px;
  }
  .bell-product-new-price {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  #flash-sale-bell {
    left: 5px;
    bottom: 60px;
  }
  #flash-sale-popup {
    min-width: 150px;
    max-width: 180px;
    left: 27px;
  }
  .flash-sale-bell-header {
    font-size: 10px;
    padding: 1px 5px;
  }
  #close-flash-sale {
    font-size: 12px;
  }
  #flash-sale-content {
    padding: 4px;
  }
  .bell-product-image-container {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
  .bell-product-image-container img {
    width: 100%;
    max-width: 100%;
    max-height: 70px;
    object-fit: cover;
    border-radius: 6px;
  }
  .bell-product-info {
    margin-left: 8px;
  }
  .bell-product-title {
    font-size: 10px;
    max-width: 80px;
  }
  .bell-product-new-price {
    font-size: 12px;
  }
  .bell-product-old-price {
    font-size: 10px;
  }
}
.cart-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
body {
  background: #ffffffff !important;
}
.cart-item-info {
  padding: 10px;
}
.cart-header {
  margin: 10px 0 0 20px;
  border-bottom: 1px solid #eee;
}
.cart-header h1 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
}
.cart-count {
  color: #666;
  font-size: 16px;
}
.cart-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin: 0 0 10px 0;
}
.cart-items-section {
  background: #fff;
  border-radius: 4px;
}
.cart-summary-section {
  position: sticky;
  top: 20px;
  height: fit-content;
}
.cart-summary {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.cart-summary h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
}
.summary-item.total {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.cart-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-checkout {
  background: #ff5722;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-checkout:hover {
  background: #cc8431;
}
.btn-continue {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e5e7eb;
  padding: 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-continue:hover {
  background: #f9fafb;
}
@media (max-width: 992px) {
  .cart-content {
    grid-template-columns: 1fr;
  }
  .cart-summary-section {
    position: static;
  }
  .cart-wrapper {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .cart-container {
    padding: 20px 0;
  }
  .cart-header h1 {
    font-size: 24px;
    margin: 0;
    text-align: center;
  }
  .cart-summary {
    padding: 20px;
  }
}
.details-product .product-top .title-head {
  text-align: center;
  /* text-transform: uppercase; */
}

.breadcrumb {
  padding: 0;
}

.color-options {
  margin-bottom: 8px;
}

.color-options label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
}

.color-swatches {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.color-swatch {
  position: relative;
}

.color-swatch input[type="radio"] {
  display: none;
}

.color-swatch label {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
}

.color-swatch input[type="radio"]:checked + label {
  border-color: #333;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #333;
  transform: scale(1.05);
}

.color-swatch label:hover {
  transform: scale(1.05);
  border-color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.size-options {
  margin-bottom: 20px;
}

.size-options label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: start;
  margin: 0;
  padding: 2px 0px 2px 0;
}

.size-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-swatch {
  position: relative;
}

.size-swatch input[type="radio"] {
  display: none;
}

.size-swatch label {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60px;
  text-align: center;
  background: #fff;
}

.size-swatch input[type="radio"]:checked + label {
  border-color: #333;
  background-color: #f5f5f5;
}

.size-swatch label:hover {
  border-color: #333;
}

.size-swatch .crossed-out,
.size-swatch .img-check {
  display: none;
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.support-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.support-container > div {
  flex: 1;
}

.support-container a {
  display: block;
  text-align: center;
  padding: 3px 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.support-container a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.zalo_support a {
  background: #0068ff;
}

.hotline_support a {
  background-color: #ef4b4c;
}

.btn_buy {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #2196f3, #1976d2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.btn_buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
  background: linear-gradient(45deg, #1976d2, #1565c0);
}

.btn_buy:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.support-container {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.support-container a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hotline_support a {
  background: linear-gradient(45deg, #ff4b4b, #e53935);
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.2);
}

.hotline_support a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
  background: linear-gradient(45deg, #e53935, #d32f2f);
}

.zalo_support a {
  background: linear-gradient(45deg, #0068ff, #0052cc);
  box-shadow: 0 4px 15px rgba(0, 104, 255, 0.2);
}

.zalo_support a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 104, 255, 0.3);
  background: linear-gradient(45deg, #0052cc, #0047b3);
}

.support-container a i {
  margin-right: 8px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .support-container {
    flex-direction: column;
    gap: 10px;
  }

  .support-container a {
    width: 100%;
    padding: 10px 15px;
  }

  .options-row {
    /* flex-direction: column !important; */
    align-items: flex-start !important;
  }

  .size-options {
    text-align: left !important;
    margin-top: 5px;
  }
}

.swatch-element {
  display: block;
}

body,
.product,
.details-product,
.details-pro,
.form-product,
.product-bottom {
  background: #fff;
}

.bread-crumb {
  background: #f8f9fa;
  padding: 1px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.flashsale__label {
  text-align: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #dee2e6;
}

.breadcrumb a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #2196f3;
}

.breadcrumb strong {
  color: #212529;
  font-weight: 500;
}

.details-product .product-tab .product-well {
  border: 1px solid #d6cece;
}

.title-head {
  font-size: 28px;
  font-weight: 600;
  color: #212529;
  margin: 0;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
}

.inventory_quantity {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #e9ecef;
}

.inventory_quantity span {
  font-size: 14px;
  color: #495057;
}

.a-stock {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-box {
  margin: 20px 0;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.special-price {
  font-size: 24px;
  font-weight: 600;
  color: #dc3545;
  margin-bottom: 5px;
}

.old-price {
  font-size: 16px;
  color: #6c757d;
}

.old-price del {
  text-decoration: line-through;
}

.product-image-block {
  margin-bottom: 30px;
}

.large-image {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.large-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.large-image:hover img {
  transform: scale(1.02);
}

.thumbnail-product {
  margin-top: 20px;
}

.thumbnail-product .swiper-slide {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-product .swiper-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-product img {
  width: 100%;
  height: auto;
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.owl-prev,
.owl-next {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.owl-prev:hover,
.owl-next:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.owl-prev i,
.owl-next i {
  font-size: 18px;
  color: #495057;
}

@media screen and (max-width: 768px) {
  .support-container {
    gap: 8px;
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
    flex-direction: row;
  }
}

.details-pro {
  padding: 10px;
}

.inventory_quantity {
  margin: 0;
}

.price-box {
  margin: 15px 0;
  background: #fff;
}

.color-options {
  margin-bottom: 10px;
}

.color-swatches {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.n-sd.swatch-element label {
  height: 20px;
  /* border-radius: 50%; */
  border: 1px solid #ddd;
  width: fit-content;
}

.size-options {
  margin-bottom: 10px;
}

.size-swatches {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.size-swatch label {
  padding: 4px 8px;
  min-width: 30px;
  font-size: 11px;
}

.support-container {
  gap: 8px;
  margin-top: 10px;
}

.support-container a {
  padding: 8px 12px;
  font-size: 13px;
}

.page-login {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.title-head {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.text-center span {
  font-size: 19px;
  color: #7f8c8d;
}

.form-group label {
  font-weight: 500;
  color: #34495e;
  margin-bottom: 5px;
}

.form-control {
  border: 1px solid #ccd6dd;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  background-color: #f9fbfc;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #3498db;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.btn-style.btn-blues {
  background-color: #3498db;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-style.btn-blues:hover {
  background-color: #2980b9;
}

.btn-link-style {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-link-style:hover {
  text-decoration: underline;
  color: #1d6fa5;
}

.text-center a {
  margin: 0 8px;
}

@media (max-width: 768px) {
  .page-login {
    padding: 20px;
  }

  .title-head {
    font-size: 24px;
  }
}

.mini-cart-popup .mini-cart-remove:hover {
  color: #b71c1c;
}
.mini-cart-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mini-cart-remove {
  margin-top: 30px;
  color: red;
  cursor: pointer;
  margin-left: 10px;
  font-size: 18px;
}

.mini-cart-remove i {
  font-size: 20px;
}
