.catalog .title {
    margin-bottom: 48px;
}
.catalog-list {
    display: flex;
    flex-wrap: wrap;
    gap:24px;
}
.catalog-list-item {
    width: calc(100% / 3 - 16px);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 1px 2px 8px 6px rgb(0,0,0, 10%);
    border-radius: 6px;
    overflow: hidden;
}
.catalog-list-item .img-box {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
    text-decoration: none;
    transition: .3s;
    /* padding: 24px; */
    padding: 0;
    background: #c7c7c7;
}
.catalog-list-item .img-box.with-link {
    position: relative;
}
.catalog-list-item .img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.catalog-list-item .img-box.with-link .catalog-list-item__more-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    outline: none;
    background-color: #FF6B11;
    color:#fff;
    border-radius: 24px;
    padding:6px 12px;
    padding-right: 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
    text-align: center;
    border: 0;
    position: absolute;
    left:16px;
    top:16px;
    transition: .3s;
}
.catalog-list-item .img-box.with-link .catalog-list-item__more-link::after {
    content:'';
    display: block;
    width: 10px;
    height: 10px;
    border-top:2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top:10px;
}
.catalog-list-item .img-box.with-link .catalog-list-item__more-link:hover {
    box-shadow: 2px 5px 25px #FF8C46;
    color: var(--text);
    background: #FF6B11;
}
.catalog-list-item-content {
    padding: 16px 16px 0 16px;
}
.catalog-list-item-name {
    font-size: 21px;
    line-height: 130%;
    font-weight: 700;
    margin: 0;
    color:#000;
    margin-bottom: 15px;
}
.catalog-list-item-content .added-text {
    color:#000;
    font-size: 15px;
    line-height: 130%;
    font-weight: 400;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
}
.catalog-list-item-content .added-text .label {
    width: calc(100% - 60px);
    text-align: left;
}
.catalog-list-item-content .added-text .value {
/*     width: 60px; */
    display: flex;
	white-space: nowrap;
}
.catalog-list-item-btns {
    display: flex;
    gap:8px;
    margin-top: auto;
    padding: 16px;
}
.catalog-list-item-btns .price-wrapper {
    display: flex;
    justify-content: flex-start!important;
    gap:8px;
    flex-wrap: wrap;
}
.catalog-list-item-btns .price-wrapper .price {
    font-size: 16px;
    line-height: 100%;
}
.catalog-list-item-btns .price-wrapper .old-price {
    color:#000;
    opacity: .5;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
}
.catalog-list-item-btns .price-wrapper .info {
    display: flex;
    align-items: center;
    width: 100%;
    gap:6px;
    font-size: 12px;
    line-height: 100%;
    font-weight: 700;
    color:#000;
    opacity: .5;
}
.catalog-list-item-btns .price-wrapper .info img {
    width: 12px;
    height: 12px;
    display: block;
    object-fit: contain;
    object-position: center;
}
.catalog-list-item-btns .price-wrapper .info span {
    display: block;
    width: calc(100% - 12px - 6px);
}
.catalog-list-item-btns .btn {
    padding:8px;
    width: calc(50% - 4px);
    border-radius: 6px;
    font-size: 13px;
    line-height: 130%;
    margin: 0;
}
.catalog-list-item-btns .btn.second-btn {
    border: 1px solid #FF6B11;
    color:#FF6B11;
}
.catalog-list-item-btns .btn.second-btn:hover {
    background-color: #FF6B11;
    color:#fff;
    box-shadow: 2px 5px 25px #FF8C46;
}
.catalog .nav-tabs,
.catalog .tab-content {
    display: none!important;
}
@media(max-width:992px) {
    .catalog-list-item {
        width: calc(100% / 2 - 12px);
    }
}
@media(max-width:768px) {
    .catalog .title {
        margin-bottom: 24px;
    }
    .catalog .catalog-list {
        margin-top:30px;
    }
    .catalog .catalog-list .catalog-list-item {
        width: 100%;
    }
    .catalog .nav-tabs,
    .catalog .tab-content {
        display: flex!important;
    }
    .catalog .nav-tabs {
        margin-bottom: 24px;
        flex-wrap: nowrap;
        padding-bottom: 0px;
        gap:8px;
        border: 0;
        overflow: auto;
    }
    .catalog .nav-tabs::-webkit-scrollbar {
        height: 0px;
        width: 0;
    }
    /* .catalog .nav-tabs::-webkit-scrollbar-track {
        background-color: #c7c7c7;
    }
    .catalog .nav-tabs::-webkit-scrollbar-thumb {
        background-color: #0063BC;
    } */
    .catalog .nav-tabs .nav-link {
        border: 0;
        border-radius: 6px;
        padding: 12px 24px;
        background-color: #dcdcdc;
        color:#636363;
        font-size: 14px;
        line-height: 130%;
        font-weight: 500;
        text-align: center;
        outline: none;
        border: 0;
        text-decoration: none;
        transition: .3s;
        white-space: nowrap;
    }
    .catalog .nav-tabs .nav-item .nav-link.active {
        color:#fff;
        background-color: #FF6B11;
    }
    .catalog .tab-content>.tab-pane {
        width: 100%;
    }
    .catalog-list-item {
        width: 100%;
    }
    .catalog-list-item-btns .btn {
        padding: 10px 8px;
        width: calc(50% - 4px);
        border-radius: 6px;
        font-size: 12px;
        line-height: 130%;
        margin: 0;
    }
}


/* TABLE SPEC */
.spec .table-container {
  width: 100%;
  overflow: scroll;
  border: 1px solid #fff;
  padding-bottom: 6px;
  
}
.spec .table-container::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0px;
    height: 3px;
}
.spec .table-container::-webkit-scrollbar:horizontal {
    height: 3px;
}
.spec .table-container::-webkit-scrollbar-track {
    background-color: #ebebeb;
}
.spec .table-container::-webkit-scrollbar-thumb {
    background-color: #0a58ca;
}
.spec table {
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.spec .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: unset;
}
.spec table thead tr {
    border-radius: 12px 12px 0 0;
}
.spec table thead tr th {
    background-color: #ebebeb;
}
/* .spec table thead tr th:first-child {
    border-top-left-radius: 12px;
}
.spec table thead tr th:last-child {
    border-top-right-radius: 12px;
}
.spec table tbody tr:last-child td:first-child,
.spec table tbody tr:last-child th:first-child {
    border-bottom-left-radius: 12px;
}
.spec table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
} */
.spec table tbody tr th {

}
.spec table tbody tr:last-child {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.spec table thead tr th:first-child,
.spec table tbody tr th {
    position: sticky;
    left:0;
    top:0;
    background-color: #dddddd;
}
.spec table th,
.spec table td {
    padding: 8px 12px;
    border: 1px solid #fff;
    text-align: left;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}
.spec table td {
    width:auto;
    min-width: unset;
    background-color: #ebebeb;
    white-space: nowrap;
}
.spec table td.strong-color {
    background-color: #b6d7a8;
}
.spec table td.light-color {
    background-color: #d9ead3;
}
.spec table td svg {
    width: 24px;
    height: 24px;
}
.spec-table-container-cursor {
     
}
.spec-table-container-cursor img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
    opacity: .5;
}

/* END */