@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: rgb(246, 246, 246);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  height: 100%;
}

.header-wrapper {
  width: 100%;
  padding: 0 50px;
}
.header-wrapper .header-section {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper .header-section .header-left {
  display: flex;
}
.header-wrapper .header-section .header-left span {
  color: rgb(13, 110, 253);
  font-size: 14px;
  font-weight: 500;
}
.header-wrapper .header-section .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.header-wrapper .header-section .header-right .dropdown {
  position: relative;
  font-family: sans-serif;
}
.header-wrapper .header-section .header-right .dropdown-toggle {
  width: 100%;
  padding: 10px 14px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgb(246, 246, 246);
}
.header-wrapper .header-section .header-right .dropdown-toggle .drpdwn-content {
  font-size: 14px;
  font-weight: 400;
  color: rgb(146, 145, 145);
}
.header-wrapper .header-section .header-right .dropdown-toggle .arrow {
  transition: transform 0.3s;
}
.header-wrapper .header-section .header-right .dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-wrapper .header-section .header-right .dropdown.open .arrow {
  transform: rotate(180deg);
}
.header-wrapper .header-section .header-right .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
}
.header-wrapper .header-section .header-right .dropdown-menu li {
  padding: 10px 14px;
  cursor: pointer;
}
.header-wrapper .header-section .header-right .dropdown-menu li:hover {
  background: #f0f0f0;
}
.header-wrapper .header-section .header-right .register-btns {
  display: flex;
}
.header-wrapper .header-section .header-right .register-btns .register {
  display: flex;
  gap: 10px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: rgb(146, 145, 145);
  padding-right: 10px;
  border-right: 1px solid rgb(146, 145, 145);
}
.header-wrapper .header-section .header-right .register-btns .signIn {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  padding-left: 10px;
  color: rgb(146, 145, 145);
}

