:root {
  --main-bg-color: #fff;
  --main-font: "Manrope", sans-serif;
  --second-font: "Roboto", sans-serif;
  --main-gray: #f0efef;
  --second-gray: #616568;
  --light-gray: #adadad;
  --main-black: #010101;
  --main-red: #ce2127;
  --grid-container: 1600px;
  --top-bar-height: 40px;
  --menu-width: 350px;
  --mobile-start: 1024px;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  /* min-height: 100vh; */
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

h1.page-title {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}

.page-title-container {
  padding: 10px 0;
  margin-bottom: 30px;
  background-color: var(--main-red);
}

[aria-current]:not([aria-current="false"]) {
  color: var(--main-red);
}

.arrow-link {
  padding: 9px 44px 9px 24px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
  border-radius: 8px;
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-red);
  position: relative;
}

.arrow-link .icon {
  position: absolute;
  right: 12px;
  top: calc(50% - 10px);
  font-size: 20px;
}

a.arrow-link:hover {
  color: #fff;
  background-color: var(--main-red);
}

.arrow-link.red {
  color: #fff;
  background-color: var(--main-red);
}

.arrow-link.red:hover {
  color: var(--main-red);
  background-color: #fff;
}

.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
  background-color: #fff;
}

.screen_hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* // ANCHOR THEME CSS */
body {
  font-family: var(--main-font);
}

body.menu-opened,
body.quickview_modal_open,
body.quick_order_open {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

main {
  background-color: var(--main-bg-color);
}

.container {
  position: relative;
  padding: 0;
}

ins {
  text-decoration: none;
}

a {
  color: var(--main-red);
  text-decoration: none;
}

.woocommerce .blockUI.blockOverlay,
.woocommerce .loader {
  background-color: white !important;
}

.grid-container {
  max-width: var(--grid-container);
  width: 90%;
  padding: 0 20px;
  margin: auto;
}

.content {
  margin-bottom: 20px;
}

.menu-item-desktop-hide {
  display: none;
}

.back-gray {
  background: #f0efef;
}

.icon-red svg,
.icon-red path {
  fill: var(--main-red);
}

.blog-sidebar .widget-title {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.blog-sidebar .widget-title:after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--main-red);
  position: absolute;
  bottom: -5px;
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
}

.blog-sidebar ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
  font-size: 14px;
  font-weight: 700;
}

.blog-sidebar ul li.current-cat a {
  color: var(--main-red);
}

.blog-sidebar ul li a,
.blog-sidebar a {
  color: var(--main-black);
  display: flex;
}

.blog-sidebar ul li a:hover,
.blog-sidebar a:hover {
  color: var(--main-red);
}

.main_widget {
  margin-bottom: 30px;
}

li.post_rel_prod_item {
  display: flex;
  flex-direction: row;
}

.post_rel_img img {
  width: 120px;
  gap: 10px;
}

.post_rel_text {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.woocommerce-info::before {
  color: #c33638;
}

div#customer_login {
  display: flex;
  gap: 30px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--main-red);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: none;
}

.back-to-top:hover {
  background-color: #010101;
}

.back-to-top.button-top-visible {
  display: block;
}

span.back-to-top-icon {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}

span.back-to-top-icon span {
  display: block;
  position: absolute;
  width: 17px;
  height: 3px;
  background-color: white;
  border-radius: 15px;
}

span.back-to-top-icon span:last-child {
  right: 11px;
  top: 23px;
  transform: rotate(45deg);
}

span.back-to-top-icon span:first-child {
  left: 11px;
  top: 23px;
  transform: rotate(-45deg);
}

/* // ANCHOR Header Css */
.top-bar {
  padding: 5px 0;
  background-color: #000;
  text-align: center;
  color: #fff;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar p {
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}

.nav-bar {
  padding: 20px 30px;
  background-color: #fff;
  width: 100%;
}

.nav-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 1px 5px rgb(190 190 190 / 50%);
  z-index: 999;
}

.nav-bar__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.menu-toggle {
  display: flex;
  padding: 10px 20px;
  background-color: var(--main-gray);
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}

.menu-toggle-icon {
  height: 30px;
  width: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}

.isMobile .menu-toggle-icon:after {
  content: "Menu";
  position: absolute;
  right: -45px;
  font-size: 14px;
  font-weight: 600;
  top: 4px;
}

.menu-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: black;
  transition: 0.5s;
  margin-bottom: 5px;
}

.menu-toggle-icon span:last-child {
  margin-bottom: 0;
}

.menu-toggle-icon span:nth-child(2) {
  width: 50%;
}

.menu-toggle p {
  font-size: 14px;
  font-weight: bold;
  padding-right: 40px;
}

.menu-toggle:hover .menu-toggle-icon span:nth-child(2) {
  width: 100%;
  transition: 0.5s;
}

.right-head {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  height: 50px;
}

.header-cart {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.head-mini-cart {
  position: relative;
}

.header-cart .cart-icon {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 20px;
}

.cart-icon .number {
  position: absolute;
  right: -16px;
  top: -14px;
  width: 25px;
  height: 25px;
  background-color: var(--main-black);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  border-radius: 50%;
}

.header-cart .woocommerce-Price-amount.amount {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-black);
}

.head-mini-cart .widget_shopping_cart_content {
  position: absolute;
  width: 400px;
  right: 0px;
  top: 60px;
  box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
  background-color: var(--main-gray);
  padding: 20px;
  border-radius: 8px;
  z-index: 999;
  display: none;
}

.after-header {
  padding: 18px 0;
  background: #f0efef;
  width: 100%;
  transition: all 0.2s ease;
}

.after-header.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  box-shadow: 0 1px 5px rgb(190 190 190 / 50%);
  z-index: 99;
  transition: all 0.2s ease;
}

.woocommerce .after-header {
  margin-bottom: 0;
}

.contact_info p,
.contact_info a {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-black);
}

.info_hours .info_hours_content p {
  max-width: 90px;
}

.contact_info_item,
.info_hours {
  display: flex;
  align-items: center;
}

.contact_info_item {
  padding: 13px 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
}

.info_hours .info_hours_content {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.contact_info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact_info .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #010101;
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.contact_info .icon svg path {
  fill: #fff;
}

.contact_info .icon svg {
  height: 15px;
}

.info_hours .info_hours_content span {
  font-weight: bold;
  font-size: 10px;
  line-height: 14px;
  color: #616568;
}

.after-header-container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.after_extra_info {
  display: flex;
  gap: 20px;
}

.after_extra_info_item {
  display: flex;
  align-items: center;
}

.after_extra_info_item .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  margin-right: 8px;
  justify-content: center;
}

.after_extra_info_item .icon img {
  height: 15px;
}

.after_extra_info_item p {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-black);
}

/* // ANCHOR : Menu Css */

#main-nav-container {
  position: fixed;
  left: 0;
  /* top: var(--top-bar-height);
  height: calc( 100% - var(--top-bar-height) ); */
  top: 0;
  height: 100%;
  z-index: 999999;
  display: none;
}

span.menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: #00000063;
  display: none;
}

.menu-opened .menu-overlay {
  display: block;
}

nav#site-navigation {
  background-color: #fff;
  width: var(--menu-width);
  height: 100%;
  overflow: auto;
  padding-bottom: 50px;
}

nav#site-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav#site-navigation .menu-item-link {
  color: var(--main-black);
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.menu_heading > .menu-item-link .menu-item-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--main-red);
}

nav#site-navigation ul .menu-item .menu-item-link:hover {
  color: var(--main-red);
}

nav#site-navigation ul .menu-item:hover svg {
  fill: var(--main-red);
}

/* width */
nav#site-navigation::-webkit-scrollbar {
  width: 7px;
}

/* Track */
nav#site-navigation::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
nav#site-navigation::-webkit-scrollbar-thumb {
  background: rgb(196, 196, 196);
  border-radius: 8px;
}

.sidemenu-control {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.sidemenu-site-branding img.custom-logo {
  max-width: 150px;
}

.menu-close-icon {
  height: 20px;
  width: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}

.sidemenu-close {
  display: flex;
  align-items: center;
  width: 160px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
}

.sidemenu-close p {
  font-size: 14px;
  font-weight: 500;
  color: var(--main-red);
}

.menu-close-icon span {
  width: 16px;
  position: absolute;
  height: 2px;
  background-color: var(--main-red);
  border-radius: 31px;
  top: 9px;
  left: 3px;
}

.menu-close-icon span:first-child {
  transform: rotate(45deg);
}

.menu-close-icon span:last-child {
  transform: rotate(-45deg);
}

.first-li-item > .submenus-section {
  position: absolute;
  left: var(--menu-width);
  top: 0;
  width: calc(80vw - var(--menu-width));
  min-width: var(--menu-width);
  background-color: #f1f1f1;
  /* height: 100%; */
  padding: 30px;
  padding-bottom: 50px;
  overflow: auto;
  display: none;
  max-width: 850px;
}

.isMobile .submenus-section {
  position: absolute;
  left: 0;
  top: 0;
  min-width: var(--menu-width);
  background-color: #fff;
  height: 100%;
  padding: 30px;
  padding-bottom: 50px;
  overflow: visible;
  z-index: 9;
  display: none;
}

.isMobile .menu-item {
  cursor: pointer;
}

span.mobile-back {
  padding-left: 15px;
  position: relative;
  cursor: pointer;
  display: none;
}

.isMobile span.mobile-back {
  display: block;
  color: var(--main-red);
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--main-red);
}

.isMobile .menu-item-has-children .menu-item-link {
  position: relative;
}

.isMobile .menu-item-has-children > .menu-item-link:before,
.isMobile .menu-item-has-children > .menu-item-link:after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: #000;
}

.isMobile .menu-item-has-children > .menu-item-link:before {
  right: 15px;
  top: calc(50% - 3px);
  transform: rotate(45deg);
}

.isMobile .menu-item-has-children > .menu-item-link:after {
  right: 15px;
  top: calc(50% + 2px);
  transform: rotate(-45deg);
}

span.mobile-back:before,
span.mobile-back:after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 2px;
  background-color: var(--main-red);
}

span.mobile-back:before {
  left: 0;
  top: 14px;
  transform: rotate(45deg);
}

span.mobile-back:after {
  left: 0;
  top: 10px;
  transform: rotate(-45deg);
}

#menu-main-menu .first-li-item {
  margin: 0;
}

#menu-main-menu li {
  -webkit-tap-highlight-color: transparent;
}

.first-li-item {
  border-top: 1px solid #d5d5d5;
  margin-bottom: 0 !important;
}

.first-li-item > .menu-item-link {
  padding: 15px 20px;
  display: flex;
}

.first-li-item.active {
  background-color: var(--main-red);
}

.first-li-item.active > .menu-item-link .menu-item-title {
  color: #fff;
}

.first-li-item.active > .menu-item-link .menu-item-icon svg,
.first-li-item.active > .menu-item-link .menu-item-icon path {
  fill: #fff;
}

