@import url(https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap);
body {
  font-family: "Lato", sans-serif !important;
  background-color: white !important;
}

.c-c-container {
  background-color: #f2f4f5;
  width: 100%;
}

.custom-container {
  width: 1615px;
  margin: 0 auto;
}
@media (max-width: 1650px) {
  .custom-container {
    width: 95%;
  }
}

.header-element .t-header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  background-color: #ffff00;
}
@media (max-width: 1050px) {
  .header-element .t-header {
    align-items: baseline;
  }
}
.header-element .t-header p {
  text-transform: uppercase;
  width: 50%;
  font-weight: 600;
  font-size: 17px;
  color: #04293a;
  margin-bottom: 0;
}
@media (max-width: 1050px) {
  .header-element .t-header p {
    font-size: 16px;
    text-align: left;
    padding: 0 15px;
  }
}
.header-element .t-header p:last-child {
  padding-left: 65px;
}
@media (max-width: 1050px) {
  .header-element .t-header p:last-child {
    padding-left: 10px;
    text-align: right;
  }
}
.header-element .m-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  background-color: black;
  position: relative;
}
@media (max-width: 1450px) {
  .header-element .m-header {
    height: 100px;
  }
}
@media (max-width: 940px) {
  .header-element .m-header {
    min-height: 80px;
    height: 80px;
  }
}
@media (max-width: 700px) {
  .header-element .m-header {
    min-height: 50px;
    height: 50px;
  }
}
.header-element .m-header .logo-box {
  width: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1450px) {
  .header-element .m-header .logo-box {
    width: 105px;
    top: 20%;
  }
}
@media (max-width: 1200px) {
  .header-element .m-header .logo-box {
    top: 40%;
  }
}
@media (max-width: 940px) {
  .header-element .m-header .logo-box {
    top: 26%;
    width: 70px;
  }
}
@media (max-width: 700px) {
  .header-element .m-header .logo-box {
    top: 80%;
  }
}
.header-element .m-header .logo-box img {
  width: 100%;
}
.header-element .m-header .header-menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1450px) {
  .header-element .m-header .header-menu {
    height: 100%;
    align-items: flex-end;
  }
}
@media (max-width: 700px) {
  .header-element .m-header .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 400px;
    flex-flow: column;
    z-index: 200;
    background-color: black;
    align-items: center;
    justify-content: space-around;
    visibility: hidden;
    opacity: 0;
    left: -200px;
    transition: 0.25s ease-in-out;
  }
}
@media (max-width: 700px) {
  .header-element .m-header .header-menu-visible {
    visibility: visible;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
  }
}
.header-element .m-header .close-menu-icon {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 30px;
  color: #ffff00;
  cursor: pointer;
}
@media (max-width: 700px) {
  .header-element .m-header .close-menu-icon {
    display: block;
  }
}
.header-element .m-header .mobile-menu-icon {
  display: none;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-5%, -50%);
  font-size: 30px;
  color: #ffff00;
  cursor: pointer;
}
@media (max-width: 700px) {
  .header-element .m-header .mobile-menu-icon {
    display: block;
  }
}
.header-element .m-header .header-list {
  width: 595px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .header-element .m-header .header-list {
    flex-flow: column;
    width: 100%;
    margin-top: 15px;
  }
}
.header-element .m-header .header-list a {
  text-decoration: none;
  position: relative;
}
.header-element .m-header .header-list .h-link {
  font-size: 24px;
  margin-right: 80px;
  color: #ffff00;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1200px) {
  .header-element .m-header .header-list .h-link {
    margin-right: 20px;
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .header-element .m-header .header-list .h-link {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.header-element .m-header .header-list .h-link:last-child {
  padding-right: 0;
}
.header-element .m-header .header-list .h-link:hover {
  color: black;
  background: #ffff00;
  padding-left: 5px;
  padding-right: 5px;
}
.header-element .m-header .header-list .h-link.active {
  background-color: #ffff00;
  color: black;
  padding: 2px 10px;
  font-weight: 600;
}
.header-element .m-header .header-list .h-link-list p {
  font-size: 24px;
  background-color: #ffff00;
  color: #04293a;
  margin-bottom: 0;
  padding: 5px;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1200px) {
  .header-element .m-header .header-list .h-link-list p {
    font-size: 18px;
  }
}
.header-element .m-header .header-list .h-link-list .link-list {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  background-color: #ffff00;
  display: flex;
  flex-flow: column;
  text-align: right;
  padding: 10px;
  font-weight: 600;
  transition: 0.25s ease-in-out;
}
@media (max-width: 700px) {
  .header-element .m-header .header-list .h-link-list .link-list {
    top: 26px;
  }
}
.header-element .m-header .header-list .h-link-list .link-list span {
  color: #04293a;
  transition: 0.25s ease-in-out;
}
.header-element .m-header .header-list .h-link-list:hover p {
  background-color: white;
  color: #04293a;
}
.header-element .m-header .header-list .h-link-list:hover .link-list {
  background-color: white;
}
.header-element .m-header .header-list .h-link-list:hover .link-list span {
  color: #04293a;
}
.header-element .bottom-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 75px;
}
@media (max-width: 700px) {
  .header-element .bottom-header {
    min-height: 40px;
  }
}
.header-element .bottom-header .language-box {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.header-element .bottom-header .language-box a {
  display: block;
  width: 50px;
}
@media (max-width: 700px) {
  .header-element .bottom-header .language-box a {
    width: 40px;
  }
}
.header-element .bottom-header .language-box a img {
  width: 100%;
}
.header-element .bottom-header .language-box a:first-child {
  margin-right: 20px;
}
@media (max-width: 700px) {
  .header-element .bottom-header .language-box a:first-child {
    margin-right: 10px;
  }
}

.floating-box {
  position: fixed;
  top: 50%;
  right: 10px;
  width: 265px;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 2;
  background-color: white;
  overflow: hidden;
}
@media (max-width: 680px) {
  .floating-box {
    display: none;
  }
}
.floating-box h3 {
  background-color: #f29106;
  color: #04293a;
  margin-bottom: 0;
  min-height: 40px;
  font-size: 15px;
  font-weight: 600;
  padding: 5px 10px;
  background-color: #ecba0c;
  text-align: center;
}
.floating-box .floating-box-content {
  display: flex;
  flex-flow: column;
  min-height: 120px;
  justify-content: center;
}
.floating-box .floating-box-content a {
  display: flex;
  flex-flow: row nowrap;
  padding: 5px 15px;
  text-decoration: none;
}
.floating-box .floating-box-content a img {
  width: 30px;
}
.floating-box .floating-box-content a span {
  color: #04293a;
  font-size: 17px;
  font-weight: 600;
}

.brands-exp {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding-left: 135px;
  margin-top: 45px;
}
@media (max-width: 1450px) {
  .brands-exp {
    padding-left: 0;
    margin-top: 40px;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .brands-exp {
    padding-left: 0;
    margin-top: 10px;
    justify-content: center;
  }
}
.brands-exp a {
  display: block;
  margin: 5px;
  text-decoration: none;
  color: #04293a;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1450px) {
  .brands-exp a {
    font-size: 16px;
  }
}
.brands-exp .str-link {
  font-size: 15px;
  color: #71a8d4;
}

.hero-banner {
  padding: 20px 0;
  height: 765px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .hero-banner {
    height: 400px;
  }
}
@media (max-width: 900px) {
  .hero-banner {
    height: 250px;
  }
}
@media (max-width: 700px) {
  .hero-banner {
    height: 200px;
  }
}

.search-box {
  min-height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .search-box {
    width: 90%;
    padding-left: 50px;
    min-height: 120px;
  }
}
.search-box input {
  width: 550px;
  min-height: 50px;
  border: 2px solid #798c96;
  padding-left: 145px;
}
@media (max-width: 750px) {
  .search-box input {
    width: 80%;
    padding-left: 50px;
  }
}
.search-box input::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #cccccc;
  opacity: 1;
  /* Firefox */
  font-style: italic;
}
.search-box input:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #cccccc;
  opacity: 1;
  /* Firefox */
  font-style: italic;
}
.search-box input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #cccccc;
  opacity: 1;
  /* Firefox */
  font-style: italic;
}
.search-box input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #cccccc;
  font-style: italic;
}
.search-box input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #cccccc;
  font-style: italic;
}
.search-box button {
  height: 50px;
  background-color: #f29106;
  color: white;
  width: 195px;
  border: 2px solid transparent;
  font-size: 18px;
}