.navBar {
  width: 100%;
  padding: 0 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3px 4px 0px rgba(166, 166, 166, 0.25);
}
.navBar .category-section {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.navBar .category-section .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}
.navBar .category-section .top .logo {
  width: 140px;
  height: 32px;
}
.navBar .category-section .top .logo img {
  width: 100%;
}
.navBar .category-section .top .language-responsive {
  display: none;
}
.navBar .category-section .top .category-btn {
  width: 170px;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 10px;
  background-color: rgb(13, 110, 253);
  cursor: pointer;
  border-radius: 12px;
  border: none;
}
.navBar .category-section .top .category-btn svg {
  background-color: rgb(13, 110, 253);
}
.navBar .category-section .top .category-btn span {
  background-color: rgb(13, 110, 253);
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
}
.navBar .category-section .top .category-btn img {
  width: 20px;
  height: 20px;
}
.navBar .category-section .top .category-btn .exit-btn {
  display: none;
}
.navBar .category-section .top .category-btn.active .enter-btn {
  display: none;
}
.navBar .category-section .top .category-btn.active .exit-btn {
  display: inline-block;
}
.navBar .category-section .top .category-modal {
  position: fixed;
  top: 236px;
  left: 0;
  width: 100%;
  height: calc(100vh - 236px);
  overflow-y: auto;
  padding: 40px 50px;
  background: #fafafa;
  transform: translateY(100%);
  transition: 0.4s;
  z-index: 1000;
}
.navBar .category-section .top .category-modal.active {
  transform: translateY(0);
}
.navBar .category-section .top .category-modal .modal-menu {
  display: flex;
}
.navBar .category-section .top .category-modal .modal-menu .menuButtons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 0.4px solid rgb(192, 192, 192);
  padding-right: 90px;
}
.navBar .category-section .top .category-modal .modal-menu .menuButtons .modal-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding: 10px;
  cursor: pointer;
  background: rgb(250, 250, 250);
  color: rgb(30, 30, 30);
  border-radius: 6px;
  transition: 0.3s;
}
.navBar .category-section .top .category-modal .modal-menu .menuButtons .modal-btn .btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navBar .category-section .top .category-modal .modal-menu .menuButtons .modal-btn .btn-left span {
  width: 133px;
  text-align: left;
}
.navBar .category-section .top .category-modal .modal-menu .menuButtons .modal-btn.active {
  color: rgb(13, 110, 253);
}
.navBar .category-section .top .category-modal .modal-menu .menuButtons .modal-btn:hover {
  background: rgba(13, 110, 253, 0.08);
  color: rgb(13, 110, 253);
}
.navBar .category-section .top .category-modal .modal-menu .menuCards {
  margin-left: 20px;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card {
  display: none;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-left: 90px;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding-right: 60px;
  padding-left: 60px;
  border-right: 0.4px solid rgb(192, 192, 192);
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list:nth-child(2) {
  border-right: none;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list .card-content {
  display: flex;
  gap: 12px;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list .card-content h3 {
  font-weight: 500;
  font-size: 24px;
  color: rgb(30, 30, 30);
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list .card-content sub {
  font-weight: 500;
  font-size: 12px;
  color: rgb(175, 175, 175);
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list .menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list .menu-list a {
  width: 230px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(125, 125, 125);
  text-decoration: none;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  border-radius: 14px;
  transition: 300ms ease;
}
.navBar .category-section .top .category-modal .modal-menu .menuCards .menu-card.active .list .menu-list a:hover {
  background: rgba(13, 110, 253, 0.08);
  color: rgb(13, 110, 253);
}
.navBar .category-section .top .search-btn {
  width: 100%;
}
.navBar .category-section .top .search-btn .search-input {
  width: 100%;
  display: flex;
  align-items: center;
}
.navBar .category-section .top .search-btn .search-input input {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(13, 110, 253);
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  padding: 12px;
  outline: none;
}
.navBar .category-section .top .search-btn .search-input input::-moz-placeholder {
  color: rgb(167, 164, 164);
  font-size: 14px;
  font-weight: 400;
}
.navBar .category-section .top .search-btn .search-input input::placeholder {
  color: rgb(167, 164, 164);
  font-size: 14px;
  font-weight: 400;
}
.navBar .category-section .top .search-btn .search-input .search {
  background-color: rgb(13, 110, 253);
  padding: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border: none;
  outline: none;
}
.navBar .category-section .top .search-btn .search-input .search svg {
  background-color: rgb(13, 110, 253);
}
.navBar .category-section .top .category-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navBar .category-section .top .category-right .icon {
  border-right: 1px solid rgb(167, 164, 164);
  padding-right: 16px;
}
.navBar .category-section .top .category-right .icon svg {
  transform: 300ms ease;
}
.navBar .category-section .top .category-right .icon svg:hover {
  stroke: rgb(13, 110, 253);
}
.navBar .category-section .top .category-right .icon:nth-child(3) {
  border-right: none;
}
.navBar .nav-list {
  display: flex;
  gap: 36px;
}
.navBar .nav-list .menu {
  color: rgb(30, 30, 30);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 300ms ease;
}
.navBar .nav-list .menu:hover {
  color: rgb(13, 110, 253);
}
.navBar .nav-list .dropdown {
  position: relative;
  font-family: sans-serif;
}
.navBar .nav-list .dropdown-toggle {
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: rgb(255, 255, 255);
}
.navBar .nav-list .dropdown-toggle .drpdwn-content {
  color: rgb(30, 30, 30);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 300ms ease;
}
.navBar .nav-list .dropdown-toggle:hover .drpdwn-content {
  color: rgb(13, 110, 253);
}
.navBar .nav-list .dropdown-toggle:hover svg {
  fill: rgb(13, 110, 253);
}
.navBar .nav-list .dropdown-toggle .arrow {
  transition: transform 0.3s;
}
.navBar .nav-list .dropdown-toggle .arrow svg {
  transition: 300ms ease;
}
.navBar .nav-list .dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navBar .nav-list .dropdown.open .arrow {
  transform: rotate(180deg);
}
.navBar .nav-list .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 170px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
  z-index: 99;
}
.navBar .nav-list .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  color: rgb(30, 30, 30);
  font-size: 14px;
  font-weight: 400;
}
.navBar .nav-list .dropdown-menu a:hover {
  background: #f0f0f0;
}

.breadcrumb {
  width: 100%;
  padding: 0 50px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.breadcrumb .breadcrump-section {
  width: 100%;
  max-width: 1340px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb .breadcrump-section .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.breadcrumb .breadcrump-section .breadcrumb-item .home {
  color: rgb(13, 110, 253);
  font-size: 14px;
  font-weight: 400;
}
.breadcrumb .breadcrump-section .breadcrumb-item span {
  color: rgba(0, 0, 0, 0.6);
}

.arrangement-wrapper {
  width: 100%;
  padding: 0 50px;
}
.arrangement-wrapper .sorting-section {
  width: 100%;
  max-width: 1340px;
  margin: 30px auto;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}
.arrangement-wrapper .sorting-section .sorting-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort {
  display: flex;
  gap: 16px;
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 999;
  padding: 16px;
  overflow-y: auto;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion {
    display: none;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-item {
    margin-top: 36px;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-header {
    width: 100%;
    background: rgb(255, 255, 255);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-header span {
    font-weight: 500;
    font-size: 18px;
    color: rgb(30, 30, 30);
    text-transform: capitalize;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content {
    max-height: 0;
    overflow-x: auto;
    transition: max-height 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .link {
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgb(30, 30, 30);
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .link.active {
    color: rgb(13, 110, 253);
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range {
    width: 100%;
    max-width: 272px;
    margin: 40px auto;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range .price-bubbles {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range .bubble {
    min-width: 128px;
    padding: 14px;
    text-align: center;
    background: rgb(245, 245, 245);
    border-radius: 16px;
    color: rgb(109, 109, 109);
    font-size: 14px;
    font-weight: 500;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range .range-box {
    position: relative;
    height: 6px;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range .range-track {
    position: absolute;
    inset: 0;
    background: #e0e0e0;
    border-radius: 4px;
    z-index: 1;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range input[type=range] {
    position: absolute;
    inset: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    pointer-events: all;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range .range-min,
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range .range-max {
    z-index: 2;
    /* hər ikisi eyni səviyyədə olsun */
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .price-range input[type=range]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    gap: 10px;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .custom-checkbox p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgb(30, 30, 30);
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgb(175, 175, 175);
    display: flex;
    align-items: center;
    border-radius: 2px;
    justify-content: center;
    transition: 0.2s;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .custom-checkbox input:checked + .checkmark {
    background-color: #0d6efd;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-content .custom-checkbox input:checked + .checkmark::after {
    display: block;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-item.active {
    padding-bottom: 30px;
    border-bottom: 0.8px solid rgb(218, 218, 218);
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-item.active .accordion-content {
    max-height: 200px;
    margin-top: 20px;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion .accordion-item.active .icon {
    transform: rotate(179deg);
  }
}
@media (min-width: 969px) {
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort .filter-container .accordion {
    display: none !important;
  }
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort .sort-dropdown {
  position: relative;
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort .sort-menu {
  position: absolute;
  top: 110%;
  right: 0;
  width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 99;
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort .sort-menu a {
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.2s;
}
.arrangement-wrapper .sorting-section .sorting-left .filter-sort .sort-menu a:hover {
  background-color: #f5f5f5;
}
.arrangement-wrapper .sorting-section .sorting-left h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.arrangement-wrapper .sorting-section .sorting-left .sort-btns {
  width: 130px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 14px;
  background: rgb(247, 245, 245);
}
.arrangement-wrapper .sorting-section .sorting-left .sort-btns span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(50, 50, 50);
}
.arrangement-wrapper .sorting-section .sorting-left .show {
  display: flex;
  align-items: center;
  gap: 4px;
}
.arrangement-wrapper .sorting-section .sorting-left .show span {
  font-weight: 400;
  font-size: 14px;
  color: rgb(0, 0, 0);
}
.arrangement-wrapper .sorting-section .sorting-left .show p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;
}
.arrangement-wrapper .sorting-section .sorting-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.arrangement-wrapper .sorting-section .sorting-right button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
.arrangement-wrapper .sorting-section .sorting-right button svg {
  fill: rgb(183, 183, 183);
}
.arrangement-wrapper .sorting-section .sorting-right button.active {
  padding: 14px;
  background: rgb(247, 245, 245);
  border-radius: 14px;
}
.arrangement-wrapper .sorting-section .sorting-right button.active svg {
  fill: rgb(13, 110, 253);
}
.arrangement-wrapper .sorting-section .sorting-right .countdown {
  display: flex;
  gap: 16px;
}
.arrangement-wrapper .sorting-section .sorting-right .countdown div {
  border: 2px solid rgba(0, 0, 0, 0.04);
  color: rgb(73, 215, 90);
  width: 52px;
  height: 56px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.arrangement-wrapper .sorting-section .sorting-right .countdown div span {
  font-size: 16px;
  font-weight: 500;
  display: block;
}
.arrangement-wrapper .sorting-section .sorting-right .countdown div small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
}

.register-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.register-wrapper .register-section {
  width: 100%;
  display: flex;
}
.register-wrapper .register-section .register-left {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 60px 50px;
  gap: 40px;
  background: rgb(255, 255, 255);
}
.register-wrapper .register-section .register-left .back-btn {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 6px 0px rgba(9, 54, 99, 0.1);
  border-radius: 100px;
  border: none;
  padding: 12px;
  cursor: pointer;
}
.register-wrapper .register-section .register-left .register-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.register-wrapper .register-section .register-left .register-head a img {
  width: 140px;
  height: 32px;
}
.register-wrapper .register-section .register-left .register-head .dropdown {
  position: relative;
  font-family: sans-serif;
}
.register-wrapper .register-section .register-left .register-head .dropdown-toggle {
  width: 100%;
  padding: 10px 14px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
}
.register-wrapper .register-section .register-left .register-head .dropdown-toggle .drpdwn-content {
  font-size: 14px;
  font-weight: 400;
  color: rgb(146, 145, 145);
}
.register-wrapper .register-section .register-left .register-head .dropdown-toggle .arrow {
  transition: transform 0.3s;
}
.register-wrapper .register-section .register-left .register-head .dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.register-wrapper .register-section .register-left .register-head .dropdown.open .arrow {
  transform: rotate(180deg);
}
.register-wrapper .register-section .register-left .register-head .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
}
.register-wrapper .register-section .register-left .register-head .dropdown-menu li {
  padding: 10px 14px;
  cursor: pointer;
}
.register-wrapper .register-section .register-left .register-head .dropdown-menu li:hover {
  background: #f0f0f0;
}
.register-wrapper .register-section .register-left .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 50px;
}
.register-wrapper .register-section .register-left .form .logIn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.register-wrapper .register-section .register-left .form .logIn a {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border: 0.6px solid rgb(231, 231, 231);
  padding: 12px;
  border-radius: 14px;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  color: rgb(130, 130, 130);
  text-decoration: none;
}
.register-wrapper .register-section .register-left .form .or-border {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: rgb(167, 164, 164);
}
.register-wrapper .register-section .register-left .form .or-border::before {
  content: "";
  position: absolute;
  left: 0;
  width: 48%;
  height: 0.5px;
  background: rgb(167, 164, 164);
}
.register-wrapper .register-section .register-left .form .or-border::after {
  content: "";
  position: absolute;
  right: 0;
  width: 48%;
  height: 0.5px;
  background: rgb(167, 164, 164);
}
.register-wrapper .register-section .register-left .form .form-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-wrapper .register-section .register-left .form .form-content h1 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: rgb(13, 110, 253);
  text-align: center;
}
.register-wrapper .register-section .register-left .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside .password {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside .password .secure {
  width: 100%;
  background-color: #fff;
  padding: 12px 20px;
  outline: none;
  border: none;
  box-shadow: none;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside .password .closed-eye {
  margin-right: 12px;
  cursor: pointer;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside .password .opened-eye {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside label span {
  color: red;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.register-wrapper .register-section .register-left .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.register-wrapper .register-section .register-left .form .mail-password {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside .password {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside .password .secure {
  width: 100%;
  background-color: #fff;
  padding: 12px 20px;
  outline: none;
  border: none;
  box-shadow: none;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside .password .closed-eye {
  margin-right: 12px;
  cursor: pointer;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside .password .opened-eye {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside label span {
  color: red;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.register-wrapper .register-section .register-left .form .mail-password .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.register-wrapper .register-section .register-left .form .mail-password .forget-password {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.register-wrapper .register-section .register-left .form .mail-password .forget-password .left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.register-wrapper .register-section .register-left .form .mail-password .forget-password .left span {
  font-weight: 400;
  font-size: 12px;
  color: rgb(146, 145, 145);
  line-height: 18px;
}
.register-wrapper .register-section .register-left .form .mail-password .forget-password a {
  font-weight: 400;
  font-size: 12px;
}
.register-wrapper .register-section .register-left .form .download-file {
  width: 100%;
}
.register-wrapper .register-section .register-left .form .download-file label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.register-wrapper .register-section .register-left .form .download-file .addFile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
  padding: 12px 20px;
}
.register-wrapper .register-section .register-left .form .download-file .addFile input[type=file]::file-selector-button {
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 12px 20px;
}
.register-wrapper .register-section .register-left .form .download-file .addFile .placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgb(180, 180, 180);
}
.register-wrapper .register-section .register-left .form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.register-wrapper .register-section .register-left .form .checkbox span {
  font-weight: 400;
  font-size: 14px;
  color: rgb(125, 125, 125);
}
.register-wrapper .register-section .register-left .form .form-submit {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  color: rgb(255, 255, 255);
  background-color: rgb(13, 110, 253);
  border-radius: 14px;
  padding: 12px;
}
.register-wrapper .register-section .register-left .form .register-link {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 6px;
}
.register-wrapper .register-section .register-left .form .register-link span {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
}
.register-wrapper .register-section .register-right {
  width: 100%;
}
.register-wrapper .register-section .register-right img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.hero-wrapper {
  width: 100%;
  padding: 0 50px;
  position: relative;
}
.hero-wrapper .hero-section {
  width: 100%;
  max-width: 1340px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-wrapper .hero-section .hero-top {
  display: flex;
  gap: 20px;
}
.hero-wrapper .hero-section .hero-top .heroSwiper {
  width: 100%;
  height: 530px;
  border-radius: 12px;
  /* navigation buttons */
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-wrapper {
  height: 100%;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  border-radius: 20px;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-slide img {
  width: 100%;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-next,
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-prev {
  color: #fff;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-next svg,
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-prev svg {
  width: 12px;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-next::after,
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-prev {
  left: 20px;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-button-next {
  right: 20px;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;
}
.hero-wrapper .hero-section .hero-top .heroSwiper .swiper-pagination-bullet-active {
  width: 30px;
  height: 8px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
}
.hero-wrapper .hero-section .hero-top .hero-right {
  flex: 0 0 434px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-wrapper .hero-section .hero-top .hero-right .card {
  position: relative;
  width: 100%;
  height: 256px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3px 4px 0px rgba(166, 166, 166, 0.25);
  overflow: hidden;
  border-radius: 12px;
  padding: 36px 30px;
}
.hero-wrapper .hero-section .hero-top .hero-right .card img {
  transition: transform 0.5s ease, filter 0.5s ease;
}
.hero-wrapper .hero-section .hero-top .hero-right .card:hover img {
  transform: translateY(-15px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.hero-wrapper .hero-section .hero-top .hero-right .card .card-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-wrapper .hero-section .hero-top .hero-right .card .card-left .main-content {
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  color: rgb(30, 30, 30);
}
.hero-wrapper .hero-section .hero-top .hero-right .card .card-left p {
  width: 100%;
  max-width: 226px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(167, 164, 164);
  text-align: start;
}
.hero-wrapper .hero-section .hero-top .hero-right .card .card-left a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgb(13, 110, 253);
  text-decoration: none;
}
.hero-wrapper .hero-section .hero-top .hero-right .card .card-right img {
  position: absolute;
  top: 138px;
  right: -65px;
  width: 278px;
}
.hero-wrapper .hero-section .hero-bottom {
  width: 100%;
  display: flex;
  padding: 28px 24px;
  background-color: rgb(255, 255, 255);
  margin-top: 50px;
  border-radius: 20px;
}
.hero-wrapper .hero-section .hero-bottom .tag {
  width: 100%;
  display: flex;
  gap: 7px;
  border-right: 1px solid rgb(225, 223, 223);
  padding-left: 34px;
}
.hero-wrapper .hero-section .hero-bottom .tag:nth-child(4) {
  border-right: none;
}
.hero-wrapper .hero-section .hero-bottom .tag .tag-icons {
  width: 60px;
  height: 60px;
  background-color: rgb(246, 248, 252);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.hero-wrapper .hero-section .hero-bottom .tag .tag-icons img {
  width: 32px;
  height: 32px;
}
.hero-wrapper .hero-section .hero-bottom .tag .tag-content {
  width: 100%;
}
.hero-wrapper .hero-section .hero-bottom .tag .tag-content .short-info {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
}
.hero-wrapper .hero-section .hero-bottom .tag .tag-content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(10, 9, 9, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.weekly-opportunity-wrapper {
  position: relative;
  width: 100%;
  padding: 0 50px;
}
.weekly-opportunity-wrapper .opportunity-section {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunity-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.weekly-opportunity-wrapper .opportunity-section .opportunity-content h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.weekly-opportunity-wrapper .opportunity-section .opportunity-content a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: rgb(13, 110, 253);
  display: flex;
  gap: 20px;
  transition: color 0.3s ease;
}
.weekly-opportunity-wrapper .opportunity-section .opportunity-content a img {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.weekly-opportunity-wrapper .opportunity-section .opportunity-content a:hover img {
  transform: translate(5px, -5px);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper {
  width: 100%;
  height: 100%;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-wrapper {
  height: 100%;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide {
  width: 310px;
  text-align: center;
  font-size: 18px;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  padding: 14px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img {
  background-color: rgb(246, 246, 246);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 28px 48px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .sale-product-content {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background-color: rgba(68, 216, 71, 0.16);
  border-radius: 14px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: rgb(20, 170, 23);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .slide-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  transform: translateZ(0);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .bottom-icons {
  position: absolute;
  right: 16px;
  bottom: 16px;
  transform: translate(-50%, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s ease;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .bottom-icons .icon {
  width: 44px;
  height: 44px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .bottom-icons .icon img {
  width: 20px;
  height: 20px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .bottom-icons .icon.active {
  background: rgb(13, 110, 253) !important;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img .bottom-icons .icon.active img {
  filter: brightness(0) invert(1) !important;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img:hover .bottom-icons {
  opacity: 1;
  transform: translate(-50%, 0);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-img:hover .slide-img {
  transform: scale(1.05);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .starts {
  display: flex;
  gap: 4px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .text {
  width: 100%;
  max-width: 259px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-align: start;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  color: rgb(30, 30, 30);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .price {
  display: flex;
  gap: 16px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .price .past-price {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-pagination {
  bottom: -20px;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #aaa;
  opacity: 1;
  transition: all 0.3s ease;
}
.weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

.about-home-wrapper {
  width: 100%;
  padding: 0 50px;
}
.about-home-wrapper .about-home-section {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}
.about-home-wrapper .about-home-section .card {
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3px 4px 0px rgba(166, 166, 166, 0.25);
  padding: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.about-home-wrapper .about-home-section .card img {
  max-width: 100%;
  height: auto;
  align-self: flex-end;
}
.about-home-wrapper .about-home-section .card:hover .mobile {
  transform: translateY(-20px);
}
.about-home-wrapper .about-home-section .card:hover .headphone {
  transform: translateY(-20px);
}
.about-home-wrapper .about-home-section .card:hover .applience-img {
  transform: translateY(-20px);
}
.about-home-wrapper .about-home-section .card:hover .device {
  transform: translateY(-20px);
}
.about-home-wrapper .about-home-section .card:hover .electronics {
  transform: translateY(-20px);
}
.about-home-wrapper .about-home-section .card .about-img {
  width: 100%;
  max-width: 226px;
}
.about-home-wrapper .about-home-section .card .about-img .mobile {
  width: 50%;
  height: auto;
  align-self: flex-end;
  position: absolute;
  top: 44%;
  left: 27%;
  transition: transform 0.5s ease;
}
.about-home-wrapper .about-home-section .card .about-img .headphone {
  width: 50%;
  height: auto;
  align-self: flex-end;
  position: absolute;
  top: 33%;
  right: 3px;
  transition: transform 0.5s ease;
}
.about-home-wrapper .about-home-section .card .about-img .applience-img {
  width: 88%;
  height: auto;
  align-self: flex-end;
  position: absolute;
  top: 32%;
  right: -55px;
  transition: transform 0.5s ease;
}
.about-home-wrapper .about-home-section .card .about-img .electronics {
  width: 75%;
  height: auto;
  align-self: flex-end;
  position: absolute;
  top: 33%;
  right: -21px;
  transition: transform 0.5s ease;
}
.about-home-wrapper .about-home-section .card .about-img .device {
  width: 100%;
  height: auto;
  align-self: flex-end;
  position: absolute;
  top: 43%;
  right: -132px;
  transition: transform 0.5s ease;
}
.about-home-wrapper .about-home-section .card .product-contents {
  width: 100%;
  max-width: 226px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.about-home-wrapper .about-home-section .card .product-contents h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: rgb(30, 30, 30);
}
.about-home-wrapper .about-home-section .card .product-contents p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgb(167, 164, 164);
}
.about-home-wrapper .about-home-section .card .product-contents a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgb(13, 110, 253);
  text-decoration: none;
}
.about-home-wrapper .about-home-section .card .product-other-contents {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 24px;
  left: 30px;
}
.about-home-wrapper .about-home-section .card .product-other-contents h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: rgb(30, 30, 30);
}
.about-home-wrapper .about-home-section .card .product-other-contents p {
  width: 100%;
  max-width: 226px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: start;
  color: rgb(167, 164, 164);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.about-home-wrapper .about-home-section .card .product-other-contents a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgb(13, 110, 253);
  text-decoration: none;
}
.about-home-wrapper .about-home-section .card-long {
  grid-row: span 2;
}

.selected-products-wrapper {
  width: 100%;
  padding: 0 50px;
}
.selected-products-wrapper .selected-products-section {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.selected-products-wrapper .selected-products-section .opportunity-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.selected-products-wrapper .selected-products-section .opportunity-content h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.selected-products-wrapper .selected-products-section .opportunity-content a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: rgb(13, 110, 253);
  display: flex;
  gap: 20px;
  transition: color 0.3s ease;
}
.selected-products-wrapper .selected-products-section .opportunity-content a img {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.selected-products-wrapper .selected-products-section .opportunity-content a:hover img {
  transform: translate(5px, -5px);
}
.selected-products-wrapper .selected-products-section .product-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 14px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img {
  background-color: rgb(246, 246, 246);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 28px 48px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .sale-product-content {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background-color: rgba(68, 216, 71, 0.16);
  border-radius: 14px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: rgb(20, 170, 23);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .slide-img {
  width: 100%;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
  transform: translateZ(0);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .bottom-icons {
  position: absolute;
  right: 16px;
  bottom: 16px;
  transform: translate(-50%, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s ease;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon {
  width: 44px;
  height: 44px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon img {
  width: 20px;
  height: 20px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon.active {
  background: rgb(13, 110, 253);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon.active img {
  filter: brightness(0) invert(1);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img:hover .bottom-icons {
  opacity: 1;
  transform: translate(-50%, 0);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-img:hover .slide-img {
  transform: scale(1.05);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .starts {
  display: flex;
  gap: 4px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .text {
  width: 100%;
  max-width: 259px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-align: start;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  color: rgb(30, 30, 30);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .price {
  display: flex;
  gap: 16px;
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.selected-products-wrapper .selected-products-section .product-cards .opportunity-cards .product-info .price .past-price {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}

.weekly-products-wrapper {
  width: 100%;
  padding: 0 50px;
}
.weekly-products-wrapper .week-products-section {
  width: 100%;
  max-width: 1340px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.weekly-products-wrapper .week-products-section .opportunity-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.weekly-products-wrapper .week-products-section .opportunity-content h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.weekly-products-wrapper .week-products-section .opportunity-content a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: rgb(13, 110, 253);
  display: flex;
  gap: 20px;
  transition: color 0.3s ease;
}
.weekly-products-wrapper .week-products-section .opportunity-content a img {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.weekly-products-wrapper .week-products-section .opportunity-content a:hover img {
  transform: translate(5px, -5px);
}
.weekly-products-wrapper .week-products-section .product-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  padding: 14px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img {
  background-color: rgb(246, 246, 246);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 28px 48px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .sale-product-content {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background-color: rgba(68, 216, 71, 0.16);
  border-radius: 14px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: rgb(20, 170, 23);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .selected-content {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background-color: rgba(255, 193, 7, 0.2);
  border-radius: 14px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: rgb(255, 193, 7);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .slide-img {
  width: 100%;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
  transform: translateZ(0);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .bottom-icons {
  position: absolute;
  right: 16px;
  bottom: 16px;
  transform: translate(-50%, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s ease;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon {
  width: 44px;
  height: 44px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon img {
  width: 20px;
  height: 20px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon.active {
  background: rgb(13, 110, 253);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img .bottom-icons .icon.active img {
  filter: brightness(0) invert(1);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img:hover .bottom-icons {
  opacity: 1;
  transform: translate(-50%, 0);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-img:hover .slide-img {
  transform: scale(1.05);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .starts {
  display: flex;
  gap: 4px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .text {
  width: 100%;
  max-width: 259px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-align: start;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  color: rgb(30, 30, 30);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .price {
  display: flex;
  gap: 16px;
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .price .past-price {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}

.products-wrapper {
  width: 100%;
  padding: 0 50px;
}
.products-wrapper .products-section {
  width: 100%;
  max-width: 1340px;
  margin: 30px auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.products-wrapper .products-section .aside-category {
  width: 100%;
  max-width: 320px;
  background-color: rgb(255, 255, 255);
  padding: 40px 24px;
  border-radius: 14px;
  align-self: flex-start;
}
.products-wrapper .products-section .aside-category .accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-item {
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-header {
  width: 100%;
  background: rgb(255, 255, 255);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.products-wrapper .products-section .aside-category .accordion .accordion-header span {
  font-weight: 500;
  font-size: 18px;
  color: rgb(30, 30, 30);
  text-transform: capitalize;
}
.products-wrapper .products-section .aside-category .accordion .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content {
  max-height: 0;
  overflow-x: auto;
  transition: max-height 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 16px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .link {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgb(30, 30, 30);
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .link.active {
  color: rgb(13, 110, 253);
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range {
  width: 100%;
  max-width: 272px;
  margin: 40px auto;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range .price-bubbles {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range .bubble {
  min-width: 128px;
  padding: 14px;
  text-align: center;
  background: #f5f5f5;
  border-radius: 16px;
  color: #6d6d6d;
  font-size: 14px;
  font-weight: 500;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range .range-box {
  position: relative;
  height: 6px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range .range-track {
  position: absolute;
  inset: 0;
  background: #e0e0e0;
  border-radius: 4px;
  z-index: 1;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range input[type=range] {
  position: absolute;
  inset: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  pointer-events: none;
  z-index: 2;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .price-range input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 10px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .custom-checkbox p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(30, 30, 30);
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgb(175, 175, 175);
  display: flex;
  align-items: center;
  border-radius: 2px;
  justify-content: center;
  transition: 0.2s;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .custom-checkbox input:checked + .checkmark {
  background-color: #0d6efd;
}
.products-wrapper .products-section .aside-category .accordion .accordion-content .custom-checkbox input:checked + .checkmark::after {
  display: block;
}
.products-wrapper .products-section .aside-category .accordion .accordion-item.active {
  padding-bottom: 30px;
  border-bottom: 0.8px solid rgb(218, 218, 218);
}
.products-wrapper .products-section .aside-category .accordion .accordion-item.active .accordion-content {
  max-height: 200px;
}
.products-wrapper .products-section .aside-category .accordion .accordion-item.active .icon {
  transform: rotate(179deg);
}
.products-wrapper .products-section .opportunity-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products-wrapper .products-section .opportunity-content h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.products-wrapper .products-section .opportunity-content a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: rgb(13, 110, 253);
  display: flex;
  gap: 20px;
  transition: color 0.3s ease;
}
.products-wrapper .products-section .opportunity-content a img {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.products-wrapper .products-section .opportunity-content a:hover img {
  transform: translate(5px, -5px);
}
.products-wrapper .products-section .card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.products-wrapper .products-section .card-grid .opportunity-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  padding: 14px;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img {
  background-color: rgb(246, 246, 246);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 28px 48px;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .sale-product-content {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background-color: rgba(68, 216, 71, 0.16);
  border-radius: 14px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: rgb(20, 170, 23);
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .slide-img {
  width: 100%;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
  transform: translateZ(0);
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .bottom-icons {
  position: absolute;
  right: 16px;
  bottom: 16px;
  transform: translate(-50%, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s ease;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .bottom-icons .icon {
  width: 44px;
  height: 44px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .bottom-icons .icon img {
  width: 20px;
  height: 20px;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .bottom-icons .icon.active {
  background: rgb(13, 110, 253) !important;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img .bottom-icons .icon.active img {
  filter: brightness(0) invert(1) !important;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img:hover .bottom-icons {
  opacity: 1;
  transform: translate(-50%, 0);
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-img:hover .slide-img {
  transform: scale(1.05);
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .starts {
  display: flex;
  gap: 4px;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .text {
  width: 100%;
  max-width: 259px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-align: start;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  color: rgb(30, 30, 30);
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .price {
  display: flex;
  gap: 16px;
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.products-wrapper .products-section .card-grid .opportunity-cards .product-info .price .past-price {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.products-wrapper .products-section .card-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.products-wrapper .products-section .card-list .column-cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 14px;
}
.products-wrapper .products-section .card-list .column-cards .column-link {
  text-decoration: none;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column {
  display: flex;
  align-items: center;
  gap: 30px;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .list-img {
  width: 212px;
  background: rgb(246, 246, 246);
  padding: 20px;
  border-radius: 8px;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .list-img .image {
  width: 172.52px;
  height: 114.52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .content {
  width: 100%;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .content .starts {
  display: flex;
  gap: 4px;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .content .starts img {
  width: 24px;
  height: 24px;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .content .text {
  width: 100%;
  max-width: 259px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .content .text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-align: start;
}
.products-wrapper .products-section .card-list .column-cards .column-link .left-column .content .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  color: rgb(30, 30, 30);
}
.products-wrapper .products-section .card-list .column-cards .details {
  margin-top: 130px;
  display: flex;
  gap: 20px;
}
.products-wrapper .products-section .card-list .column-cards .details span {
  font-weight: 600;
  font-size: 20px;
  color: rgb(218, 37, 1);
}
.products-wrapper .products-section .card-list .column-cards .details del {
  font-weight: 500;
  font-size: 18px;
  color: rgb(175, 175, 175);
}
.products-wrapper .products-section #cardList,
.products-wrapper .products-section #cardGrid {
  display: none;
}
.products-wrapper .products-section #cardList.active {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.products-wrapper .products-section #cardGrid.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-wrapper {
  position: relative;
  width: 100%;
  padding: 0 50px;
}
.blog-wrapper .blog-section {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-wrapper .blog-section .blog-content h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.blog-wrapper .blog-section .blogSwiper {
  width: 100%;
  height: 100%;
  /* navigation buttons */
}
.blog-wrapper .blog-section .blogSwiper .swiper-wrapper {
  height: 100%;
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide {
  width: 310px;
  text-align: center;
  font-size: 18px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 12px 25px;
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide img {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide .blog-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide .blog-info span {
  font-weight: 400;
  font-size: 12px;
  color: rgb(146, 145, 145);
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide .blog-info h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide .blog-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: start;
  color: rgb(146, 145, 145);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.blog-wrapper .blog-section .blogSwiper .swiper-slide .blog-info a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-decoration: none;
}
.blog-wrapper .blog-section .blogSwiper .swiper-button-next,
.blog-wrapper .blog-section .blogSwiper .swiper-button-prev {
  color: rgb(146, 145, 145);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 2px 1px 4px 0px rgba(129, 129, 129, 0.25);
  box-shadow: 2px 2px 4px 0px rgba(156, 156, 156, 0.25) inset;
  border-radius: 50%;
}
.blog-wrapper .blog-section .blogSwiper .swiper-button-next svg,
.blog-wrapper .blog-section .blogSwiper .swiper-button-prev svg {
  width: 8px;
}
.blog-wrapper .blog-section .blogSwiper .swiper-button-next::after,
.blog-wrapper .blog-section .blogSwiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
.blog-wrapper .blog-section .blogSwiper .swiper-button-prev {
  left: 20px;
  display: none;
}
.blog-wrapper .blog-section .blogSwiper .swiper-button-next {
  right: 0;
}

.blog-section-wrapper {
  width: 100%;
  padding: 0 50px;
}
.blog-section-wrapper .blogs {
  width: 100%;
  max-width: 1340px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-section-wrapper .blogs .blog-cards {
  width: 100%;
  text-align: center;
  font-size: 18px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 12px 12px;
  text-decoration: none;
}
.blog-section-wrapper .blogs .blog-cards img {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section-wrapper .blogs .blog-cards .blog-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.blog-section-wrapper .blogs .blog-cards .blog-info span {
  font-weight: 400;
  font-size: 12px;
  color: rgb(146, 145, 145);
}
.blog-section-wrapper .blogs .blog-cards .blog-info h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.blog-section-wrapper .blogs .blog-cards .blog-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: start;
  color: rgb(146, 145, 145);
}
.blog-section-wrapper .blogs .blog-cards .blog-info a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-decoration: none;
}

.blog-detail-wrapper {
  width: 100%;
  padding: 0 50px;
}
.blog-detail-wrapper .detail-section {
  width: 100%;
  max-width: 1340px;
  margin: 30px auto;
  display: flex;
  gap: 46px;
}
.blog-detail-wrapper .detail-section .detail-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-img {
  width: 100%;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 530px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 16px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .data {
  display: flex;
  gap: 28px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .data li {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: rgb(146, 145, 145);
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .data li:first-child {
  list-style: none;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .content h1 {
  font-weight: 600;
  font-size: 34px;
  line-height: 50px;
  color: rgb(39, 39, 39);
  text-align: start;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(118, 118, 118);
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .tags {
  display: flex;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .tags .tag {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgb(0, 125, 252);
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .blog-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .blog-media .icons {
  display: flex;
  gap: 12px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .blog-media .icons .media-icons {
  width: 36px;
  height: 36px;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .blog-media .icons .media-icons svg {
  width: 100%;
}
.blog-detail-wrapper .detail-section .detail-left .detail-info .blog-media span {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.6);
}
.blog-detail-wrapper .detail-section .sideBar {
  width: 100%;
  min-width: 434px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-detail-wrapper .detail-section .sideBar .search-blog {
  display: flex;
}
.blog-detail-wrapper .detail-section .sideBar .search-blog input {
  width: 100%;
  border: none;
  background-color: rgb(255, 255, 255);
  padding: 14px;
  outline: none;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.blog-detail-wrapper .detail-section .sideBar .search-blog input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.blog-detail-wrapper .detail-section .sideBar .search-blog input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.blog-detail-wrapper .detail-section .sideBar .search-blog .search-icon {
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
.blog-detail-wrapper .detail-section .sideBar .blog-categories {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  border-radius: 14px;
}
.blog-detail-wrapper .detail-section .sideBar .blog-categories h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: rgb(30, 30, 30);
}
.blog-detail-wrapper .detail-section .sideBar .blog-categories a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.blog-detail-wrapper .detail-section .sideBar .blog-categories a span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.blog-detail-wrapper .detail-section .sideBar .blog-categories a sub {
  font-weight: 400;
  font-size: 14px;
  color: rgb(118, 118, 118);
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  border-radius: 14px;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item {
  width: 100%;
  max-width: 386px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-bottom: 0.6px solid rgb(214, 214, 214);
  padding-bottom: 30px;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item:nth-child(3) {
  border-bottom: none;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-img {
  width: 100%;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-img img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text .data {
  display: flex;
  gap: 18px;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text .data li {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: rgb(146, 145, 145);
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text .data li:first-child {
  list-style: none;
}
.blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text p {
  font-weight: 400;
  font-size: 14px;
  color: rgb(30, 30, 30);
  text-align: start;
}
.blog-detail-wrapper .detail-section .sideBar .popular-tags {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 16px;
  padding: 30px 24px;
  background-color: rgb(255, 255, 255);
  border-radius: 14px;
}
.blog-detail-wrapper .detail-section .sideBar .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-detail-wrapper .detail-section .sideBar .tag span {
  background-color: rgb(247, 247, 247);
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(30, 30, 30);
  border-radius: 16px;
}

.product-detail-wrapper {
  width: 100%;
  padding: 0 50px;
  background-color: #F6F6F6;
}
.product-detail-wrapper .plastic-section {
  width: 100%;
  max-width: 1340px;
  margin: 50px auto !important;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
}
.product-detail-wrapper .plastic-section .product-right {
  width: 100%;
  max-width: 640px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 40px;
}
.product-detail-wrapper .plastic-section .product-right .product-main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.product-detail-wrapper .plastic-section .product-right .product-main-content span {
  color: rgb(146, 145, 145) 34;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.product-detail-wrapper .plastic-section .product-right .product-main-content h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: rgb(30, 30, 30);
}
.product-detail-wrapper .plastic-section .product-right .starts {
  display: flex;
  gap: 4px;
}
.product-detail-wrapper .plastic-section .product-right .price {
  display: flex;
  gap: 16px;
}
.product-detail-wrapper .plastic-section .product-right .price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.product-detail-wrapper .plastic-section .product-right .price .past-price {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.product-detail-wrapper .plastic-section .product-right .product-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgb(175, 175, 175);
  text-align: start;
}
.product-detail-wrapper .plastic-section .product-right .brends {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-detail-wrapper .plastic-section .product-right .brends .brend-text {
  display: flex;
  gap: 4px;
}
.product-detail-wrapper .plastic-section .product-right .brends .brend-text span {
  color: rgb(146, 145, 145);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.product-detail-wrapper .plastic-section .product-right .brends .brend-text p {
  color: rgb(30, 30, 30);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn {
  display: flex;
  gap: 12px;
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn .add-btn {
  background: rgb(243, 243, 243);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 14px;
  cursor: pointer;
  transition: 300ms ease;
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn .add-btn svg {
  transition: 300ms ease;
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn .add-btn:hover {
  background-color: rgb(13, 110, 253);
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn .add-btn:hover svg {
  fill: rgb(255, 255, 255);
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn .add-bucket-btn {
  width: 100%;
  background: rgb(13, 110, 253);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: 300ms ease;
}
.product-detail-wrapper .plastic-section .product-right .addIcons-and-btn .add-bucket-btn:hover {
  background-color: rgb(30, 30, 30);
}
.product-detail-wrapper .plastic-section .product-images {
  width: 100%;
  max-width: 660px;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-detail-wrapper .plastic-section .product-images .swiper {
  width: 100%;
  border-radius: 14px;
  position: relative;
}
.product-detail-wrapper .plastic-section .product-images .swiper-main {
  height: 512px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-main .swiper-slide {
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-detail-wrapper .plastic-section .product-images .swiper-main .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom {
  width: 100%;
  max-width: 113px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide {
  background: rgb(255, 255, 255);
  border-radius: 14px;
  width: 100%;
  height: 114px;
  opacity: 0.5;
  cursor: pointer;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid rgb(13, 110, 253);
  border-radius: 14px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 14px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next {
  width: 42px;
  height: 42px;
  background: rgba(244, 244, 244, 0.17);
  box-shadow: 2px 1px 4px 0px rgba(129, 129, 129, 0.25);
  box-shadow: 2px 2px 4px 0px rgba(156, 156, 156, 0.25) inset;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: 300ms ease;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev svg,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next svg {
  transition: 300ms ease;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev:hover,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next:hover {
  background: rgba(244, 244, 244, 0.42);
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev:hover svg,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next:hover svg {
  stroke: rgb(13, 110, 253);
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev::after,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next::after {
  display: none;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev svg,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next svg {
  width: 20px;
  height: 20px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev.swiper-button-prev,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next.swiper-button-prev {
  left: 5px;
}
.product-detail-wrapper .plastic-section .product-images .swiper-button-prev.swiper-button-next,
.product-detail-wrapper .plastic-section .product-images .swiper-button-next.swiper-button-next {
  right: 5px;
}

.about-product-wrapper {
  width: 100%;
  padding: 0 50px;
}
.about-product-wrapper .about-section {
  width: 100%;
  max-width: 1340px;
  margin: 62px auto;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
  border-radius: 14px;
}
.about-product-wrapper .about-section .about-main-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  padding: 12px;
}
.about-product-wrapper .about-section .about-main-content span {
  font-size: 26px;
  font-weight: 400;
  color: #005ccb;
}
.about-product-wrapper .about-section .aboutSwiper {
  width: 100%;
}
.about-product-wrapper .about-section .aboutSwiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-product-wrapper .about-section .aboutSwiper .swiper-slide {
  width: 250px !important;
  display: flex;
  flex-direction: column;
  margin-right: 20px !important;
  gap: 16px;
  border-radius: 12px;
}
.about-product-wrapper .about-section .aboutSwiper .swiper-slide .tab-btn {
  padding: 10px 18px;
  border-bottom: 2px solid transparent;
  background-color: #fff;
  color: rgb(175, 175, 175);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}
.about-product-wrapper .about-section .aboutSwiper .swiper-slide .tab-btn.active {
  color: rgb(13, 110, 253);
  border-bottom: 2px solid rgb(13, 110, 253);
}
.about-product-wrapper .about-section .tab-content {
  display: none;
  margin-top: 10px;
}
.about-product-wrapper .about-section .tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px;
}
.about-product-wrapper .about-section .tab-content.active p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgb(118, 118, 118);
}
.about-product-wrapper .about-section .tab-content.active h3 {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 30px;
}
.about-product-wrapper .about-section .tab-content.active .technical-characters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}
.about-product-wrapper .about-section .tab-content.active .technical-characters .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-product-wrapper .about-section .tab-content.active .technical-characters .list .list-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.about-product-wrapper .about-section .tab-content.active .technical-characters .list .list-text p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.5);
  line-height: 100%;
}
.about-product-wrapper .about-section .tab-content.active .technical-characters .list .list-text span {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgb(30, 30, 30);
}
.about-product-wrapper .about-section .tab-content.active .comments {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 60px;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate {
  display: flex;
  gap: 26px;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-star {
  display: flex;
  gap: 6px;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-star img {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-value {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-value h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: rgb(30, 30, 30);
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-value .value {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-value .value .circle {
  width: 6px;
  height: 6px;
  background-color: rgb(13, 110, 253);
  border-radius: 100px;
}
.about-product-wrapper .about-section .tab-content.active .comments .rate .give-value .value small {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(30, 30, 30);
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user {
  display: flex;
  gap: 44px;
  border-bottom: 0.5px solid rgb(207, 207, 207);
  padding-bottom: 40px;
  padding-top: 40px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user:nth-child(3) {
  border-bottom: none;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .profile {
  width: 64px;
  height: 60px;
  border: 2px solid rgb(13, 110, 253);
  border-radius: 100px;
  padding: 2px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .profile img {
  width: 100%;
  border-radius: 100px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .opinion {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 22px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .opinion .data-time .stars {
  display: flex;
  gap: 4px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .opinion .data-time .stars img {
  width: 20px;
  height: 20px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .opinion .data-time span {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: rgb(175, 168, 162);
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .opinion p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(118, 118, 118);
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .show-more {
  align-self: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .show-more span {
  font-weight: 600;
  font-size: 16px;
  color: rgb(13, 110, 253);
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment .after-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment.open .after-more {
  max-height: 3000px;
  opacity: 1;
}
.about-product-wrapper .about-section .tab-content.active .comments .user-comment.open .show-more {
  display: none;
}
.about-product-wrapper .about-section .tab-content.active .top-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-product-wrapper .about-section .tab-content.active .top-offers span {
  color: #333;
  font-size: 16px;
}
.about-product-wrapper .about-section .tab-content.active .top-offers .top-offers-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.about-product-wrapper .about-section .tab-content.active .top-offers .top-offers-tab .tab {
  color: #005ccb;
  font-size: 14px;
  font-size: 400;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  height: 32px;
  padding: 0 32px;
  text-decoration: none;
}
.about-product-wrapper .about-section .tab-content.active .your-advantage {
  color: #005ccb;
  font-size: 16px;
  font-weight: 500;
}

.compare-wrapper {
  width: 100%;
  padding: 0 50px;
}
.compare-wrapper .compare-section {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 62px auto;
  display: flex;
  gap: 20px;
}
.compare-wrapper .compare-section .compare-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare-wrapper .compare-section .compare-right .cmprSwiper {
  width: 100%;
}
.compare-wrapper .compare-section .compare-right .cmprSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.compare-wrapper .compare-section .compare-right .cmprSwiper .swiper-slide {
  width: 320px;
  display: flex;
  flex-direction: column;
  margin-right: 20px !important;
  gap: 16px;
  border-radius: 12px;
}
.compare-wrapper .compare-section .compare-right .cmprSwiper .swiper-slide .tab-btn {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  background: rgb(246, 246, 246);
  color: rgb(175, 175, 175);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}
.compare-wrapper .compare-section .compare-right .cmprSwiper .swiper-slide .tab-btn.active {
  color: rgb(13, 110, 253);
  border-bottom: 2px solid rgb(13, 110, 253);
}
.compare-wrapper .compare-section .compare-right .tab-dropdown {
  display: none;
}
.compare-wrapper .compare-section .compare-right .tab-content {
  display: none;
  margin-top: 10px;
  position: relative;
}
.compare-wrapper .compare-section .compare-right .tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper {
  width: 100%;
  height: 100%;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide {
  width: 320px;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  padding: 14px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img {
  background-color: rgb(246, 246, 246);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 28px 48px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img .delete-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  border-radius: 14px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img .slide-img {
  width: 100%;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
  transform: translateZ(0);
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img .bottom-icons {
  position: absolute;
  right: 16px;
  bottom: 16px;
  transform: translate(-50%, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s ease;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img .bottom-icons .icon {
  width: 44px;
  height: 44px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img .bottom-icons .icon img {
  width: 20px;
  height: 20px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img:hover .bottom-icons {
  opacity: 1;
  transform: translate(-50%, 0);
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-img:hover .slide-img {
  transform: scale(1.05);
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .starts {
  display: flex;
  gap: 4px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .text {
  width: 100%;
  max-width: 259px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(13, 110, 253);
  text-align: start;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  color: rgb(30, 30, 30);
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .price {
  display: flex;
  gap: 16px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .product-info .price .past-price {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .compare-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
  margin-top: 64px;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .compare-list .list {
  width: 100%;
}
.compare-wrapper .compare-section .compare-right .tab-content.active .swiper-slide .opportunity-cards .compare-list .list li {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgb(125, 125, 125);
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  text-align: left;
}
.compare-wrapper .compare-section .compare-left {
  width: 100%;
  max-width: 312px;
  margin-top: 67px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
  background: rgb(255, 255, 255);
  gap: 40px;
  border-radius: 14px;
  padding: 28px;
}
.compare-wrapper .compare-section .compare-left .top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.compare-wrapper .compare-section .compare-left .top .added-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 12px;
}
.compare-wrapper .compare-section .compare-left .top .added-products span {
  font-weight: 400;
  font-size: 14px;
  color: rgb(30, 30, 30);
}
.compare-wrapper .compare-section .compare-left .top .added-products .delete-all {
  border: none;
  background-color: rgb(255, 255, 255);
  display: flex;
  gap: 8px;
}
.compare-wrapper .compare-section .compare-left .top .added-products .delete-all span {
  font-weight: 400;
  font-size: 14px;
  color: rgb(167, 164, 164);
}
.compare-wrapper .compare-section .compare-left .top .radio-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio input {
  display: none;
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio .radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio .radio-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgb(13, 110, 253);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio input:checked + .radio-mark {
  border-color: rgb(13, 110, 253);
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio input:checked + .radio-mark::after {
  opacity: 1;
}
.compare-wrapper .compare-section .compare-left .top .radio-input .custom-radio .radio-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}
.compare-wrapper .compare-section .compare-left .bottom-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
}
.compare-wrapper .compare-section .compare-left .bottom-list .list {
  width: 100%;
}
.compare-wrapper .compare-section .compare-left .bottom-list .list li {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgb(30, 30, 30);
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  text-align: left;
}

.personal-wrapper {
  width: 100%;
  padding: 0 50px;
}
.personal-wrapper .personal-section {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 62px auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
.personal-wrapper .personal-section .section {
  width: 100%;
  display: flex;
  gap: 20px;
}
.personal-wrapper .personal-section .section .about-me {
  width: 100%;
  max-width: 314px;
  padding: 22px 28px;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.personal-wrapper .personal-section .section .about-me .user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
}
.personal-wrapper .personal-section .section .about-me .user-info .profile {
  width: 60px;
  height: 60px;
  border-radius: 100px;
}
.personal-wrapper .personal-section .section .about-me .user-info .profile img {
  width: 100%;
  border-radius: 100px;
}
.personal-wrapper .personal-section .section .about-me .user-info .user-name h3 {
  font-weight: 500;
  font-size: 18px;
  color: #093663;
}
.personal-wrapper .personal-section .section .about-me .user-info .user-name span {
  font-weight: 400;
  font-size: 12px;
  color: #AFAFAF;
}
.personal-wrapper .personal-section .section .about-me .personal-menu {
  border-radius: 12px;
  border: 2px solid #E5E5E5;
  /* MODAL */
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn {
  width: 100%;
  padding: 14px;
  background: rgb(255, 255, 255);
  border: 2px solid rgb(229, 229, 229);
  color: rgb(175, 175, 175);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn.active {
  background: rgb(13, 110, 253);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn.active svg {
  stroke: rgb(255, 255, 255);
  fill: rgb(13, 110, 253);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn.active span {
  color: rgb(255, 255, 255);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn.active .exit {
  stroke: rgb(218, 37, 1);
  fill: rgb(218, 37, 1);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn.active .exit-text {
  color: rgb(218, 37, 1);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn svg {
  stroke: rgb(119, 119, 119);
  fill: rgb(255, 255, 255);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn .exit {
  stroke: rgb(218, 37, 1);
  fill: rgb(218, 37, 1);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn span {
  font-weight: 400;
  font-size: 16px;
  color: rgb(119, 119, 119);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .tab-btn .exit-text {
  color: rgb(218, 37, 1);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal.active {
  padding: 0 20px;
  opacity: 1;
  visibility: visible;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content {
  background: #fff;
  padding: 50px;
  border-radius: 14px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content input {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgb(202, 202, 202);
  font-size: 14px;
  outline: none;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .modalInside {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .modalInside h4 {
  color: rgb(30, 30, 30);
  font-size: 22px;
  font-weight: 500;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .modalInside span {
  font-weight: 400;
  font-size: 16px;
  color: rgb(119, 119, 119);
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .modalInside .leave-btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .modalInside .leave-btns .cls-btn {
  width: 100%;
  background: rgb(243, 243, 243);
  font-weight: 400;
  font-size: 16px;
  border-radius: 14px;
  color: rgb(30, 30, 30);
  padding: 10px;
  border: none;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .modalInside .leave-btns .delete-btn {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  border-radius: 14px;
  padding: 10px;
  color: rgb(255, 255, 255);
  background: rgb(13, 110, 253);
  border: none;
}
.personal-wrapper .personal-section .section .about-me .personal-menu .delet-modal .modal-content .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content {
  display: none;
  position: relative;
}
.personal-wrapper .personal-section .section .tab-content.active {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel {
  background: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 14px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .orders-card {
  background: rgba(13, 110, 253, 0.1019607843);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 18px 57px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .orders-card .panel-img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #D7E7FF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .orders-card .panel-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .completed-card {
  background: rgba(87, 237, 90, 0.1019607843);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 18px 57px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .completed-card .panel-img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #E0F5E0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .completed-card .panel-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .recycle-card {
  background: rgba(245, 193, 36, 0.1019607843);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 18px 57px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .recycle-card .panel-img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #FFF0C2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .recycle-card .panel-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .canceled-card {
  background: rgba(255, 49, 8, 0.1019607843);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 18px 57px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .canceled-card .panel-img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #FED9D2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .canceled-card .panel-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .unaccustomed-card {
  background: rgba(207, 207, 207, 0.1294117647);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 18px 57px;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .unaccustomed-card .panel-img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #EEEEEE;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .managing-panel .unaccustomed-card .panel-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 14px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 0.5px solid rgb(233, 228, 228);
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item:nth-child(3) {
  border-bottom: none;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left {
  display: flex;
  gap: 30px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .image {
  width: 160px;
  height: 160px;
  border-radius: 6px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: start;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .img-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .img-content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(146, 145, 145);
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .img-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .img-content div {
  display: flex;
  gap: 14px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .img-content div small {
  font-weight: 400;
  font-size: 12px;
  color: rgb(204, 204, 204);
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .trash-like {
  display: flex;
  gap: 12px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .trash-like .trash-bin {
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(247, 247, 247);
  box-shadow: 2px 2px 4px 0px rgba(142, 142, 142, 0.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-left .left-content .trash-like .like-btn {
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(247, 247, 247);
  box-shadow: 2px 2px 4px 0px rgba(142, 142, 142, 0.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  gap: 12px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-right .price {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-right .quantity {
  width: 120px;
  height: 40x;
  display: flex;
  justify-content: center;
  align-items: right;
  margin-top: 24px;
  gap: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 2px 2px 4px 0px rgba(142, 142, 142, 0.25);
  border-radius: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-right .quantity .qty-btn {
  border: none;
  background: rgb(255, 255, 255);
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
}
.personal-wrapper .personal-section .section .tab-content.active .bucket-left .item .item-right .quantity .qty-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(30, 30, 30);
  text-align: center;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 60px 50px;
  gap: 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form-content {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside .password {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside .password .secure {
  width: 100%;
  background-color: #fff;
  padding: 12px 20px;
  outline: none;
  border: none;
  box-shadow: none;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside .password .closed-eye {
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside .password .opened-eye {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .download-file {
  width: 100%;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .download-file label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .download-file .addFile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
  padding: 12px 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .download-file .addFile input[type=file]::file-selector-button {
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 12px 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .download-file .addFile .placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgb(180, 180, 180);
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .checkbox span {
  font-weight: 400;
  font-size: 14px;
  color: rgb(125, 125, 125);
}
.personal-wrapper .personal-section .section .tab-content.active .contact-left .form .form-submit {
  width: 150px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  color: rgb(255, 255, 255);
  background-color: rgb(13, 110, 253);
  border-radius: 14px;
  padding: 12px;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 60px 50px;
  gap: 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-top span {
  font-weight: 500;
  font-size: 20px;
  color: rgb(30, 30, 30);
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-top .newSurvey {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgb(13, 110, 253);
  border: 1px solid rgb(13, 110, 253);
  border-radius: 14px;
  padding: 10px;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom {
  width: 100%;
  overflow-x: auto;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table {
  width: 100%;
  min-width: 100px;
  border-collapse: separate;
  border-spacing: 0;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table th,
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table td {
  border: 0.1px solid rgb(208, 208, 208);
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table th {
  font-weight: 500;
  font-size: 14px;
  color: rgb(63, 63, 63);
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table thead tr th:first-child {
  border-top-left-radius: 14px;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table thead tr th:last-child {
  border-top-right-radius: 14px;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .custom-table tr:nth-child(even) {
  background-color: #fafafa;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .no-border-row td {
  text-align: center;
  padding: 12px;
  color: #888;
  font-size: 14px;
}
.personal-wrapper .personal-section .section .tab-content.active .create-survey .survey-bottom .no-border-row td.code {
  color: rgb(13, 110, 253) !important;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 60px 50px;
  gap: 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey-top span {
  font-weight: 500;
  font-size: 20px;
  color: rgb(30, 30, 30);
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey-top .newSurvey {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgb(13, 110, 253);
  border: 1px solid rgb(13, 110, 253);
  border-radius: 14px;
  padding: 8px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside .password {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside .password .secure {
  width: 100%;
  background-color: #fff;
  padding: 12px 20px;
  outline: none;
  border: none;
  box-shadow: none;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside .password .closed-eye {
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside .password .opened-eye {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .download-file {
  width: 100%;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .download-file label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .download-file .addFile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
  padding: 12px 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .download-file .addFile input[type=file]::file-selector-button {
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 12px 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .download-file .addFile .placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgb(180, 180, 180);
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .checkbox span {
  font-weight: 400;
  font-size: 14px;
  color: rgb(125, 125, 125);
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .survey .form .form-submit {
  width: 150px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  color: rgb(255, 255, 255);
  background-color: rgb(13, 110, 253);
  border-radius: 14px;
  padding: 12px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside .password {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside .password .secure {
  width: 100%;
  background-color: #fff;
  padding: 12px 20px;
  outline: none;
  border: none;
  box-shadow: none;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside .password .closed-eye {
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside .password .opened-eye {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .text-area label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .text-area label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .text-area #textArea {
  width: 100%;
  height: 160px;
  outline: none;
  resize: none;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border: 0.5px solid #F0F0F0;
  border-radius: 16px;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .text-area #textArea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .get-back .text-area #textArea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active #createSurvey,
.personal-wrapper .personal-section .section .tab-content.active #getBack {
  display: none;
}
.personal-wrapper .personal-section .section .tab-content.active #createSurvey.active,
.personal-wrapper .personal-section .section .tab-content.active #getBack.active {
  display: flex;
}
.personal-wrapper .personal-section .section .tab-content.active .location {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 60px 50px;
  gap: 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .survey-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.personal-wrapper .personal-section .section .tab-content.active .location .survey-top span {
  font-weight: 500;
  font-size: 20px;
  color: rgb(30, 30, 30);
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside .password {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border-radius: 16px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside .password .secure {
  width: 100%;
  background-color: #fff;
  padding: 12px 20px;
  outline: none;
  border: none;
  box-shadow: none;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside .password .closed-eye {
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside .password .opened-eye {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside input {
  width: 50%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 32px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname .input-inside label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .input-location {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .input-location label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .input-location label span {
  color: red;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .input-location input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .input-location input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .input-location input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form #chooseCountry {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/img/selector-icon.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 40px;
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 400;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form #chooseCountry option {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
  border: 0.5px solid #F0F0F0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check .custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 10px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check .custom-checkbox p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(146, 145, 145);
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check .checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgb(208, 208, 208);
  display: flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  transition: 0.2s;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check .custom-checkbox input:checked + .checkmark {
  background-color: #0d6efd;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .check .custom-checkbox input:checked + .checkmark::after {
  display: block;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .form-btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .form-btns .get-bucket {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  background: rgb(13, 110, 253);
  border-radius: 16px;
  padding: 12px 70px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .form-btns .get-bucket a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .form-btns .forward-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  background: rgba(13, 110, 253, 0.5);
  border-radius: 16px;
  padding: 12px 70px;
}
.personal-wrapper .personal-section .section .tab-content.active .location .form .form-btns .forward-btn a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.bucket-wrapper {
  width: 100%;
  padding: 0 50px;
}
.bucket-wrapper .bucket-section {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
.bucket-wrapper .bucket-section .bucket-left {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 14px;
}
.bucket-wrapper .bucket-section .bucket-left .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 0.5px solid rgb(233, 228, 228);
}
.bucket-wrapper .bucket-section .bucket-left .item:nth-child(3) {
  border-bottom: none;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left {
  display: flex;
  gap: 30px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .image {
  width: 160px;
  height: 160px;
  border-radius: 6px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: start;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .img-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .img-content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(146, 145, 145);
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .img-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .img-content div {
  display: flex;
  gap: 14px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .img-content div small {
  font-weight: 400;
  font-size: 12px;
  color: rgb(204, 204, 204);
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .trash-like {
  display: flex;
  gap: 12px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .trash-like .trash-bin {
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(247, 247, 247);
  box-shadow: 2px 2px 4px 0px rgba(142, 142, 142, 0.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .trash-like .like-btn {
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(247, 247, 247);
  box-shadow: 2px 2px 4px 0px rgba(142, 142, 142, 0.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  gap: 12px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-right .price {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.bucket-wrapper .bucket-section .bucket-left .item .item-right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.bucket-wrapper .bucket-section .bucket-left .item .item-right .quantity {
  width: 120px;
  height: 40x;
  display: flex;
  justify-content: center;
  align-items: right;
  margin-top: 24px;
  gap: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 2px 2px 4px 0px rgba(142, 142, 142, 0.25);
  border-radius: 20px;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-right .quantity .qty-btn {
  border: none;
  background: rgb(255, 255, 255);
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
}
.bucket-wrapper .bucket-section .bucket-left .item .item-right .quantity .qty-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(30, 30, 30);
  text-align: center;
}
.bucket-wrapper .bucket-section .bucket-right {
  width: 100%;
  max-width: 434px;
  /* MODAL */
}
.bucket-wrapper .bucket-section .bucket-right .bc-top {
  background-color: rgb(255, 255, 255);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 14px;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-top h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: rgb(0, 0, 0);
  text-align: start;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-top .price-of-product {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-top .price-of-product p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(30, 30, 30, 0.6);
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-top .price-of-product .price {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(30, 30, 30, 0.6);
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .overall-sum {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16p2x;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .overall-sum .overall {
  color: rgba(30, 30, 30, 0.6);
  font-size: 16px;
  font-weight: 400;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .overall-sum .sum {
  font-weight: 600;
  font-size: 18px;
  color: rgb(30, 30, 30);
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .buttons .submitBtn {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  background: rgb(13, 110, 253);
  border: none;
  color: rgb(255, 255, 255);
  padding: 14px;
  border-radius: 14px;
  transition: 300ms ease;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .buttons .submitBtn:hover {
  background-color: rgb(30, 30, 30);
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .buttons .get-product-btn {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(13, 110, 253);
  padding: 14px;
  border-radius: 14px;
  transition: 300ms ease;
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .buttons .get-product-btn:hover {
  background-color: rgb(255, 255, 255);
}
.bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .buttons .get-product-btn a {
  text-decoration: none;
  color: rgb(13, 110, 253);
}
.bucket-wrapper .bucket-section .bucket-right .bc-bottom {
  background-color: rgb(255, 255, 255);
  padding: 24px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 14px;
  margin-top: 20px;
  cursor: pointer;
}
.bucket-wrapper .bucket-section .bucket-right .bc-bottom span {
  font-weight: 500;
  font-size: 18px;
  color: rgb(30, 30, 30);
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal.active {
  opacity: 1;
  visibility: visible;
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal .modal-content {
  background: #fff;
  padding: 50px;
  border-radius: 14px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal .modal-content input {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgb(202, 202, 202);
  font-size: 14px;
  outline: none;
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal .modal-content input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal .modal-content input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(175, 175, 175);
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal .modal-content .apply-btn {
  padding: 12px;
  background: rgb(13, 110, 253);
  font-weight: 400;
  font-size: 16px;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 14px;
  cursor: pointer;
}
.bucket-wrapper .bucket-section .bucket-right .promo-modal .modal-content .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.invoice-wrapper {
  width: 100%;
  padding: 0 50px;
}
.invoice-wrapper .invoice-section {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 62px auto;
  display: flex;
  gap: 20px;
}
.invoice-wrapper .invoice-section .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.invoice-wrapper .invoice-section .form .form-steps {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 14px;
}
.invoice-wrapper .invoice-section .form .form-steps .current {
  width: 162px !important;
  display: flex;
  flex-direction: column;
  margin-right: 20px !important;
  gap: 16px;
  border-radius: 12px;
}
.invoice-wrapper .invoice-section .form .form-steps .current.done {
  color: rgb(73, 215, 90);
  display: flex;
  align-items: center;
}
.invoice-wrapper .invoice-section .form .form-steps .current .adress-btn {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  background: rgb(255, 255, 255);
  color: rgb(175, 175, 175);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.invoice-wrapper .invoice-section .form .form-steps .current .adress-btn.active {
  color: rgb(13, 110, 253);
}
.invoice-wrapper .invoice-section .form .form-steps .current .adress-btn .done-svg {
  display: none;
}
.invoice-wrapper .invoice-section .form .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.invoice-wrapper .invoice-section .form .content .address {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 14px;
  align-items: start;
  gap: 40px;
}
.invoice-wrapper .invoice-section .form .content .address .form-content {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.invoice-wrapper .invoice-section .form .content .address .delivery-main-text {
  width: 100%;
  font-weight: 500;
  font-size: 20px;
  color: rgb(30, 30, 30);
  padding-bottom: 20px;
  border-bottom: 0.6px solid rgb(175, 175, 175);
}
.invoice-wrapper .invoice-section .form .content .address .delivery-content {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 50px;
}
.invoice-wrapper .invoice-section .form .content .address .delivery-content .text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.invoice-wrapper .invoice-section .form .content .address .delivery-content .text h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.invoice-wrapper .invoice-section .form .content .address .delivery-content .text .item {
  display: flex;
  gap: 20px;
}
.invoice-wrapper .invoice-section .form .content .address .delivery-content .text .item span {
  color: rgb(30, 30, 30);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.invoice-wrapper .invoice-section .form .content .address .delivery-content .text .item p {
  color: rgb(125, 125, 125);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.invoice-wrapper .invoice-section .form .content .address .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 32px;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname .input-inside label span {
  color: red;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.invoice-wrapper .invoice-section .form .content .address .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.invoice-wrapper .invoice-section .form .content .address .form .input-location {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.invoice-wrapper .invoice-section .form .content .address .form .input-location label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.invoice-wrapper .invoice-section .form .content .address .form .input-location label span {
  color: red;
}
.invoice-wrapper .invoice-section .form .content .address .form .input-location input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.invoice-wrapper .invoice-section .form .content .address .form .input-location input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.invoice-wrapper .invoice-section .form .content .address .form .input-location input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.invoice-wrapper .invoice-section .form .content .address .form #chooseCountry {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/img/selector-icon.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 40px;
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 400;
}
.invoice-wrapper .invoice-section .form .content .address .form #chooseCountry option {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
  border: 0.5px solid #F0F0F0;
}
.invoice-wrapper .invoice-section .form .content .address .form .check {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.invoice-wrapper .invoice-section .form .content .address .form .check .custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 10px;
}
.invoice-wrapper .invoice-section .form .content .address .form .check .custom-checkbox p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(146, 145, 145);
}
.invoice-wrapper .invoice-section .form .content .address .form .check .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.invoice-wrapper .invoice-section .form .content .address .form .check .checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgb(208, 208, 208);
  display: flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  transition: 0.2s;
}
.invoice-wrapper .invoice-section .form .content .address .form .check .custom-checkbox input:checked + .checkmark {
  background-color: #0d6efd;
}
.invoice-wrapper .invoice-section .form .content .address .form .check .custom-checkbox input:checked + .checkmark::after {
  display: block;
}
.invoice-wrapper .invoice-section .form .content .address .form .form-btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.invoice-wrapper .invoice-section .form .content .address .form .form-btns .get-bucket {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  background: rgb(13, 110, 253);
  border-radius: 16px;
  padding: 12px 70px;
}
.invoice-wrapper .invoice-section .form .content .address .form .form-btns .get-bucket a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.invoice-wrapper .invoice-section .form .content .address .form .form-btns .forward-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  background: rgba(13, 110, 253, 0.5);
  border-radius: 16px;
  padding: 12px 70px;
}
.invoice-wrapper .invoice-section .form .content .address .form .form-btns .forward-btn a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.invoice-wrapper .invoice-section .shipping-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.invoice-wrapper .invoice-section .shipping-options h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 10px;
  color: rgb(30, 30, 30);
  border-bottom: 0.6px solid rgb(175, 175, 175);
}
.invoice-wrapper .invoice-section .shipping-options #deliveryOptions {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgb(208, 208, 208);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/img/selector-icon.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  margin-top: 20px;
  background-size: 24px;
  padding-right: 40px;
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 400;
}
.invoice-wrapper .invoice-section .shipping-options #deliveryOptions option {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
  border: 0.5px solid #F0F0F0;
}
.invoice-wrapper .invoice-section .shipping-options .select-method {
  text-align: left;
  color: rgb(255, 193, 7);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.invoice-wrapper .invoice-section .payment-methods {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.invoice-wrapper .invoice-section .payment-methods h4 {
  width: 100%;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 0.6px solid rgb(175, 175, 175);
}
.invoice-wrapper .invoice-section .payment-methods .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.invoice-wrapper .invoice-section .payment-methods .cards .card-inside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgb(245, 245, 245);
  border-radius: 14px;
  padding: 25px;
}
.invoice-wrapper .invoice-section .payment-methods .cards .card-inside img {
  width: 84px;
  height: 34px;
  -o-object-fit: cover;
     object-fit: cover;
}
.invoice-wrapper .invoice-section .payment-methods .cards .card-inside span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.invoice-wrapper .invoice-section .form-right {
  width: 100%;
  max-width: 434px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.invoice-wrapper .invoice-section .form-right .top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 14px;
}
.invoice-wrapper .invoice-section .form-right .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 14px;
}
.invoice-wrapper .invoice-section .form-right .bottom .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left {
  display: flex;
  gap: 30px;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .image {
  width: 160px;
  height: 160px;
  border-radius: 6px;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: start;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content .img-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content .img-content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(146, 145, 145);
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content .img-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(30, 30, 30);
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content .img-content div {
  display: flex;
  gap: 14px;
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content .img-content div small {
  font-weight: 400;
  font-size: 12px;
  color: rgb(204, 204, 204);
}
.invoice-wrapper .invoice-section .form-right .bottom .item .item-left .left-content .img-content .price {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: rgb(218, 37, 1);
}
.invoice-wrapper .invoice-section .form-right .total-sum {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  border-bottom: 0.5px solid rgb(146, 145, 145);
  padding-bottom: 30px;
}
.invoice-wrapper .invoice-section .form-right .total-sum h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: rgb(0, 0, 0);
}
.invoice-wrapper .invoice-section .form-right .text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.invoice-wrapper .invoice-section .form-right .text span {
  color: rgba(30, 30, 30, 0.6);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.invoice-wrapper .invoice-section .form-right .text p {
  font-weight: 600;
  font-size: 18px;
  color: rgb(30, 30, 30);
}

.contact-wrapper {
  width: 100%;
  padding: 0 50px;
}
.contact-wrapper .contact-section {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 62px auto;
  display: flex;
  gap: 20px;
}
.contact-wrapper .contact-section .contact-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 60px 50px;
  gap: 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.contact-wrapper .contact-section .contact-left .form-content {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
  color: #242424;
}
.contact-wrapper .contact-section .contact-left .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 24px;
}
.contact-wrapper .contact-section .contact-left .form .name-surname {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside label span {
  color: red;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 9px;
}
.contact-wrapper .contact-section .contact-left .form .text-area #textArea {
  width: 100%;
  height: 160px;
  outline: none;
  resize: none;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border: 0.5px solid #F0F0F0;
  border-radius: 16px;
}
.contact-wrapper .contact-section .contact-left .form .text-area #textArea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .text-area #textArea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.contact-wrapper .contact-section .contact-left .form .form-submit {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border: none;
  color: rgb(255, 255, 255);
  background-color: rgb(13, 110, 253);
  border-radius: 14px;
  padding: 12px 70px;
}
.contact-wrapper .contact-section .contact-right {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-wrapper .contact-section .contact-right .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background: rgb(255, 255, 255);
  border-radius: 14px;
}
.contact-wrapper .contact-section .contact-right .item .adress-icon {
  display: flex;
  align-items: center;
}
.contact-wrapper .contact-section .contact-right .item .adress-content {
  width: 100%;
  max-width: 222px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 4px;
}
.contact-wrapper .contact-section .contact-right .item .adress-content h4 {
  font-weight: 500;
  font-size: 16px;
  color: rgb(30, 30, 30);
}
.contact-wrapper .contact-section .contact-right .item .adress-content p {
  font-weight: 400;
  font-size: 14px;
  color: rgb(167, 164, 164);
}
.contact-wrapper .contact-section .contact-right .social-media {
  display: flex;
  gap: 16px;
}
.contact-wrapper .contact-section .contact-right .social-media .icon {
  text-decoration: none;
  width: 48px;
  height: 48px;
  border: 0.5px solid rgb(211, 214, 218);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 12px;
}
.contact-wrapper .contact-section .contact-right .social-media .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-wrapper {
  width: 100%;
  padding: 0 50px;
}
.about-wrapper .about-section {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 62px auto;
  border-radius: 20px;
}
.about-wrapper .about-section .about-image {
  width: 100%;
}
.about-wrapper .about-section .about-image img {
  width: 100%;
  height: 480px;
  border-radius: 20px;
}
.about-wrapper .about-section .about-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.about-wrapper .about-section .about-content h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: rgb(13, 110, 253);
}
.about-wrapper .about-section .about-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(118, 118, 118);
}

.logo-wrapper {
  position: relative;
  width: 100%;
  padding: 0 50px;
}
.logo-wrapper .logo-section {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.logo-wrapper .logo-section .logo-content h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  color: rgb(30, 30, 30);
}
.logo-wrapper .logo-section .logoSwiper {
  width: 100%;
  height: 100%;
}
.logo-wrapper .logo-section .logoSwiper .swiper-wrapper {
  height: 100%;
}
.logo-wrapper .logo-section .logoSwiper .swiper-slide {
  width: 207px;
  text-align: center;
  font-size: 18px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(237, 237, 237);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 30px 40px;
}
.logo-wrapper .logo-section .logoSwiper .swiper-slide img {
  width: 100%;
  height: 26px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-wrapper {
  width: 100%;
  padding: 0 50px;
}
.footer-wrapper .footer-section {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  background-color: rgb(30, 30, 30);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  padding: 60px 60px;
  padding-bottom: 22px;
  position: relative;
}
.footer-wrapper .footer-section .contact-with-us {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 0.5px solid rgb(83, 83, 83);
  margin-bottom: 22px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info ul li {
  list-style: none;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info a {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 10px;
  text-decoration: none;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .social-media {
  display: flex;
  gap: 16px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .social-media .icon {
  text-decoration: none;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(223, 223, 223, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 12px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .social-media .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(30, 30, 30);
  border: 1px solid rgb(86, 86, 86);
  border-radius: 14px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .mail img {
  width: 20px;
  height: 20px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .mail input {
  width: 100%;
  background-color: rgb(30, 30, 30);
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 14px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .mail input::-moz-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255);
}
.footer-wrapper .footer-section .contact-with-us .contact-info .mail input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255);
}
.footer-wrapper .footer-section .contact-with-us .contact-info .abone-btn {
  width: 100%;
  background: rgb(13, 110, 253);
  border-radius: 14px;
  padding: 10px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
}
.footer-wrapper .footer-section .contact-with-us .contact-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(204, 204, 204);
  text-align: start;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .debit-cards {
  width: 100%;
  display: flex;
  gap: 18px;
}
.footer-wrapper .footer-section .contact-with-us .contact-info .debit-cards img {
  width: 46px;
  height: 26px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left {
  width: 100%;
  display: flex;
  gap: 40px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info ul li {
  list-style: none;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info a {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 10px;
  text-decoration: none;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .social-media {
  display: flex;
  gap: 16px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .social-media .icon {
  text-decoration: none;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(223, 223, 223, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 12px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .social-media .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(30, 30, 30);
  border: 1px solid rgb(86, 86, 86);
  border-radius: 14px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .mail img {
  width: 20px;
  height: 20px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .mail input {
  width: 100%;
  background-color: rgb(30, 30, 30);
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 14px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .mail input::-moz-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255);
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .mail input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255);
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .abone-btn {
  width: 100%;
  background: rgb(13, 110, 253);
  border-radius: 14px;
  padding: 10px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(204, 204, 204);
  text-align: start;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .debit-cards {
  width: 100%;
  display: flex;
  gap: 18px;
}
.footer-wrapper .footer-section .contact-with-us .footer-left .contact-info .debit-cards img {
  width: 46px;
  height: 26px;
}
.footer-wrapper .end {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 1250px) {
  .invoice-wrapper .invoice-section .form .content .address .form .form-btns .forward-btn {
    padding: 12px 52px;
  }
  .invoice-wrapper .invoice-section .form .content .address .form .form-btns .get-bucket {
    padding: 12px 44px;
  }
  .about-product-wrapper .about-section .tab-content.active .comments .user-comment .user {
    display: flex;
    gap: 16px;
  }
  .about-product-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .compare-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .personal-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .personal-wrapper .personal-section .section .tab-content.active .contact-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    padding: 42px 26px;
    gap: 40px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
  }
  .invoice-wrapper .invoice-section .payment-methods .cards .card-inside {
    padding: 18px;
  }
  .invoice-wrapper .invoice-section .form .content .address .form-content {
    font-weight: 400;
    font-size: 28px;
  }
  .products-wrapper .products-section .card-grid .opportunity-cards .product-info .text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: start;
    color: rgb(30, 30, 30);
  }
  .blog-section-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .blog-section-wrapper .blogs {
    width: 100%;
    max-width: 1340px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .text p {
    font-weight: 400;
    font-size: 16px;
  }
  .weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .price .sale-price {
    font-weight: 600;
    font-size: 16px;
  }
  .weekly-products-wrapper .week-products-section .product-cards .opportunity-cards .product-info .price .past-price {
    font-weight: 500;
    font-size: 14px;
  }
  .products-wrapper .products-section .card-grid .opportunity-cards .product-info .price .past-price {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: rgb(175, 175, 175);
  }
  .products-wrapper .products-section .card-grid .opportunity-cards .product-info .price {
    display: flex;
    gap: 10px;
  }
  .products-wrapper .products-section .card-grid .opportunity-cards .product-info .price .sale-price {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: rgb(218, 37, 1);
  }
  .products-wrapper .products-section .aside-category {
    width: 100%;
    max-width: 277px;
    background-color: rgb(255, 255, 255);
    padding: 40px 10px;
    border-radius: 14px;
  }
  .products-wrapper .products-section .aside-category .accordion .accordion-content .price-range .bubble {
    min-width: 100px;
  }
  .breadcrumb {
    width: 100%;
    padding: 0 20px;
  }
  .arrangement-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .products-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .navBar {
    width: 100%;
    padding: 0 20px;
  }
  .breadcrumb {
    padding-left: 20px;
  }
  .arrangement-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .invoice-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .footer-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .header-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .hero-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .weekly-opportunity-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .about-home-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .selected-products-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .blog-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .logo-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .product-detail-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .weekly-products-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .blog-detail-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .blog-detail-wrapper .detail-section {
    width: 100%;
    max-width: 1340px;
    margin: 30px auto;
    display: flex;
    gap: 28px;
  }
  .blog-detail-wrapper .detail-section .detail-left .detail-img {
    width: 100%;
    border-radius: 14px;
    -o-object-fit: cover;
    object-fit: cover;
    height: 384px;
  }
  .blog-detail-wrapper .detail-section .detail-left .detail-info .content h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
  }
  .blog-detail-wrapper .detail-section .detail-left .detail-info .content p {
    font-weight: 400;
    font-size: 14px;
  }
  .blog-detail-wrapper .detail-section .sideBar {
    width: 100%;
    min-width: 388px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .selected-products-wrapper .selected-products-section .product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer-wrapper .footer-section {
    padding: 40px 20px;
  }
  .product-detail-wrapper .plastic-section .product-right {
    width: 100%;
    max-width: 470px;
  }
  .weekly-products-wrapper .week-products-section .product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .about-wrapper .about-section .about-image img {
    width: 100%;
    height: 420px;
    border-radius: 20px;
  }
  .about-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .bucket-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .bucket-wrapper .bucket-section .bucket-right {
    width: 100%;
    max-width: 328px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-right p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgb(175, 175, 175);
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-right .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgb(218, 37, 1);
  }
  .bucket-wrapper .bucket-section .bucket-right .bc-top {
    background-color: rgb(255, 255, 255);
    padding: 40px 16px;
  }
  .bucket-wrapper .bucket-section .bucket-right .bc-top .right-top .price-of-product p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(30, 30, 30, 0.6);
  }
  .bucket-wrapper .bucket-section .bucket-right .bc-top .right-top .price-of-product .price {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(30, 30, 30, 0.6);
  }
  .bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .overall-sum .overall {
    color: rgba(30, 30, 30, 0.6);
    font-size: 14px;
    font-weight: 400;
  }
  .bucket-wrapper .bucket-section .bucket-right .bc-top .right-bottom .overall-sum .sum {
    font-weight: 600;
    font-size: 16px;
    color: rgb(30, 30, 30);
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-left {
    display: flex;
    gap: 22px;
  }
}
@media only screen and (max-width: 1068px) {
  .invoice-wrapper .invoice-section {
    width: 100%;
    max-width: 1340px;
    height: 100%;
    margin: 62px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-left .image {
    width: 140px;
    height: 140px;
    border-radius: 6px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .trash-like .trash-bin {
    width: 40px;
    height: 40px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .trash-like .like-btn {
    width: 40px;
    height: 40px;
  }
  .products-wrapper .products-section .card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bucket-wrapper .bucket-section .bucket-left {
    width: 100%;
    background-color: rgb(255, 255, 255);
    padding: 40px 10px;
  }
  .footer-wrapper .footer-section .contact-with-us .contact-info ul li {
    font-size: 14px;
  }
  .footer-wrapper .footer-section .contact-with-us .contact-info h3 {
    font-size: 16px;
  }
  .footer-wrapper .footer-section .contact-with-us .contact-info a {
    font-size: 14px;
  }
  .footer-wrapper .footer-section .contact-with-us .contact-info .social-media .icon {
    width: 40px;
    height: 40px;
  }
  .footer-wrapper .footer-section .contact-with-us .contact-info .social-media .icon img {
    width: 20px;
    height: 20px;
  }
  .about-home-wrapper .about-home-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-wrapper .hero-section .hero-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .register-wrapper .register-section .register-left .form .logIn {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .personal-wrapper .personal-section .section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .personal-wrapper .personal-section .section .about-me {
    width: 100%;
    max-width: 100%;
  }
  .personal-wrapper .personal-section .section .tab-content.active .contact-left .form .name-surname {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .register-wrapper .register-section .register-left .form .name-surname {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .register-wrapper .register-section .register-left {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    padding: 60px 50px;
    gap: 40px;
    background: rgb(255, 255, 255);
    overflow-x: auto;
  }
  .compare-wrapper .compare-section .compare-left {
    width: 100%;
    display: none !important;
  }
  .product-detail-wrapper .plastic-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px;
  }
  .blog-section-wrapper .blogs {
    width: 100%;
    max-width: 1340px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bucket-wrapper .bucket-section {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .bucket-wrapper .bucket-section .bucket-right {
    width: 100%;
    max-width: 100%;
  }
  .blog-detail-wrapper .detail-section .sideBar {
    width: 100%;
    min-width: 316px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text .data li {
    font-weight: 400;
    font-size: 9px;
    line-height: 100%;
    color: rgb(146, 145, 145);
  }
  .blog-detail-wrapper .detail-section .sideBar .resembled-items .item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-text p {
    font-weight: 400;
    font-size: 12px;
    color: rgb(30, 30, 30);
    text-align: start;
  }
  .blog-detail-wrapper .detail-section .sideBar .resembled-items .item .item-img img {
    width: 100%;
    height: 102px;
  }
  .blog-detail-wrapper .detail-section .sideBar .resembled-items {
    width: 100%;
    background-color: rgb(255, 255, 255);
    padding: 30px 16px;
  }
  .product-detail-wrapper .plastic-section .product-images {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-bottom {
    width: 100%;
    max-width: 100%;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
  }
  .product-detail-wrapper .plastic-section .product-images {
    width: 100%;
    max-width: 100%;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .product-detail-wrapper .plastic-section .product-right {
    width: 100%;
    max-width: 100%;
  }
  .product-detail-wrapper .plastic-section .product-images .swiper-bottom .swiper-slide {
    width: 113px;
  }
  .selected-products-wrapper .selected-products-section .product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .language-responsive {
    display: block !important;
    position: relative;
  }
  .language-responsive .dropdown-toggle {
    width: 100%;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
    background: rgb(255, 255, 255);
  }
  .language-responsive .dropdown-toggle svg {
    stroke: rgb(30, 30, 30);
  }
  .language-responsive .dropdown-toggle .arrow {
    transition: transform 0.3s;
  }
  .language-responsive .dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }
  .language-responsive.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .language-responsive.open .arrow {
    transform: rotate(180deg);
  }
  .hero-wrapper .hero-section .hero-bottom {
    display: none;
  }
  .about-home-wrapper .about-home-section .card .product-other-contents h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: rgb(30, 30, 30);
  }
  .about-home-wrapper .about-home-section .card .product-contents h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: rgb(30, 30, 30);
  }
  .about-home-wrapper .about-home-section .card .about-img .mobile {
    width: 40%;
    left: 29%;
    transition: transform 0.5s ease;
  }
  .about-home-wrapper .about-home-section .card .about-img .headphone {
    width: 40%;
  }
  .about-home-wrapper .about-home-section .card .about-img .electronics {
    width: 56%;
  }
  .about-home-wrapper .about-home-section .card .about-img .applience-img {
    width: 72%;
  }
  .about-home-wrapper .about-home-section .card .about-img .device {
    width: 82%;
  }
  .navBar .nav-list {
    display: none;
  }
  .header-wrapper {
    display: none;
  }
  .navBar .category-section .top .category-btn {
    display: none;
  }
  .navBar .category-section .top .search-btn {
    width: 100%;
    display: none;
  }
  .navBar .category-section .top .category-right {
    display: flex;
    align-items: center;
    gap: 8px;
    display: none;
  }
  .weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .text p {
    font-size: 16px;
  }
  .weekly-opportunity-wrapper .opportunity-section .opportunitySwiper .swiper-slide .opportunity-cards .product-info .price .sale-price {
    font-size: 18px;
  }
  .arrangement-wrapper .sorting-section .sorting-right button.active {
    display: none;
  }
  .arrangement-wrapper .sorting-section .sorting-right button {
    display: none !important;
  }
  .products-wrapper .products-section .aside-category {
    display: none;
  }
  .products-wrapper .products-section .card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .header-responsive-wrapper {
    display: block !important;
    width: 100%;
  }
  .header-responsive-wrapper .mobile-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    padding: 0 20px;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-magnifer-icon {
    display: inline-flex;
    background-color: transparent;
    border-radius: 100px;
    padding: 8px;
    cursor: pointer;
    z-index: 2;
    border: none;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-magnifer-icon svg {
    width: 20px;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch {
    display: none;
    flex-direction: column;
    align-items: start;
    width: 100%;
    min-width: 67px;
    width: 164px;
    position: relative;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-header-search {
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid #ADADAD;
    gap: 6px;
    border-radius: 16px;
    outline: none;
    padding: 8px 12px;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-header-search input {
    background: transparent;
    font-size: 16px;
    color: #1e1e1e;
    border: none;
    font-weight: 400;
    width: 100%;
    outline: none;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-header-search .responsive-closeSearch {
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-search-result-box {
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 0px 11px 0px rgba(165, 165, 165, 0.12);
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    z-index: 21;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-search-result-box .responsive-result_list {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-search-result-box .responsive-result_list .responsive-search_result_item {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header-responsive-wrapper .mobile-header .responsive-search-container .responsive-formSearch .responsive-search-result-box .responsive-result_message {
    display: none;
    font-size: 16px;
    text-align: center;
    width: 100%;
    color: #1e1e1e;
    font-weight: 500;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .submit-button {
    background-color: #CEA534;
    padding: 10px 27px;
    color: #fff;
    transition: 300ms ease;
    border: none;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger {
    position: relative;
    z-index: 1001;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger .hamburger-icon {
    width: 28px;
    height: 2px;
    margin: 3px auto;
    background-color: rgb(13, 110, 253);
    transition: all 0.3s ease-in-out;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger.active .hamburger-icon:nth-child(1) {
    transform: rotate(53deg) translate(14px, 5px);
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger.active .hamburger-icon:nth-child(2) {
    opacity: 0;
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn .hamburger.active .hamburger-icon:nth-child(3) {
    transform: rotate(-45deg) translate(11px, -6px);
  }
  .header-responsive-wrapper .mobile-header .hamburger-btn.menu-open .hamburger {
    position: fixed;
    top: 16px;
    right: 30px;
    z-index: 2000;
  }
  .header-responsive-wrapper .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px 20px;
    z-index: 1500;
  }
  .header-responsive-wrapper .mobile-menu.active {
    display: flex;
    width: 50%;
    height: 100%;
    overflow-x: auto;
  }
  .header-responsive-wrapper .mobile-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-responsive-wrapper .mobile-menu .menu-header img {
    width: 66px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-responsive-wrapper .mobile-menu .menu-header .mobile-right .close-btn {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list {
    padding: 40px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    padding: 10px 0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown {
    position: relative;
    font-family: sans-serif;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-toggle {
    border: none;
    outline: none;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-toggle .drpdwn-content {
    font-size: 20px;
    font-weight: 400;
    color: rgb(30, 30, 30);
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-toggle .arrow {
    transition: transform 0.3s;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-toggle .arrow svg {
    fill: rgb(30, 30, 30);
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown.open .dropdown-menu {
    width: 172px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown.open .dropdown-menu a {
    text-decoration: none;
    color: rgb(30, 30, 30);
    font-size: 14px;
    font-weight: 400;
    transition: 300ms ease;
    padding: 12px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown.open .dropdown-menu a:hover {
    color: rgb(13, 110, 253);
    background-color: #ddd;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown.open .arrow {
    transform: rotate(180deg);
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    z-index: 4;
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-menu li {
    padding: 10px 14px;
    cursor: pointer;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .dropdown-menu li:hover {
    background: #f0f0f0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .lang {
    text-decoration: none;
    color: #333;
    background-color: #EEEEEE;
    padding: 6px 9px;
    border-radius: 2px;
    transition: 300ms ease;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .lang.active {
    background-color: #CEA534;
    color: #fff;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .hero-wrapper .hero-section .background-video .hero-swiper-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
    max-width: 573px;
    width: 100%;
    height: 698px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu {
    display: flex;
    flex-direction: column;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle {
    width: 154px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 400;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle img {
    transition: all 0.3s ease;
    width: 12px;
    height: 12px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle.active {
    color: #fff;
    background-color: #000;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle.active img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle.active img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle.active img {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list {
    display: none;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #333;
    width: 200px;
    margin-top: 10px;
    padding-left: 10px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list a,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list a,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list a {
    font-size: 16px;
    color: #333;
    padding: 6px 0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list a:hover,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list a:hover,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list a:hover {
    color: #000;
    font-weight: bold;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list.active {
    display: flex;
  }
  .footer-wrapper .footer-section .contact-with-us {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .hero-wrapper .hero-section .hero-top .heroSwiper {
    width: 100%;
    height: 436px;
    border-radius: 12px;
  }
  .invoice-wrapper .invoice-section .form-right {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-wrapper .footer-section .contact-with-us .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .blog-detail-wrapper .detail-section {
    width: 100%;
    max-width: 1340px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .navBar .category-section .top .logo {
    width: 100px;
    height: 32px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 0.5px solid rgb(233, 228, 228);
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 12px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    align-items: start;
  }
  .blog-detail-wrapper .detail-section .detail-left .detail-img {
    width: 100%;
    border-radius: 14px;
    -o-object-fit: cover;
    object-fit: cover;
    height: 288px;
  }
  .tab-dropdown {
    display: block !important;
    position: relative;
    z-index: 9999;
  }
  .custom-dropdown {
    width: 100%;
  }
  .dropdown-toggle {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
  }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    display: none;
    max-height: 240px;
    overflow-y: auto;
  }
  .dropdown-menu li {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
  }
  .dropdown-menu li.active {
    background: rgba(13, 110, 253, 0.1);
    color: rgb(13, 110, 253);
    font-weight: 500;
  }
  .dropdown-menu li:hover {
    background: #f5f5f5;
  }
  .custom-dropdown.open .dropdown-menu {
    display: block;
  }
  .arrangement-wrapper .sorting-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
  }
  .arrangement-wrapper .sorting-section .sorting-left h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 50px;
    color: rgb(30, 30, 30);
  }
  .weekly-products-wrapper .week-products-section .product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-product-wrapper .about-section .tab-content.active .comments .rate .give-star img {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .about-product-wrapper .about-section .tab-content.active .comments .rate .give-value h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 40px;
    color: rgb(30, 30, 30);
  }
  .about-product-wrapper .about-section .tab-content.active .comments .rate {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .compare-wrapper .compare-section .compare-right .cmprSwiper {
    display: none;
  }
  .register-wrapper .register-section .register-right {
    display: none;
  }
  .products-wrapper .products-section .card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 592px) {
  .selected-products-wrapper .selected-products-section .product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .bucket-wrapper .bucket-section .bucket-left .item .item-left .left-content .img-content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: rgb(30, 30, 30);
  }
  .header-responsive-wrapper .mobile-menu.active {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
  }
  .about-wrapper .about-section .about-content h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: rgb(13, 110, 253);
  }
  .about-wrapper .about-section .about-content p {
    font-weight: 400;
    font-size: 14px;
  }
  .about-wrapper .about-section {
    width: 100%;
    max-width: 1340px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 44px auto;
    border-radius: 20px;
  }
  .about-wrapper .about-section .about-image img {
    width: 100%;
    height: 272px;
    border-radius: 20px;
  }
  .blog-section-wrapper .blogs {
    width: 100%;
    max-width: 1340px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .about-product-wrapper .about-section .tab-content.active .technical-characters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .weekly-products-wrapper .week-products-section .product-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .arrangement-wrapper .sorting-section {
    width: 100%;
    max-width: 1340px;
    margin: 30px auto;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
  }
  .arrangement-wrapper .sorting-section .sorting-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .arrangement-wrapper .sorting-section .sorting-left .filter-sort {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .products-wrapper .products-section .card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .hero-wrapper .hero-section .hero-top .hero-right .card .card-right img {
    position: absolute;
    top: 138px;
    right: -38px;
    width: 160px;
  }
  .about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .profile {
    width: 64px;
    height: 52px;
    border: 2px solid rgb(13, 110, 253);
    border-radius: 100px;
    padding: 2px;
  }
  .about-product-wrapper .about-section .tab-content.active .comments .user-comment .user .opinion p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgb(118, 118, 118);
  }
  .about-product-wrapper .about-section .tab-content.active .comments .rate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-wrapper .hero-section .hero-top .hero-right .card .card-left .main-content {
    font-size: 18px;
  }
  .hero-wrapper .hero-section .hero-top .hero-right .card .card-left p {
    width: 100%;
    max-width: 226px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(167, 164, 164);
    text-align: start;
  }
  .hero-wrapper .hero-section .hero-top .heroSwiper {
    width: 100%;
    height: 336px;
    border-radius: 12px;
  }
  .about-home-wrapper .about-home-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
  }
  .compare-wrapper .compare-section .compare-right .compareSwiper .swiper-slide {
    width: 310px;
  }
}/*# sourceMappingURL=style.css.map */