span.menu-item-icon {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

span.menu-item-icon svg {
  width: 100%;
  height: auto;
}

.menu-item.menu-item-has-children {
  margin-bottom: 20px;
}

.menu-item {
  margin-bottom: 5px;
}

.isMobile .main-cat-top-title {
  display: none;
}

/* .isMobile .main-cat-top-title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid #ebebeb;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.isMobile .main-cat-top-title .menu-item-icon {
  width: 20px;
}

.isMobile .main-cat-top-title:before , .isMobile .main-cat-top-title:after{
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: #000;
}

.isMobile .main-cat-top-title:before {
  left: 0;
  top: 15px;
  transform: rotate(45deg);

}
.isMobile .main-cat-top-title:after {
  left: 0;
  top: 10px;
  transform: rotate(-45deg);
} */

.main-cat-top-title {
  display: flex;
  font-size: 25px;
  color: var(--main-red);
  align-items: center;
  margin-bottom: 30px;
}

.main-cat-top-title .menu-item-icon {
  width: 33px;
}

.main-cat-top-title .menu-item-icon svg {
  fill: var(--main-red);
}

nav#site-navigation .current-menu-item > a {
  color: var(--main-red);
}

nav#site-navigation .current-menu-item > a svg {
  fill: var(--main-red);
}

nav#site-navigation ul.menu-banner-list {
  max-width: 250px;
  margin-left: auto;
  min-width: auto;
}

.menus-list-wrapper {
  display: flex;
}

ul.menu-banner-list li {
  margin-bottom: 15px;
}

ul.sub-menu-0 {
  min-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: fit-content;
  column-gap: 50px;
}

/* // ANCHOR : Footer Css */

.clever-footer {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #232323;
  color: #cdcdcd;
}

.clever-footer ul {
  list-style: none;
  padding: 0;
}

.clever-footer ul li {
  margin-bottom: 15px;
}

.footer-menus-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  margin-bottom: 20px;
}

.clever-footer .widget-title {
  color: #fff;
  margin-bottom: 10px;
}

.clever-footer a {
  color: #cdcdcd;
}

.clever-footer a:hover {
  color: #76c8ae;
}

ul.list-with-icons {
  padding: 0;
  list-style: none;
  margin: 0;
}

ul.list-with-icons li {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
}

.after-footer {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 15px;
  border-bottom: 1px solid #cdcdcd;
  justify-content: space-between;
}

.footer-copyrights {
  margin-top: 20px;
}

.after-footer-menu {
  display: flex;
  align-items: center;
}

.after-footer-menu ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.pre-footer {
  padding: 40px 0;
  background-color: #76c8ae;
  color: #fff;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}

.pre-footer .title {
  font-weight: bold;
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 16px;
}

.pre-footer .text {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}

.pre-footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.pre-footer .content {
  max-width: 620px;
}

.pre-footer .custom_submit_form {
  min-width: 350px;
}

.pre-footer-icon {
  min-width: 280px;
  height: 55px;
}

.pre-footer-icon svg {
  position: absolute;
  bottom: -65px;
}

.footer-icon img {
  height: 15px;
}

span.footer-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ce2127;
  border-radius: 50%;
  margin-right: 8px;
}

ul.open-hours-wrapper {
  list-style: none;
  padding: 0;
  max-width: 300px;
}

ul.open-hours-wrapper li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 15px;
}

.clever-footer .after-footer-menu ul li {
  margin-bottom: 0;
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}

.after-footer-left {
  display: flex;
  align-items: center;
}

.social-follow-list {
  display: flex;
}

.social-follow-list li,
.clever-footer .social-follow-list li {
  margin-bottom: 0;
}

.social-follow-list li a {
  margin-right: 24px;
  display: block;
}

.social-follow-list li a svg {
  width: 24px;
}

.clever-footer .social-follow-list li a svg,
.clever-footer .social-follow-list li a svg path {
  fill: #adadad;
}

.menu-copyrights-container ul {
  display: flex;
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  float: left;
  margin-top: 0px;
}

.menu-copyrights-container ul li {
  margin-right: 24px;
  color: var(--light-gray);
}

.humanminds-link a {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 12px;
  float: right;
}

.site-branding-footer {
  max-width: 120px;
  margin-right: 10px;
}

/* MINI CART START */

.widget_shopping_cart_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-mini-cart li.woocommerce-mini-cart-item.mini_cart_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.woocommerce-mini-cart a img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  border-radius: 6px;
}

.woocommerce-mini-cart a.remove.remove_from_cart_button {
  display: block;
  font-size: 1.3em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  background-color: var(--main-red);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  position: absolute;
  top: -9px;
  left: -9px;
}

li.woocommerce-mini-cart-item.mini_cart_item a:not([class]) {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--main-black);
  gap: 10px;
}

.widget_shopping_cart_content .quantity {
  margin-left: auto;
}

.widget_shopping_cart_content .quantity del {
  font-size: 14px;
  color: #ababab;
}

p.woocommerce-mini-cart__total.total {
  text-align: right;
  margin-bottom: 20px;
  margin-top: 10px;
}

p.woocommerce-mini-cart__buttons.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

p.woocommerce-mini-cart__buttons.buttons a {
  padding: 11px 15px;
  background-color: var(--main-red);
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.head-mini-cart .widget_shopping_cart_content:before {
  border: 10px solid;
  border-color: transparent transparent var(--main-gray) transparent;
  z-index: 3;
  content: "";
  position: absolute;
  top: -17px;
  right: 11px;
}

.header-cart .total-icon {
  width: 10px;
  height: 10px;
  display: block;
  margin-left: 10px;
  position: relative;
}

.header-cart .total-icon:after,
.header-cart .total-icon:before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  background-color: var(--main-black);
  position: absolute;
  top: 5px;
  border-radius: 10px;
}

.header-cart .total-icon:before {
  left: 1px;
  transform: rotate(45deg);
}

.header-cart .total-icon:after {
  right: 1px;
  transform: rotate(-45deg);
}

/* MINI CART END */

.login-header-button {
  margin-right: 20px;
}

.right-head > div {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: var(--main-gray);
  border-radius: 8px;
}

a.login-header-link {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-black);
  text-decoration: none;
}

span.login-header-icon {
  display: block;
  height: 24px;
  width: 24px;
  margin-right: 10px;
}

.right-head .head-wishilist {
  margin-right: 20px;
  position: relative;
  padding: 0 11px;
}

.head-wishilist .wishlist-icon {
  display: block;
  height: 20px;
  width: 20px;
  background-color: #c7c7c7;
}

.head-wishilist span.wishlist_products_counter_number {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 10px;
  background-color: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-wishilist a.wishlist_products_counter.top_wishlist-heart:before {
  font-size: 28px !important;
  margin: 0;
}

/* // ANCHOR : Φόρμα Αναζήτησης */

#header .search-form {
  position: relative;
  height: 50px;
  display: flex;
  padding: 0 15px;
  border: 2px solid #e7e7e7;
  border-radius: 8px;
  width: 450px;
}

#header .search_result {
  display: none;
  position: absolute;
  width: inherit;
  top: 43px;
  background-color: #f8f8f8;
  left: -2px;
  border: 2px solid #e7e7e7;
  border-radius: 0 0 8px 8px;
  border-top: 0;
  z-index: 9;
  padding: 20px;
  font-size: 14px;
}

#header .search_result ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#header .search_result li {
  padding: 7px;
  border-bottom: 1px solid #ddd;
}

#header .search_result li:hover {
  background-color: #fff;
  transform: scale(1.03);
  transition: 0.2s;
  border-color: #a70505;
  box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
  border-radius: 5px 5px 0 0;
}

#header .search_result li a {
  display: flex;
  align-items: center;
}

#header .search_result img.search-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

#header .search_result p.search-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

#header .search_result p.search-price {
  margin-left: auto;
  font-weight: 600;
}

#header .search-form input {
  border: 0;
}

#header .search-form .input_search {
  width: 100%;
}

#header .search-form :focus-visible {
  outline: 0;
}

#header .submit_search_form {
  cursor: pointer;
}

#header .submit_search_form {
  background: none;
  font-size: 14px;
  padding: 0;
  color: #cd171f;
  transition: 0.3s;
  opacity: 0;
  margin-left: auto;
  position: absolute;
  right: 15px;
}

#header .search-form:hover .submit_search_form {
  opacity: 1;
  transition: 0.3s;
}

#header .submit_search_form_icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

#header .search-form form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: center;
}

input#keyword::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #717477;
}

input#keyword::-moz-placeholder {
  /* Firefox 19+ */
  color: #717477;
}

input#keyword:-ms-input-placeholder {
  /* IE 10+ */
  color: #717477;
}

input#keyword:-moz-placeholder {
  /* Firefox 18- */
  color: #717477;
}

#header .submit_search_form_icon {
  width: 19px;
  height: 18px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-right: 15px;
}

#header .submit_search_form_icon:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/search-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* // ANCHOR : Extra Products */
.extra_products_wrapper {
  padding: 22px;
  border: 2px solid #f0efef;
  border-top: 0;
}

.extra_products_wrapper ul {
  list-style: none;
  padding: 0;
}

.extra_products_wrapper ul li {
  padding: 5px 0;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  font-family: var(--second-font);
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
}

.extra-title {
  margin-right: 8px;
}

.extra-check {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 15px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

.checked .extra-check {
  background: url(/wp-content/themes/cleverproducts/images/check-white.svg),
    #000;
  background-size: cover;
}

.add_extra_products_msg .extra_prods_links {
  display: flex;
  flex-direction: column;
}

ul.add_extra_products_msg {
  list-style: none;
  padding: 0;
}

ul.add_extra_products_msg li {
  padding: 5px 10px;
  margin-bottom: 5px;
  width: fit-content;
  width: -moz-fit-content;
}

ul.add_extra_products_msg li.warning {
  background-color: #ed2831;
  color: #fff;
}

ul.add_extra_products_msg li.success {
  background-color: #62c2a3;
  color: #fff;
}

span.add_extra_products {
  padding: 14px 10px;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  width: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #010101;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
}

.add_extra_products .spinner {
  margin-left: 5px;
  display: none;
}

.add_extra_products.loading .spinner {
  display: flex;
}

.extra_products_wrapper .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}

span.extra-title-price {
  margin-left: auto;
  font-weight: bold;
}

/* // ANCHOR : Quick Order */
#quick_order_modal {
  background-color: #00000080;
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  padding: 20px;
}

#quick_order_modal .mask {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}

.quick_order_modal_wrapper {
  padding: 30px;
  width: 500px;
  height: 95%;
  margin: auto;
  background-color: #fff;
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.qo-success-text {
  text-align: center;
  max-width: 300px;
  margin: auto;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
}

p.qo-thank-msg {
  text-align: center;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  color: #ce2127;
}

/* width */
.quick_order_modal_wrapper::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.quick_order_modal_wrapper::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.quick_order_modal_wrapper::-webkit-scrollbar-thumb {
  background: rgb(196, 196, 196);
  border-radius: 8px;
}

#quick_order_modal p.modal_title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}

span.warning_msg_incart {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  gap: 9px;
  padding: 5px 10px;
  background-color: #4bae4f52;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
  border-radius: 4px;
}

#quick_order_modal .form-title {
  font-size: 13px;
  color: #8b8b8b;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-bottom: 1px solid #e7e7e7;
}

#quick_order_form .form-group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
}

.quick_order_spinner {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffffc9;
  display: none;
}

.loading .quick_order_spinner {
  display: flex;
}

.quick_order_spinner img {
  margin: auto;
}

