/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/categoryList/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
.duralight-category-list-block {
  font-family: "figtree", sans-serif;
  /* on the "All Products" page, the catgegory list turns into a dropdown menu. Style it here. */
}
.duralight-category-list-block ul {
  -moz-columns: 3;
       columns: 3;
}
@media (max-width: 900px) {
  .duralight-category-list-block ul {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (max-width: 600px) {
  .duralight-category-list-block ul {
    -moz-columns: 1;
         columns: 1;
  }
}
.duralight-category-list-block ul li {
  position: relative;
  margin-bottom: 0.5rem;
}
.duralight-category-list-block ul li a {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
}
.duralight-category-list-block ul li .icon {
  width: 2rem;
}
.duralight-category-list-block ul li .icon svg {
  width: 100%;
  height: auto;
}
.duralight-category-list-block ul li svg * {
  stroke: #000000;
}
.duralight-category-list-block.has-image {
  /* Note: See duralight theme for styling on home page.*/
}
.duralight-category-list-block.has-image ul {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
}
.duralight-category-list-block.has-image ul li {
  font-size: 0.9rem;
  aspect-ratio: 1/1;
  flex: 1;
  text-align: center;
  display: grid;
  margin: 0;
  transition: all 0.25s ease-out;
  overflow: hidden;
}
.duralight-category-list-block.has-image ul li a {
  flex-direction: column;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
  justify-content: center;
}
.duralight-category-list-block.has-image ul li .title {
  text-shadow: 0px 0px 7px #000000;
  padding: 0.5rem;
}
.duralight-category-list-block.has-image ul li .icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.5rem;
}
.duralight-category-list-block.has-image ul li .icon svg {
  width: 100%;
  height: 100%;
  stroke: #FFFFFF;
}
.duralight-category-list-block.has-image ul li .icon svg * {
  stroke: inherit;
  stroke-width: 4px;
}
.duralight-category-list-block.has-image ul li .thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background-color: black;
  background-color: var(--wp--preset--color--contrast);
}
.duralight-category-list-block.has-image ul li .thumb img {
  transition: opacity 0.25s ease-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}
.duralight-category-list-block.has-image ul li:hover {
  border-bottom-left-radius: 2.5rem;
}
.duralight-category-list-block.has-image ul li:hover .thumb img {
  opacity: 1;
}
.duralight-category-list-block.has-image.nbr-items-wrap ul {
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}
.duralight-category-list-block .category-dropdown {
  border: 1px solid #707070;
  padding: 0.5rem;
  border-radius: 1rem;
}
.duralight-category-list-block .category-dropdown ul {
  display: none;
}
.duralight-category-list-block .category-dropdown .input {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
}
.duralight-category-list-block .category-dropdown .input .input__placeholder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.duralight-category-list-block .category-dropdown .input .input__placeholder .placeholder {
  margin: 0;
}
.duralight-category-list-block .category-dropdown .structure {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  overflow: auto;
  background-color: white;
  padding: 10px 0;
}
.duralight-category-list-block .category-dropdown .structure .option {
  cursor: pointer;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding: 0.2rem 0px;
}
.duralight-category-list-block .category-dropdown .structure .option:hover {
  color: var(--wp--preset--color--brand);
}
.duralight-category-list-block .category-dropdown .structure .option .icon {
  width: 1.3rem;
}
.duralight-category-list-block .category-dropdown .structure .option .icon svg {
  width: 100%;
  height: auto;
}
.duralight-category-list-block .category-dropdown .structure .option .label {
  font-weight: 600;
  font-size: 1rem;
}
.duralight-category-list-block .category-dropdown.show .structure {
  display: block;
}
.duralight-category-list-block .category-dropdown.show .input__placeholder .fa {
  transform: rotate(180deg);
}
.duralight-category-list-block.has-desktop-dropdown ul {
  display: none !important;
  max-width: 40rem;
}
.duralight-category-list-block.has-desktop-dropdown .category-dropdown {
  display: block !important;
}
.duralight-category-list-block.has-mobile-dropdown {
  border: none;
}
@media (max-width: 767px) {
  .duralight-category-list-block.has-mobile-dropdown ul {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .duralight-category-list-block.has-mobile-dropdown .category-dropdown {
    display: none;
  }
}

/*# sourceMappingURL=style-index.css.map*/