/******* COLORS */
/******* FONTS */
/******* MEDIA SIZES */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  position: relative;
  background-color: #FFFFD5;
  font-family: "Noto Sans", sans-serif;
  color: #454545;
  font-size: 14px;
  font-weight: 400;
  transition: left 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 0;
}
body--open {
  left: 235px;
  overflow: hidden;
}
body.body--open {
  left: 235px;
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-track {
  background-color: gray;
}
body::-webkit-scrollbar-thumb {
  background-color: #CB9E2E;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input {
  border: none;
  background: none;
}

img {
  display: block;
}

.main-wrap {
  overflow: hidden;
}

.wrap {
  width: 100%;
  max-width: 975px;
  margin: 0 auto;
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
@media (min-width: 1350px) {
  .wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 19px;
  color: #555555;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  margin-bottom: 15px;
}

.site-main {
  margin: 40px 0;
}
@media (min-width: 769px) {
  .site-main {
    margin: 80px 0;
  }
}
.site-main .woocommerce-breadcrumb {
  display: none;
}

.page-title--sub {
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 2px solid #A91515;
}

.content-def {
  padding-top: 50px;
  padding-bottom: 50px;
}

.entry-content {
  font-size: 14px;
  line-height: 23px;
}

.header .entry-title {
  margin-bottom: 20px;
}

/******* FIELDS */
.input-text {
  background: white;
  width: 100%;
  height: 45px;
  border: 1px solid #A91515;
  padding: 0 5px;
}

/******* OTHER */
.site-overlay {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear;
}
.site-overlay.active {
  opacity: 1;
  visibility: visible;
}

.b-flex {
  display: flex;
}
.b-flex--full-hor {
  align-items: center;
  justify-content: space-between;
}

.--mob {
  display: block !important;
}
@media (min-width: 769px) {
  .--mob {
    display: none !important;
  }
}

.--mob-flex {
  display: flex !important;
}
@media (min-width: 769px) {
  .--mob-flex {
    display: none !important;
  }
}

.--dekstop {
  display: none !important;
}
@media (min-width: 769px) {
  .--dekstop {
    display: block !important;
  }
}

.--dekstop-flex {
  display: none !important;
}
@media (min-width: 769px) {
  .--dekstop-flex {
    display: flex !important;
  }
}

/******* PRELOADERS */
.preloader {
  background: linear-gradient(90deg, #81603B 10%, #454545 90%);
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
}

.prePreloader {
  height: 40px;
  width: 40px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
}

.prePreloader:before,
.prePreloader:after {
  content: "";
  height: 40px;
  width: 40px;
  border: 8px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: absolute;
  top: 0;
}

.prePreloader:before {
  animation: animate 2s infinite linear;
}

.prePreloader:after {
  animation: animate2 2s infinite linear;
}

@keyframes animate {
  0% {
    transform: rotate(0) skew(0);
  }
  100% {
    transform: rotate(180deg) skew(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(0) skew(0);
  }
  100% {
    transform: rotate(-180deg) skew(-360deg);
  }
}
.nav ul {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav ul {
    align-items: flex-start;
    flex-direction: column;
  }
}
.nav ul li {
  position: relative;
}
@media (max-width: 768px) {
  .nav ul li {
    width: 100%;
  }
}
.nav ul li a {
  position: relative;
  display: inline-flex;
  text-transform: uppercase;
  font-size: 14px;
  color: black;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0.6));
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  padding: 17px 12px;
}
.nav ul li a:after {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.nav ul li a:hover {
  color: #CB9E2E;
}
@media (min-width: 769px) {
  .nav ul li a {
    color: black;
    padding: 10px 15px;
    font-size: 12px;
  }
}
.nav ul li.current-menu-item a {
  color: black;
}
.nav ul li .sub-menu {
  position: absolute;
  z-index: 150;
  background-color: white;
  top: 40px;
  left: 12px;
  width: 150px;
  flex-direction: column;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
  box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .nav ul li .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    padding-left: 20px;
  }
  .nav ul li .sub-menu:after {
    display: none;
  }
}
.nav ul li .sub-menu li {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  width: 100%;
}
.nav ul li .sub-menu li:last-child {
  border-bottom: none;
}
.nav ul li .sub-menu li:hover a:after {
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='8'%3e%3cimage width='4' height='8' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H j8y/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAB3RJTUUH5AoVBiERjtQFmwAAADJJREFUCNcly7ER ACEIALDg/Wgyl7jWL4cFXZrYp7Ume7iIysMHUWkBEYP7l+ysWTX9AbQVE2HQ2+97AAABMmVYSWZN TQAqAAAACAAHARIAAwAAAAEAAAAAARoABQAAAAEAAABiARsABQAAAAEAAABqASgAAwAAAAEAAgAA ATEAAgAAACIAAAByATIAAgAAABQAAACUh2kABAAAAAEAAACoAAAA1AAAAEgAAAABAAAASAAAAAFB ZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykAMjAyMDoxMDoyMSAwOTozMjowNQAAA6AB AAMAAAABAAEAAKACAAQAAAABAAAABKADAAQAAAABAAAACAAAAAAAAAAGAQMAAwAAAAEABgAAARoA BQAAAAEAAAEiARsABQAAAAEAAAEqASgAAwAAAAEAAgAAAgEABAAAAAEAAAEyAgIABAAAAAEAAAAA AAAAAAAAAEgAAAABAAAASAAAAAGT5JgXAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIwLTEwLTIxVDA2 OjMzOjE3KzAwOjAwyJJgLQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMC0xMC0yMVQwNjozMzoxNysw MDowMLnP2JEAAAApdEVYdGRjOmZvcm1hdABhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9w 5K2fVAAAADh0RVh0aWNjOmNvcHlyaWdodABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0dC1QYWNr YXJkIENvbXBhbnn5V3k3AAAAIXRFWHRpY2M6ZGVzY3JpcHRpb24Ac1JHQiBJRUM2MTk2Ni0yLjFX rdpHAAAAJnRFWHRpY2M6bWFudWZhY3R1cmVyAElFQyBodHRwOi8vd3d3LmllYy5jaBx/AEwAAAA3 dEVYdGljYzptb2RlbABJRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNS R0JEU0ipAAAAFXRFWHRwaG90b3Nob3A6Q29sb3JNb2RlADNWArNAAAAAJnRFWHRwaG90b3Nob3A6 SUNDUHJvZmlsZQBzUkdCIElFQzYxOTY2LTIuMRwvbAsAAAATdEVYdHRpZmY6WFJlc29sdXRpb24A NzIOUHGFAAAAE3RFWHR0aWZmOllSZXNvbHV0aW9uADcyk1+Q8wAAACh0RVh0eG1wOkNyZWF0ZURh dGUAMjAxMy0wMy0yOFQxMzowNzo0MiswMjowMPWE8GIAAAAxdEVYdHhtcDpDcmVhdG9yVG9vbABB ZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykySyUpAAAAKnRFWHR4bXA6TWV0YWRhdGFE YXRlADIwMjAtMTAtMjFUMDk6MzI6MDUrMDM6MDAIw8WtAAAAKHRFWHR4bXA6TW9kaWZ5RGF0ZQAy MDIwLTEwLTIxVDA5OjMyOjA1KzAzOjAwNGeWEwAAADd0RVh0eG1wTU06RGVyaXZlZEZyb20AdXVp ZDpEQzkxQzZCOUI5NkJFMjExODlCQUQzRDk5Njc5RkE4NrTScb0AAABLdEVYdHhtcE1NOkRvY3Vt ZW50SUQAYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjA4NTZmNzA4LTEzNjctMTFlYi05M2NlLWVjZWNk NGM4OWRjOPledLYAAAA9dEVYdHhtcE1NOkluc3RhbmNlSUQAeG1wLmlpZDplNjIyYWU2NS1mNWUy LTFlNDQtODI0YS1kNDQ4NTgzYmZlYTDdeIOzAAAAPnRFWHR4bXBNTTpPcmlnaW5hbERvY3VtZW50 SUQAdXVpZDpDMkQwRDMxNjhBOTdFMjExOTJDODg1NEUyRDczM0E5RfZJw9AAAAAASUVORK5CYII='/%3e%3c/svg%3e") no-repeat 0 0 !important;
  background-size: contain;
}
.nav ul li .sub-menu li a {
  color: #454545;
  padding: 9px 20px;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media (max-width: 768px) {
  .nav ul li .sub-menu li a {
    font-size: 10px;
    padding: 9px 0;
  }
}
.nav ul li .sub-menu li a:hover {
  color: #A91515;
}
.nav ul li .sub-menu li a:after {
  width: 4px;
  height: 8px;
  right: 5px;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='8'%3e%3cimage width='4' height='8' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H j8y/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAB3RJTUUH5AoVBiERjtQFmwAAADJJREFUCNcly7ER ACEIALDg/Wgyl7jWL4cFXZrYp7Ume7iIysMHUWkBEYP7l+ysWTX9AbQVE2HQ2+97AAABMmVYSWZN TQAqAAAACAAHARIAAwAAAAEAAAAAARoABQAAAAEAAABiARsABQAAAAEAAABqASgAAwAAAAEAAgAA ATEAAgAAACIAAAByATIAAgAAABQAAACUh2kABAAAAAEAAACoAAAA1AAAAEgAAAABAAAASAAAAAFB ZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykAMjAyMDoxMDoyMSAwOTozMjowNQAAA6AB AAMAAAABAAEAAKACAAQAAAABAAAABKADAAQAAAABAAAACAAAAAAAAAAGAQMAAwAAAAEABgAAARoA BQAAAAEAAAEiARsABQAAAAEAAAEqASgAAwAAAAEAAgAAAgEABAAAAAEAAAEyAgIABAAAAAEAAAAA AAAAAAAAAEgAAAABAAAASAAAAAGT5JgXAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIwLTEwLTIxVDA2 OjMzOjE3KzAwOjAwyJJgLQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMC0xMC0yMVQwNjozMzoxNysw MDowMLnP2JEAAAApdEVYdGRjOmZvcm1hdABhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9w 5K2fVAAAADh0RVh0aWNjOmNvcHlyaWdodABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0dC1QYWNr YXJkIENvbXBhbnn5V3k3AAAAIXRFWHRpY2M6ZGVzY3JpcHRpb24Ac1JHQiBJRUM2MTk2Ni0yLjFX rdpHAAAAJnRFWHRpY2M6bWFudWZhY3R1cmVyAElFQyBodHRwOi8vd3d3LmllYy5jaBx/AEwAAAA3 dEVYdGljYzptb2RlbABJRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNS R0JEU0ipAAAAFXRFWHRwaG90b3Nob3A6Q29sb3JNb2RlADNWArNAAAAAJnRFWHRwaG90b3Nob3A6 SUNDUHJvZmlsZQBzUkdCIElFQzYxOTY2LTIuMRwvbAsAAAATdEVYdHRpZmY6WFJlc29sdXRpb24A NzIOUHGFAAAAE3RFWHR0aWZmOllSZXNvbHV0aW9uADcyk1+Q8wAAACh0RVh0eG1wOkNyZWF0ZURh dGUAMjAxMy0wMy0yOFQxMzowNzo0MiswMjowMPWE8GIAAAAxdEVYdHhtcDpDcmVhdG9yVG9vbABB ZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykySyUpAAAAKnRFWHR4bXA6TWV0YWRhdGFE YXRlADIwMjAtMTAtMjFUMDk6MzI6MDUrMDM6MDAIw8WtAAAAKHRFWHR4bXA6TW9kaWZ5RGF0ZQAy MDIwLTEwLTIxVDA5OjMyOjA1KzAzOjAwNGeWEwAAADd0RVh0eG1wTU06RGVyaXZlZEZyb20AdXVp ZDpEQzkxQzZCOUI5NkJFMjExODlCQUQzRDk5Njc5RkE4NrTScb0AAABLdEVYdHhtcE1NOkRvY3Vt ZW50SUQAYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjA4NTZmNzA4LTEzNjctMTFlYi05M2NlLWVjZWNk NGM4OWRjOPledLYAAAA9dEVYdHhtcE1NOkluc3RhbmNlSUQAeG1wLmlpZDplNjIyYWU2NS1mNWUy LTFlNDQtODI0YS1kNDQ4NTgzYmZlYTDdeIOzAAAAPnRFWHR4bXBNTTpPcmlnaW5hbERvY3VtZW50 SUQAdXVpZDpDMkQwRDMxNjhBOTdFMjExOTJDODg1NEUyRDczM0E5RfZJw9AAAAAASUVORK5CYII='/%3e%3c/svg%3e") no-repeat 0 0;
  background-size: contain;
}
.nav ul li .sub-menu li .sub-menu {
  top: 0;
  right: -158px !important;
  left: inherit;
}
@media (max-width: 768px) {
  .nav ul li .sub-menu li .sub-menu {
    right: 0 !important;
    padding-left: 5px;
  }
}
.nav ul li .sub-menu li .sub-menu:before {
  left: -6px;
  top: 15px;
  transform: rotate(-90deg);
}
.nav ul li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.nav ul li.menu-item-has-children > a {
  align-items: center;
  display: flex;
}
.nav ul li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 5px;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3e%3cdefs%3e%3cimage width='8' height='5' id='img1' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFBAMAAACKv7BmAAAAAXNSR0IB2cksfwAAACRQTFRFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAplgCRwAAAAx0Uk5Tm/8GxgAa5eY5+TplM9BojwAAACFJREFUeJxjYBQUFGBQFhQ0YnBNFA9hcOmc5cLg4r3FBQAqBATuRK2NYgAAAABJRU5ErkJggg=='/%3e%3c/defs%3e%3cstyle%3e%3c/style%3e%3cuse id='Background' href='%23img1' x='0' y='0'/%3e%3c/svg%3e") no-repeat 0 0;
  background-size: contain;
}
@media (max-width: 768px) {
  .nav ul li.menu-item-has-children > a:after {
    display: none;
  }
}
.nav ul li.menu-item-has-children:hover > a {
  color: white;
}
@media (max-width: 768px) {
  .nav ul li.menu-item-has-children:hover > a {
    color: black;
  }
}
.nav ul li.menu-item-has-children:hover > a:after {
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3e%3cimage width='8' height='5' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAQAAADSmGXeAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H j8y/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAB3RJTUUH5AoVBhwB+YtdQQAAADhJREFUCNdNx7EV QEAAQLGvMcRtwj6mun1swg6q6DzpkulvZnV+Pa3JcIHbUJLN47FLi6o6qln1As/FNQcVdyarAAAB MmVYSWZNTQAqAAAACAAHARIAAwAAAAEAAAAAARoABQAAAAEAAABiARsABQAAAAEAAABqASgAAwAA AAEAAgAAATEAAgAAACIAAAByATIAAgAAABQAAACUh2kABAAAAAEAAACoAAAA1AAAAEgAAAABAAAA SAAAAAFBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykAMjAyMDoxMDoyMSAwOToyNjoz NQAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAACKADAAQAAAABAAAABQAAAAAAAAAGAQMAAwAAAAEA BgAAARoABQAAAAEAAAEiARsABQAAAAEAAAEqASgAAwAAAAEAAgAAAgEABAAAAAEAAAEyAgIABAAA AAEAAAAAAAAAAAAAAEgAAAABAAAASAAAAAF/K81QAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIwLTEw LTIxVDA2OjI4OjAxKzAwOjAwXoZxvgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMC0xMC0yMVQwNjoy ODowMSswMDowMC/byQIAAAApdEVYdGRjOmZvcm1hdABhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhv dG9zaG9w5K2fVAAAADh0RVh0aWNjOmNvcHlyaWdodABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0 dC1QYWNrYXJkIENvbXBhbnn5V3k3AAAAIXRFWHRpY2M6ZGVzY3JpcHRpb24Ac1JHQiBJRUM2MTk2 Ni0yLjFXrdpHAAAAJnRFWHRpY2M6bWFudWZhY3R1cmVyAElFQyBodHRwOi8vd3d3LmllYy5jaBx/ AEwAAAA3dEVYdGljYzptb2RlbABJRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFj ZSAtIHNSR0JEU0ipAAAAFXRFWHRwaG90b3Nob3A6Q29sb3JNb2RlADNWArNAAAAAJnRFWHRwaG90 b3Nob3A6SUNDUHJvZmlsZQBzUkdCIElFQzYxOTY2LTIuMRwvbAsAAAATdEVYdHRpZmY6WFJlc29s dXRpb24ANzIOUHGFAAAAE3RFWHR0aWZmOllSZXNvbHV0aW9uADcyk1+Q8wAAACh0RVh0eG1wOkNy ZWF0ZURhdGUAMjAxMy0wMy0yOFQxMzowNzo0MiswMjowMPWE8GIAAAAxdEVYdHhtcDpDcmVhdG9y VG9vbABBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykySyUpAAAAKnRFWHR4bXA6TWV0 YWRhdGFEYXRlADIwMjAtMTAtMjFUMDk6MjY6MzUrMDM6MDBOKb30AAAAKHRFWHR4bXA6TW9kaWZ5 RGF0ZQAyMDIwLTEwLTIxVDA5OjI2OjM1KzAzOjAwco3uSgAAADd0RVh0eG1wTU06RGVyaXZlZEZy b20AdXVpZDpEQzkxQzZCOUI5NkJFMjExODlCQUQzRDk5Njc5RkE4NrTScb0AAABLdEVYdHhtcE1N OkRvY3VtZW50SUQAYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjQ1N2Y0MTdjLTEzNjYtMTFlYi05M2Nl LWVjZWNkNGM4OWRjOLRNEWcAAAA9dEVYdHhtcE1NOkluc3RhbmNlSUQAeG1wLmlpZDplOWRjYWJh Ny05M2UyLTBhNDktYjc4ZS1kNjRjMTNiMmUwNDHXJpvQAAAAPnRFWHR4bXBNTTpPcmlnaW5hbERv Y3VtZW50SUQAdXVpZDpDMkQwRDMxNjhBOTdFMjExOTJDODg1NEUyRDczM0E5RfZJw9AAAAAASUVO RK5CYII='/%3e%3c/svg%3e") no-repeat 0 0;
  background-size: contain;
}
.nav ul li > .sub-menu:before {
  content: "";
  position: absolute;
  left: 23px;
  top: -5px;
  width: 8px;
  height: 5px;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4'%3e%3cdefs%3e%3cimage width='7' height='4' id='img1' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAEAQMAAAB4CLc+AAAAAXNSR0IB2cksfwAAAAZQTFRFAAAA4dPBSzFnogAAAAJ0Uk5TAP9bkSK1AAAAEElEQVR4nGMQYLBgqGH4BwAEAgHDlej/UgAAAABJRU5ErkJggg=='/%3e%3c/defs%3e%3cstyle%3e%3c/style%3e%3cuse id='Background' href='%23img1' x='0' y='0'/%3e%3c/svg%3e") no-repeat 0 0;
  background-size: contain;
  transform: rotate(0);
}
@media (max-width: 768px) {
  .nav ul li > .sub-menu:before {
    display: none;
  }
}

.icon-close {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
  transform: rotate(0deg);
  width: 15px !important;
  height: 15px !important;
  background: url("../img/close-menu-icon.svg") no-repeat 0 0;
  background-size: contain;
}
.icon-close:hover {
  transform: rotate(180deg);
  background-size: contain;
}

/******* PRODUCTS */
.cat-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  box-shadow: 5px 4px 4px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
  .cat-product {
    height: 180px;
  }
}
@media (min-width: 769px) {
  .cat-product {
    box-shadow: none;
    height: 250px;
  }
}
.cat-product__col {
  position: relative;
}
.cat-product__img {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.cat-product__img img {
  -webkit-transition: all 0.25s linear 0s;
  -moz-transition: all 0.25s linear 0s;
  -o-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cat-product__img:hover img {
  transform: scale(1.07, 1.07);
  transition: transform 1.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cat-product__img:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -9px;
  width: 0;
  height: 0;
  border-width: 17px;
  border-style: solid;
  z-index: 3;
  transform: rotate(90deg);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  left: 0;
  right: auto;
  border-color: transparent transparent #FFFADC;
}
.cat-product__name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  width: 50%;
  height: 100%;
  background-color: #FFFADC;
  text-align: center;
  color: #A91515;
  text-transform: uppercase;
}
.cat-product__name span {
  -webkit-line-clamp: 6;
}
.cat-product__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.cat-product__hover--trans {
  background: rgba(187, 73, 27, 0.5);
}
.cat-product__hover--view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #A91515;
}
.cat-product__hover-name {
  color: white;
  width: 100%;
  padding: 0 10px;
}
.cat-product__hover-line {
  margin: 10px 0;
  width: 30px;
  height: 1px;
  background-color: #A91515;
}
.cat-product__hover-show {
  font-size: 11px;
  color: #CB9E2E;
}
.cat-product:hover .cat-product__hover {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transition-delay: 0s;
}
.cat-product:hover :before {
  border-color: transparent transparent #A91515;
}

/******* TEXTS */
.txt-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/******* SOCIAL ICONS */
.social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .social {
    margin-top: 10px;
  }
}
.social__item {
  position: relative;
  top: 0;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  display: flex;
  align-items: center;
  width: 23px;
  height: 23px;
  border-radius: 100%;
  margin: 0 4px;
}
.social__item:hover {
  top: 3px;
}
.social__item--pn {
  background: url("../img/social-pn.svg") no-repeat 0 0;
  background-size: contain;
}
.social__item--gl {
  background: url("../img/social-gl.svg") no-repeat 0 0;
  background-size: contain;
}
.social__item--tw {
  background: url("../img/social-tw.svg") no-repeat 0 0;
  background-size: contain;
}
.social__item--fb {
  background: url("../img/social-fb.svg") no-repeat 0 0;
  background-size: contain;
}
.social__item--sk {
  background: url("../img/social-sk.svg") no-repeat 0 0;
  background-size: contain;
}