.close_icon_quickorder_modal {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

#quick_order_modal .warning_msg {
  padding: 5px;
  display: block;
  font-size: 14px;
  background-color: #f00;
  color: #fff;
}

.qo_shipping_methods {
  margin-bottom: 24px;
  border-bottom: 1px solid #e7e7e7;
}

.qo_shipping_methods ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 40% 40%;
  justify-content: space-between;
}

.qo_shipping_methods ul li {
  padding: 5px;
  -webkit-box-shadow: 0px 0px 9px -4px rgb(139 139 139 / 96%);
  -moz-box-shadow: 0px 0px 9px -4px rgb(139 139 139 / 96%);
  box-shadow: 0px 0px 9px -4px rgb(139 139 139 / 96%);
  border-radius: 8px;
  border: 1px solid #fff;
  cursor: pointer;
}

.qo_shipping_methods ul li.selected {
  border-color: #a90000;
}

li.qo_shipping_method_item.acs img {
  width: 80px;
}

li.qo_shipping_method_item.elta img {
  width: 54px;
}

li.qo_shipping_method_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

li.qo_shipping_method_item .cost {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: var(--main-black);
}

.qo_gift_package {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 5px;
  margin: 10px 0 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e7e7e7 !important;
}
.qo_gift_package .qo-gift_package-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qo_gift_package .qo-gift_package-text .qo-gift_package-input {
  width: auto !important;
}
.qo_gift_package .qo-gift_package-text .qo-gift_package-label {
  margin: 0 !important;
  font-size: 13px !important;
  cursor: pointer;
}
.qo_gift_package .qo-gift_package-note {
  line-height: 1.2 !important;
  padding-left: 5px;
}
.qo_gift_package .qo-gift_package-note span {
  font-size: 12px !important;
  letter-spacing: 0.3px;
}

.qo_mini_cart {
  padding: 16px;
  background-color: var(--main-black);
  width: 40%;
  min-width: 300px;
  position: fixed;
  left: 30%;
  bottom: 15px;
  border-radius: 18px;
  z-index: 99;
  display: flex;
  gap: 10px;
}

.qo_mini_cart > strong {
  width: 70%;
}
.qo_mini_cart > strong > .qo_trigger_button {
  width: 100%;
}

.qo_trigger_button {
  margin-top: 0px;
  padding: 10px;
  background-color: #62c2a3;
  color: #fff;
  cursor: pointer;
  display: block;
  border-radius: 8px;
  text-align: center;
  position: relative;
  width: 70%;
  max-height: 46px;
}

.qo_button_icon svg {
  left: 15px;
}

.qo_arrow_button_icon svg {
  right: 15px;
}

.qo_button_icon svg,
.qo_arrow_button_icon svg {
  position: absolute;
  top: 10px;
  fill: #fff;
}

.qo_button_icon svg path,
.qo_arrow_button_icon svg path {
  fill: #fff;
}

.misha-cart {
  position: absolute;
  right: 4px;
  top: -17px;
  width: 30px;
  height: 30px;
  background-color: #a90e13;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  border-radius: 50%;
  z-index: 9;
}

.qo_mini_cart_text {
  color: #fff;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qo_mini_cart_text .title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qo_mini_cart_text .title,
.qo_mini_cart_text .price {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.qo_mini_cart_text .price {
  display: flex;
  gap: 15px;
  font-size: 14px;
}

/* .qo_mini_cart_text .price span{
  display: block;
} */

/* .qo_mini_cart_text .price .sale {
  font-size: 15px;
  display: flex;
  align-items: center;
  font-weight: 300;
  color: #bfbfbf;
  text-decoration: line-through;
} */

#quick_order_modal .woocommerce-mini-cart__total.total,
#quick_order_modal .woocommerce-mini-cart__buttons.buttons {
  display: none;
}

#quick_order_modal .name-container,
#quick_order_modal .city-container {
  display: flex;
  justify-content: space-between;
}

#quick_order_form input {
  width: 100%;
  padding: 6px 20px;
  background: #f0efef;
  border-radius: 8px;
  border: 0;
}

.qo-accept-terms {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

#quick_order_form .qo-accept-terms label {
  margin: 0;
  font-size: 13px;
  cursor: pointer;
}

#quick_order_form .qo-accept-terms input {
  width: auto;
}

#quick_order_form label {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 8px;
}

#quick_order_modal .name-container .form-group:first-child {
  width: 44%;
}

#quick_order_modal .name-container .form-group:last-child {
  width: 54%;
}

#quick_order_modal .city-container .form-group:first-child {
  width: 73%;
}

#quick_order_modal .city-container .form-group:last-child {
  width: 23%;
}

#quick_order_modal .req_icon svg {
  width: 10px;
  position: absolute;
  right: 5px;
  top: 30px;
}

#quick_order_modal #order_comments {
  font-family: var(--second-font);
  background-color: #f0efef;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
}

#quick_order_modal .extra_products_wrapper {
  margin-bottom: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  border: 2px dashed #000;
}

.qo-chosen-prod-title {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 22px;
}

#quick_order_modal .before_total {
  padding: 20px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

#quick_order_modal .qo_costs_item div {
  display: flex;
  justify-content: flex-end;
}

#quick_order_modal .qo_costs_item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

#quick_order_modal .qo_costs_item span {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  min-width: 80px;
  text-align: end;
}

#quick_order_modal .after_total {
  padding: 20px 0;
}

#quick_order_modal .after_total p,
#quick_order_modal .after_total span {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
}

#quick_order_form input.quick_order_submit {
  height: 56px;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  background-color: #ce2127;
  color: #fff;
  cursor: pointer;
}

#quick_order_form a.added_to_cart.wc-forward {
  display: none;
}

#quick_order_form .quick_order_submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#quick_order_form .woocommerce-mini-cart__empty-message {
  padding: 20px;
  text-align: center;
  background-color: #d9151b;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  border-radius: 8px;
}

.qo-text-bold {
  font-weight: 700;
}

.qo-info-text {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 2px solid #ededed;
  margin-top: 20px;
}

p.qo_req_msg {
  margin: 10px 0;
}

span.req_msg_icon svg {
  width: 10px;
  height: 10px;
}

span.req_msg_text {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}

span.qo_phone_valid {
  font-size: 11px;
  background-color: red;
  margin-top: 6px;
  border-radius: 4px;
  color: #fff;
  padding: 1px 8px;
}

span.qo_phone_valid.hidden {
  display: none;
}

/* // ANCHOR : OWL CAROUSELS */

.incategory-carousel {
  position: relative;
  padding: 0 20px;
  margin-top: 30px;
}

.incategory-carousel .owl-stage {
  margin: auto;
  padding: 10px 0;
}

.incategory-carousel.owl-carousel .owl-item img {
  width: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.incategory-carousel .subcategory-item a {
  height: 200px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  transition: 0.3s;
}

.incategory-carousel .subcategory-item a:hover {
  transform: scale(1.05);
  transition: 0.3s;
  border-color: var(--main-black);
}

.incategory-carousel.owl-carousel .owl-nav button.owl-next {
  right: 0;
  top: calc(50% - 20px);
}

.incategory-carousel.owl-carousel .owl-nav button.owl-prev {
  left: 0;
  top: calc(50% - 20px);
}

.incategory-carousel.owl-carousel .owl-nav button.disabled {
  color: rgb(170, 170, 170) !important;
}

.incategory-carousel.owl-carousel .owl-nav button {
  position: absolute;
  font-size: 25px !important;
  color: #000 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 9;
  background-color: #fff !important;
  -webkit-box-shadow: 0px 2px 14px -6px rgb(0 0 0 / 96%);
  -moz-box-shadow: 0px 2px 14px -6px rgba(0, 0, 0, 0.96);
  box-shadow: 0px 2px 14px -6px rgb(0 0 0 / 96%);
}

.owl-carousel button.owl-dot,
button.owl-dot {
  width: 24px;
  height: 2px;
  background: #e5e5e5 !important;
  border-radius: 100px;
  margin-right: 8px;
  border: 0;
  cursor: pointer;
}

.owl-carousel button.owl-dot.active,
button.owl-dot.active {
  background: var(--main-red) !important;
}

.owl_custom_navs {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px;
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
}

.owl_custom_navs ul {
  padding: 0;
}

.carousel-custom-navs.disabled,
.carousel-custom-dots.disabled {
  display: none;
}

.owl_custom_navs button.owl-next,
.owl_custom_navs button.owl-prev {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  font-weight: 700;
  font-size: 22px;
  background: var(--main-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.owl_custom_navs button.owl-next {
  right: 0;
  top: calc(50% - 15px);
}

.owl_custom_navs button.owl-prev {
  left: 0;
  top: calc(50% - 15px);
}

.owl_custom_navs .carousel-custom-dots {
  margin: 20px !important;
}

.owl_custom_navs button.owl-next.disabled,
.owl_custom_navs button.owl-prev.disabled {
  background: var(--main-gray);
  color: #dadada;
  cursor: no-drop;
}

/* // ANCHOR : PRODUCT LIST */

.archive-title {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #ce2127;
}

.archive-title-wrapper {
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.archive-title-wrapper svg {
  width: 20px;
  margin-right: 10px;
  fill: var(--main-red);
  height: auto;
}

.archive-title-wrapper svg:not(:first-child) {
  margin-left: 20px;
}

.product_loop_item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
}

.product_loop_item .prod_img_link {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}

.product_loop_item .prod_img_link img {
  border-radius: 8px 8px 0 0;
  background-color: #fff;
}

.product_loop_item a p,
.product_loop_item button p {
  color: var(--main-black);
  font-size: 14px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}

.product_loop_item button.loop_item_link.single_add_to_cart_button.button {
  padding: 0;
}

.product_loop_item a:hover .img-sec-effect {
  opacity: 1 !important;
  transition: 0.5s;
}

.img-sec-effect {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
  transition: 0.5s;
}

.tags-wishlist-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  margin-top: -30px;
  background-color: #fff0;
  height: 30px;
  align-items: center;
}

.tags-wishlist-wrapper span.tinvwl_remove_from_wishlist-text,
.tags-wishlist-wrapper span.tinvwl_add_to_wishlist-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

span.tag-sale p {
  font-size: 12px;
  padding: 5px 8px;
  background-color: var(--main-red);
  border-radius: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 15px;
  text-transform: uppercase;
}

.loop_item_reviews {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.product_reviews {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.loop_item_price.sale .price {
  display: flex;
}

.loop_item_price span.price {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: var(--main-red);
}

.woocommerce .star-rating,
.woocommerce .products .star-rating {
  margin-bottom: 0;
  color: #f3ce47;
  margin-right: 10px;
  font-size: 13px !important;
}

.review_count_text {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-gray);
}

.loop_item_content {
  padding: 0 20px 5px 20px;
}

.woocommerce ul.products li.product .loop_item_price.sale span.price {
  display: flex;
  align-items: center;
}

.loop_item_price.sale ins,
.woocommerce ul.products li.product .price {
  order: 1;
  display: block;
  color: var(--main-red);
  margin-right: 10px;
  font-weight: 700;
  font-size: 16px;
}

.loop_item_price.sale del {
  order: 2;
  display: block !important;
  color: #ababab !important;
  margin-right: 10px;
  font-size: 14px;
  text-decoration: line-through;
}

.loop_item_link_wrapper {
  border-top: 1px solid #e5e5e5;
  display: flex;
  height: 60px;
  align-items: center;
  position: relative;
  transition: 1s;
  border-radius: 0 0 8px 8px;
}

.loop_item_link_wrapper .icon {
  width: 11px;
  height: 11px;
  display: block;
  position: absolute;
  left: 20px;
  top: calc(50% - 5px);
}

.loop_item_link {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  width: 100%;
  border-bottom-left-radius: 8px;
}

.product_loop_item:hover .loop_item_link {
  color: #fff;
  transition: 1s;
}

.loop_item_link .icon {
  transition: 1s ease-in-out;
}

.product_loop_item:hover .loop_item_link .icon {
  transition: 1s ease-in-out;
}

.loop_item_link_wrapper .icon:after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: var(--main-black);
  display: block;
  position: absolute;
  bottom: 2px;
  transform: rotate(-45deg);
  transition: 1s;
}

.loop_item_link_wrapper .icon:before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: var(--main-black);
  display: block;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  transition: 1s;
}

.product_loop_item:hover .loop_item_link .icon:after,
.product_loop_item:hover .loop_item_link .icon:before {
  background-color: var(--main-red);
  transition: 1s;
}

.loop_item_link p {
  transition: 1.2s;
}

.product_loop_item:hover .loop_item_link p {
  color: var(--main-red);
  transition: 1.2s;
}

.loop_item_quickview {
  height: 100%;
  width: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-bottom-right-radius: 8px;
}

.loop_item_quickview:before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #cfcfcf;
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
}