.exp-products {
  position: relative;
  padding-bottom: 180px;
}
@media (max-width: 750px) {
  .exp-products {
    padding-bottom: 50px;
  }
}
.exp-products .productsSwiper {
  padding: 20px 0;
}
.exp-products .products-swiper-button-prev {
  top: 35%;
  left: 0;
  rigth: unset;
}
.exp-products .products-swiper-button-next {
  top: 35%;
  right: 0;
  left: unset;
}
.exp-products .products-swiper-button-prev, .exp-products .products-swiper-button-next {
  color: #484949;
}
.exp-products .products-swiper-button-prev:after, .exp-products .products-swiper-button-next:after {
  font-size: 70px;
}

.exp-product-box {
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
  padding: 10px;
  display: flex;
  flex-flow: column;
  align-content: center;
  text-decoration: none;
}
.exp-product-box .exp-product-img {
  min-height: 150px;
  width: 95%;
  margin: 0 auto;
}
.exp-product-box .exp-product-img img {
  border-radius: 15px;
  width: 100%;
}
.exp-product-box .exp-product-name {
  color: #847575;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.exp-product-box .exp-product-code {
  color: black;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.exp-product-box .exp-product-rating {
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  min-height: 15px;
  display: block;
  width: 70px;
  margin: 0 auto;
}
.exp-product-box .exp-product-details {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
}
.exp-product-box .exp-product-details .list {
  width: 50%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.exp-product-box .exp-product-details .list li {
  margin-bottom: 2px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.exp-product-box .exp-product-details .list li p {
  margin-bottom: 0;
  color: #847575;
  font-size: 13px;
}
.exp-product-box .exp-product-details .left.list li .icon-positive {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: #30bf2c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exp-product-box .exp-product-details .left.list li .icon-positive i {
  font-size: 14px;
  color: white;
}
.exp-product-box .exp-product-details .left.list li .icon-negative {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exp-product-box .exp-product-details .left.list li .icon-negative i {
  font-size: 14px;
  color: white;
}
.exp-product-box .exp-product-details .left.list li p {
  padding-left: 5px;
  font-weight: bold;
}
.exp-product-box .exp-product-details .right.list {
  text-align: right;
}
.exp-product-box .exp-product-details .right.list li {
  align-items: baseline;
  width: 100%;
  justify-content: flex-end;
}
.exp-product-box .exp-product-details .right.list li span, .exp-product-box .exp-product-details .right.list li p {
  font-size: 13px;
  color: #847575;
  font-weight: 600;
}
.exp-product-box .exp-product-details .right.list li p {
  padding-left: 5px;
}
.exp-product-box .exp-product-price {
  font-weight: bold;
  color: black;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}
.exp-product-box .exp-product-etq {
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
}
.exp-product-box .etq-off {
  top: 10px;
  background-color: #ff0000;
}
.exp-product-box .etq-avb {
  top: 50px;
  background-color: #30bf2c;
}
.exp-product-box .exp-product-badge {
  position: absolute;
  width: 60px;
  top: 12px;
  left: 15px;
}
.exp-product-box .exp-product-badge img {
  width: 100%;
}

.second-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 320px;
  margin-bottom: 50px;
}
@media (max-width: 1450px) {
  .second-banner {
    margin-bottom: 50px;
  }
}

.small-container {
  width: 890px;
  margin: 0 auto;
}
@media (max-width: 940px) {
  .small-container {
    width: 95%;
  }
}

.bunch-product-group {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media (max-width: 950px) {
  .bunch-product-group {
    justify-content: center;
  }
}
.bunch-product-group .small-product-box {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 5px;
  text-decoration: none;
  width: 165px;
}
.bunch-product-group .small-product-box img {
  width: 100%;
}
.bunch-product-group .small-product-box span {
  font-size: 12px;
  color: #798c96;
}
.bunch-product-group .small-product-box h5 {
  font-size: 14px;
  color: #04293a;
  font-weight: 600;
}

.brands-lists {
  display: flex;
  flex-flow: row wrap;
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (max-width: 1250px) {
  .brands-lists {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
  }
}
.brands-lists ul {
  width: 220px;
  margin: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 1250px) {
  .brands-lists ul {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
}
.brands-lists ul li a {
  color: #04293a;
  text-decoration: none;
}
.brands-lists ul li a span:first-child {
  color: #798c96;
  font-size: 13px;
  font-weight: 400;
}
.brands-lists ul li a span:last-child {
  font-size: 15px;
  font-weight: bold;
}

.medium-container {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1150px) {
  .medium-container {
    width: 95%;
  }
}

.third-banner {
  height: 298px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-form-container {
  padding-top: 80px;
  padding-bottom: 50px;
}
@media (max-width: 1050px) {
  .contact-form-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.contact-form-container h3 {
  text-align: center;
  font-size: 40px;
}
@media (max-width: 1050px) {
  .contact-form-container h3 {
    font-size: 30px;
  }
}
.contact-form-container p {
  color: #798c96;
  text-align: center;
  font-size: 20px;
  padding-bottom: 45px;
  padding-top: 20px;
}
.contact-form-container .inner-form-content .default-input-wrapper {
  height: 70px;
  width: 320px;
  margin-bottom: 30px;
}
@media (max-width: 1050px) {
  .contact-form-container .inner-form-content .default-input-wrapper {
    width: 100%;
  }
}
.contact-form-container .inner-form-content .default-input-wrapper input {
  width: 100%;
  height: 100%;
  font-size: 20px;
}
@media (max-width: 1050px) {
  .contact-form-container .inner-form-content .default-input-wrapper input {
    width: 100%;
    font-size: 18px;
  }
}
.contact-form-container .inner-form-content .default-input-wrapper input::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .default-input-wrapper input:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .default-input-wrapper input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .default-input-wrapper input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .default-input-wrapper input::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .contact-form-row {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .contact-form-container .inner-form-content .contact-form-row {
    flex-flow: column;
  }
}
.contact-form-container .inner-form-content .contact-form-row textarea {
  width: 320px;
  font-size: 20px;
}
@media (max-width: 1050px) {
  .contact-form-container .inner-form-content .contact-form-row textarea {
    width: 100%;
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.contact-form-container .inner-form-content .contact-form-row textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .contact-form-row textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .contact-form-row textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .contact-form-row textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .contact-form-row textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.contact-form-container .inner-form-content .contact-form-row .checkboxes-group {
  width: 320px;
}
@media (max-width: 1050px) {
  .contact-form-container .inner-form-content .contact-form-row .checkboxes-group {
    margin: 10px 0;
  }
}
.contact-form-container .inner-form-content .contact-form-row .checkboxes-group .checkbox-wrapper {
  display: flex;
  align-items: center;
}
.contact-form-container .inner-form-content .contact-form-row .checkboxes-group .checkbox-wrapper input {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
}
.contact-form-container .inner-form-content .contact-form-row .checkboxes-group .checkbox-wrapper label {
  padding-left: 10px;
  font-size: 30px;
}
.contact-form-container .inner-form-content .button-container {
  width: 320px;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media (max-width: 1050px) {
  .contact-form-container .inner-form-content .button-container {
    width: 100%;
    justify-content: center;
  }
}
.contact-form-container .inner-form-content .button-container button {
  background-color: #ffff00;
  border: 1px solid black;
  color: black;
  width: 145px;
  height: 25px;
  font-weight: bold;
}

.footer-class {
  background-color: black;
}
.footer-class .footer-container {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .footer-class .footer-container {
    width: 95%;
  }
}
.footer-class .footer-top {
  padding-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1250px) {
  .footer-class .footer-top {
    padding-top: 20px;
    flex-flow: row wrap;
    justify-content: center;
  }
}
.footer-class .footer-top a {
  font-size: 20px;
  text-decoration: none;
  color: #ffff00;
  transition: 0.25s ease-in-out;
}
.footer-class .footer-top a:hover {
  color: black;
  background: #ffff00;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 1250px) {
  .footer-class .footer-top a {
    padding: 0 10px;
    font-size: 16px;
  }
}
.footer-class .footer-bottom {
  padding-top: 65px;
}
@media (max-width: 1250px) {
  .footer-class .footer-bottom {
    padding-top: 20px;
  }
}
.footer-class .footer-bottom p {
  padding-bottom: 20px;
  text-align: center;
  font-size: 16px;
  color: white;
  margin-bottom: 0;
}
@media (max-width: 1250px) {
  .footer-class .footer-bottom p {
    font-size: 14px;
  }
}

.breadcrumbs {
  background-color: white;
  padding: 10px;
  min-height: 50px;
  color: #7eaecc;
  border: 2px solid #c6caca;
  margin-left: 3px;
}
.breadcrumbs .crumb {
  font-size: 14px;
  text-decoration: none;
  color: #7eaecc;
}
.list-page-main-container {
  padding-top: 20px;
}

.products-list-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .products-list-wrapper {
    flex-flow: column;
  }
}
.products-list-wrapper .products-list-filters {
  width: 280px;
  background-color: white;
  border: 2px solid #c6caca;
  margin-right: 20px;
  padding: 20px;
  min-height: 200px;
}
@media (max-width: 1575px) {
  .products-list-wrapper .products-list-filters {
    width: 200px;
  }
}
@media (max-width: 750px) {
  .products-list-wrapper .products-list-filters {
    width: 100%;
  }
}
.products-list-wrapper .products-list-filters .filters-title {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: gray;
}
.products-list-wrapper .products-list-filters .checkbox-group h3 {
  color: gray;
  font-size: 20px;
  font-weight: 600;
  font-size: 16px;
}
.products-list-wrapper .products-list-filters .checkbox-group ul {
  list-style: none;
  padding-left: 10px;
  margin-left: 10px;
}
.products-list-wrapper .products-list-filters .checkbox-group ul li .checkbox-element {
  display: flex;
  align-items: center;
}
.products-list-wrapper .products-list-filters .checkbox-group ul li .checkbox-element input {
  border: 2px solid black;
  width: 15px;
  height: 15px;
}
.products-list-wrapper .products-list-filters .checkbox-group ul li .checkbox-element label {
  padding-left: 5px;
  color: gray;
  font-size: 14px;
  margin-bottom: 0;
}
.products-list-wrapper .list-container {
  width: 1195px;
}
@media (max-width: 1488px) {
  .products-list-wrapper .list-container {
    width: 84%;
  }
}
@media (max-width: 750px) {
  .products-list-wrapper .list-container {
    width: 100%;
  }
}
.products-list-wrapper .exp-products {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
}
.products-list-wrapper .exp-products .exp-product-box {
  width: 225px;
  margin: 7px;
}
@media (max-width: 750px) {
  .products-list-wrapper .exp-products .exp-product-box {
    width: 45%;
  }
}
@media (max-width: 580px) {
  .products-list-wrapper .exp-products .exp-product-box .exp-product-img {
    width: 135px;
  }
}

.pagination {
  justify-content: flex-end;
}
.pagination .page-item .page-link {
  color: black;
}
.pagination .page-item.active .page-link {
  background-color: #ffff00;
  border-color: black;
  color: black;
}

.another-custom-container {
  width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1450px) {
  .another-custom-container {
    width: 100%;
  }
}

.product-detail-container .top-row {
  margin-top: 30px;
  display: flex;
  flex-flow: row;
  border: 2px solid #cdd4d8;
}
@media (max-width: 1050px) {
  .product-detail-container .top-row {
    flex-flow: column;
  }
}
.product-detail-container .gallery {
  width: 50%;
  position: relative;
  display: flex;
  flex-flow: row;
  background-color: #f8f2f2;
  border-right: 2px solid #cdd4d8;
}
@media (max-width: 1300px) {
  .product-detail-container .gallery {
    width: 65%;
  }
}
@media (max-width: 1050px) {
  .product-detail-container .gallery {
    width: 100%;
    flex-flow: column;
    margin-bottom: 100px;
  }
}
.product-detail-container .gallery .swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.product-detail-container .gallery .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.product-detail-container .gallery .gallery-top {
  width: 75%;
  height: 100%;
  overflow: hidden;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 1050px) {
  .product-detail-container .gallery .gallery-top {
    height: 80%;
    width: 100%;
  }
}
.product-detail-container .gallery .gallery-top .swiper-slide {
  background-size: 100% !important;
  position: relative;
}
.product-detail-container .gallery .gallery-top .swiper-slide img {
  width: 100%;
}
.product-detail-container .gallery .gallery-top .swiper-slide .exp-product-etq {
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
}
.product-detail-container .gallery .gallery-top .swiper-slide .etq-off {
  top: 10px;
  background-color: #ff0000;
}
.product-detail-container .gallery .gallery-top .swiper-slide .etq-avb {
  top: 50px;
  background-color: #30bf2c;
}
.product-detail-container .gallery .gallery-top .swiper-slide .exp-product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
}
.product-detail-container .gallery .gallery-top .swiper-slide .exp-product-badge img {
  width: 100%;
}
.product-detail-container .gallery .gallery-thumbs {
  height: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  width: 150px;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1050px) {
  .product-detail-container .gallery .gallery-thumbs {
    height: 150px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    overflow: hidden;
  }
}
.product-detail-container .gallery .gallery-thumbs .swiper-wrapper {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
@media (max-width: 1050px) {
  .product-detail-container .gallery .gallery-thumbs .swiper-wrapper {
    width: 100%;
    height: 100%;
    flex-flow: row nowrap;
  }
}
.product-detail-container .gallery .gallery-thumbs .swiper-wrapper .swiper-slide {
  width: 40% !important;
  height: 100px;
  margin-bottom: 5px;
}
.product-detail-container .gallery .gallery-thumbs .swiper-wrapper .swiper-slide .exp-product-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
}
.product-detail-container .gallery .gallery-thumbs .swiper-wrapper .swiper-slide .exp-product-badge img {
  width: 100%;
}
@media (max-width: 1050px) {
  .product-detail-container .gallery .gallery-thumbs .swiper-wrapper .swiper-slide {
    width: 100px !important;
    height: 100%;
  }
}
.product-detail-container .gallery .gallery-thumbs .swiper-slide {
  opacity: 0.4;
}
.product-detail-container .gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.product-detail-container .product-cta {
  width: 50%;
  padding: 25px;
}
@media (max-width: 1300px) {
  .product-detail-container .product-cta {
    width: 35%;
  }
}
@media (max-width: 1050px) {
  .product-detail-container .product-cta {
    width: 100%;
  }
}
.product-detail-container .product-cta h3 {
  font-size: 25px;
  font-weight: 300;
  color: gray;
}
.product-detail-container .product-cta .product-price-cta {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.product-detail-container .product-cta .product-price-cta .price {
  font-size: 30px;
  color: black;
  font-weight: 600;
}
.product-detail-container .product-cta .product-price-cta .subtext-desc {
  color: gray;
  font-size: 15px;
  font-style: italic;
}
.product-detail-container .product-cta .product-price-cta .pos-text {
  color: green;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.product-detail-container .product-cta .product-detail-cta-btns {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.product-detail-container .product-cta .product-detail-cta-btns .cta-buy {
  width: 425px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  margin: 5px 0;
  background-color: #25D366;
}
@media (max-width: 1300px) {
  .product-detail-container .product-cta .product-detail-cta-btns .cta-buy {
    width: 250px;
  }
}
.product-detail-container .product-cta .product-detail-cta-btns .cta-disp {
  width: 425px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  margin: 5px 0;
  background-color: #7d2e03;
}
@media (max-width: 1300px) {
  .product-detail-container .product-cta .product-detail-cta-btns .cta-disp {
    width: 250px;
  }
}
.product-detail-container .product-cta .product-detail-cta-btns span {
  font-size: 12px;
  color: black;
  font-weight: 600;
}
.product-detail-container .product-cta .product-inf-box {
  width: 430px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  word-break: break-all;
}
@media (max-width: 1300px) {
  .product-detail-container .product-cta .product-inf-box {
    width: 250px;
  }
}
.product-detail-container .product-cta .contact-text-subt {
  text-align: center;
  font-size: 14px;
  color: black;
  font-weight: 600;
}
.product-detail-container .product-cta .contact-text-subt i {
  padding-left: 5px;
  color: lightblue;
  font-size: 18px;
}
.product-detail-container .bottom-row {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1050px) {
  .product-detail-container .bottom-row {
    flex-flow: column;
  }
}
.product-detail-container .bottom-row .left-side {
  width: 50%;
}
@media (max-width: 1050px) {
  .product-detail-container .bottom-row .left-side {
    width: 95%;
    margin: 0 auto;
  }
}
.product-detail-container .bottom-row .left-side .product-info-tabel {
  width: 470px;
  margin: 0 auto 20px auto;
}
@media (max-width: 1050px) {
  .product-detail-container .bottom-row .left-side .product-info-tabel {
    width: 100%;
  }
}
.product-detail-container .bottom-row .left-side .product-info-tabel h3 {
  color: gray;
  font-size: 25px;
}
.product-detail-container .bottom-row .left-side .product-info-tabel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.product-detail-container .bottom-row .left-side .product-info-tabel ul li {
  display: flex;
  flex-flow: row;
  padding: 5px 0;
  border-bottom: 1px solid #cdd4d8;
}
.product-detail-container .bottom-row .left-side .product-info-tabel ul li p {
  width: 140px;
  font-size: 14px;
  margin-bottom: 0;
}
.product-detail-container .bottom-row .left-side .product-info-tabel ul li span {
  color: #559cbe;
  font-size: 14px;
  font-weight: 600;
}
.product-detail-container .bottom-row .left-side .other-prod-list {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-flow: column;
}
.product-detail-container .bottom-row .left-side .other-prod-list h3 {
  text-align: center;
  font-size: 25px;
  color: black;
}
.product-detail-container .bottom-row .left-side .recomended-prod {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 10px;
}
.product-detail-container .bottom-row .left-side .recomended-prod .exp-product-box {
  width: 200px;
  margin: 5px;
}
.product-detail-container .bottom-row .left-side .recomended-prod .exp-product-box .exp-product-img {
  width: 140px;
}
.product-detail-container .bottom-row .left-side .recomended-prod .exp-product-box .exp-product-badge {
  width: 40px;
  top: 6px;
  left: 8px;
}
.product-detail-container .bottom-row .right-side {
  padding: 20px 0;
  border: 2px solid #cdd4d8;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1050px) {
  .product-detail-container .bottom-row .right-side {
    width: 95%;
    margin: 0 auto;
  }
}
.product-detail-container .bottom-row .right-side .contact-form-container {
  padding-top: 0;
  padding-bottom: 0;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea {
  width: 320px;
  font-size: 20px;
}
@media (max-width: 1050px) {
  .product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea {
    width: 100%;
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 30px;
  color: black;
  padding-left: 20px;
}
.product-detail-container .bottom-row .right-side .contact-form-container .inner-form-content .button-container {
  margin: 20px auto;
  justify-content: center !important;
}
.product-detail-container .bottom-row .right-side h3 {
  font-size: 25px;
}

.magnify {
  display: flex !important;
  height: 100% !important;
  justify-content: center;
  align-items: center;
}

.full-banner {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 767px;
}
@media (max-width: 1050px) {
  .full-banner {
    min-height: 443px;
  }
}
@media (max-width: 650px) {
  .full-banner {
    min-height: 250px;
  }
}

.s-banner-txt {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .s-banner-txt {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .s-banner-txt {
    font-size: 15px;
  }
}

.tw-bcolor {
  background-color: #ffff00;
  padding: 10px 20px;
  font-weight: 600;
  margin-bottom: 50px;
}

.text-container {
  width: 100%;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.text-container .p-fw6 {
  font-weight: 600;
}
.text-container p {
  font-size: 26px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .text-container p {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .text-container p {
    font-size: 15px;
  }
}
.text-container h2 {
  font-size: 37px;
}
@media (max-width: 1200px) {
  .text-container h2 {
    font-size: 25px;
  }
}
@media (max-width: 750px) {
  .text-container h2 {
    font-size: 18px;
  }
}
.text-container h1 {
  font-size: 95px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1200px) {
  .text-container h1 {
    font-size: 50px;
  }
}
@media (max-width: 750px) {
  .text-container h1 {
    font-size: 22px;
  }
}

.big-container {
  width: 1250px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .big-container {
    width: 95%;
  }
}

.main-categ-container {
  width: 1050px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
@media (max-width: 1100px) {
  .main-categ-container {
    width: 95%;
  }
}
.main-categ-container .min-categ-box {
  width: 185px;
  height: 85px;
  margin: 5px;
  display: flex;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 5px rgba(0, 0, 0, 0.1);
}

.brands-p-wrapper h5 {
  text-align: center;
  font-weight: 600;
  margin: 50px 0;
  font-size: 28px;
}
@media (max-width: 1100px) {
  .brands-p-wrapper h5 {
    font-size: 20px;
  }
}
.brands-p-wrapper .brands-boxes-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.brands-p-wrapper .brands-boxes-container .brand-box {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 90px;
  display: flex;
  margin: 10px 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f1f1;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 635px;
  margin: 30px auto;
}

.gmap_canvas {
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  background: none !important;
  height: 635px;
}
.gmap_canvas iframe {
  width: 100%;
  height: 100%;
}

.cont-text-container {
  margin-top: 50px;
  text-align: center;
}
.cont-text-container h6 {
  margin-bottom: 30px;
  font-size: 37px;
  font-weight: 600;
}
@media (max-width: 750px) {
  .cont-text-container h6 {
    font-size: 22px;
  }
}

.cp-cont-container h3 {
  font-size: 27px;
  font-weight: 500;
}
.cp-cont-container .inner-form-content {
  width: 675px;
  margin: 50px auto;
}
@media (max-width: 750px) {
  .cp-cont-container .inner-form-content {
    width: 95%;
    margin: 20px auto;
  }
}
.cp-cont-container .inner-form-content .contact-form-row {
  justify-content: space-between;
}
.cp-cont-container .inner-form-content .button-container {
  margin-left: auto;
}

.error {
  color: red;
}

.warning-section {
  width: 100%;
  text-align: center;
  background-color: red;
  padding: 10px;
  color: white;
}

.tags-container {
  top: 10px;
  z-index: 3;
  position: absolute;
  right: 0;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
  display: flex;
  flex-flow: column;
  height: 85px;
  justify-content: space-between;
  align-items: flex-end;
}

.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 150px;
  height: 150px;
}
