/* media size */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.btn:active {
  transform: translateY(1px) !important;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

@media (min-width: 320px) and (max-width: 479px) {
  .btn {
    font-size: 12px;
  }
}

.navbar-toggler:focus {
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

a {
  text-decoration: none !important;
}

::-webkit-scrollbar {
  display: none;
}

@keyframes blink {
  0% {
    opacity: 0.1;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  95% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.1;
  }
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.rotate {
  animation: rotate 5s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: black;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-slider .slick-prev:focus,
.slick-slider .slick-next:focus {
  outline: none;
}

.slick-slider .slick-prev.slick-disabled:before,
.slick-slider .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-slider .slick-prev {
  left: -25px;
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
  transform: translateY(-40%);
}

@media (min-width: 320px) and (max-width: 479px) {
  .slick-slider .slick-prev {
    left: -5px;
    width: 30px;
    height: 30px;
  }
}

.slick-slider .slick-next {
  right: -25px;
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
  transform: translateY(-40%);
}

@media (min-width: 320px) and (max-width: 479px) {
  .slick-slider .slick-next {
    right: -5px;
    width: 30px;
    height: 30px;
  }
}

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

.cur-poiter {
  cursor: pointer;
}

.back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #A4CC52;
  background: transparent;
  border: 0;
}

body {
  background: #FBF7F0;
  color: #070707;
  font-size: 16px;
}

@media (min-width: 320px) and (max-width: 479px) {
  body {
    font-size: 12px;
  }
}

.logo {
  height: 45px;
  padding-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .logo {
    height: 35px;
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    height: 35px;
    opacity: 0;
  }
}

.nav-menu .nav-item .nav-link {
  color: #ffffff;
}

@media screen and (max-width: 480px) {
  .nav-menu .nav-item .nav-link {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .nav-menu .nav-item .nav-link {
    font-size: 20px;
  }
}

.nav-menu .nav-item .active,
.nav-menu .nav-item .nav-link:hover {
  color: #A4CC52;
  position: relative;
}

.nav-menu .nav-item .active:before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  height: 4px;
  width: 70%;
  background: #A4CC52;
  transform: translateX(-50%);
}

@media screen and (max-width: 480px) {
  .nav-menu .nav-item .active:before {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .nav-menu .nav-item .active:before {
    display: none;
  }
}

.btn-order {
  background: #F9BF4A;
  color: #070707;
  border-radius: 0;
}

.btn-order:hover {
  background: rgba(249, 191, 74, 0.8);
}

.btn-login {
  background: #8EC63F;
  color: #ffffff;
  border-radius: 0;
}

.btn-login:hover {
  background: #8EC63F;
}

.btn-cart {
  background: #8EC63F;
  color: #070707;
  border-radius: 0;
}

.btn-cart:hover {
  background: rgba(142, 198, 63, 0.8);
}

.menu-line {
  border-bottom: 1px solid #F7F4E0;
}

@media screen and (max-width: 480px) {
  .menu-line {
    border: 0;
  }
}

@media screen and (max-width: 1024px) {
  .menu-line {
    border: 0;
  }
}

.title {
  font-size: 40px;
  color: #007236;
}

@media screen and (max-width: 480px) {
  .title {
    font-size: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .title {
    font-size: 25px;
  }
}

.input-group {
  background: #035A2C;
  border-radius: 10px;
}

.input-group .form-control {
  background: transparent;
  color: #ffffff;
  border: none;
}

.input-group .form-control::placeholder {
  color: #ffffff;
}

.space-y {
  padding-bottom: 100px;
  padding-top: 100px;
}

@media screen and (max-width: 480px) {
  .space-y {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

/* @media screen and (max-width: 1024px) {
  .space-y {
    padding-bottom: 50px;
    padding-top: 50px;
  }
} */

.offcanvas {
  width: 80% !important;
}

header .navbar {
  background: #018ABE;
}

@media (min-width: 320px) and (max-width: 479px) {
  header .offcanvas {
    background: #018ABE;
  }
}

section .banner {
  position: relative;
  background: #FBF7F0;
}

section .banner .drone {
  position: absolute;
  top: 13%;
  right: 0;
  height: 200px;
}

@media screen and (max-width: 480px) {
  section .banner .drone {
    top: 10%;
    height: 80px;
    right: 50%;
  }

  section .banner .drone img {
    transform: translateX(50%);
  }
}

@media screen and (max-width: 1024px) {
  section .banner .drone {
    top: 10%;
    height: 80px;
    right: 50%;
  }

  section .banner .drone img {
    transform: translateX(50%);
  }
}

section .banner .carousel-indicators [data-bs-target] {
  background-color: #707070;
}

section .about-us {
  background: #FBF7F0;
  padding-top: 50px;
}

section .about-us .benefit-block {
  border: 1px solid #D6D6D6;
  border-radius: 15px;
}

section .about-us .benefit-block:hover {
  background: #A4CC52;
}

section .about-us .benefit-block .bene-img {
  height: 50px;
}

section .about-us .benefit-block .num-plus {
  font-size: 40px;
}

section .task {
  background: white;
}

section .task .task-block {
  position: relative;
  overflow: hidden;
  height: 400px;
}

@media (min-width: 320px) and (max-width: 479px) {
  section .task .task-block {
    height: 250px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  section .task .task-block {
    height: 300px;
  }
}

section .task .task-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section .task .task-block .mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #033018 70%);
  border-radius: 15px;
  transition: 0.5s ease-in-out;
}

@media (min-width: 320px) and (max-width: 479px) {
  section .task .task-block .mark {
    background: linear-gradient(to bottom, transparent, rgba(3, 48, 24, 0.8) 30%);
  }
}

section .task .task-block .mark .content {
  color: #ffffff;
  height: 45%;
}

@media screen and (max-width: 480px) {
  section .task .task-block .mark .content {
    height: 90%;
  }
}

@media screen and (max-width: 1024px) {
  section .task .task-block .mark .content {
    height: 90%;
  }
}

section .task .task-block .mark-hvr {
  background: rgba(0, 114, 54, 0.8);
  position: absolute;
  border-radius: 15px;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
  color: #ffffff;
  font-size: 18px;
}

section .task .task-block:hover .mark {
  top: -100%;
}

section .task .task-block:hover .mark-hvr {
  top: 0;
}

section .partner .partner-title {
  font-size: 20px;
  position: relative;
}

section .partner .partner-title span {
  position: relative;
  z-index: 3;
  background: #ffffff;
}

section .partner .partner-title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #707070;
  z-index: 1;
}

section .partner .partner-img {
  height: 100px;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 320px) and (max-width: 479px) {
  section .partner .partner-img {
    height: 50px;
  }
}

section .value {
  background: white;
}

section .value .value-block {
  background: #1C7534;
  color: white;
  border-radius: 15px;
  height: 100%;
}

section .value .value-block .value-img {
  width: 80px;
}

section .vision .carousel .carousel-control-next,
section .vision .carousel .carousel-control-prev {
  height: 45px;
  width: 45px;
}

section .vision .carousel .carousel-control-next {
  bottom: 0;
  top: auto;
}

section .vision .carousel .carousel-control-prev {
  bottom: 0;
  top: auto;
  right: 40px;
  left: auto;
}

section .mission {
  background: url(../images/bg-vision.png) no-repeat center center;
  background-size: 100% 100%;
}

section .contact {
  background: #007236;
  color: white;
}

section .contact .title-contact {
  font-size: 40px;
  color: #ffffff;
}

@media (min-width: 320px) and (max-width: 479px) {
  section .contact .title-contact {
    font-size: 25px;
  }
}

section .slogan {
  background: #1C7534 url(../images/slogan.png) no-repeat center center;
  background-size: 100% 100%;
  color: #263C28;
}

footer {
  background: #1C7534;
  color: white;
}

footer .line {
  border-bottom: 1px solid #70C36C;
}

footer .btn-social {
  height: 40px;
  aspect-ratio: 1/1;
  background: #F9BF4A;
  color: #070707;
  border-radius: 50%;
}

footer .btn-social:hover {
  background: rgba(249, 191, 74, 0.8);
  color: #070707;
}

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


/* ------------ PRODUCT */
.product-item {
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 30px;
  min-height: 410px;
  padding-bottom: 55px;
  background: #f8f8f8;
  margin-bottom: 30px;
}

.product-item:hover {
  box-shadow: hsl(0deg 0% 0% / 40%) 0 3px 6px;
}

.product-item .title {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 0px;
  min-height: 50px;
}

.product-item .title a {
  color: #0f1111;
  text-overflow: ellipsis;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
}

.product-item .content-product {
  padding: 10px 20px;
}

.product-item .thumb {
  height: 310px;
}

@media(max-width: 767px) {
  .product-item .thumb {
    height: 450px;
  }
}

.product-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item .price-bottom {
  position: relative;
  margin-bottom: 10px;
}

.product-item .price-bottom .list-icon {
  display: inline-block;
  float: right;
  padding-top: 7px;
}

.product-item .price-bottom .list-icon a {
  display: inline-block;
}

.product-item .price-bottom .list-icon a img {
  height: 25px;
  border-radius: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product-item .box-qulity {
  margin-bottom: 10px;
  font-size: 14px;
}

.product-item .price-bottom .list-icon a:hover img {
  background: #fff501;
}

.product-item .price-bottom .price-text {
  display: inline-block;
  font-size: 20px;
  position: relative;
}

.product-item .price-bottom .price-text span {
  font-weight: inherit;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 7px;
}

.product-item .price-bottom .list-star img {
  height: 18px;
}

.btn-buy-custom {
  min-width: 110px;
  border-radius: 100px;
  border: 0;
  padding: 8px 13px;
  background: #017236;
  color: #fff;
}

.btn-buy-custom img {
  height: 16px;
  vertical-align: sub;
  border-radius: 100px;
}

.btn-buy-custom:hover,
.btn-buy-custom:focus {
  color: #fff;
  background: #009a48;
}

.block-product-padd {
  padding-top: 15px;
}

.product-item .link-buy-botom {
  position: absolute;
  width: 100%;
  padding: 0 20px;
  bottom: 20px;
}

.product-item .link-buy-botom i,
.product-item .link-buy-botom svg {
  height: 15px;
}

.product-item a.link-eye {
  color: #017136;
}

.product-item .desc {
  text-overflow: ellipsis;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  font-size: 14px;
  min-height: 45px;
  margin-bottom: 10px;
}

@media(max-width: 767px) {
  #slick-product {
    padding-bottom: 30px;
  }

  .product-item {
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width: 600px) {
  .product-item .price-bottom .price-text {
    font-size: 16px;
    line-height: 32px;
  }
}

/* ------------ CONTROL-NUMBER */
.control-number.number {
  display: inline-block;
  border: 1px solid #6d757d;
  width: 105px;
  font-size: 16px;
  border-radius: 0px;
  overflow: hidden;
  height: 30px;
}

.control-number.number .minus,
.control-number .plus {
  padding: 0;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 25px;
  height: 30px;
  border: 0;
  border-radius: 0;
  line-height: 30px;
}

.control-number.number .minus:hover,
.control-number .plus:hover {
  background: #EAE9E9;
}

.control-number.number .minus {
  border-right: 1px solid #6d757d;
  font-size: 20px;
  float: left;
}

.control-number .plus {
  border-left: 1px solid #6d757d;
  float: right;
}

.control-number.number input {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  height: 30px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  width: 50px;
}

.control-number.number input:focus {
  box-shadow: none;
  outline: none;
}

.control-number.number .minus:hover,
.control-number .plus:hover {
  background: #e6e6e6;
}

/* ------- PRODUCT DETAIL PAGE / SITE -------------------------------------------------------- */
.block-product-detail {
  padding: 40px 0;
}

.product-d-desc-tabs .bg-nav {
  background: #eff5f5;
  min-height: 82px;
  padding-top: 30px;
}

.product-d-desc-tabs .bg-nav .nav-pills .nav-link {
  color: #313131;
  font-weight: bold;
  font-size: 22px;
  padding: 0;
  margin-right: 35px;
}

.product-d-desc-tabs .bg-nav .nav-pills .nav-link.active,
.product-d-desc-tabs .bg-nav .nav-pills .show>.nav-link {
  background: transparent;
  color: #0163D2;
}

.product-d-desc-tabs .tab-content {
  font-size: 14px;
}

.product-d-desc-tabs .tab-content .tab-pane {
  padding-top: 20px;
  padding-bottom: 30px;
}

.product-detail-page {
  position: relative;
  min-height: 495px;
  padding-left: 580px;
}

.product-d-shipper {
  position: absolute;
  right: 0;
  border-left: 1px solid #dfdfdf;
  width: 228px;
  padding-left: 20px;
  height: 100%;
  top: 0px;
}

.product-d-shipper .block-ship .title {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-d-shipper .block-ship .desc {
  font-size: 13px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.product-d-shipper .block-ship .price-bottom {
  background: #f5f5f5;
  border-radius: 4px;
  position: relative;
  padding-left: 37px;
  min-height: 32px;
  color: #10a121;
  font-weight: bold;
  padding-top: 8px;
  margin-bottom: 15px;
}

.product-d-shipper .block-ship .price-bottom .icon {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 37px;
  text-align: center;
  left: 0;
}

.product-d-shipper .block-ship .price-bottom span {
  color: #de0a28;
  font-weight: 600;
}

.product-d-shipper .product-d-price-bottom .price-old {
  font-size: 14px;
  color: #9d9d9d;
  text-decoration: line-through;
}

.product-d-shipper .product-d-price-bottom .price-new {
  font-size: 26px;
  font-weight: bold;
  color: #D9160D;
}

.list-product-tags {
  min-height: 136px;
}

.product-tags {
  position: relative;
  margin-bottom: 15px;
  font-weight: bold;
}

.product-d-size .btn {
  background: #ebebeb;
  width: 36px;
  height: 26px;
  line-height: 26px;
  color: #777777;
  padding: 0;
  border-radius: 4px;
}

.product-d-size .btn:hover,
.product-d-size .btn.active {
  background: #de1855;
  color: #fff;
}

.product-d-color select.form-control {
  height: 26px;
  background: #fbcece;
  border: 0;
  color: #de1855;
  font-weight: 600;
}

.product-d-shipper .product-d-price-bottom {
  margin-bottom: 10px;
}

.product-detail-page .product-d-info {}

.product-detail-page .product-d-info .title-prod {
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.product-detail-page .product-d-info .title-prod h1.custom-title-pro {
  color: #467b21;
  font-size: 36px;
}

.pr-desc {
  padding-left: 30px;
}

.pr-desc .item-sm {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #467A21;
  font-weight: bold;
}

.pr-desc .item-sm .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.pr-desc .item-sm .icon img {
  max-width: 25px;
}

.pr-buy {
  position: relative;
  min-height: 40px;
}

.pr-buy .pr-price {
  display: inline-block;
  color: #000;
  font-weight: bold;
  font-size: 24px;
}

.pr-buy .pr-price span {
  font-size: 14px;
}

.pr-buy .pr-price strong span {
  font-size: 18px;
}

.pr-buy .pr-link {
  display: inline-block;
  float: right;
  position: relative;
  height: 38px;
  min-width: 322px;
  background: url(../images/bg/link-gradient-icon-2.png)no-repeat center center;
  background-size: 100%;
  color: #fff;
  font-weight: bold;
  line-height: 38px;
  text-align: center;
}

.pr-buy .pr-link img {
  height: 24px;
  vertical-align: sub;
  padding-left: 10px;
  padding-right: 10px;
}

.pr-buy .pr-link span {
  font-size: 18px;
}

.pr-buy .pr-link .btn {
  width: 100%;
  display: block;
  color: #fff;
  font-style: initial;
  padding-left: 37px;
  position: relative;
  height: 30px;
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

.pr-buy .pr-link .btn .icon {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.pr-buy .pr-link .btn .icon img {
  width: 27px;
  vertical-align: top;
}

.pr-buy .pr-link .form-control {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 55px;
  padding: 0;
  border: 0;
  height: 30px;
}

.check-list-circle {
  font-size: 14px;
  color: #3b3b3b;
  margin-bottom: 10px;
}

.check-list-circle .item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

.check-list-circle .item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  background: #3b3b3b;
  border-radius: 100%;
  top: 6px;
}

.text-note {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.block-add-address-sm {
  position: relative;
  padding-left: 92px;
  min-height: 70px;
  background: #EFFBFF;
  border: 1px solid #0623BF;
  border-radius: 4px;
  font-size: 14px;
  padding-top: 13px;
  padding-right: 10px;
}

.block-add-address-sm .icon {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 72px;
  left: 0;
  text-align: center;
}

.product-detail-page .product-d-slider .block-slider-product-detail {
  background: -moz-linear-gradient(0deg, rgba(70, 122, 33, 1) 0%, rgba(141, 198, 63, 1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(70, 122, 33, 1) 0%, rgba(141, 198, 63, 1) 100%);
  background: -o-linear-gradient(0deg, rgba(70, 122, 33, 1) 0%, rgba(141, 198, 63, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#467A21', endColorstr='#8DC63F', GradientType=1);
  background: -ms-linear-gradient(0deg, rgba(70, 122, 33, 1) 0%, rgba(141, 198, 63, 1) 100%);
  background: linear-gradient(0deg, rgba(70, 122, 33, 1) 0%, rgba(141, 198, 63, 1) 100%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  left: 0;
  top: 0;
  height: 425px;
  width: 530px;
  padding: 15px 15px 15px 120px;
}

.block-slider-product-detail {
  position: absolute;
  left: 0;
  top: 0;
  width: 530px;
  padding: 0;
}

.block-slider-product-detail .nav-left {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 90px;
}

.block-slider-product-detail .nav-left .item {
  margin-bottom: 10px;
}

.block-slider-product-detail .nav-left .item img {
  width: 90px;
  height: 90px;
}

.block-slider-product-detail .nav-left .item.slick-current img {
  border-color: #ef0f3e;
}

.block-slider-product-detail .nav-left .nav-block {
  height: 42px;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  text-align: center;
  line-height: 42px;
  vertical-align: middle;
}

.block-slider-product-detail .nav-left .nav-block a {
  border-right: 1px solid #d4d4d4;
  line-height: 41px;
  display: inline-block !important;
  float: left;
  width: 50%;
}

.block-slider-product-detail .nav-left .nav-block a:last-child {
  border: 0px;
}

.block-slider-product-detail .content-slider {
  overflow: hidden;
}

.block-slider-product-detail .content-slider .slick-slide img {
  width: 395px;
  height: 395px;
}

@media(max-width: 992px) {
  .product-detail-page {
    padding: 0;
  }

  .product-detail-page .product-d-slider .block-slider-product-detail {
    position: relative;
    margin: auto auto 40px;
  }

  .product-detail-page .product-d-info {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .product-d-shipper {
    position: static;
    width: 100%;
    border: 0;
    padding-left: 0;
  }

  .product-d-shipper .product-d-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    margin: 0 -5px;
  }

  .product-d-shipper .product-d-btn .btn {
    margin: 0 5px;
  }

  .product-detail-page .product-d-info .title {
    text-align: center;
  }

  .pr-desc {
    padding-left: 0;
  }

  .pr-buy {
    margin-left: 0;
  }
}

@media(max-width: 767px) {
  .product-d-slider {
    overflow: hidden;
  }

  .block-slider-product-detail {
    padding-left: 90px;
  }

  .block-slider-product-detail .content-slider .slick-slide img {
    border: 0;
  }
}

@media(max-width: 600px) {
  .product-detail-page .product-d-slider .block-slider-product-detail {
    padding: 5px 5px 5px 70px;
    height: inherit;
    width: inherit;
  }

  .block-slider-product-detail .nav-left {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 60px;
  }

  .block-slider-product-detail .nav-left .item {
    margin-bottom: 5px;
  }

  .block-slider-product-detail .nav-left .item img {
    width: 60px;
    height: 60px;
  }

  .block-slider-product-detail .content-slider .slick-slide a {
    height: 263px;
    display: block;
  }

  .block-slider-product-detail .content-slider .slick-slide img {
    width: 100%;
    height: 100%;
  }

  .product-detail-page .product-d-info .title h1 {
    font-size: 24px;
  }

  .pr-buy {}

  .pr-buy .pr-price {
    margin-bottom: 15px;
    display: block;
  }

  .pr-buy .pr-link {
    float: none;
  }
}

/* ------- PAGE PRODUCT DETAIL -------------------------------------------------------- */
.block-slider-product-detail {
  background: #fff;
}

.slick-product-detail {
  position: relative;
  margin-bottom: 0px;
}

.slick-product-detail .icon-play {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slick-product-detail .icon-play img {
  width: inherit;
  height: 72px;
}

.slick-product-detail:hover .icon-play {
  opacity: 1;
}

.slick-product-detail .thumb-main {
  height: 395px;
}

.slick-product-detail .thumb-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-product-detail-list {
  margin-left: 0;
  margin-right: 0;
}

.slick-product-detail-list .item {
  padding-left: 5px;
  padding-right: 5px;
}

.slick-product-detail-list .item .thumb-sm {
  height: 90px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slick-product-detail-list .item:hover .thumb-sm {
  border-color: #007236;
}

.slick-product-detail-list .item .thumb-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-nav-slick img {
  width: 24px;
}

.block-nav-slick .slick-arrow {
  position: absolute;
  bottom: 40px;
}

.block-nav-slick .slick-arrow:last-child {
  right: 0;
}

.block-nav-slick .slick-arrow:last-child img {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media(max-width: 992px) {
  .block-slider-product-detail {
    position: static;
    margin: auto auto 30px;
  }

  .product-d-content-padd {
    padding-left: 0;
  }
}

@media(max-width: 767px) {
  .block-slider-product-detail {
    width: 100%;
    padding-left: 0;
    position: relative;
  }

  .block-nav-slick .slick-arrow {
    bottom: 28px;
  }
}

@media(max-width: 600px) {
  .slick-product-detail .thumb-main {
    height: 250px;
  }

  .slick-product-detail-list .item .thumb-sm {
    height: 70px;
  }

  .block-tabs-product .block-nav-custom .nav-tabs {
    max-width: 100%;
  }
}

.product-detail-page .product-item.custom {
  background: transparent;
  box-shadow: none !important;
  border: 0;
  min-height: initial;
  margin: 0;
  overflow: inherit;
  padding: 0;
}

.block-desc-prod .title-desc {
  background: #00000005;
  color: #000;
  padding: 14px 15px;
  font-size: 22px;
}

.list-social-share .text {
  margin-right: 5px;
}

.list-social-share a {
  display: inline-block;
  margin-right: 5px;
}

.list-social-share img {
  height: 25px;
}

.product-detail-page .box-qulity .text {
  margin-right: 15px;
}

.btn-line-custom {
  border: 2px solid #017236;
  background: #fff;
  color: #017236;
  display: inline-block;
  min-width: 110px;
  border-radius: 100px;
  padding: 6px 13px;
}

.btn-line-custom:hover,
.btn-line-custom.active {
  background: #017236;
  color: #fff;
}

/* ////////// */
.logo {
  height: 45px;
  padding-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .logo {
    height: 35px;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    height: 35px;
  }
}


section .banner {
  position: relative;
  background: #FBF7F0;
  margin-top: 60px;
}

@media screen and (max-width: 480px) {
  section .banner {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1024px) {
  section .banner {
    margin-top: 50px;
  }
}


section .banner .banner-img {
  height: calc(100vh - 70px);
  width: 100%;
  /* object-fit: contain; */
}

@media screen and (max-width: 480px) {
  section .banner .banner-img {
    height: 300px;
  }
}

@media screen and (max-width: 1024px) {
  section .banner .banner-img {
    height: 300px;
  }
}

/* UPdate Thêm */

.block-prod-main {
  padding: 30px;
  border-radius: 10px;
}

.title-main-page {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between !important;
  align-items: center !important;
}

.title-block-prod {
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between !important;
  align-items: center !important;
}

.title-block-prod h3.custom {
  font-size: 20px;
}

.title-block-prod .link-right {
  min-width: 80px;
  text-align: right;
}

.title-block-prod .link-right .link-view {
  color: #017236;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.title-block-prod .link-right .link-view:hover {
  color: #18603a;
  text-decoration: underline !important;
}

.product-item {
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .title-main-page {
    display: block;
    text-align: center;
    padding-top: 30px;
  }

  .title-main-page .title {
    margin-bottom: 10px;
  }

  .block-prod-main {
    padding: 15px;
  }

  .title-block-prod h3.custom {
    font-size: 14px;
  }

  .block-prod-main .product-item {
    padding-bottom: 10px;
  }

  .block-prod-main .product-item .thumb {
    height: 220px;
  }

  .block-prod-main .product-item .content-product {
    padding: 10px 10px 0;
  }

  .block-prod-main .product-item .content-product .box-qulity .text {
    font-size: 10px;
  }

  .block-prod-main .product-item .content-product .box-qulity .price-sm {
    font-size: 14px;
  }

  .block-prod-main .product-item .title {
    margin-bottom: 5px !important;
    min-height: 45px;
  }

  .block-prod-main .product-item .title a {
    font-size: 14px;
  }

  .block-prod-main .product-item .desc {
    font-size: 12px;
    min-height: 36px;
  }

  .block-prod-main .product-item .custm-price span {
    display: none;
  }
}

/* BLOCK-SLIDER-MAIN */
.block-slider-main {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}

.block-nav-slider a {
  display: inline-block;
  width: 30px;
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 100%;
}

.block-nav-slider a:last-child {
  right: 0;
}

.block-nav-slider a img {
  height: 30px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.block-nav-slider a:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.block-slider-main .custom-marg {
  margin: 0;
}

.block-slider-main .custom-marg .padd {
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .block-slider-main {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }

  .block-slider-main .custom-marg .padd {
    padding: 2.5px;
  }

  .block-nav-slider a {
    height: 20px;
    width: 20px;
  }

  .block-nav-slider a img {
    height: 20px;
  }

  .block-nav-slider a:first-child {
    left: -10px;
  }

  .block-nav-slider a:last-child {
    right: -10px;
  }
}




/* ------- */
.block-slick-main {
  position: relative;

  .item-slider {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .block-nav {
    opacity: 0.4;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;

    img {
      height: 40px;
    }

    a {
      display: inline-block;
      position: absolute;
      content: "";
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);

      &:first-child {
        left: 20px;

        img {
          -moz-transform: rotate(180deg);
          -webkit-transform: rotate(180deg);
          -o-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          transform: rotate(180deg);
        }
      }

      &:last-child {
        right: 20px;
      }
    }
  }

  &:hover {
    .block-nav {
      opacity: 1;
    }
  }
}

.slider-prod {
  border-radius: 10px;
  overflow: hidden;

  @media screen and (max-width: 992px) {
    .block-slick-main {
      .item-slider {
        height: 200px;
      }
    }
  }
}

.sidebar-prod {
  border: 1px solid #d3d3d3;
  height: 300px;
  border-radius: 10px;
  background: #fff;

  .title-prod {
    background: #088abe;
    color: #fff;
    font-size: 18px;
    min-height: 45px;
    padding: 8px 15px;
    font-weight: 600;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;

    .icon {
      position: absolute;
      right: 10px;
      top: 10px;
      display: none;
    }
  }

  .content {
    height: 255px;
    overflow: auto;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;

    ul.custom {
      li {
        padding: 8px 15px;
        border-bottom: 1px solid #d3d3d3;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;

        a {
          color: #000;
        }

        &:last-child {
          border-bottom: 0;
        }

        &:hover,
        &.active {
          background: #dcf5ff;

          a {}
        }
      }
    }

    &::-webkit-scrollbar {
      width: 7px;
    }

    &::-webkit-scrollbar-track {
      box-shadow: inset 0 0 2px grey;
      border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
      background: #ddd;
      border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb:hover {
      background: #ccc;
    }
  }

  &.active {
    .content {
      display: block;
      height: 100%;
    }
  }

  @media screen and (max-width: 992px) {
    height: initial;

    .title-prod {
      border-radius: 8px;

      .icon {
        display: block;
      }
    }

    .content {
      height: 0;
      display: none;
    }
  }
}

@media screen and (max-width: 992px) {
  .custom-order-prod {
    .custom-menu {
      order: 2;
    }

    .custom-sider {
      order: 1;
    }
  }
}