.loop_item_quickview svg {
  width: 20px;
  height: auto;
}

.loop_item_content h2 {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 15px;
}

.loop_item_shortdesc {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
  color: var(--second-gray);
}

.results-pagination {
  margin: auto;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.results-pagination strong > strong {
  display: flex;
}

.loop_item_quickview:hover svg path {
  fill: var(--main-red);
}

.results-pagination a.page-numbers,
.results-pagination span.current {
  background-color: #ffffff;
  color: var(--primary-black);
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  margin-right: 10px;
  font-weight: 500;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.page-numbers.current {
  background-color: var(--main-red);
  color: #fff;
  border-color: var(--main-red);
}

.results-pagination .next.page-numbers,
.results-pagination .prev.page-numbers {
  color: var(--primary-black);
  background-color: #fff;
  position: relative;
  border: 0;
}

.next.page-numbers:before,
.next.page-numbers:after {
  display: block;
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  position: absolute;
}

.next.page-numbers:before {
  transform: rotate(45deg);
  right: -25px;
  top: calc(50% - 3px);
}

.next.page-numbers:after {
  transform: rotate(-45deg);
  right: -25px;
  top: calc(50% + 2px);
}

.prev.page-numbers:before,
.prev.page-numbers:after {
  display: block;
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  position: absolute;
}

.prev.page-numbers:before {
  transform: rotate(45deg);
  left: -25px;
  top: calc(50% + 2px);
}

.prev.page-numbers:after {
  transform: rotate(-45deg);
  left: -25px;
  top: calc(50% - 3px);
}

.searchandfilter ul {
  padding: 0;
}

.clever-woo-breadcrumb {
  padding: 18px 0;
  background: #f0efef;
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  border-top: 2px solid #e5e5e5;
}

.clever-woo-breadcrumb ul {
  display: flex;
  list-style: none;
  margin: 0;
  align-items: center;
  padding: 0;
  overflow: auto;
}

span.bread-del {
  margin: 0 15px;
  width: 10px;
  height: 10px;
  position: relative;
  color: var(--light-gray);
}

span.bread-del:after {
  content: "";
  width: 6px;
  height: 2px;
  display: block;
  background-color: var(--light-gray);
  transform: rotate(-45deg);
  position: absolute;
  bottom: 2px;
  right: 3px;
}

span.bread-del:before {
  content: "";
  width: 6px;
  height: 2px;
  display: block;
  background-color: var(--light-gray);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  right: 3px;
}

.clever-woo-breadcrumb li {
  color: var(--main-red);
}

.clever-woo-breadcrumb li:last-child {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 300px;
}

.clever-woo-breadcrumb li a {
  color: var(--second-gray);
}

.clever-woo-breadcrumb ul li:first-child a {
  display: none;
}

.clever-woo-breadcrumb ul li:first-child {
  width: 17px;
  height: 17px;
  background-image: url("/wp-content/themes/cleverproducts/images/bread-home-gray.svg");
}

/* .clever-woo-breadcrumb-2 ul.crumbs span:nth-of-type(1) {
  display: none;
}
.clever-woo-breadcrumb-2 ul.crumbs li:nth-of-type(1) {
  display: none;
} */
.clever-woo-breadcrumb-2 {
  margin-top: 40px;
}

.clever-woo-breadcrumb-2 ul.crumbs {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.clever-woo-breadcrumb-2 span.bread-del {
  padding: 15px;
  border-radius: 50%;
  background-color: #f0efef;
}

.clever-woo-breadcrumb-2 span.bread-del:after {
  content: "";
  width: 6px;
  height: 2px;
  display: block;
  background-color: var(--main-black);
  transform: rotate(-45deg);
  position: absolute;
  bottom: calc(50% - 4px);
  right: calc(50% - 3px);
}

.clever-woo-breadcrumb-2 span.bread-del:before {
  content: "";
  width: 6px;
  height: 2px;
  display: block;
  background-color: var(--main-black);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2px);
  right: calc(50% - 3px);
}

.clever-woo-breadcrumb-2 ul.crumbs li {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 36px;
  color: var(--main-black);
}

.clever-woo-breadcrumb-2 ul.crumbs li a {
  color: var(--main-black);
}

#shop_filters .widget-title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: var(--main-red);
  border-bottom: 2px solid var(--main-red);
  padding: 15px 0px;
}

#shop_filters .sf-field-post-meta-_price h4 {
  font-family: Manrope;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-black);
}

#shop_filters input.sf-input-range-number {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 3px 7px;
  font-weight: 700;
}

#shop_filters .meta-slider {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 6px;
  max-width: 220px;
  width: 100%;
  order: 0;
}

#shop_filters .noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  top: -10px;
  border-radius: 50%;
  border: 0;
  background-color: var(--main-black);
  box-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
  cursor: pointer;
}

#shop_filters .noUi-horizontal .noUi-handle:after,
#shop_filters .noUi-horizontal .noUi-handle:before {
  display: none;
}

#shop_filters .noUi-connect {
  background-color: var(--main-black);
}

#shop_filters .noUi-handle.noUi-handle-lower {
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

#shop_filters .sf-meta-range.sf-meta-range-slider {
  display: flex;
  flex-wrap: wrap;
}

#shop_filters .sf-meta-range.sf-meta-range-slider label {
  width: 50%;
  margin-top: 10px;
}

#shop_filters .sf-meta-range.sf-meta-range-slider label:nth-of-type(1) {
  order: 1;
}

#shop_filters .sf-meta-range.sf-meta-range-slider label:nth-of-type(2) {
  order: 2;
}

#shop_filters span.sf-range-values-seperator {
  display: none;
}

#shop_filters [data-sf-field-input-type="checkbox"] {
  padding: 0;
}

#shop_filters [data-sf-field-input-type="checkbox"] h4 {
  font-family: Manrope;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: var(--main-black);
  border-bottom: 2px solid var(--main-red);
  padding: 15px 0px;
  cursor: pointer;
  position: relative;
}

#shop_filters [data-sf-field-input-type="checkbox"] h4.active {
  color: var(--main-red);
}

#shop_filters [data-sf-field-input-type="checkbox"] ul {
  background: #f0efef;
  display: none;
}

#shop_filters [data-sf-field-input-type="checkbox"] ul li {
  padding: 16px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--main-black);
  border-bottom: 2px solid #e5e5e5;
  display: flex;
  align-items: center;
}

#shop_filters [data-sf-field-input-type="checkbox"] ul li:last-child {
  border-bottom-color: var(--main-red);
}

#shop_filters [data-sf-field-input-type="checkbox"] ul li input {
  height: 16px;
  width: 16px;
}

#shop_filters [data-sf-field-input-type="checkbox"] ul li label {
  cursor: pointer;
}

#shop_filters [data-sf-field-input-type="checkbox"] h4:before,
#shop_filters [data-sf-field-input-type="checkbox"] h4:after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: black;
  right: 12px;
  top: 25px;
}

#shop_filters [data-sf-field-input-type="checkbox"] h4:after {
  transform: rotate(90deg);
  transition: 0.3s;
}

#shop_filters [data-sf-field-input-type="checkbox"] h4.active:before,
#shop_filters [data-sf-field-input-type="checkbox"] h4.active:after {
  background-color: var(--main-red);
  transform: rotate(0);
  transition: 0.3s;
}

.woo_archive_sidebar::-webkit-scrollbar {
  width: 7px;
}

.woo_archive_sidebar::-webkit-scrollbar-thumb {
  background: rgb(196, 196, 196);
  border-radius: 8px;
}

.woo_archive_sidebar::-webkit-scrollbar-track {
  background: #fff;
}

.woo_archive_sidebar_close {
  width: 30px;
  height: 30px;
  display: none;
  background-color: #f0efef;
  position: absolute;
  right: 20px;
  top: 20px;
}

.woo_archive_sidebar_close:before,
.woo_archive_sidebar_close:after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 14px;
  left: 8px;
}

.woo_archive_sidebar_close:before {
  transform: rotate(45deg);
}

.woo_archive_sidebar_close:after {
  transform: rotate(-45deg);
}

.woo-filters {
  display: none;
  margin-left: 8px;
}

.woo_taxinomisi_mobile {
  display: none;
}

.woo_taxinomisi_mobile p {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
}

.woo_taxinomisi_mobile form.woocommerce-ordering select {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding: 8px 20px;
  border-radius: 8px;
  background: #f0efef;
  border: 0;
  width: 100%;
}

.no-products-container {
  margin-top: 40px;
}

.category-top-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
}

/* // ANCHOR : Single Product */

.single_prod_main_info {
  position: relative;
  display: grid;
  grid-gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: auto;
}

.single_prod_carousel_wrapper {
  grid-column: span 3;
  overflow: hidden;
}

.single_prod_desc_wrapper {
  grid-column: span 3;
  position: relative;
}

.single_prod_addtocart_wrapper {
  grid-column: span 2;
}

.single_prod_addtocart_container {
  position: relative;
  padding-bottom: 56px;
}

.single_prod_desc_wrapper span.wishlist-icon {
  position: absolute;
  right: 0;
  top: 0;
}

.single_prod_desc_wrapper span.tinvwl_add_to_wishlist-text,
.single_prod_desc_wrapper
  .tinvwl-product-in-list.tinvwl-product-make-remove
  .tinvwl_remove_from_wishlist-text {
  display: none !important;
}

.wishlist-icon a {
  transition: 0.3s;
}

.wishlist-icon a:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

.woocommerce div.product .single_prod_addtocart_container form.cart .button {
  position: absolute;
  float: none;
  height: 56px;
  width: 100%;
  bottom: 0;
  left: 0;
}

