/*.catalog__section-wrap.toggled{z-index:2}
.catalog-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
  grid-gap: 20px;
  transition: height .2s linear;
  width: 100%;
  margin-top: 30px;
}
.catalog-wrap .catalog__section-wrap{
  position: relative;  
}
.catalog-wrap .catalog__section {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  height: fit-content;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow .2s linear;
  grid-gap: 10px;
}
.catalog-wrap .catalog__section:hover{
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
}
.catalog-wrap .catalog__section .catalog__section-pic {
  display: grid;
  grid-template-columns: 70px auto;
  height: fit-content;
}
.catalog-wrap .catalog__section .catalog__section-pic img {
  aspect-ratio: 70/49;
  max-width: 70px;
  width: 100%;
  height: min-content;
  max-height: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
	border-radius: 10px;
}
.catalog-wrap .catalog__section .catalog__section-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  color: #ff7410;
  text-decoration: none;
  display: flex;
  flex: 1;
  transition: color .2s linear;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
}
.catalog-section-list-item-counter{
    color: #262626;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 10px;
    border: 0.5px solid #e4e4e4;
    border-radius: 15px;
}
.catalog-wrap .catalog__section > .catalog__section-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 7px;
}
.catalog-wrap .catalog__section .catalog__section-split {
  display: grid;
  grid-template-columns: 1fr;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap {
  overflow: hidden;
  padding-right: 5px;
  box-sizing: border-box;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap .catalog__sub-sections-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap .catalog__sub-section {
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: 1.1em;
  letter-spacing: 0;
  text-align: left;
  color: var(--color-gray-80);
  display: block;
  text-decoration: none;
  transition: color .2s linear;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap a.catalog__sub-section:hover{color:#ff7410;}

.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap .catalog__sub-sections-body {
  display: none;
  padding-top: 5px;
  flex-direction: column;
  gap: 5px;
}
.catalog-wrap .catalog__section .section-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-radius: 7px;
  transition: all .2s linear;
  height: fit-content;
  margin-top: auto;
}
.catalog-wrap .catalog__section .section-toggle-wrap:hover{
    background-color:#ffeadb;
}
@media(max-width:1329px){
    .catalog-wrap {
        grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    }
}
@media(max-width:1299px){
    .catalog-wrap {
        grid-template-columns: repeat(auto-fill,minmax(410px,1fr));
    }
}
@media(max-width:991px){
    .catalog-wrap {
        grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
    }
}
*/
.catalog__section-wrap.toggled{z-index:2}
.catalog-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
  grid-gap: 20px;
  transition: height .2s linear;
  width: 100%;
  margin-top: 30px;
}
.catalog-wrap .catalog__section-wrap{
  position: relative;  
}
.catalog-wrap .catalog__section {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  height: fit-content;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow .2s linear;
  grid-gap: 10px;
  box-shadow: 0 0 60px -30px #000;
}
.catalog-wrap .catalog__section:hover{
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
}
.catalog-wrap .catalog__section .catalog__section-pic {
  display: grid;
  grid-template-columns: 70px auto;
  height: fit-content;
}
.catalog-wrap .catalog__section .catalog__section-pic img {
  aspect-ratio: 70/49;
  max-width: 70px;
  width: 100%;
  height: min-content;
  max-height: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.catalog-wrap .catalog__section .catalog__section-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  color: #ff7410;
  text-decoration: none;
  display: flex;
  flex: 1;
  transition: color .2s linear;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
}
.catalog-section-list-item-counter{
    color: #262626;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 10px;
    border: 0.5px solid #e4e4e4;
    border-radius: 15px;
}
.catalog-wrap .catalog__section > .catalog__section-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 7px;
}
.catalog-wrap .catalog__section .catalog__section-split {
  display: grid;
  grid-template-columns: 1fr;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap {
  overflow: hidden;
  padding-right: 5px;
  box-sizing: border-box;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap .catalog__sub-sections-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap .catalog__sub-section {
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: 1.1em;
  letter-spacing: 0;
  text-align: left;
  color: var(--color-gray-80);
  display: block;
  text-decoration: none;
  transition: color .2s linear;
}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap a.catalog__sub-section:hover{
    color:#ff7410;
}
a.catalog__sub-section:hover{color:#ff7410;}
.catalog-wrap .catalog__section .catalog__section-split .catalog__sub-sections-wrap .catalog__sub-sections-body {
  display: none;
  padding-top: 5px;
  flex-direction: column;
  gap: 5px;
}
.catalog-wrap .catalog__section .section-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-radius: 7px;
  transition: all .2s linear;
  height: fit-content;
  margin-top: auto;
}
.catalog-wrap .catalog__section .section-toggle-wrap:hover{
    background-color:#ffeadb;
}
@media(max-width:1329px){
    .catalog-wrap {
        grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    }
}
@media(max-width:1299px){
    .catalog-wrap {
        grid-template-columns: repeat(auto-fill,minmax(410px,1fr));
    }
}
@media(max-width:991px){
    .catalog-wrap {
        grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
    }
}