@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
}

a {
  text-decoration: none;
}
.social-footer img {
  width: 36px;
  margin-bottom: 9px;
}
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.img-container::after {
  content: "";
  display: block;
}
.img-container .img-container-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

#accordian {
  width: 100%;
  min-height: 100vh;
  height: 100%;
}
#accordian ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
#accordian ul li a {
  width: 100%;
  color: #010101;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 20px;
  transition: all 0.3s;
  position: relative;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-radius: 3px;
}
#accordian ul li a span {
  margin-left: 10px;
  font-size: 20px;
}
#accordian ul li a:hover {
  background: #f6f6f6;
}

#accordian > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul > li > ul.show-dropdown > li.active > a,
#accordian
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > ul.show-dropdown
  > li.active
  > a {
  width: 100%;
  background: #f6f6f6;
}

#accordian > ul > li > ul,
#accordian > ul > li > ul > li > ul,
#accordian > ul > li > ul > li > ul > li > ul,
#accordian > ul > li > ul > li > ul > li > ul > li > ul {
  display: none;
  position: relative;
  padding-left: 30px !important;
}
#accordian > ul > li > ul::before,
#accordian > ul > li > ul > li > ul::before,
#accordian > ul > li > ul > li > ul > li > ul::before,
#accordian > ul > li > ul > li > ul > li > ul > li > ul::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #000;
  border-radius: 40px 0 0 40px;
  height: 100%;
  width: 3px;
  z-index: 1;
}

#accordian > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li > ul > li > ul > li.active > ul.show-dropdown {
  display: block;
}

#accordian a:not(:only-child):after {
  content: "\e919";
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 15px;
  font-family: "icomoon";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  transition: 0.2s;
}

#accordian .active > a:not(:only-child):after {
  transform: rotate(180deg);
}

.menuOpened .menu_overlay {
  display: block;
}

.menuOpened .sidebarMenu {
  transform: translate(0, 0);
  transition: all 0.3s cubic-bezier(0.29, 0.39, 0.68, 0.53);
}

.menuOpened {
  overflow: hidden;
}

.primary-btn,
.back-btn-cart {
  font-size: 16px;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background: #000;
  border: 1px solid #000;
  padding: 15px 30px;
  border-radius: 15px;
  margin-top: 10px;
  display: inline-block;
  transition: all 0.2s linear;
}
.primary-btn:hover,
.back-btn-cart:hover {
  background: #444;
}

.back-btn-cart {
  background: transparent;
  color: #000 !important;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.back-btn-cart span {
  margin-right: 10px;
}
.back-btn-cart:hover {
  color: #fff !important;
}