/******* SEARCH CAT */
.search-box {
  border: 1px solid #A91515;
  position: relative;
  z-index: 1;
  display: block;
}

.search-cat {
  background: transparent url("../img/down-arrow.png") no-repeat scroll 89% 20px;
  cursor: pointer;
  float: left;
  font-weight: 700;
  height: 48px;
  line-height: 50px;
  padding: 0;
  position: absolute;
  text-transform: capitalize;
  width: 120px;
}

.search-cat::after {
  background: #A91515 none repeat scroll 0 0;
  content: "";
  height: 18px;
  position: absolute;
  right: 0;
  top: 14px;
  width: 1px;
}

.category-items {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0) none no-repeat scroll 0 0;
  border: 0 none;
  border-radius: 0;
  color: #454545;
  font-size: 11px !important;
  height: 42px;
  left: 0;
  line-height: 42px;
  outline: medium none;
  overflow: hidden;
  padding: 0 35px 0 15px;
  position: absolute;
  transition-duration: 0.4s;
  transition-property: height;
  width: 100%;
  z-index: 9999;
  cursor: pointer;
}

.category-items option {
  background: #ffffff none repeat scroll 0 0;
  color: #333333;
  line-height: 26px;
  padding: 4px 15px;
}

#text-search {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  font-size: 11px;
  font-style: italic;
  height: 42px;
  line-height: 42px;
  outline: medium none;
  padding: 0 55px 0 130px;
}