.woocommerce div.product form.cart div.quantity,
.product-quantity .quantity {
  display: flex;
  padding: 4px 8px;
  background-color: #fff;
  border-radius: 8px;
}

.quantity.hidden {
  display: none !important;
}

.cart_item .quantity {
  background-color: #fff;
}

.qty-buttons-wrapper {
  display: flex;
  flex-direction: column;
}

.woocommerce .quantity .qty {
  background-color: #fff0;
  border: 0;
}

.woocommerce .quantity .qty:focus-visible {
  outline: none;
}

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

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

.qty-buttons-wrapper input {
  height: 24px;
  width: 24px;
  border: 0;
  cursor: pointer;
  background-color: #f0efef;
}

.qty-buttons-wrapper input:hover {
  background-color: #d3d2d2;
}

input.qty_button.plus {
  border-radius: 8px 8px 0 0;
  background-image: url(/wp-content/themes/cleverproducts/images/arrow-up.svg);
}

input.qty_button.minus {
  border-radius: 0 0 8px 8px;
  background-image: url(/wp-content/themes/cleverproducts/images/arrow-down.svg);
}

.sales-amount {
  padding: 10px;
  background-color: #000;
  color: #fff;
  border-radius: 8px 8px 0 0;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
}

.price-info {
  background: #f0efef;
}

.price-container {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
}

.single_variation_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.variable .price-container {
  flex-direction: column;
}

.price-container .woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.prod_price p {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 8px;
}

.prod_price .price del {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: var(--light-gray);
}

.prod_price .price ins {
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  color: var(--main-black);
}

.price-info.simple .stock {
  display: none;
}

.prod_amount form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.prod_amount form.variations_form.cart {
  align-items: flex-start;
}

ul.product_tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.product_tags li a {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  padding: 5px 8px;
  background-color: #62c2a3;
  color: #fff;
  border-radius: 100px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: block;
}

.single_prod_desc_wrapper .product_reviews {
  margin-bottom: 26px;
  cursor: pointer;
}

.excerpt_single_product {
  margin-bottom: 24px;
}

.excerpt_single_product p {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
}

.sku_single_product {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: var(--second-gray);
}

.description_single_product {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: var(--second-gray);
  margin-top: 20px;
}

.description_single_product ul {
  padding-left: 20px;
}

.aksiologiseis-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  height: 100%;
  width: 100%;
  padding: 20px;
}

.aksiologiseis {
  display: flex;
  height: 100%;
  width: 100%;
}

.aksiologiseis-container {
  max-width: 800px;
  width: 100%;
  max-height: 90%;
  height: auto;
  padding: 30px;
  margin: auto;
  background-color: #f0efef;
  border-radius: 8px;
  position: relative;
  overflow: auto;
}

span.aksiologiseis-close.aksiologiseis {
  width: 20px;
  height: 20px;
  background-color: #c5c5c5;
  position: absolute;
  right: 20px;
  top: 20px;
}

span.aksiologiseis-close {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  background-image: url(/wp-content/themes/cleverproducts/images/close-icon.svg);
  background-size: cover;
  border-radius: 50%;
}

span.aksiologiseis-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00000075;
}

h2.woocommerce-Reviews-title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 20px;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}

div#review_form_wrapper {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid #dfdfdf;
}

span#reply-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

#review_form #respond .comment-form-rating p.stars {
  font-size: 20px;
  margin-top: 10px;
}

div#review_form label {
  font-size: 16px;
}

.woocommerce #review_form #respond textarea {
  margin-top: 10px;
  background-color: #f0efef;
  border-radius: 8px;
  border: 2px solid #bdbdbd;
}

.woocommerce #review_form #respond .form-submit input {
  padding: 10px 30px;
  color: #fff;
  background-color: var(--main-red);
}

.woocommerce #review_form #respond .form-submit input:hover {
  background-color: #dd242b;
}

.wishlist-mobile .tinvwl_add_to_wishlist_button {
  width: 100%;
  padding: 13px;
  background: #f0efef;
  border-radius: 8px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}

.wishlist-mobile
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
  left: 25px;
  position: absolute;
  top: 11px;
  color: #616568;
}

.wishlist-mobile .tinvwl_add_to_wishlist_button:hover {
  transform: none;
  transition: none;
}

.wishlist-mobile span.tinvwl_add_to_wishlist-text,
.wishlist-mobile .tinvwl_remove_from_wishlist-text {
  color: var(--main-black);
}

.wishlist-mobile {
  display: none;
}

.product-custom-description-wrapper {
  margin-top: 30px;
}

section.text-banner-section {
  display: flex;
}

section.text-banner-section.reversed {
  flex-direction: row-reverse;
}

.prod_first_desc {
  background-color: #f0efef;
  padding: 60px 0;
}

.prod_sec_desc {
  padding-bottom: 60px;
  padding-top: 60px;
}

.text-banner-section .media {
  width: 50%;
  height: 100%;
  min-height: 500px;
  background-position: 100% 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.text-banner-section .text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-banner-section .text-content {
  max-width: 650px;
  padding: 20px;
}

.text-banner-section h2.title {
  font-size: 24px;
  margin-bottom: 15px;
}

.text-banner-section .content {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 32px;
}

.product-pdf-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-pdf-wrapper {
  padding: 60px 0;
  background-color: #d23f44;
  margin-top: 60px;
  border-radius: 8px;
}

.product-pdf-container .content {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.product-pdf-container .content img {
  width: 96px;
}

.product-pdf-container .content h3 {
  font-family: Manrope;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 9px;
}

.product-pdf-container .content p {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  max-width: 465px;
}

.product-pdf-container .download-manual a {
  background: #010101;
  border-radius: 8px;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding: 11px 17px;
  border: 0;
}

.custom_submit_form {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 8px 12px 40px;
  margin-bottom: 15px;
  position: relative;
}

.custom_submit_form._form_1 {
  width: 100%;
  max-width: 421px;
  padding: 9px 8px 9px 40px;
}
.custom_submit_form ._form._form_1 {
  margin-top: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.custom_submit_form ._form._form_1 ._form-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#act-cam-footer-form._form_1.custom_submit_form
  ._form._form_1
  ._form-content
  ._form_element._x30469922,
#act-cam-footer-form._form_1.custom_submit_form
  ._form._form_1
  ._form-content
  ._button-wrapper {
  margin: 0 !important;
}
.custom_submit_form ._form._form_1 ._form_element._x30469922 {
  width: 100%;
  float: none !important;
  margin-bottom: 0 !important;
  padding-right: 5px;
}
.custom_submit_form ._form._form_1 label._form-label {
  display: none !important;
}
.custom_submit_form ._form._form_1 input#email {
  border: none !important;
  width: 100% !important;
  padding: 0 !important;
  font-family: "Manrope" !important;
  font-style: normal;
  font-weight: normal;
  font-size: 16px !important;
}
.custom_submit_form ._form._form_1 ._button-wrapper {
  position: initial !important;
  margin: 0 !important;
  float: none !important;
  min-width: 86px !important;
  width: 86px !important;
}
.custom_submit_form ._form._form_1 ._form-content #_form_1_submit._submit {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding: 7px 12.5px !important;
}
._button-wrapper ._form-inner {
  position: absolute !important;
  bottom: 45px !important;
  left: 0px !important;
}
._error-inner._form_error._no_arrow {
  font-size: 12px !important;
  font-family: "Manrope" !important;
  font-weight: 500 !important;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  margin-bottom: 0 !important;
}
._form-thank-you {
  margin-top: 2px;
}

/*  */
.custom_submit_form input[type="email"] {
  border: 0;
  width: 100%;
}

.custom_submit_form input[type="email"]:focus-visible {
  border: 0;
  outline: none;
}

.custom_submit_form input[type="email"]::-webkit-input-placeholder,
.custom_submit_form input::-ms-input-placeholder,
.custom_submit_form input::-moz-placeholder {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #adadad;
}

.custom_submit_form_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 11px;
  top: 14px;
}

.custom_submit_form input[type="submit"],
button.yikes-easy-mc-submit-button[type="submit"] {
  background: #010101;
  border-radius: 8px;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding: 7px 13px;
  border: 0;
  position: absolute;
  right: 7px;
  top: 9px;
  cursor: pointer;
}

label.label-inline.EMAIL-label.yikes-mailchimp-field-required {
  margin-bottom: 1px;
  padding-right: 0;
  width: 100%;
}

input#yikes-easy-mc-form-1-EMAIL {
  border: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  padding-top: 1px;
}

input#yikes-easy-mc-form-1-EMAIL:focus {
  outline: none !important;
}

.pre-footer .yikes-mailchimp-container > p {
  margin-bottom: 5px;
  border-radius: 8px;
  font-size: 12px;
}

label.empty-form-inline-label.submit-button-inline-label {
  background: #010101;
  border-radius: 8px;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  position: absolute;
  right: 7px;
  top: 9px;
  cursor: pointer;
  margin-bottom: 0;
  min-width: 86px;
  max-width: 86px;
}

button.yikes-easy-mc-submit-button[type="submit"] {
  background: transparent;
  color: #fff;
  line-height: 19px;
  padding: 0;
  border: 0;
  margin-bottom: 0 !important;
  min-height: 33px;
  position: initial;
}
/*  */

#product_pdf_form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.accept-terms {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.product-icons-wrapper {
  padding-top: 60px;
  background: #f0efef;
}

.product-icons-wrapper ul {
  display: flex;
  padding: 0;
  gap: 20px;
  list-style: none;
  justify-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-icons-wrapper ul li {
  width: 32%;
  display: flex;
  justify-content: center;
  padding: 0;
}

.product-icons-wrapper ul .icon-container {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.product-icons-wrapper ul li img,
.product-icons-wrapper ul li svg {
  height: 50px;
  max-width: 50px;
}

.product-icons-wrapper .icon {
  height: 60px;
  width: 60px;
  background-color: #f0efef;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 24px;
}

.product-icons-wrapper .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 16px;
}

.product-icons-wrapper .text {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #000;
}

.product-specs {
  padding: 0 0 60px 0;
  /* background: var(--main-gray); */
}

.product-specs ul {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  padding: 0;
  list-style: none;
  /* column-count: 2; */
}

/* .product-specs ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}
.product-specs ul li:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url(/wp-content/themes/cleverproducts/images/arrow-right-red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */
ul.prod_specs_tabs {
  display: flex;
  gap: 10px;
  margin: 0;
  flex-direction: row;
}

li.prod_specs_tab {
  font-family: var(--main-font);
  padding: 15px;
  background-color: #f3f3f3;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  color: #c5c5c5;
  font-weight: 500;
  font-size: 20px;
  width: 50%;
  text-align: center;
}

li.prod_specs_tab.active {
  background-color: var(--main-red);
  color: #ffffff;
}

.product-specs-container {
  margin-top: 25px;
}

.prod_specs_col {
  width: 100%;
  display: none;
}

.prod_specs_col:first-child {
  display: block;
}

.product-table-list-item {
  display: flex;
  padding: 1.125rem 2.5rem;
  align-items: center;
  font-size: 20px;
}

.product-table-list-item:nth-child(even) {
  background-color: #efefef;
}

.product-table-list-item p:nth-child(1) {
  color: #8a8a8a;
  width: 30rem;
}

.product-table-list-item p:nth-child(2) {
  color: #000;
  width: 70rem;
}

.up-sells.upsells.products {
  padding-top: 60px;
}

.up-sells.upsells.products h2 {
  margin-bottom: 50px;
}

.product-video-faq-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}

