@charset "utf-8";
.products-title {
  position: relative;
}
.products-title::after {
  position: absolute;
  left: calc(50% - 50vw);
  bottom: -24px;
  width: 100vw;
  height: 1px;
  background-color: #D1D1D1;
  content: "";
}
.top-grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
width: 80%;
padding: 0;
justify-items: center;
align-items: center;
}
.catalog{
  margin-bottom: 40px;
}
.catalog-txt{
    position: relative;
    top: 15px;
}
.cad-txt{
    position: relative;
    top: 15px;
}
.manual-txt{
    position: relative;
    top: 25px;
}
.top-grid-container .top-grid-colmn:first-of-type {
  width: 30%;
}
.top-grid-colmn{
  width: 40%;
}
.grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
width: 80%;
list-style: none;
padding: 0;
margin-top: 100px;
}
.catalog-grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 120px;
width: 80%;
margin: 0 auto;
list-style: none;
padding: 0;
}
.catalog-grid-container > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-grid-container .pdf-box {
    margin-top: auto;
    padding-left: 1em;
}
.pdf-box{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border: 1px solid #676767;
    text-decoration: none ;
    font-size: 12px;
    color: #333; 
    cursor: pointer;
    min-width: 80px;
    text-align: center;
}
.pdf-box > span::after {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-left: 8px;
    background-image: url(/00cmn/img/common/link-pdf-r.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    vertical-align: middle;
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.active {
  opacity: 1;
}
.products-list > section ul {
  margin-left: 20px;
}
.products-list > section ul > li {
    list-style: disc outside;
}
.stop-products-list > section ul {
  margin-left: 40px;
}
.stop-products-list > section ul > li {
    list-style: disc outside;
}
@media (hover) {
  .top-grid-colmn a:hover {
    text-decoration: underline;
  }
  .grid-colmn a:hover {
    text-decoration: underline;
  }
  .products-list a:hover {
    text-decoration: underline;
  }
  .stop-products-list a:hover {
    text-decoration: underline;
  }
  .pdf-box:hover {
    background-color: #C6D3E4;
  }
}
@media (min-width: 1023px){
  .top-grid-container{
    margin: auto;
  }
}
@media (max-width: 768px) {
  .top-grid-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      width: 90%;
  }
  .grid-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      width: 90%;
  }
  .catalog-grid-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 55px;
      width: 90%;
  }
  .top-grid-container .top-grid-colmn:first-of-type {
  width: auto;
}
.top-grid-colmn{
  width: auto;
}
  .catalog{
  margin-bottom: 20px;
}
.catalog_icon{
  width: 80%;
}
}
