.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95em;
  margin-bottom: 0;
  max-width: 100%;
  position: relative;
}

.breadcrumbs a {
  text-decoration: none;
  min-height: 40px;
  display: flex;
  background: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.02em;
  border-top: 1px solid #ccc;
  line-height: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-grow: 1;
  opacity: 0.6;
}

.breadcrumbs a:hover {
  color: #c51a1b;
  text-decoration: none;
  opacity: 1;
}

@media (max-width: 666px) {
  .breadcrumbs {
    margin-top: 40px;
    font-size: 0.97em;
  }
}
.breadcrumbs a .icon {
  opacity: 0.8;
  transition: opacity 0.23s;
}
.breadcrumbs a:hover .icon {
  opacity: 0.8;
}

h1 {
  font-size: 2.2em;
  padding-top: 32px;
  border-top: 4px solid black;
}

h3 {
  font-size: 1.35em;
  border-top: 2px solid black;
  padding-top: 4px;
  margin-top: 64px;
  margin-bottom: 32px;
}

h3, h4 {
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.header_full {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  margin-top: 24px;
}
.header_full img {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.header_full .text_block {
  padding: 25px 0;
}
.header_full .text_block h1 {
  max-width: 50%;
  padding: 16px;
  background-color: #c51a1b;
  color: #fff;
  margin: 0;
  border: none;
}
.header_full .text_block .short_desc {
  max-width: 35%;
  background-color: #fff;
  padding: 8px 12px 8px 12px;
}
.header_full .text_block.compact {
  padding: 30px 0;
}

.full_description {
  margin-top: 64px;
}
.full_description h3 {
  border-top: 2px solid black;
  padding-top: 4px;
  margin-top: 64px;
  margin-bottom: 32px;
}
.full_description .text {
  font-size: 1.2em;
  line-height: 1.4;
  margin-top: 32px;
}

.header_col {
  margin-top: 48px;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.header_col .short_desc {
  font-size: 1.4em;
  margin: 32px 0;
}
.header_col .pic {
  max-height: 500px;
}
.header_col .pic img {
  height: 100%;
  max-height: 400px;
  height: 333px;
}

.lower {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lower a.gocat {
  display: inline-block;
  font-size: 1.4em;
  color: #fff;
  background-color: #000;
  margin: 0 auto;
}

.group-grid, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.group-square {
  height: 60px;
  overflow: hidden;
}

.product-square {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 5fr));
  gap: 20px;
  margin-bottom: 30px;
}

.group-square a, .product-square a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
}

.product-square a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-square > a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.group-square a {
  width: 100%;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
  border-top: 1px solid #ccc;
}

.product-square > div {
  padding: 10px 8px 0 8px;
  flex: 1;
  display: flex;
  justify-content: center;
}

.toolbox {
  background: #dcaa04;
  display: flex;
  border-radius: 4px;
  margin-bottom: 4px;
  padding: 4px;
  font-size: 1em;
  align-items: center;
  gap: 16px;
}
.toolbox label.important_lbl {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  flex-grow: 1;
}
.toolbox button {
  margin-left: 8px;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
}
.toolbox button:hover {
  background: #f0f0f0;
}

.editable-field {
  border: none;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.6em;
  }

  .main_content {
    margin-top: 0;
  }

  .header_full .text_block {
    padding: 40px 0 40px 16px;
  }
  .header_full .text_block h1 {
    max-width: 85%;
  }
  .header_full .text_block .short_desc {
    max-width: 70%;
  }
  .header_full .text_block.compact {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .header_full {
    display: flex;
    flex-direction: column;
  }
  .header_full img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .header_full .text_block {
    padding: 0px 0 0px;
  }
  .header_full .text_block h1 {
    max-width: 100%;
  }
  .header_full .text_block .short_desc {
    max-width: 100%;
  }
}

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