.as-menu__sub-2-link.active {
    color: #0082C4;
}


.loader-overlay.show{
    transition: 1s;
    opacity: 1;
    z-index: 1;
}

.loader-overlay {
    z-index: -1;
    opacity: 0;
    position: fixed;
    content: '';
    width: 100%;
    height: 100%;
    background: #00000047;
}
.loader-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.product_new-detail .table-responsive{
    width: 100% !important;
}
.product_new-detail .table{
    width: 100% !important;
}



.notfound-wrap {
    padding: 50px 0;
    text-align: center;
}

.notfound-des {
    padding: 10px 0;
}

.notfound-title {
    font-weight: bold;
}

.notfound-link {
    background: #0082C4;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 0 15px;
}

.notfound-box {
    margin-top: 30px;
}

.download-li:hover{
    background: #f4f4f4;
}
.product_new-detail tbody tr:hover:hover{
    background: #f4f4f4;
}
@media (max-width: 1199px) {
    .partners__item{
        max-width: 13%;
    }
}
@media (max-width: 991px) {
    .partners__item{
        max-width: unset;
    }
}

.preview-slider {
    position: relative;
}

.preview-slider__prev {
    position: absolute;
    font-size: 20px;
    z-index: 2;
    width: 40px;
    cursor: pointer;
    left: 0;
    color: #898383;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 2px;
}

.preview-slider__prev:focus{
    outline: none;
}
.preview-slider__next {
    position: absolute;
    font-size: 20px;
    z-index: 2;
    width: 40px;
    cursor: pointer;
    right: 0;
    color: #898383;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding-right: 2px;
}
.preview-slider__next:focus{
    outline: none;
}