/* CSS Variables */
:root {
  --black: #0a0a0a;
  --blue: #2831bf;
  --green: #70ce3d;
  --neutral-50: #f4f4f4;
  --gold: #c99a4a;
  --black-second: #131316;
  --grey: #788a96;
  --forest: #1e4b37;
  --peach: #e9deda;
  --pink: #fdb3a3;
  --dark-forest: #11291f;
  --grey-font: #3c3c3c;
}
html,
body,
div,
main,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* General styling */
*,
:before,
:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html,
body {
  overflow-x: hidden;
}
html {
  -ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  font: 16px/1.6 "Inter", arial, sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
}

h1, h2, h3, h4, h5, h6, h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a {
  margin-bottom: 20px;
  text-rendering: optimizeLegibility;
  font-family: "Anybody";
  font-weight: 900;
  line-height: 1.2;
  color: var(--grey-font);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}
article ul li,
article ol li,
article p {
  word-break: break-word;
}
article table tr:first-child {
  background: #d5d5d5 !important;
}
article table tr:nth-child(odd) {
  background: #f9f7f6;
}
article table tr:nth-child(even) {
  background: #fff;
}
span {
  display: inline;
}
a {
  color: inherit;
  cursor: pointer;
  transition: 0.4s;
}
a:not([class]):focus {
  outline: none;
  box-shadow: none;
}
img,
iframe {
  max-width: 100%;
  height: auto;
}
img.size-portrait-thumbnail {
  width: auto;
  max-width: unset;
}
i:not([class]),
em,
cite,
dfn {
  font-style: italic;
}
.info ul,
.wysiwyg ul,
.info ol,
.wysiwyg ol {
  margin: 0 0 25px 20px;
}
.info ol,
.wysiwyg ol {
  list-style: decimal;
  list-style-position: inside;
}
.info ul,
.wysiwyg ul {
  list-style: disc;
  list-style-position: inside;
}
nav ul,
nav ol {
  margin: 0;
  list-style: none;
}
b,
strong,
th,
legend {
  font-weight: bold;
}
small {
  font-size: 75%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title],
abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
th,
td {
  border: 1px solid #eceeef;
  padding: 10px;
}
caption {
  font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size: 15px;
}
legend {
  margin-bottom: 5px;
}
label {
  display: block;
  cursor: pointer;
}
button,
input,
textarea {
  font-family: inherit;
  line-height: normal;
  margin: 0;
}
textarea {
  min-height: 80px;
  resize: vertical;
}
[type="submit"],
[type="reset"],
[type="button"],
[type="text"],
[type="email"],
[type="tel"],
[type="search"],
button {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button,
[type="submit"],
[type="reset"],
[type="button"] {
  cursor: pointer;
}
textarea:focus,
button:focus,
div[contenteditable="true"]:focus,
[class~="btn"]:focus,
[type="text"]:focus,
[type="tel"]:focus,
[type="email"]:focus,
[type="password"]:focus,
[type="submit"]:focus {
  outline: 0;
}
[hidden] {
  display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2,
p + h3,
p + h4,
ul + h2,
ul + h3,
ul + h4,
ol + h2,
ol + h3,
ol + h4,
code + h2,
code + h3,
code + h4,
table + h2,
table + h3,
table + h4,
blockquote + h1,
blockquote + h2,
blockquote + h3,
blockquote + h4 {
  margin-top: 35px;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter {
  width: 90% !important;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #41ee6e;
}
div.aligncenter img {
  width: 100%;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
  margin-bottom: 10px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
  text-align: center;
  font-style: italic;
  margin: 0px;
}
.full-width {
  width: 100%;
  overflow: hidden;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
#wpadminbar {
  /* display: none !important; */
}
html.js,
html.no-js,
html {
  margin-top: 0 !important;
}
/* End of WordPress Core */
/* General Theme Style */
.h-align {
  text-align: center;
}
.clear:after,
.clear:before,
.row:after,
.row:before {
  clear: both;
  display: block;
  width: 100%;
  content: "";
}
.container {
  width: 100%;
  max-width: 1420px;
  padding: 0px 15px;
  margin: 0 auto;
  display: block;
  position: relative;
}
.container:before,
.container:after,
main .woocommerce:before,
main .woocommerce:after {
  content: "";
  display: block;
  clear: both;
}
.img-abs {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.section {
  padding: 40px 0;
}
.default_template {
  min-height: 70vh;
  padding-bottom: 40px;
}
/* Row */
.row {
  display: block;
  width: 100%;
}
.row > .item {
  display: inline-block;
  padding: 10px;
  vertical-align: top;
}
.row > .item.item19 {
  width: 19%;
}
.row > .item.item24 {
  width: 24%;
}
.row > .item.item32 {
  width: 32%;
}
.row > .item.item49 {
  width: 49%;
}
.row > .item.item50 {
  width: 50%;
  float: left;
}
.row > .item.item65 {
  width: 65%;
  float: left;
}
.row > .item.item35 {
  width: 35%;
  float: left;
}
.row > .item.full-item {
  width: 100%;
}
/* Flex */
.flex-row,
.flex-row.reverse,
.flex-column,
.flex-column.reverse {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-row.reverse {
  flex-direction: row-reverse;
}
.flex-column.reverse {
  flex-direction: column-reverse;
}
.flex-item {
  padding: 0 10px;
  position: relative;
}
.flex-item.item10 {
  flex: 1 1 10%;
}
.flex-item.item20 {
  flex: 1 1 20%;
}
.flex-item.item30 {
  flex: 1 1 30%;
}
.flex-item.item40 {
  flex: 1 1 40%;
}
.flex-item.item50 {
  flex: 1 1 50%;
}
.flex-item.item50:first-of-type {
  padding-left: 0;
}
.flex-item.item50:last-of-type {
  padding-right: 0;
}
.flex-item.item60:first-of-type {
  padding-left: 0;
}
.flex-item.item40:last-of-type {
  padding-right: 0;
}
.flex-item.item60 {
  flex: 1 1 60%;
}
.flex-item.item70 {
  flex: 1 1 70%;
}
.flex-item.item80 {
  flex: 1 1 80%;
}
.flex-item.item90 {
  flex: 1 1 90%;
}
/* Buttons */
.btn,
.button {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 20px 0px;
  border: 1px solid var(--blue);
  background: rgba(40, 49, 191, 0.13);
  color: var(--blue);
  font-size: 19.908px;
  font-weight: 700;
  line-height: normal;
  font-family: "Anybody";
  cursor: pointer;
  transition: 0.4s;
  padding: 15px 40px;
}
.btn:hover,
.button:hover {
  border-radius: 0px 20px;
  background-color: var(--blue);
  color: #fff;
}
.btn.loading,
.button.loading {
  opacity: 0.5;
}
.button-white {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.13);
  color: #fff;
}
.button-white:hover {
  background-color: #fff;
  color: #000;
}
@media(max-width:1780px){
  .btn, .button{
    font-size: 16px;
  }
}
@media(max-width:767px){
  .btn, .button{
    font-size: 14px;
  }
}
/*form adds */
span.wpcf7-list-item {
  margin: 0;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ff0000;
  line-height: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  font-size: 14px;
  padding: 0;
  margin: 5px 0;
  line-height: 18px;
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: #ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #41ee6e;
}
.wpcf7-form input[type="checkbox"] {
  position: relative;
  visibility: hidden;
  width: auto;
  display: inline-block;
  padding: 0;
  line-height: 0;
}
.wpcf7-form input[type="checkbox"] + span:before {
  display: block;
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  top: 0px;
  border: 1px solid var(--green);
  left: 0;
  border-radius: 4px;
}
.wpcf7-form input[type="checkbox"] + span:after {
  display: block;
  position: absolute;
  height: 13px;
  width: 13px;
  top: 0px;
  left: 0;
  visibility: hidden;
  background-color: var(--green);
  border-radius: 4px;
  background-image: url("../img/tick.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 9px;
  background-position: center;
}
.wpcf7-form input[type="checkbox"]:checked + span:before {
  background: transparent;
}
.wpcf7-form input[type="checkbox"]:checked + span:after {
  visibility: visible;
}
.form {
  display: inline-block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.form .item.item50 input,
.form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  padding: 10px;
  font-size: 16px;
  line-height: 1;
  transition: 0.4s;
}
.form .item.item50 input:focus,
.form textarea:focus {
  border: 1px solid var(--blue);
}
.form .item br {
  display: none;
}
.form .item label {
  text-align: left;
  color: #4e4e4e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 1px;
}
.form .item.terms-item span {
  display: block;
  text-align: left;
  margin-bottom: 6px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label {
  font-size: 14px;
  line-height: 16px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label span {
  display: inline-block;
  width: 90%;
  padding-left: 5px;
}
.form .item a:hover {
  color: var(--green);
}
.form .btn {
  margin-top: 30px;
}
.wpcf7-spinner{
  position: absolute;
  margin-top: 40px;
}
@media(max-width:767px){
  .form .item.item50{
    width: 100%;
  }
}
/***/
.logo {
  width: 170px;
}
/***/
.social_media li {
  display: inline-block;
  vertical-align: top;
  padding: 0 3px;
}
.social_media li a {
  display: block;
  vertical-align: middle;
}
.social_media .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background-color: transparent;
  transition: 0.4s;
}
.social_media .icon svg {
  color: var(--green);
  transition: 0.4s;
}
.social_media a:hover .icon {
  background-color: var(--green);
}
.social_media a:hover .icon svg {
  color: #fff;
}
/* Breadcrumbs */
.breadcrumbs {
  margin-top: 130px;
  margin-bottom: 50px;
}
.woocommerce-breadcrumb .breadcrumb-separator {
  color: var(--black);
}
.woocommerce-breadcrumb .breadcrumb-separator:after {
  color: var(--black) !important;
  font-weight: normal !important;
  opacity: 1 !important;
}
.woocommerce-breadcrumb a:first-of-type {
  text-indent: -9999px; /* Hide the text */
  color: transparent; /* Hide the text */
  position: relative;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}
.woocommerce-breadcrumb a:first-of-type:before {
  content: "";
  background-image: url("../img/home_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block; /* Ensure the :before is displayed */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
@media(max-width:1780px){
  .breadcrumbs{
    font-size: 14px;
  }
  .woocommerce-breadcrumb a:first-of-type:before{
    width: 17px;
    height: 17px;
  }
  .woocommerce-breadcrumb a:first-of-type{
    width: 17px;
  }
}
@media(max-width:1025px){
  .breadcrumbs {
    margin-top: 110px;
    margin-bottom:30px;
  }
}
@media(max-width:767px){
  .breadcrumbs{
    font-size: 12px;
    margin-top: 90px;
  }
  .woocommerce-breadcrumb a:first-of-type:before {
    width: 14px;
    height: 14px;
  }
  .woocommerce-breadcrumb a:first-of-type{
    width: 14px;
  }
}
/* Fonts*/
.section-title,
#customer_login .u-column2 h2,
#customer_login .u-column1 h2 {
  color: var(--grey-font);
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 100% */
  text-transform: uppercase;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.section-info {
  font-size: 18px;
}
h1 {
  font-size: 35px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 24px;
}
h5,
h6 {
  font-size: 22px;
}
.default_template .section-title {
  text-align: center;
}
.default_box p {
  margin-bottom: 20px;
}
.page_404 .btn {
  margin-top: 30px;
}
@media(max-width:1780px){
  .section-title,
  #customer_login .u-column2 h2,
  #customer_login .u-column1 h2{
    font-size: 50px;
  }
}
@media(max-width:850px){
  .section-title,
  #customer_login .u-column2 h2,
  #customer_login .u-column1 h2 {
    font-size: 42px;
  }
}
@media(max-width:767px){
  .section-title,
  #customer_login .u-column2 h2,
  #customer_login .u-column1 h2 {
    font-size: 30px;
  }
  body, p{
    font-size: 16px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5,
  h6 {
    font-size: 20px;
  }
}
/* woocommerce general stuff */
.onsale {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  background: var(--Red, #f12b2c);
  padding: 3px 5px;
  margin-bottom: 10px;
  color: #fff;
}
.product_title {
  color: var(--grey-font);
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 100% */
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product_meta {
  color: var(--dark-grey, #404040);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
}
.price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.price ins {
  text-decoration: none;
}
.price .amount,
.price ins .amount {
  color: var(--grey-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}
.price ins .amount {
  color: var(--green);
}
.price del .amount {
  color: var(--neutral-200, #9d9ea2);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  margin-right: 10px;
}
.product_full_desc p,
.product_full_desc,
.additional_info {
  color: #4e4e4e;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 157.696%; /* 28.385px */
  letter-spacing: 0.36px;
  margin-bottom: 20px;
}
form.cart,
.qty-container {
  display: flex;
  align-items: center;
  flex-direction: row;
}
form.cart {
  margin-bottom: 30px;
}
.qty-container {
  margin-right: 20px;
}
.qty-container .qty-label {
  color: var(--dark-grey, #404040);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 133.334% */
  margin-right: 10px;
}
.quantity input {
  border-radius: 10px;
  border: 1px solid var(--light-grey, #d4d4d4);
  -moz-appearance: textfield;
  appearance: none;
  width: 50px;
  height: 50px;
  text-align: center;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity button {
  margin: 0 5px;
  background-color: #fff;
  box-shadow: none;
  color: var(--blue);
  border: 2px solid #343fc6;
  border-radius: 4px;
  transition: 0.4s;
  width: 30px;
  height: 27px;
  font-size: 21px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.quantity button:hover {
  background: rgba(40, 49, 191, 0.13);
  border: 2px solid var(--blue);
}
ul.tabs.wc-tabs {
  display: none;
}
div.woocommerce-Tabs-panel {
  display: block !important;
  margin-bottom: 20px;
}
.discount {
  position: absolute;
  background-color: var(--green);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 21px */
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0px 10px 10px 0px;
  padding: 8px 32px;
  top: 20px;
  left: 0;
  display:inline-block;
  z-index: 2;
  margin-bottom:10px;
}
.out-of-stock{
  background: var(--Red, #f12b2c);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 21px */
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0px 10px 10px 0px;
  padding: 8px 32px;
  z-index: 2;
  display: block;
}
@media(max-width:1780px){
  .product_full_desc p,
  .product_full_desc,
  .additional_info,
  .qty-container .qty-label,   .product_meta{
    font-size: 16px;
  }
  .discount, .out-of-stock{
    font-size: 12px;
    padding: 6px 28px;
  }
}
@media(max-width:850px){
  .price, form.cart, .qty-container{
    justify-content: center;
  }
}
@media(max-width:767px){
  form.cart{
    flex-direction: column;
  }
  .qty-container{
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/** loop products */
.products .section-title-info {
  margin-bottom: 45px;
}
ul.products {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
ul.products li {
  padding: 45px 35px;
  display: inline-block;
  width: 33%;
  text-align: center;
  position: relative;
}
ul.products .imagewrapper {
  position: relative;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
ul.products .imagewrapper .image-container {
  position: absolute;
  bottom: 15%;
  z-index: 0;
  border-radius: 0 20px;
  width: 100%;
  height: 70%;
  z-index: -1;
}
ul.products .imagewrapper .image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
}
ul.products .imagewrapper .image-container,
ul.products .imagewrapper .image-container img {
  border-radius: 0px 50px;
  transition: 0.4s;
}
ul.products li a .imagewrapper > img {
  transform: translateY(0px);
  transition: 0.4s;
  transition-timing-function: linear;
  height: 350px;
  width: auto;
}
ul.products li a:hover .imagewrapper .image-container {
  height: 100%;
}
ul.products li a:hover .imagewrapper .image-container img {
  opacity: 1;
}
ul.products li a:hover .imagewrapper > img {
  transform: translateY(-15px);
  transition-timing-function: linear;
}
ul.products li a {
  text-decoration: none;
}
ul.products li .onsale {
  display: none;
}
ul.products li .woocommerce-loop-product__title {
  color: #4e4e4e;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 125%; /* 125% */
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}
ul.products li .price {
  justify-content: center;
  margin-bottom: 20px;
}
ul.products li .product-loop-labels{
  position:absolute;
  left: 35px;
  top: 130px;
  transition: 0.4s;
  z-index: 2;
}
ul.products li .discount {
  position:static;
}
ul.products li a:hover .product-loop-labels {
  top: 30px;
}
@media(max-width:1780px){
  ul.products li .woocommerce-loop-product__title,
  .price .amount, .price ins .amount{
    font-size: 22px;
  }
}
@media(max-width:1280px){
  ul.products li a .imagewrapper > img{
    height: 300px;
  }
  ul.products li{
    padding: 45px 25px;
  }
  ul.products li .product-loop-labels{
    left: 25px;
  }
}
@media(max-width:850px){
  ul.products li{
    width: 50%;
  }
}
@media(max-width:767px){
  ul.products li{
    width: 100%;
    padding: 0 10px;
    padding-bottom: 20px;
  }
  ul.products li .product-loop-labels{
    left: 10px;
    top:85px;
  }
  ul.products .imagewrapper .image-container{
    height: 60%;
    bottom: 20%;
  }
  ul.products li .woocommerce-loop-product__title, .price .amount, .price ins .amount{
    font-size: 20px;
  }
  ul.products li a:hover .imagewrapper .image-container{
    height: 95%;
  }
  ul.products li a:hover .product-loop-labels{
    top:20px;
  }
}