.product-faq-wrapper,
.product-video-wrapper {
  width: 50%;
}

.product-video-wrapper {
  display: flex;
  justify-content: center;
}

.product-video-faq-wrapper {
  padding: 60px 0;
  background-color: #fff;
}

ul.product-faq-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

li.product-faq-item {
  padding: 10px;
  background-color: #f0efef;
  border-bottom: 2px solid #dfdfdf;
  max-width: 700px;
  cursor: pointer;
}

li.product-faq-item:last-child {
  border: 0;
  border-radius: 0 0 6px 6px;
}

li.product-faq-item:first-child {
  border-radius: 6px 6px 0 0;
}

li.product-faq-item .product-faq-title {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 25px 5px 0;
  position: relative;
}

li.product-faq-item .product-faq-answer {
  font-size: 14px;
  font-weight: 400;
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #dfdfdf;
  display: none;
}

.product-video-wrapper iframe {
  width: 100%;
  max-width: 640px;
}

.video-square .product-video-wrapper iframe {
  height: 600px;
}

.product-faq-title:before {
  right: 10px;
  top: 19px;
}

.product-faq-title:after {
  right: 10px;
  transform: rotate(90deg);
  top: 19px;
  transition: 0.2s;
}

li.product-faq-item.active .product-faq-title:after {
  transform: rotate(0deg);
  transition: 0.2s;
}

.product-faq-title:before,
.product-faq-title:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: var(--main-black);
  position: absolute;
}

li.product-faq-item.active p.product-faq-title {
  color: var(--main-red);
}

.product-faq-wrapper h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* // ANCHOR : Product Gallery  */

button.owl-dot.thumb_product {
  width: 20%;
  height: auto;
  border-radius: 0;
  background-color: #fff !important;
  padding: 5px;
  margin: 0;
}

button.owl-dot.thumb_product.active {
  border-bottom: 2px solid #ce2127;
}

span.thumb_product {
  cursor: pointer;
}

#thumb_product_gallery .owl-item.current {
  border-bottom: 2px solid #ce2127;
}

.product-pop-slider s {
  position: fixed;
  z-index: 999999;
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_product_gallery {
  max-width: 500px;
}

figure.woocommerce-product-gallery__wrapper.owl-carousel.main_product_gallery.owl-loaded.owl-drag {
  margin: auto;
}

/* // ANCHOR : Related / Recent View Products */

.recent-products-slider {
  background: #f0efef;
  padding-top: 60px;
}

.related.products {
  padding-top: 60px;
}

.recent-products-slider,
.related.products {
  padding-bottom: 50px;
}

.recent-products-slider > h2,
.related.products > h2,
.recent-title {
  margin-bottom: 50px;
}

ul.recent_view_list {
  padding: 0;
  list-style: none;
}

.single-product-price-text div {
  padding: 24px;
  border-top: 1px solid #e5e5e5;
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 20px;
}

.apothema {
  padding: 0 16px;
  margin-bottom: 24px;
}

.progress {
  width: 100%;
  max-width: 260px;
  height: 7px;
  background: #dadada;
  border-radius: 3px;
  overflow: hidden;
}

.progress .progress-bar {
  display: block;
  height: 100%;
  background: var(--main-red);
}

.apothema-bar-wrapper {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
}

.apothema-bar-wrapper p {
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  color: #ce2127;
  margin-bottom: 8px;
}

p.out-of-stock-single {
  text-align: center;
  margin: 20px;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  color: var(--main-red);
  font-weight: 600;
}

/* // ANCHOR : Quick View */

#quick_view_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

.quick_view_wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.quick_view_container {
  position: relative;
  max-width: 1024px;
  max-height: 95%;
  min-height: 50%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 13.6667px 27.3333px rgb(0 0 0 / 10%);
  border-radius: 8px;
  padding: 40px;
  overflow: auto;
}

.close_quick_view {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.quick_view_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #00000040;
}

.quick_view_spinner {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffcf;
  border-radius: 8px;
}

.loading .quick_view_spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv_container {
  display: flex;
}

.qv_slider_wrapper {
  width: 50%;
}

.qv_prod_content {
  width: 50%;
}

.qv_badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qv_prod_title {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.qv_prod_title a {
  color: var(--main-black);
}

.qv_prod_title a:hover {
  color: var(--main-red);
}

.qv_excerpt {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
}

.qv_price_stock {
  display: flex;
  justify-content: space-between;
}

.qv_price_stock .apothema {
  min-width: 260px;
}

.qv_stock .apothema-bar-wrapper {
  background-color: #f0efef;
}

.qv_desc {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #616568;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.qv_desc ul {
  padding-left: 10px;
}

.qv_add_cart {
  position: relative;
  height: 56px;
}

.qv_add_cart form.cart {
  height: 56px;
  margin-bottom: 0 !important;
}

.qv_add_cart .stock {
  display: none;
}

.qv_add_cart .quantity {
  background-color: #f0efef !important;
}

.qv_add_cart .qty-buttons-wrapper input {
  background-color: #ffffff;
}

.qv_add_cart button.single_add_to_cart_button {
  height: 100%;
  border-radius: 8px !important;
  /* padding: 0 80px; */
}

.qv_wishlist-icon .tinvwl_add_to_wishlist-text,
.qv_wishlist-icon
  .tinvwl-product-in-list.tinvwl-product-make-remove
  .tinvwl_remove_from_wishlist-text {
  display: none !important;
}

.qv_wishlist-icon
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
  margin: 0;
}

.qv_add_cart {
  position: relative;
  display: flex;
  align-items: center;
}

.qv_wishlist-icon {
  height: 100%;
  display: flex;
  align-items: center;
  width: 56px;
  justify-content: center;
  border-radius: 8px;
  background-color: #f0efef;
  margin-left: 10px;
}

.qv-read-more {
  display: flex;
  height: 100%;
  min-height: 56px;
  width: 100%;
  text-align: center;
  background-color: var(--main-red);
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding: 0 30px;
  justify-content: center;
  align-items: center;
}

.qv_container
  .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
  opacity: 1 !important;
  width: 100%;
}

.qv-gallery {
  list-style: none;
  padding: 0;
}

.qv-gallery button.owl-next,
.qv-gallery button.owl-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  color: #fff !important;
  background-color: #ce2127 !important;
  border-radius: 50%;
}

.qv_slider_wrapper button.owl-prev.disabled,
.qv_slider_wrapper button.owl-next.disabled {
  background-color: #ededed !important;
}

.qv-gallery button.owl-next {
  right: 0;
}

.qv-gallery button.owl-prev {
  left: 0;
}

.qv-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qv_slider_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.qv-gallery-dots button.owl-dot {
  height: 80px;
  width: 80px;
  border-radius: 0;
  background-size: cover !important;
}

.qv-gallery-dots button.owl-dot.active {
  border-bottom: 2px solid #ce2127;
  background-color: #ffffff !important;
}

.qv-gallery-dots button.owl-dot {
  background-color: #ffffff !important;
}

/* // ANCHOR : Blog Posts */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content p,
.blog-content figure,
.blog-content blockquote,
.blog-content dl,
.blog-content dd {
  margin-bottom: 15px;
}

.blog-content h1.page-title {
  margin-bottom: 0;
}

.blog-content a {
  font-weight: 600;
}

.blog-posts-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.blog-posts-container {
  width: 75%;
}

.blog-sidebar {
  width: 25%;
  padding: 20px;
}