#btn-search-category {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  background: #A91515 none repeat scroll 0 0;
  border-left: 1px solid transparent;
  border-radius: 0;
  height: 42px;
  line-height: 24px;
  margin: 0;
  outline: medium none;
  padding: 0;
  position: absolute;
  right: 0 !important;
  top: 0;
  width: 48px;
  z-index: 99;
  font-size: 24px;
  color: white;
}
#btn-search-category span {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
#btn-search-category:hover {
  background-color: #CB9E2E;
  border-left: 1px solid #A91515;
}
.header__row {
  display: flex;
  align-items: center;
}
.header__row--top {
  position: relative;
  background-color: #FFFADC;
  min-height: 105px;
  padding-bottom: 10px;
}
.header__row--top:after {
  content: "";
  background: url(../img/top-header.png) repeat-x 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-size: contain;
}
.header__row--bot {
  background-color: #bebebe;
  padding-top: 40px;
  padding-bottom: 40px;
}
.header__col--left {
  width: 40%;
}
@media (min-width: 769px) {
  .header__col--left {
    display: flex;
    align-items: center;
  }
}
.header__col--right {
  width: 60%;
}
.header__logo {
  display: block;
  width: 50px;
  height: 50px;
  background: url("../img/logo2.png") no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 769px) {
  .header__logo {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    width: 160px;
    height: 160px;
  }
}
.header-cart {
  position: absolute;
  z-index: 9999;
  top: 50px;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
  background-color: #FFFADC;
  box-shadow: 5px 4px 4px 0 rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
@media (min-width: 769px) {
  .header-cart {
    width: 325px;
    right: 0;
    left: inherit;
  }
}
.header-cart__icon {
  cursor: pointer;
}
.header-cart-list {
  max-height: 270px;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: linear-gradient(180deg, #616E83 0%, #4C5566 100%);
}
.header-cart-list::-webkit-scrollbar {
  width: 4px;
}
.header-cart-list::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #616E83 0%, #4C5566 100%);
}
.header-cart-list::-webkit-scrollbar-thumb {
  background-color: #CB9E2E;
}
.header-cart-list-item {
  padding: 15px 15px 0;
}
.header-cart-list-item:last-child {
  margin-bottom: 0;
}
.header-cart-list-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dotted #A91515;
  padding-bottom: 10px;
}
.header-cart-list-item-head__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 13px;
  color: black;
}
.header-cart-list-item-head__remove {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
  transform: rotate(0deg);
  width: 15px !important;
  height: 15px !important;
  background: url("../img/close-menu-icon.svg") no-repeat 0 0;
  background-size: contain;
}
.header-cart-list-item-head__remove:hover {
  transform: rotate(180deg);
  background-size: contain;
}
.header-cart-list-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.header-cart-list-info-media {
  display: block;
  width: 60px;
  height: 50px;
}
.header-cart-list-info-media img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-cart-list-info__name {
  display: block;
  padding-left: 15px;
  max-width: 90px;
  color: black;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.header-cart-list-info__quantity {
  color: black;
  font-size: 14px;
  position: absolute;
  right: 0;
}
.header-cart__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 25px;
  padding-left: 15px;
  padding-right: 15px;
  color: black;
}
.header-cart-buttons {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}
.header-cart-buttons a {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 13px;
  border: 2px solid transparent;
  background-color: #B5413A;
  color: white;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px !important;
}
.header-cart-buttons a:hover {
  color: #B5413A;
  border: 2px solid #B5413A;
  background-color: white;
}
.header-cart-buttons a:last-child {
  margin-bottom: 0 !important;
}
.header-cart--show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.header-cart__empty-message {
  padding: 0 15px;
}
.header__burger {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 25px;
  cursor: pointer;
  margin-right: 8px;
}
.header__burger-wrap {
  display: flex;
}
@media (min-width: 769px) {
  .header__burger-wrap {
    display: none;
  }
}
.header__burger-item {
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 5px;
  margin: 2px 0;
}
.header__nav {
  transform: translateX(-108%);
  position: fixed;
  height: 100vh;
  width: 250px;
  padding: 10px 0;
  background: white;
  top: 0;
  left: 0;
  z-index: 9999999;
  max-height: 100vh;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 769px) {
  .header__nav {
    transform: translateX(0);
    position: relative;
    height: auto;
    width: 100%;
    z-index: 1;
    padding: 0;
    background: transparent;
    max-height: inherit;
  }
}
.header__nav--show {
  transform: translateX(0%) !important;
}
.header__nav-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
@media (min-width: 769px) {
  .header__nav-close {
    display: none;
  }
}
.header-options__item-count {
  position: relative;
  width: 50px;
  height: 50px;
}
@media (min-width: 769px) {
  .header-options__item-count {
    font-size: 20px;
  }
}
.header-options__item-count i {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/cart.webp") no-repeat 0 0;
  background-size: contain;
}
.header-options__item-count span {
  position: absolute;
  left: 12px;
  top: -14px;
  font-weight: 700;
}
.header__slogan {
  padding-left: 20px;
}
.header__slogan-txt {
  display: block;
  padding-left: 15px;
  margin-bottom: 5px;
  color: #A91515;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
.header__slogan-txt:last-child {
  margin-bottom: 0;
}
.header__slogan-txt--main {
  font-size: 33px;
  font-weight: 700;
}
.header__slogan-txt--first {
  padding-left: 0;
  opacity: 0.7;
}
.header__slogan-txt--next {
  opacity: 0.7;
  font-size: 18px;
}
.header__slogan-txt--middle {
  padding-left: 5px;
}
.header__slogan-txt--last {
  padding-left: 25px;
  font-size: 18px;
}

.footer {
  position: relative;
  background-color: #FFFADC;
}
.footer:after {
  content: "";
  background: url(../img/top-header.png) repeat-x 0 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  background-size: contain;
}
.footer-top {
  padding: 40px 0 30px;
  background: url("../img/footer-top-bg.jpg") repeat 0 0;
}
.footer-bot {
  display: flex;
  align-items: center;
  height: 65px;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #343333;
  background-color: #2E2D2D;
  line-height: 16px;
  color: #888888;
}
@media (max-width: 480px) {
  .footer-bot {
    font-size: 12px;
  }
}
.footer-bot .wrapper {
  padding-left: 10px;
}
.footer-inner {
  display: flex;
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
}
.footer-inner-wrap {
  display: flex;
  width: 66.66%;
}
@media (max-width: 768px) {
  .footer-inner-wrap {
    width: 100%;
  }
}
.footer-col {
  width: 50%;
}
@media (max-width: 768px) {
  .footer-col {
    width: 50%;
  }
}
.footer-col--last {
  width: 33.33%;
}
@media (max-width: 768px) {
  .footer-col--last {
    width: 100%;
  }
}
.footer__title {
  font-size: 14px;
  line-height: 15px;
  color: #e1e1e1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav .footer__menu__widgets__title {
  display: none;
}
.footer-nav ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav ul li:last-child {
  margin-bottom: 0;
}
.footer-nav ul li:before {
  content: "";
  display: block;
  width: 3px;
  height: 5px;
  background: url("../img/list-point.svg") no-repeat 0 0;
  background-size: contain;
}
.footer-nav ul li a {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  display: block;
  padding-left: 15px;
  font-size: 14px;
  line-height: 16px;
  color: #e1e1e1;
  font-weight: 400;
}
@media (max-width: 480px) {
  .footer-nav ul li a {
    line-height: 15px;
    font-size: 12px;
  }
}
.footer-nav ul li a:hover {
  color: #A91515;
}
.footer-nav__widgets__title {
  display: none;
}
.footer-adress {
  display: flex;
  flex-direction: column;
}
.footer-adress__item {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 7px;
  line-height: 16px;
  color: #bcbcbc;
}
@media (max-width: 480px) {
  .footer-adress__item {
    line-height: 15px;
    font-size: 12px;
  }
}
.footer-adress__item:last-child {
  margin-bottom: 0;
}
.footer-adress__item a {
  display: inline-block;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  word-break: break-word;
  line-height: 16px;
  color: #bcbcbc;
}
@media (max-width: 480px) {
  .footer-adress__item a {
    line-height: 15px;
    font-size: 12px;
  }
}
.footer-adress__item i {
  display: flex;
  align-items: center;
  width: 16px;
  height: 19px;
  margin-right: 15px;
}
.footer-adress__item i:before {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  content: "";
  display: block;
  margin: 0 auto;
}
.footer-adress__item--phone i:before {
  width: 9px;
  height: 15px;
  background: url("../img/footer-icon-phone.svg") no-repeat 0 0;
  background-size: contain;
}
.footer-adress__item--mail i:before {
  width: 16px;
  height: 12px;
  background: url("../img/footer-icon-mail.svg") no-repeat 0 0;
  background-size: contain;
}
.footer-adress__item--location i:before {
  width: 14px;
  height: 19px;
  background: url("../img/footer-icon-location.svg") no-repeat 0 0;
  background-size: contain;
}
.footer-adress__item:hover.footer-adress__item--phone i:before {
  background: url("../img/footer-icon-phone-hover.svg") no-repeat 0 0;
  background-size: contain;
}
.footer-adress__item:hover.footer-adress__item--mail i:before {
  background: url("../img/footer-icon-mail-hover.svg") no-repeat 0 0;
  background-size: contain;
}
.footer-form {
  padding-left: 45px;
}
@media (max-width: 768px) {
  .footer-form {
    padding-left: 0;
    margin-top: 20px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 375px) {
  .footer-form {
    max-width: 100%;
    width: 100%;
  }
}
.footer-form-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-form-row span {
  width: 100%;
}
.footer-form-row:last-child {
  margin-bottom: 0;
}
.footer-form-row .field-input {
  height: 30px;
}
.footer-form-row .field-input--area {
  height: 60px;
}
@media (max-width: 768px) {
  .footer-form-row .but {
    margin: 0 auto;
  }
}
.footer-form-row .ajax-loader {
  position: absolute;
  right: 0;
}
.footer-form .wpcf7 form .wpcf7-response-output {
  border-color: #BB491B;
  color: #fff;
}

.category__product-wrap {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .category__product-wrap {
    display: flex;
  }
  .category__product-wrap .cat-product {
    width: 50%;
  }
}
.category__product-wrap:last-child {
  margin-bottom: 0;
}
.category__product-wrap:nth-child(even) .cat-product__img {
  order: 2;
}
.category__product-wrap:nth-child(even) .cat-product__name {
  order: 1;
}
.category__product-wrap:nth-child(odd) .cat-product:first-child .cat-product__img:before {
  right: 0;
  left: auto;
  transform: rotate(-90deg);
}
.category__product-wrap:nth-child(odd) .cat-product:last-child .cat-product__img:before {
  transform: rotate(-90deg);
  right: 0;
  left: auto;
}
.category .cat-product {
  margin-bottom: 20px;
}
.category .cat-product:last-child {
  margin-bottom: 0;
}
.category .cat-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-menu {
  margin-top: 15px;
}
.cat-menu__burger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100px;
  width: 100px;
  height: 36px;
  border: 2px solid #454545;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .cat-menu__burger {
    display: none;
  }
}
.cat-menu__burger-name {
  position: relative;
  top: 1px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.cat-menu__burger-icon {
  width: 23px;
  height: 23px;
  background: url("../img/filter-burger-icon.png") no-repeat 0 0;
  background-size: contain;
}
.cat-menu__list-item {
  position: relative;
  margin-bottom: 10px;
  padding-right: 20px;
}
.cat-menu__list-link {
  font-size: 14px;
  color: #454545;
}
.cat-menu__list-link--sub {
  font-size: 12px;
}
.cat-menu__list--sub {
  display: none;
  margin: 20px 0;
  padding-left: 15px;
}
.cat-menu__list i {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  position: absolute;
  right: 0;
  top: 3px;
  background: url("../img/close-menu-icon.svg") no-repeat 0 0;
  background-size: contain;
  transform: rotate(45deg);
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.cat-menu__list i._down {
  transform: rotate(-45deg);
}

.b-products {
  display: flex;
}
.b-products__col--sidebar {
  padding: 10px 20px;
  width: 230px;
  height: 100%;
  background-color: white;
  transform: translateX(-108%);
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
@media (min-width: 769px) {
  .b-products__col--sidebar {
    background-color: inherit;
    width: 30%;
    padding: 0 50px 0 0;
    position: relative;
    margin-top: 40px;
    transform: translateX(0);
  }
}
.b-products__col--sidebar--show {
  transform: translateX(0);
}
.b-products__col--content {
  width: 100%;
}
@media (min-width: 769px) {
  .b-products__col--content {
    width: 70%;
  }
}
.b-products .woocommerce-breadcrumb {
  display: block;
}
.b-products .woocommerce-result-count,
.b-products .woocommerce-ordering {
  display: none;
}

div.images .zoom img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.woocommerce div.product {
  overflow: hidden;
}

.products {
  border-top: 2px solid #A91515;
  padding-top: 15px !important;
}
.products .add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px !important;
}
.products .added_to_cart {
  display: none !important;
}

.product .summary.entry-summary .woocommerce-loop-product__link {
  display: block;
}
.product .summary.entry-summary__media {
  overflow: hidden;
  border: 1px solid #A91515;
  padding: 5px;
  margin-bottom: 10px;
}
.product .summary.entry-summary__media img {
  -webkit-transition: all 0.25s linear 0s;
  -moz-transition: all 0.25s linear 0s;
  -o-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product .summary.entry-summary__media:hover img {
  transform: scale(1.07, 1.07);
  transition: transform 1.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product .summary.entry-summary__media img {
  margin-bottom: 0 !important;
}
.product .summary.entry-summary .price {
  text-align: right;
  font-size: 18px !important;
  color: #458B51 !important;
}
.product .summary.entry-summary .cart {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.product .summary.entry-summary .quantity input {
  border: 1px solid #A91515;
  padding-right: 2px;
  height: 35px;
}
.product .summary.entry-summary .quantity input::-webkit-inner-spin-button, .product .summary.entry-summary .quantity input::-webkit-outer-spin-button {
  opacity: 1;
}

.product .woocommerce-tabs.wc-tabs-wrapper {
  clear: inherit !important;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 769px) {
  .product .woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
  }
}
.product .related.products {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product .product_meta {
  display: none;
}
.product__media {
  overflow: hidden;
  border: 1px solid #A91515;
  padding: 3px;
}
.product__media img {
  -webkit-transition: all 0.25s linear 0s;
  -moz-transition: all 0.25s linear 0s;
  -o-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product__media:hover img {
  transform: scale(1.07, 1.07);
  transition: transform 1.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product__media img {
  margin-bottom: 0 !important;
}

.sidebar-row {
  margin-bottom: 20px;
}
.sidebar-row:last-child {
  margin-bottom: 0;
}
.sidebar-row .widget-title {
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 2px solid #A91515;
}
.sidebar-row .woof_submit_search_form_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-row .woof_submit_search_form {
  display: none !important;
}

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

.woocommerce #review_form #respond .comment-form-author input,
.woocommerce #review_form #respond .comment-form-email input {
  padding-left: 15px;
  padding-right: 15px;
  height: 35px;
  background-color: white;
  width: 100%;
  border: 1px solid #454545;
}
.woocommerce #review_form #respond textarea {
  border: 1px solid #454545;
  padding: 15px;
  height: 150px;
  resize: none;
}
@media (max-width: 480px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
  }
}

.woocommerce-product-attributes-item__label {
  width: 120px !important;
  text-align: left;
}

.woocommerce-product-attributes-item__value {
  padding-left: 10px !important;
}

.cart_item .product-thumbnail {
  width: 60px;
  height: 60px;
}
.cart_item .product-thumbnail a {
  display: block;
}
.cart_item .product-name a {
  color: #454545;
}
.cart_item .product__media {
  width: 60px;
  height: 60px;
}
.cart_item .product__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.cart_item .product-quantity .quantity input {
  border: 1px solid #A91515;
  padding-right: 2px;
  height: 35px;
}
.cart_item .product-quantity .quantity input::-webkit-inner-spin-button, .cart_item .product-quantity .quantity input::-webkit-outer-spin-button {
  opacity: 1;
}
.cart_item .product-price,
.cart_item .product-subtotal {
  color: #458B51;
}
.cart_totals h2 {
  margin-bottom: 20px;
}

.post-edit-link {
  color: #454545;
  margin-bottom: 20px;
  display: block;
}

.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
  width: 100%;
}

.woocommerce form .form-row {
  padding: 0;
  margin-bottom: 15px;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.woocommerce-checkout .col2-set {
  display: flex;
  flex-direction: column;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100%;
  float: none;
}

#order_review_heading {
  margin-bottom: 20px;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  margin-bottom: 20px;
}

.woocommerce-order-details {
  margin-top: 20px;
}

.woocommerce-order-details__title {
  margin-bottom: 20px;
}

.woocommerce-table__product-name.product-name a {
  color: #454545;
}

.woocommerce-column__title {
  margin-bottom: 20px;
}

.woocommerce .woocommerce-customer-details address {
  line-height: 25px;
}

.woocommerce-Price-amount.amount {
  color: #A91515;
  font-weight: 700;
  font-size: 15px;
}

.shop_table.shop_table_responsive .cart-subtotal {
  display: none;
}

.wc-ukr-shipping-np-fields h3 {
  display: block;
  margin-bottom: 15px;
}

.woocommerce-column--billing-address {
  margin-bottom: 15px;
}

#ship-to-different-address {
  margin-bottom: 15px;
  display: none;
}

.page-contact {
  padding: 35px 0;
}
@media (min-width: 769px) {
  .page-contact {
    padding: 50px 0;
  }
}
.page-contact .title {
  text-align: center;
  margin-bottom: 50px;
}
.page-contact-item {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #888888;
}
@media (min-width: 769px) {
  .page-contact-item {
    flex-direction: inherit;
  }
}
.page-contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.page-contact__col--front {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .page-contact__col--front {
    width: 40%;
  }
}
.page-contact__col--front iframe {
	width: 100%;
}
.page-contact__col--middle {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 15px;
}
@media (min-width: 769px) {
  .page-contact__col--middle {
    width: 40%;
  }
}
.page-contact__img {
  height: 200px;
}
@media (min-width: 769px) {
  .page-contact__img {
    height: 300px;
  }
}
.page-contact__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-contact__adress {
  width: 100%;
}
.page-contact__adress div {
  margin-bottom: 15px;
}
.page-contact__adress div:last-child {
  margin-bottom: 0;
}

/*================================================================================
                                    DEFAULTS SLICK SLIDER STYLES
================================================================================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 3px;
  border: 1px solid #A91515;
}
@media (min-width: 769px) {
  .slider-main {
    margin-bottom: 0;
  }
}
.slider-main__item {
  height: 150px;
}
.slider-main__item-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.slider-main .slider-main-nav__arrow {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  width: 26px;
  height: 26px;
  background-color: rgba(90, 89, 89, 0.5);
  border: 1px solid rgba(90, 89, 89, 0.5);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-main .slider-main-nav__arrow--prev {
  left: 15px;
}
.slider-main .slider-main-nav__arrow--next {
  right: 15px;
  transform: rotate(180deg);
}
.slider-main .slider-main-nav__arrow:before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background: url("../img/slider-arrow.png") no-repeat 0 0;
  background-size: contain;
}

.slick-slide-inners {
  width: 100%;
  display: flex;
}
.slick-slide-inners .zoom {
  height: 100%;
}

.woocommerce-products-header {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .woocommerce-products-header {
    display: block;
  }
}

.woocommerce-loop-product__title {
  font-size: 14px;
  color: #454545;
  height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 5px !important;
}
.woocommerce ul.products li.product .price {
  color: #458B51;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: #A91515;
  border: 1px solid #A91515;
  color: white;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: white;
  color: #A91515;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #A91515;
  border: 1px solid #A91515;
  color: white;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: white;
  color: #A91515;
}

/******* PRODUCT GSLLERY */
.product .wpgis-slider-for {
  border: 1px solid #A91515;
  padding: 5px;
}

.woocommerce-product-gallery__image .slick-slide {
  height: 400px;
}
.woocommerce-product-gallery__image .wp-post-image {
  height: 100% !important;
  min-height: 100% !important;
  object-fit: contain;
}

.wpgis-slider-nav .slick-track {
  display: flex;
}
.wpgis-slider-nav .slick-slide {
  border: none;
}
.wpgis-slider-nav .slick-slide .slick-slide-inners {
  margin: 0 3px;
}
.wpgis-slider-nav .slick-slide .slick-slide-inners .zoom {
  height: 100%;
}
.wpgis-slider-nav .slick-slide .slick-slide-inners img {
  height: 100% !important;
  min-height: 100% !important;
  object-fit: contain;
}
.wpgis-slider-nav .slick-slide img {
  border: 1px solid #A91515;
  padding: 5px;
}

.single-product .woocommerce-breadcrumb {
  display: block;
}

.related.products {
  border-top: none;
  padding-top: 0 !important;
}
.related.products h2 {
  margin-bottom: 15px;
}

/******* TABS PRODUCT */
.woocommerce-tabs ul.tabs::before {
  border-bottom: 1px solid #A91515 !important;
}
.woocommerce-tabs ul.tabs li {
  border-radius: 0 !important;
  border: 1px solid #A91515 !important;
}
.woocommerce-tabs ul.tabs li.active {
  border-bottom-color: #fff !important;
}
.woocommerce-tabs ul.tabs li:before, .woocommerce-tabs ul.tabs li:after {
  display: none !important;
}

.woocommerce-Tabs-panel h2 {
  margin-bottom: 15px;
}

/******* REVIEWS */
.woocommerce-Reviews-title {
  margin-bottom: 15px;
}

.woocommerce-noreviews,
.comment-reply-title {
  margin-bottom: 10px;
}

.comment-form-comment {
  margin-top: 15px !important;
}
.comment-form-comment label {
  margin-bottom: 15px;
  display: block;
}

.woocommerce-info {
  border-top-color: #A91515;
}

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

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