.styled-select {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  height: 50px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.styled-select::before {
  content: "\e919";
  font-family: "icomoon";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 20px;
}
.styled-select select {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #444;
  padding: 0 20px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.group-input {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.group-input label {
  font-size: 14px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}
.group-input input {
  height: 55px;
}
.group-input input,
.group-input textarea {
  font-size: 16px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #fff;
  border-radius: 10px;
  border: 0;
  padding: 10px;
}

.section-title {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #444;
}

.section-text {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #444;
  margin-top: 15px;
}

.section-index {
  margin-bottom: 80px;
}

.section-bg {
  position: relative;
}
.section-bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: #000;
  z-index: -1;
}
.section-bg .section-text {
  color: #fff;
  margin: 50px 0;
}
.section-bg .section-link {
  background: #fff;
  margin-bottom: 50px;
}
.section-bg .section-link span {
  color: #000;
}

.section-bg_light::after {
  height: 70%;
  background: #f5f5f5;
}
.section-bg_light .section-text {
  color: #000;
}
.section-bg_light .section-link {
  background: #000;
}
.section-bg_light .section-link span {
  color: #fff;
}

.section-link {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.section-link span {
  color: #fff;
}

.breadcrumb {
  margin-bottom: 15px;
}
.breadcrumb-link {
  font-size: 12px;
  color: #6d6d6d;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.breadcrumb span {
  color: #6d6d6d;
  margin: 0 5px;
  font-size: 15px;
}

.progress-payment p {
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.progress-payment .line {
  height: 2px;
  width: 70px;
  margin: 0 10px;
  border-top: 2px dashed #acacac;
}
.progress-payment .number-progress {
  font-size: 16px;
  color: #999999;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 30px;
  height: 30px;
  background: #cfcfcf;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
  margin-right: 10px;
}
.progress-payment .icon-progress {
  width: 30px;
  height: 30px;
  background: #caf1cc;
  color: rgb(3, 197, 100);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 10px;
  font-size: 10px;
  padding-top: 3px;
}
.progress-payment .active .number-progress {
  color: #000;
  background: #c2c2c2;
  display: flex;
}
.progress-payment .active .icon-progress {
  display: none;
}
.progress-payment .inactive p {
  color: #cccccc;
}
.progress-payment .inactive .number-progress {
  display: flex;
}
.progress-payment .inactive .icon-progress {
  display: none;
}

.navbar {
  background: #fff;
}
.navbar .offcanvas-start {
  width: 300px;
}
.navbar .navbar-toggler {
  border: 0;
  padding: 0;
  box-shadow: none;
  margin-left: 20px;
  font-size: 25px;
}
.navbar .navbar-brand {
  margin-right: 20px;
}
.navbar .nav-link {
  font-size: 16px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 5px 15px !important;
  display: block;
  transition: all 0.2s linear;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: all 0.2s linear;
}
.navbar .nav-link:hover::after {
  width: 100%;
}
.navbar .has-dropdown {
  position: relative;
}
.navbar .has-dropdown:hover .dropdown-wrapper {
  display: block;
}
.navbar .dropdown-wrapper {
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 10px;
  display: none;
}
.navbar .dropdown-wrapper .dropdown {
  background: #f5f5f5;
  border-radius: 30px 0 30px 30px;
  padding: 20px;
  width: 350px;
}
.navbar .total-price {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.navbar .cart-items {
  max-height: 400px;
  overflow-y: auto;
}
.navbar .dropdown-profile {
  max-width: 200px;
  background: #fff !important;
  border: 1px solid #e6e6e6;
}
.navbar .dropdown-profile_link {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  padding: 12px;
  display: block;
  border-radius: 15px;
  transition: all 0.2s linear;
}
.navbar .dropdown-profile_link:hover {
  background: #e6e6e6;
}
.navbar .dropdown-profile .profile-img {
  width: 50px;
  border-radius: 20px;
}
.navbar .dropdown-profile .profile-img::after {
  padding-bottom: 100%;
}
.navbar .dropdown-profile .profile-name {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  margin: 5px 0;
}
.navbar .dropdown-profile .profile-email {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #6d6d6d;
}
.navbar .dropdown-menu {
  right: unset;
  left: 0;
  border: 0;
  background: transparent;
}
.navbar .dropdown-menu .dropdown {
  max-width: 200px;
  background: #fff !important;
  border: 1px solid #e6e6e6;
  border-radius: 0 30px 30px 30px;
  padding: 10px;
}
.navbar .dropdown-menu .dropdown_link {
  padding: 12px;
  display: block;
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: left;
  border-radius: 15px;
  transition: all 0.2s linear;
}
.navbar .dropdown-menu .dropdown_link:hover {
  background: #e6e6e6;
}
.navbar .header-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
  margin-left: 10px;
  transition: all 0.2s linear;
  border: 0;
  font-size: 20px;
}
.navbar .header-btn span {
  color: #000;
}
.navbar .header-btn:hover {
  background: #000;
}
.navbar .header-btn:hover span {
  color: #fff;
}
.navbar .header-btn .badge {
  background: #000;
  color: #fff;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  right: 5px;
  top: 5px;
  border: 1px solid #fff;
}

.cart-item {
  padding: 10px 0;
  border-bottom: 1px solid #e9e9e9;
}
.cart-item-img {
  min-width: 100px;
  border-radius: 30px;
  margin-right: 20px;
  background: #fff;
}
.cart-item-img::after {
  padding-bottom: 100%;
}
.cart-item-img img {
  width: 100%;
}
.cart-item-name {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.cart-item-price {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.cart-item-brand {
  font-size: 14px;
  color: #6d6d6d;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.select-skin-section {
  position: relative;
}
.select-skin-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80%;
  background: #ddd;
  bottom: 0;
  z-index: -1;
}
.select-skin-section .skin-section_title {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #000;
}
.select-skin-section .skin-section_text {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 10px 0 15px;
  color: #999999;
}
.select-skin-section .skin-link {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  padding: 15px;
  border: 1px solid rgb(173, 173, 173);
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
.select-skin-section .skin-link:hover {
  background: rgb(173, 173, 173);
}

.footer {
  padding: 50px 0;
}
.footer .footer_about {
  font-size: 14px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 10px;
}
.footer .social-footer a {
  color: #acacac;
  font-size: 22px;
  margin-right: 20px;
  transition: all 0.2s linear;
}
.footer .social-footer a:hover {
  color: #000;
}
.footer .footer-title {
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer .copyright-text {
  font-size: 14px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.footer .newsletter-text {
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 10px 0;
}
.footer .newsletter {
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  height: 60px;
}
.footer .newsletter input {
  font-size: 14px;
  padding: 10px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  flex-grow: 2;
  background: transparent;
  height: 100%;
  border: 0;
}
.footer .newsletter button {
  font-size: 14px;
  padding: 0 40px;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border: 0;
}

.products-header {
  background: #e4e4e4;
  padding-top: 50px;
}
.products-header h1 {
  font-size: 35px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}
.products-header p {
  font-size: 18px;
  color: #6d6d6d;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

.products-page {
  padding: 80px 0;
  background: #f5f5f5;
}
.products-page .search-products {
  background: #fff;
  border-radius: 15px;
  height: 50px;
}
.products-page .search-products button {
  padding: 0 15px;
  border: 0;
  background: transparent;
  font-size: 20px;
}
.products-page .search-products input {
  font-size: 16px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: transparent;
  flex-grow: 2;
  height: 100%;
  border: 0;
}

.product-card {
  background: #fff;
  border-radius: 30px;
  height: 100%;
}
.product-card .product-img {
  width: 100%;
}
.product-card .product-img::after {
  padding-bottom: 100%;
}
.product-card .product-img img {
  width: 90%;
}
.product-card .product-name {
  font-size: 18px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}
.product-card .product-name:hover {
  color: #acacac;
}
.product-card .product-price {
  font-size: 18px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.product-card .product-category {
  font-size: 18px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 0;
  height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev::after,
.owl-nav .owl-next::after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "icomoon";
  font-size: 25px;
  color: #999999;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s linear;
}
.owl-nav .owl-prev:hover::after,
.owl-nav .owl-next:hover::after {
  background: #000;
  color: #fff;
}
.owl-nav .owl-prev {
  margin-right: -25px;
}
.owl-nav .owl-prev::after {
  content: "\e91d";
}
.owl-nav .owl-next {
  margin-left: -25px;
}
.owl-nav .owl-next::after {
  content: "\e91b";
}

.product-page {
  background: #f5f5f5;
  padding: 50px 0;
}
.product-page .color-title {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.product-page .group-radio-color {
  margin-right: 10px;
}
.product-page .group-radio-color input {
  display: none;
}
.product-page .group-radio-color label {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.product-page .group-radio-color label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
}
.product-page .group-radio-color .color-1::after {
  background: rgb(255, 252, 221);
}
.product-page .group-radio-color .color-2::after {
  background: rgb(255, 253, 240);
}
.product-page .group-radio-color .color-3::after {
  background: rgb(250, 241, 188);
}
.product-page .group-radio-color input:checked ~ label::after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.product-page .back-list-btn {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #9b0ca8;
  display: inline-block;
  margin-bottom: 10px;
}
.product-page .back-list-btn span {
  margin-right: 5px;
  font-size: 20px;
}
.product-page .back-list-btn:hover {
  color: #000;
}
.product-page .header-product {
  margin-bottom: 80px;
}
.product-page .product-description-box {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
}
.product-page .product-description-box img {
  width: 20%;
  border-radius: 20px;
  margin-right: 40px;
}
.product-page .product-description h1,
.product-page .product-description h3,
.product-page .product-description h2,
.product-page .product-description h4 {
  font-size: 24px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}
.product-page .product-description p {
  font-size: 16px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.8;
}
.product-page .product-description .double-img {
  margin: 40px 0;
}
.product-page .product-description .double-img img {
  width: 40%;
  border-radius: 30px;
  margin-left: 40px;
}
.product-page .product-price {
  font-size: 30px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-left: 20px;
}
.product-page .product-title {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}
.product-page .stars span {
  font-size: 20px;
  color: rgb(255, 230, 0);
  margin-right: 5px;
}
.product-page .rate {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
}
.product-page .short-description-product {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.9;
}

.more-products {
  margin-top: 80px;
}
.more-products .more-products_title {
  font-size: 20px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
.more-products .more-products_img {
  width: 100%;
  border-radius: 20px;
}
.more-products .more-products_img::after {
  padding-bottom: 100%;
}
.more-products .more-products_name {
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 10px 0;
}
.more-products .more-products_category {
  font-size: 14px;
  color: #6d6d6d;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.quantity-field {
  max-width: 70px;
  height: 30px !important;
  border-radius: 20px;
  background: #cfcfcf;
  margin: 0 auto;
  overflow: hidden;
  padding: 3px;
}
.quantity-field .value-button {
  height: 100%;
  width: 33%;
  padding: 0;
  font-size: 18px;
  color: #6d6d6d;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
.quantity-field .increase-button {
  background: #fff;
  border-radius: 50%;
}
.quantity-field .number {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #6d6d6d;
  border: none;
  margin: 0px;
  height: 100%;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-align: center;
}
.quantity-field input::-webkit-outer-spin-button,
.quantity-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.quantity-field input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
.quantity-field .number::-moz-selection {
  background: none;
}
.quantity-field .number::selection {
  background: none;
}

.blog-page {
  background: #f5f5f5;
  padding: 50px 0;
}
.blog-page .blog-carousel-img {
  width: 100%;
  border-radius: 30px;
}
.blog-page .blog-carousel-img::after {
  padding-bottom: 30%;
}
.blog-page .owl-dots {
  position: absolute;
  right: 30px;
  bottom: 10px;
  z-index: 10;
}
.blog-page .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.7) !important;
  margin-left: 5px;
}
.blog-page .owl-dot.active {
  background: #fff !important;
  width: 15px;
}
.blog-page .blog-box {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 20px;
}
.blog-page .blog-box_img {
  min-width: 250px;
  border-radius: 30px;
  margin-right: 30px;
}
.blog-page .blog-box_img::after {
  padding-bottom: 100%;
}
.blog-page .blog-box_title {
  font-size: 26px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.blog-page .blog-box_text {
  font-size: 14px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 15px;
}
.blog-page .blog-box_date {
  font-size: 12px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.banner-blog {
  width: 100%;
  border-radius: 15px;
}
.banner-blog::after {
  padding-bottom: 100%;
}
.banner-blog .cover-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  height: 40%;
}
.banner-blog .banner_title {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.banner-blog .banner_text {
  font-size: 12px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.banner-rectangle-blog::after {
  padding-bottom: 47%;
}

.post-page {
  background: #f5f5f5;
  padding: 50px 0;
}
.post-page .header-post-img {
  width: 100%;
  border-radius: 30px;
}
.post-page .header-post-img::after {
  padding-bottom: 25%;
}
.post-page .post-content-header {
  width: 80%;
  border-radius: 30px;
  background: #fff;
  padding: 30px;
  margin: -50px auto 0;
  position: relative;
  z-index: 1;
}
.post-page .post-content-header h1 {
  font-size: 28px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.post-page .post-content-header p {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.post-page article h1,
.post-page article h3,
.post-page article h2,
.post-page article h4 {
  font-size: 24px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.post-page article p {
  font-size: 16px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.8;
}
.post-page article img {
  width: 100%;
  border-radius: 15px;
  margin: 20px 0;
}
.post-page .line {
  width: 100%;
  height: 1px;
  background: #cecece;
  margin: 50px 0;
}

.comments .comments_title {
  font-size: 22px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.comments .comment-box-reply {
  margin-left: 80px;
}
.comments .comment-box {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #cccccc;
  padding: 20px;
  margin-bottom: 20px;
}
.comments .comment-name {
  font-size: 18px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.comments .comment-date {
  font-size: 14px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.comments .comment-text {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 20px;
}
.comments .reply-btn {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 20px;
}

.cart-page {
  background: #f5f5f5;
  padding: 50px 0;
  min-height: 100vh;
}
.cart-page .sidebar-cart {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 20px;
}
.cart-page .sidebar-cart .cart-item:last-child {
  border-bottom: 0;
}
.cart-page .sidebar-cart .quantity-field {
  background: #f5f5f5;
}
.cart-page .group-radio-shipping {
  border: 1px solid rgb(194, 191, 191);
  border-radius: 20px;
  background: #f5f5f5;
  padding: 15px;
}
.cart-page .group-radio-shipping input {
  display: none;
}
.cart-page .group-radio-shipping label {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.cart-page .group-radio-shipping label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #000;
}
.cart-page .group-radio-shipping label::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  z-index: 1;
}
.cart-page .group-radio-shipping input:checked ~ label::before {
  transform: translateY(-50%) scale(1);
}
.cart-page .group-radio-shipping .method-logo {
  width: 80px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  margin-right: 10px;
}
.cart-page .group-radio-shipping .method-logo img {
  width: 90%;
}
.cart-page .group-radio-shipping h4,
.cart-page .group-radio-shipping .method-peice {
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.cart-page .group-radio-shipping p {
  font-size: 12px;
  color: #b6b6b6;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.cart-page .complete-content,
.cart-page .checkout-box {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
}
.cart-page .complete-content .complete-title,
.cart-page .checkout-box .complete-title {
  font-size: 20px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 30px;
}
.cart-page .complete-content .complete-text,
.cart-page .checkout-box .complete-text {
  font-size: 18px;
  color: #999999;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 10px 0 20px;
}
.cart-page .complete-content .order-code,
.cart-page .checkout-box .order-code {
  font-size: 23px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
}
.cart-page .prices-list li {
  margin: 10px 0;
}
.cart-page .prices-list p,
.cart-page .prices-list span {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.cart-page .cart-page-title {
  font-size: 20px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.cart-page .cart-page-text {
  font-size: 14px;
  color: #b6b6b6;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
.cart-page .inputs-address .input-top {
  border-radius: 10px 10px 0 0;
}
.cart-page .inputs-address .input-left {
  border-radius: 0 0 0 10px;
}
.cart-page .inputs-address .input-left input {
  width: 100%;
}
.cart-page .inputs-address .input-right {
  border-radius: 0 0 10px 0;
}
.cart-page .inputs-address .input-right input {
  width: 100%;
}

.checkout-input {
  border: 1px solid #b6b6b6;
  border-radius: 10px;
}
.checkout-input:focus-within {
  border: 1px solid #000;
}
.checkout-input span {
  padding: 0 10px 0 20px;
  font-size: 25px;
  color: #999999;
}
.checkout-input input {
  flex-grow: 2;
}

.slider-section {
  margin-bottom: 50px;
}
.slider-section .slider-carousel-img {
  width: 100%;
}
.slider-section .slider-carousel-img::after {
  padding-bottom: 100%;
}
.slider-section .slider-carousel-img img {
  width: 100%;
}
.slider-section .slider-carousel .owl-dots {
  position: absolute;
  right: 30px;
  bottom: 10px;
  z-index: 10;
}
.slider-section .slider-carousel .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.5) !important;
  margin-left: 5px;
}
.slider-section .slider-carousel .owl-dot.active {
  background: #000 !important;
  width: 15px;
}
.slider-section .slider-section-title {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  margin: 15px 0;
}
.slider-section .slider-section-link {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
}
.slider-section .spacer {
  color: #acacac;
  margin: 0 12px;
}

.create-section .create-text {
  color: #6d6d6d;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 10px 0;
}

.category-header .primary-btn span {
  margin-left: 10px;
  font-size: 20px;
}

.category-section {
  padding: 50px 0;
}
.category-section .primary-btn span {
  margin-left: 10px;
  font-size: 20px;
}
.category-section .category-section_title {
  font-size: 24px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.category-section .category-carousel {
  margin-left: 30px;
}
.category-section .category-carousel .product-card {
  background: #f5f5f5;
}
.category-section .owl-nav {
  top: 50%;
}
.category-section .banner-category {
  height: 100%;
  position: relative;
  border-radius: 30px;
}
.category-section .banner-category .cover-banner {
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
}
.category-section .banner-category .banner_title {
  font-size: 18px;
  color: #fff;
}
.category-section .banner-category .primary-btn {
  font-size: 14px;
  background: #fff;
  color: #000 !important;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.pack-offer-page {
  padding: 50px 0;
  background: #f5f5f5;
}
.pack-offer-page .all-products-box {
  border-radius: 15px;
  background: #000;
  margin-top: 50px;
}
.pack-offer-page .all-products-box h3 {
  font-size: 16px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.pack-offer-page .all-products-box .primary-btn {
  background: #fff;
  color: #000 !important;
}
.pack-offer-page .pack-offer_title {
  font-size: 32px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}
.pack-offer-page .pack-offer_text {
  font-size: 16px;
  color: #6d6d6d;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.9;
}
.pack-offer-page .row-text {
  padding: 30px;
  border-radius: 20px;
  margin-top: 50px;
}
.pack-offer-page .boxes-offer .pack-offer_title {
  font-size: 22px;
  margin-bottom: 0;
}
.pack-offer-page .boxes-offer .big-box-offer {
  border-radius: 15px;
  background: #fff;
}
.pack-offer-page .boxes-offer .big-box_img {
  width: 100%;
}
.pack-offer-page .boxes-offer .big-box_img::after {
  padding-bottom: 80%;
}
.pack-offer-page .boxes-offer .big-box_img img {
  width: 90%;
}
.pack-offer-page .boxes-offer .current-price {
  font-size: 24px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 20px;
}
.pack-offer-page .boxes-offer .original-price {
  font-size: 20px;
  color: #999999;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: line-through;
}
.pack-offer-page .small-box-img {
  min-width: 150px;
  border-radius: 15px;
  background: #fff;
  margin-right: 20px;
}
.pack-offer-page .small-box-img::after {
  padding-bottom: 100%;
}
.pack-offer-page .small-box-img img {
  width: 90%;
}
.pack-offer-page .small-box-content {
  flex-grow: 2;
  border-radius: 15px;
  background: #fff;
  padding: 20px;
  height: 100%;
}
.pack-offer-page .small-box-content .details-link {
  font-size: 14px;
  color: rgb(0, 153, 255);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: contents;
}
.pack-offer-page .small-box-content .category-box {
  font-size: 12px;
  color: #acacac;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.pack-offer-page .small-box-content .name-box {
  font-size: 18px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.pack-offer-page .small-box-content .pack-offer_text {
  line-height: 1.5;
  font-size: 14px;
}
.pack-offer-page .small-box-content .current-price {
  font-size: 20px;
  margin: 0;
}

.skin-analysis {
  background: #000;
  padding: 40px 0;
}
.skin-analysis_title {
  font-size: 32px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-right: 60px;
}
.skin-analysis_items li {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #6d6d6d;
}
.skin-analysis_items li:last-child {
  border-right: 0;
}
.skin-analysis_items p {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #999999;
}
.skin-analysis_items span {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
}

.login-page .login-box {
  padding: 30px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0 30px 30px 30px;
  margin-top: 80px;
}

.back-page {
  font-size: 18px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.back-page span {
  margin-left: 10px;
}

@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    margin-right: 0;
  }
  .navbar .navbar-brand img {
    width: 80px;
  }
  .navbar .nav-link {
    font-size: 16px;
    padding: 10px !important;
  }
  .navbar .nav-link::after {
    content: none;
  }
  .navbar .has-dropdown:hover .dropdown-wrapper {
    display: none;
  }
  .navbar .dropdown-wrapper {
    display: none;
  }
  .slider-section .slider-carousel .owl-dots {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
  .section-link {
    min-width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .section-bg .section-text {
    margin: 20px 0;
  }
  .section-bg .section-title {
    color: #fff;
  }
  .section-bg_light .section-title {
    color: #000;
  }
  .section-index {
    margin-bottom: 40px;
  }
  .create-section {
    padding-top: 30px;
  }
  .create-section::after {
    height: 100%;
  }
  .footer {
    padding: 30px 0;
  }
  .footer .footer_about {
    margin-bottom: 20px;
  }
  .blog-page {
    padding: 30px 0;
  }
  .blog-page .blog-box {
    border-radius: 20px;
    padding: 20px;
  }
  .blog-page .blog-box_img {
    border-radius: 20px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .blog-page .blog-box_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .product-page {
    padding: 40px 0;
  }
  .product-page .product-description-box {
    padding: 20px;
  }
  .product-page .product-description-box img {
    width: 50%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .product-page .product-description h1,
  .product-page .product-description h3,
  .product-page .product-description h2,
  .product-page .product-description h4 {
    font-size: 20px;
  }
  .product-page .product-description p {
    font-size: 14px;
  }
  .product-page .product-description .double-img img {
    width: 100%;
    margin-left: 0;
  }
  .product-page .more-products {
    padding-bottom: 50px;
  }
  .product-page .more-products .more-products_title {
    margin-bottom: 20px;
  }
  .owl-nav {
    top: unset;
    transform: unset;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    margin: 0 5px;
  }
  .owl-nav .owl-prev::after,
  .owl-nav .owl-next::after {
    font-size: 15px;
  }
  .post-page .owl-nav {
    bottom: -20px;
  }
  .category-section .banner-category {
    display: none;
  }
  .category-section .category-carousel {
    margin-left: 0;
  }
  .category-section .owl-nav {
    top: unset;
    bottom: -23px;
  }
  .category-section .owl-nav .owl-next::after,
  .category-section .owl-nav .owl-prev::after {
    background: #f5f5f5;
  }
  .skin-analysis {
    padding: 30px 0;
  }
  .skin-analysis_title {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .pack-offer-page .all-products-box {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer .social-footer {
    margin-bottom: 15px;
  }
  .footer .newsletter button {
    font-size: 12px;
    padding: 0 20px;
  }
  .products-header .products-header p {
    font-size: 14px;
  }
  .products-header h1 {
    font-size: 24px;
  }
  .products-page {
    padding: 40px 0;
  }
  .post-page .header-post-img::after {
    padding-bottom: 35%;
  }
  .post-page .post-content-header h1 {
    font-size: 20px;
  }
  .post-page .post-content-header p {
    font-size: 14px;
  }
  .post-page .post-content-header {
    width: 90%;
    padding: 20px;
    margin: -20px auto 0;
  }
  .post-page article h2,
  .post-page article h3,
  .post-page article h4,
  .post-page article h5 {
    font-size: 20px;
  }
  .post-page article p {
    font-size: 14px;
  }
  .comments .comments .comments_title {
    font-size: 20px;
  }
  .comments .comment-text {
    font-size: 14px;
  }
  .comments .comment-box-reply {
    margin-left: 30px;
  }
  .comments .comment-date {
    font-size: 12px;
  }
  .group-input input,
  .group-input textarea {
    font-size: 14px;
  }
  .cart-page .cart-page-title {
    font-size: 18px;
  }
  .cart-page .complete-content,
  .cart-page .checkout-box {
    padding: 20px;
  }
  .cart-page .checkout-input span {
    padding: 0 5px 0 10px;
    font-size: 20px;
  }
  .progress-payment p {
    font-size: 10px;
  }
  .progress-payment .line {
    width: 20px;
  }
  .progress-payment .number-progress {
    font-size: 14px;
    min-width: 25px;
    min-height: 25px;
  }
  .progress-payment .icon-progress {
    min-width: 25px;
    min-height: 25px;
    margin-right: 5px;
  }
  .cart-page .complete-content .order-code {
    font-size: 16px;
  }
  .cart-page .complete-content .complete-text {
    font-size: 14px;
  }
  .skin-analysis {
    padding: 20px 0;
  }
  .skin-analysis_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .skin-analysis_items li {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    margin: 5px 0;
  }
  .skin-analysis_items li:last-child {
    border-right: 0;
  }
}
@media screen and (max-width: 576px) {
  .box-wrapper {
    background: #fff;
  }
}
@media screen and (max-width: 448px) {
  .primary-btn,
  .back-btn-cart {
    font-size: 14px;
  }
  .section-title {
    font-size: 20px;
  }
  .section-text {
    font-size: 14px;
  }
  .select-skin-section .skin-section_title {
    font-size: 18px;
  }
  .select-skin-section .skin-link {
    font-size: 12px;
    padding: 10px 5px;
  }
  .select-skin-section .skin-section_text {
    font-size: 14px;
  }
  .blog-page .blog-box_img {
    min-width: 100%;
  }
  .blog-page .blog-box_title {
    font-size: 18px;
  }
  .slider-section .logo-header {
    width: 80px;
  }
  .slider-section .slider-section-title {
    font-size: 18px;
  }
  .checkout-input input {
    width: 80%;
  }
  .checkout-input span {
    font-size: 20px;
    padding: 0 10px;
  }
  .checkout-input .toggle-password {
    font-size: 20px;
    padding: 0 10px;
  }
  .back-page {
    font-size: 15px;
  }
  .login-page .login-box {
    padding: 20px;
    margin-top: 30px;
  }
} /*# sourceMappingURL=style.css.map */