.blog-posts-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.post-item-img {
  height: 300px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.post-item-info-container {
  margin-top: -30px;
}

.post-item-info-wrapper {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
  border-radius: 8px;
  width: 95%;
  margin: auto;
  padding: 24px;
}

.post-item-info-wrapper .title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-post-item:hover .title {
  text-decoration: underline;
}

ul.post-item-cat-pill-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

li.post-item-cat-pill a {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  background-color: #ce2127;
  border-radius: 100px;
}

li.post-item-cat-pill a:hover {
  background-color: #f0efef;
  color: #ce2127;
}

.fixedsidebar-mobile-triger {
  display: none;
  position: absolute;
  left: -93px;
  top: 50%;
  padding: 7px 40px;
  border-radius: 8px 8px 0 0;
  background-color: #ce2127;
  color: #fff;
  transform: rotate(-90deg);
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
  width: 150px;
}

/* // ANCHOR : Social Share */
.share-icons {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

ul.share-icons-list {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

ul.share-icons-list li svg {
  width: 24px;
  height: 24px;
}

.share-mail path {
  fill: var(--main-red);
}

.share-icons p {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
}

/* // ANCHOR : HOMEPAGE */

.main-home-banners {
  min-height: 520px;
  max-width: 1900px;
  padding: 20px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.main-banner-item {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
}

.main-banner-item,
.main-banner-item a,
.main-banner-item p {
  color: #fff;
}

.main-banner-item svg,
.main-banner-item path {
  fill: #fff;
}

.main-banner-1 {
  grid-column: 2 span;
  grid-row: 2 span;
  overflow: hidden;
}

.main-banner-2 {
  grid-column: 2 span;
  grid-row: 1 span;
  overflow: hidden;
}

.main-banner-3,
.main-banner-4 {
  grid-column: 1 span;
  grid-row: 1 span;
  overflow: hidden;
}

.banner-1-list,
.b1-list-wrapper,
.banner-2-list,
.b2-list-wrapper,
.static-banner-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.b1-list-wrapper {
  padding: 44px;
  border-radius: 8px;
  background-color: #0000006b;
}

.banner-1-item,
.banner-2-item,
.static-banner-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.b1-bt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.b1-bt .icon svg {
  width: 20px;
}

.b1-bt .text {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
}

.b1-title {
  font-style: normal;
  font-weight: bold;
  font-size: clamp(28px, 2vw, 46px);
  margin-bottom: 24px;
  max-width: 80%;
}

.b1-desc {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 32px;
  margin-bottom: 24px;
  max-width: 60%;
}

.b1-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.b1-links .b1-price {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
}

.b1-button {
  position: relative;
}

.b1-button .icon {
  position: absolute;
  right: 15px;
  top: 6px;
  font-size: 20px;
  font-weight: 600;
}

.b1-links .b1-button a:hover {
  background-color: var(--main-red);
  border-color: var(--main-red);
}

.b1-links .b1-button a {
  display: block;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding: 10px 36px 10px 24px;
  border: 1px solid #fff;
  border-radius: 8px;
}

.home-banner-controllers {
  position: absolute;
  bottom: 25px;
  right: 50px;
  display: flex;
  align-items: center;
  z-index: 9;
}

.main-banner-item .owl-carousel .owl-stage-outer,
.main-banner-item .owl-carousel .owl-stage,
.main-banner-item .owl-carousel.owl-drag .owl-item {
  height: 100%;
}

.home-banner-controllers.owl_custom_navs button.owl-next,
.home-banner-controllers.owl_custom_navs button.owl-prev {
  padding: 0;
  background-color: #0000;
  border: 0;
}

.home-banner-controllers.owl_custom_navs {
  padding: 0 24px;
}

.b2-list-wrapper,
.static-banner-wrapper {
  padding: 20px;
  display: block;
  background-color: #0000006b;
}

.b2-title {
  font-size: 26px;
}

.static-banner-title {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 36px;
}

.home-categories-container {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

ul.home-categories-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  justify-content: center;
}

.home-categories-wrapper {
  padding: 100px 0;
  background-image: url("/wp-content/themes/cleverproducts/images/wave-gray.png");
  background-size: cover;
}

.home-categories-list-item .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
  margin-bottom: 15px;
}

.home-categories-list-item .title {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: var(--main-black);
}

.home-categories-list-item .image-container img {
  max-width: 80%;
  max-height: 80%;
}

li.home-categories-list-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  max-width: 120px;
}

li.home-categories-list-item:hover {
  transform: scale(1.08);
  transition: 0.3s;
}

.home-categories-list-item:hover .image-container {
  box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
  border: 1px solid var(--main-red);
}

h3.homepage-title {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 15px;
}

.homepage-title-desc {
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: #616568;
  margin-bottom: 32px;
}

.home-prosfores-wrapper {
  padding: 100px 0;
}

.home-prosfores-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-prosfores-list-item {
  width: 720px;
  transition: 0.3s;
}

.home-prosfores-list-item > div {
  margin: 20px;
  padding: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.owl-item.active.center .home-prosfores-list-item {
  transform: scale(1.08);
  transition: 0.3s;
}

.home-prosfores-list-item a {
  width: 100%;
  height: 100%;
}

.pli-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pli-content img {
  max-width: 275px;
  max-height: 275px;
  margin-bottom: 16px;
}

.pli-content .title {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

.pli-content .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  font-family: var(--second-font);
  color: #ffffff;
  opacity: 0.6;
  margin-bottom: 16px;
  text-align: center;
}

.pli-content .price {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  color: #fff;
}

.owl_custom_navs #hf-navs button.owl-next,
.owl_custom_navs #hf-navs button.owl-prev {
  background: #ffffff;
  color: var(--main-red);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.home-products-carousel {
  padding: 100px 0 0 0;
  background-image: url(/wp-content/themes/cleverproducts/images/wave-gray.png);
  background-size: cover;
  margin-bottom: 170px;
  position: relative;
}

.hp-carousel {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-carousel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-products-carousel-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.hp-text {
  width: 30%;
}

.hp-carousel-container {
  width: 70%;
  margin-bottom: -59px;
}

.hp-text-wrapper {
  padding-right: 40px;
  padding-left: 20px;
  max-width: 400px;
  margin-left: auto;
}

.hp-carousel .product_loop_item {
  max-width: 300px;
}

.hp-custom-navs.owl_custom_navs {
  position: absolute;
  bottom: 7px;
  left: 10%;
  padding: 0 50px;
}

.home-blog-posts-container {
  padding: 40px 0;
  background: #f0efef;
  position: relative;
}

.home-blog-title {
  display: flex;
}

.blog-home-logo img {
  max-width: 145px;
}

span.blog-home-text {
  background: var(--main-red);
  border-radius: 8px 8px 8px 0;
  padding: 9px 15px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 27px;
  position: relative;
}

span.blog-home-text:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid var(--main-red);
  border-right: 30px solid transparent;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.home-blog-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.home-blog-posts-list {
  margin-top: 40px;
}

.home-blog-posts-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.post-item-gravatar img {
  border-radius: 50%;
}

.post-item-author-name,
.post-item-pub-date {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #616568;
  font-family: var(--second-font);
}

span.post-item-pub-date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 20px;
}

span.post-item-pub-date .icon svg {
  width: 14px;
  height: 14px;
}

span.post-item-pub-date .icon svg path {
  fill: #616568;
}

.home-blog-posts-list .post-item-info-wrapper .title {
  color: var(--main-black);
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
}

.home-blog-posts-list .post-item-excerpt {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #616568;
}

.home-blog-posts-list .post-item-info-wrapper {
  border-radius: 8px 8px 8px 0;
  position: relative;
}

.home-blog-posts-list .post-item-info-wrapper:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 30px solid #fff;
  border-right: 40px solid transparent;
  position: absolute;
  left: 0;
  bottom: -25px;
}

.home-blog-posts-list .blog-post-item {
  max-width: 450px;
}

.home-blog-posts-list .post-item-info-wrapper {
  width: 93%;
}

.home-company-section {
  padding: 60px 0;
  background: #232323;
}

.hcs-list {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.hcs-list .hcs-list-item:nth-of-type(3) {
  display: none;
}

.hcs-list-item {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hcs-list-item .icon svg path,
.hcs-list-item .icon svg {
  fill: #fff;
}

.hcs-list-item .title {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.hcs-list-item .text {
  color: #adadad;
  font-family: var(--second-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
}

.hcs-list-item .icon svg {
  width: 24px;
}

.hcs-list-item .icon {
  width: 56px;
  height: 56px;
  background: #ce2127;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hcs-logo-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}

span.hcs-logo svg {
  width: 170px;
}

.hcs-logo-border {
  width: calc(40% - 70px);
  height: 2px;
  background-color: #616568;
}

/* // ANCHOR : 404 */
.error404-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.error404-title-container h3 {
  font-size: 70px;
  text-align: center;
  padding: 100px 0;
  font-weight: 400;
  color: #ce2127;
  font-family: var(--second-font);
}

.error404-title-container {
  border-bottom: 0;
  padding-bottom: 0;
  margin: 0;
  margin-bottom: 80px;
  position: relative;
}

.error404-title-container:before {
  content: "404";
  top: 0;
  left: 50%;
  position: absolute;
  color: rgba(142, 142, 142, 0.15);
  font-size: 400px;
  line-height: 320px;
  font-weight: 700;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.error404-search .text {
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.error404-search span {
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 22px;
}

#searchform404 {
  max-width: 600px;
  margin: auto;
  position: relative;
}

#searchform404 input#s {
  width: 100%;
  padding: 9px;
  border-radius: 8px;
  border: 2px solid #e7e7e7;
  font-size: 14px;
}

#search404submit {
  position: absolute;
  top: 7px;
  right: 8px;
  background-color: #ce2127;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  border-radius: 8px;
  height: 31px;
  width: 111px;
  cursor: pointer;
}

/* // ANCHOR : MEDIA QUERIES */
@media (min-width: 551px) {
  .clever-footer ul#menu-copyrights li br {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .show-all-mobile-only {
    display: none;
  }
}

@media (max-width: 1400px) {
  .after_extra_info_item p,
  .contact_info p,
  .contact_info a {
    font-size: 12px;
  }

  .pre-footer .title {
    font-size: 20px;
  }

  .pre-footer .text {
    font-size: 14px;
  }

  .home-categories-container {
    gap: 40px;
  }
}

@media (max-width: 1300px) {
  #header .search-form {
    width: 350px;
  }

  .first-li-item > .submenus-section {
    width: calc(90vw - var(--menu-width));
  }

  .grid-container {
    width: 98%;
  }

  .text-banner-section .media {
    min-height: 400px;
  }
}

@media (max-width: 1250px) {
  .single_prod_desc_wrapper {
    grid-column: span 4;
    grid-row-start: 2;
  }

  .single_prod_carousel_wrapper {
    grid-column: span 4;
  }

  .single_prod_addtocart_wrapper {
    grid-column: span 4;
    position: sticky;
    top: 10px;
  }

  .product-pdf-container {
    display: flex;
    flex-direction: column;
  }

  .product-pdf-container .content {
    margin-bottom: 40px;
  }

  .product-pdf-container .content img {
    width: 60px;
  }

  section.text-banner-section,
  section.text-banner-section.reversed {
    flex-direction: column;
  }

  .text-banner-section .media,
  .text-banner-section .text {
    width: 100%;
  }

  .text-banner-section .media {
    min-height: 500px;
  }

  .text-banner-section .text {
    padding: 50px 20px;
  }

  .product-icons-wrapper ul li {
    width: 48%;
  }

  .prod_first_desc {
    padding-top: 0;
  }
}

@media (max-width: 1180px) {
  #header .search-form {
    width: 250px;
  }

  .after_extra_info {
    display: none;
  }

  .contact_info_item {
    padding: 4px 8px;
  }

  .info_hours .info_hours_content span {
    display: none;
  }

  .contact_info {
    gap: 10px;
  }

  .pre-footer-container {
    flex-direction: column;
  }

  .pre-footer-icon svg {
    bottom: unset;
    top: -65px;
    width: 140px;
    right: calc(50% - 70px);
  }

  .blog-posts-wrapper {
    flex-direction: column;
  }

  .blog-posts-container,
  .blog-sidebar {
    width: 100%;
  }

  .fixedsidebar-mobile-triger {
    display: block;
  }

  .fixedsidebar-mobile {
    position: fixed;
    right: -80%;
    top: 0;
    height: 100%;
    width: 80%;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
    z-index: 999;
    padding: 0;
  }

  .fixedsidebar-container {
    overflow: auto;
    height: 100%;
    width: 100%;
    padding: 20px;
  }

  .post_rel_text {
    font-size: 12px;
  }

  .post_rel_img img {
    max-width: 100px;
  }

  .home-categories-container {
    flex-direction: column;
  }

  .home-categories-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-categories-text p {
    text-align: center;
  }

  h3.homepage-title,
  .homepage-title-desc {
    text-align: center;
  }

  .hp-text {
    width: 100%;
    display: flex;
  }

  .hp-carousel-container {
    margin-bottom: 0;
    width: 100%;
  }

  .hp-text-wrapper {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .home-categories-wrapper,
  .home-prosfores-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-products-carousel {
    margin: 0;
    padding: 40px 20px;
  }

  .hp-carousel {
    margin-bottom: 20px;
  }

  .hp-carousel .product_loop_item {
    max-width: 230px;
  }

  .hp-custom-navs.owl_custom_navs {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 0 30px;
  }

  .qo_mini_cart_text {
    display: none;
  }

  .qo_trigger_button {
    margin: 0;
    background-color: #ce2127;
    font-weight: 600;
    width: 100%;
  }

  .qo_mini_cart {
    left: calc(50% - 150px);
    width: 300px;
  }

  .qo_mini_cart {
    padding: 0;
  }

  .qo_mini_cart > strong {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .first-li-item > .submenus-section {
    width: calc(100vw - var(--menu-width));
  }

  .error404-title-container:before {
    font-size: 200px;
    top: -27px;
  }

  .error404-title-container h3 {
    font-size: 50px;
  }

  .error404-title-container {
    margin-bottom: 20px;
  }

  .error404-search .text {
    font-size: 20px;
  }

  div#customer_login,
  .product-video-faq-container {
    flex-direction: column;
  }

  .product-faq-wrapper,
  .product-video-wrapper {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .footer-menus-wrapper {
    display: flex;
    justify-content: normal;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-column {
    width: 50%;
  }

  .menu-banner-list {
    display: none;
  }

  ul.sub-menu-0 {
    min-width: 100%;
    grid-template-columns: 1fr;
  }

  .first-li-item > .submenus-section {
    width: auto;
  }

  #shop_filters .meta-slider {
    max-width: 90%;
    margin-left: 12px;
  }

  #shop_filters .sf-meta-range.sf-meta-range-slider label:nth-of-type(2) {
    text-align: right;
  }

  .woo_archive_sidebar {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 9px 27px rgb(0 0 0 / 48%);
    overflow: auto;
    z-index: 999999;
  }

  .woo_archive_sidebar_close {
    display: block;
  }

  .woo-filters {
    display: flex;
    align-items: center;
  }

  .incategory-carousel .subcategory-item a:hover {
    transform: none;
    transition: none;
  }

  .woo_archive_controllers .show-controllers {
    display: none;
  }

  .woo_taxinomisi_mobile {
    display: block;
  }

  /* Mobile menu */

  .nav-bar__wrapper {
    justify-content: space-between;
  }

  .menu-toggle {
    order: 1;
  }

  .site-branding {
    order: 2;
  }

  .right-head {
    order: 3;
    margin: 0;
  }

  .menu-toggle {
    background-color: #fff;
  }

  .menu-toggle p {
    display: none;
  }

  .search-form-head-wrapper {
    display: none;
  }

  .right-head .head-wishilist {
    display: none;
  }

  .login-header-button {
    display: none !important;
  }

  .header-cart .total-icon {
    display: none;
  }

  .right-head > div {
    background-color: #ffffff;
  }

  .header-cart .woocommerce-Price-amount.amount {
    display: none;
  }

  .header-cart .cart-icon {
    margin: 0;
  }

  .nav-bar {
    padding: 20px 0;
  }

  .clever-woo-breadcrumb-2 ul.crumbs li {
    font-size: 20px;
    display: none;
  }

  .clever-woo-breadcrumb-2 ul.crumbs .bread-del {
    display: none;
  }

  .clever-woo-breadcrumb-2 ul.crumbs li:last-child {
    display: block;
  }

  .single_prod_carousel_wrapper {
    grid-column: span 8;
  }

  .single_prod_addtocart_wrapper {
    position: relative;
  }

  .qv_container {
    flex-direction: column;
  }

  .qv_slider_wrapper,
  .qv_prod_content {
    width: 100%;
  }

  .qv_prod_content {
    margin-top: 20px;
  }

  .qv_price_stock .apothema-bar-wrapper p {
    font-size: 12px;
  }

  .menu-item-desktop-hide {
    display: block;
  }

  .banner-hide-mobile {
    display: none;
  }

  .main-banner-1 {
    grid-column: 4 span;
  }

  .main-home-banners {
    height: auto;
    min-height: auto;
    padding: 0;
    border-radius: 0;
  }

  .banner-1-list,
  .b1-list-wrapper,
  .banner-1-item,
  .main-banner-item {
    border-radius: 0 !important;
  }

  .b1-title,
  .b1-desc {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .b1-bt,
  .b1-links {
    justify-content: center;
  }

  .home-banner-controllers {
    position: relative;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 9;
    margin-top: -65px;
  }

  .b1-list-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    padding-bottom: 100px;
  }

  .home-prosfores-list-item {
    width: 520px;
  }

  .product-specs-container {
    flex-direction: column;
  }

  li.prod_specs_tab,
  .product-table-list-item {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    margin: 10px;
  }

  .text-banner-section .media {
    min-height: 350px;
  }

  .product-icons-wrapper ul li {
    width: 47%;
  }

  .product-icons-wrapper .title {
    font-size: 15px;
    line-height: 20px;
  }

  .product-icons-wrapper ul li img,
  .product-icons-wrapper ul li svg {
    height: 35px;
    max-width: 35px;
  }

  .product-icons-wrapper .icon {
    height: 45px;
    width: 45px;
  }

  .product-icons-wrapper .text {
    display: none;
  }

  .product-specs ul {
    column-count: 1;
  }

  .after-footer-left {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-branding-footer {
    margin-bottom: 20px;
  }

  .after-footer {
    flex-direction: column;
  }

  .menu-copyrights-container ul {
    flex-direction: column;
  }

  .quick_view_container {
    padding: 30px 15px;
  }

  .qo-info-text .icon {
    display: none;
  }

  .blog-post-item {
    grid-column: 2 span;
  }

  .home-categories-list-item .image-container {
    width: 90px;
    height: 90px;
  }

  .home-prosfores-list-item {
    width: 400px;
  }

  .pli-content .title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .pli-content .text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }

  .home-prosfores-list-item > div {
    margin: 20px 10px;
  }

  .pli-content .price {
    font-size: 16px;
  }

  .pli-content img {
    max-width: 164px;
    max-height: 164px;
  }

  h3.homepage-title {
    font-size: 18px;
  }

  .homepage-title-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .home-blog-title-wrapper {
    flex-direction: column;
  }

  .home-blog-posts-container {
    padding-bottom: 100px;
  }

  .home-blog-title-wrapper .arrow-link {
    position: absolute;
    bottom: 35px;
    left: calc(50% - 80px);
  }

  .single-product .back-to-top {
    bottom: 100px;
  }

  li.prod_specs_tab,
  .product-table-list-item {
    font-size: 14px;
  }

  li.prod_specs_tab {
    padding: 10px;
  }
}

@media (max-width: 550px) {
  .main-banner-item,
  .main-banner-item a,
  .main-banner-item p {
    /* min-height: 130px; */
    aspect-ratio: 4 / 1;
  }
}

@media (max-width: 550px) {
  .clever-woo-breadcrumb ul {
    flex-wrap: wrap;
  }

  span.bread-del {
    margin: 0 12px;
  }

  .clever-footer {
    padding-bottom: 15px;
  }

  .clever-footer .footer-copyrights > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .clever-footer ul#menu-copyrights li {
    margin-bottom: 5px;
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .footer-column {
    width: 100%;
  }

  .grid-container {
    width: 100%;
  }

  .incategory-carousel .subcategory-item a {
    height: 200px;
    width: 200px;
  }

  .incategory-carousel.owl-carousel .owl-item img {
    width: 80px;
    margin-bottom: 10px;
  }

  .woo_archive_content_wrapper {
    padding: 0;
  }

  .product_loop_item a p {
    font-size: 12px;
  }

  .clever-woo-breadcrumb-2 ul.crumbs li {
    font-size: 18px;
  }

  .woo_archive_sidebar {
    width: 85%;
  }

  .loop_item_reviews {
    align-items: flex-start;
    flex-direction: column;
  }

  .product_reviews {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }

  .single_prod_desc_wrapper {
    grid-column: span 8;
  }

  .single_prod_addtocart_wrapper {
    grid-column: span 8;
  }

  .sales-amount {
    display: none;
  }

  .single_prod_desc_wrapper span.wishlist-icon {
    display: none;
  }

  .woocommerce div.product form.cart div.quantity {
    position: absolute;
    float: none;
    height: 56px;
    width: 100%;
    bottom: 70px;
    left: 0;
    margin: 0;
    background: var(--main-gray);
  }

  .single_prod_addtocart_container {
    padding-bottom: 150px;
  }

  .single_prod_main_info {
    grid-gap: 0;
  }

  .woocommerce div.product .single_prod_addtocart_container form.cart .button {
    border-radius: 8px;
  }

  .price-container {
    margin-bottom: 0;
    padding: 0;
  }

  .apothema {
    margin-bottom: 20px;
    padding: 0;
  }

  .extra_products_wrapper {
    padding: 20px;
    background-color: #f0efef;
    border-radius: 8px;
    border: 2px dashed #ce2127;
  }

  .extra-check {
    background-color: white;
  }

  .single-product .qty-buttons-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
  }

  .single-product .qty-buttons-wrapper input.qty_button {
    position: absolute;
    height: 36px;
    width: 36px;
    top: 6px;
    background-color: white;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
  }

  .single-product input.qty_button.plus {
    right: 10px;
    background-image: url(/wp-content/themes/cleverproducts/images/plus.svg);
  }

  .single-product input.qty_button.minus {
    left: 10px;
    background-image: url(/wp-content/themes/cleverproducts/images/minus.svg);
  }

  /* .single-product-price-text div {
    display: none;
  } */

  .price-info {
    background: #fff;
  }

  .apothema-bar-wrapper p {
    color: var(--main-red);
  }

  .apothema-bar-wrapper {
    background-color: var(--main-gray);
  }

  .progress {
    max-width: 100%;
  }

  .single_prod_desc_wrapper .product_reviews,
  .excerpt_single_product {
    margin-bottom: 10px;
  }

  .prod_price .price ins {
    color: var(--main-red);
  }

  .description_single_product {
    margin-top: 0;
  }

  .wishlist-mobile {
    display: block;
  }

  .single_prod_main_info {
    margin-bottom: 25px;
  }

  .woocommerce span.onsale {
    left: 25px;
    height: 60px;
    width: 60px;
    font-size: 12px;
    line-height: 14px;
  }

  .single_prod_carousel_wrapper {
    margin-bottom: 20px;
  }

  .recent_view_list .product_loop_item,
  .related_view_list .product_loop_item {
    max-width: 230px;
  }

  .product-pdf-container .content {
    flex-direction: column;
    margin-bottom: 0;
  }

  .product-pdf-container .content {
    gap: 15px;
  }

  .product-pdf-container .content h3 {
    font-size: 16px;
    line-height: 17px;
  }

  .product-pdf-container .content img {
    width: 40px;
  }

  .text-banner-section .media {
    min-height: 250px;
  }

  .contact_info {
    gap: 5px;
    margin: auto;
  }

  .contact_info_item {
    padding: 3px;
  }

  .contact_info .icon {
    margin-right: 3px;
  }

  .after-header-container {
    padding: 0 5px;
    display: flex;
  }

  .after-header {
    padding: 10px 0;
  }

  .qv_price_stock {
    justify-content: space-between;
    flex-direction: column-reverse;
  }

  .qv_price_stock .apothema {
    min-width: 100%;
  }

  .qv-gallery-dots button.owl-dot {
    height: 60px;
    width: 60px;
  }

  .qv-read-more {
    margin-bottom: 20px;
  }

  .home-prosfores-list-item {
    width: 311px;
  }

  .home-blog-posts-list .blog-post-item {
    max-width: 300px;
  }

  .post-item-img {
    height: 180px;
  }

  .hcs-list-item {
    width: 150px;
  }

  .error404-title-container:before {
    font-size: 100px;
    top: -40px;
  }

  .error404-title-container h3 {
    font-size: 30px;
  }

  .error404-search .text {
    font-size: 16px;
  }

  .error404-search span {
    font-size: 14px;
  }

  .category-top-banner img {
    height: 250px;
  }

  .video-square .product-video-wrapper iframe {
    height: 400px;
  }

  .product-pdf-wrapper {
    padding: 20px 0;
  }

  ul.prod_specs_tabs {
    flex-direction: column;
  }

  li.prod_specs_tab {
    width: 100%;
    border-radius: 0;
  }

  .product-table-list-item {
    flex-direction: column;
    padding: 10px 20px;
  }

  .product-table-list-item p:nth-child(1),
  .product-table-list-item p:nth-child(2) {
    width: 100%;
  }

  .pre-footer .yikes-mailchimp-container {
    width: 100%;
    text-align: center;
  }

  .pre-footer .custom_submit_form {
    max-width: 350px;
    min-width: auto;
    width: 100%;
  }
}
