.products_img {
    overflow: hidden;
    margin-top: 70px;
}
.products_img_right {
    border-radius: 1.7rem;
    border: 3px solid var(--primary);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products_img_right img {
    height: 500px;
}
.products_img .gallery-scroll{
    height: 400px;
    overflow-y: auto;
    padding: 20px 10px 5px;
}
/* .products_img .gallery-scroll::-webkit-scrollbar {
    display: block;
    width: 10px;
}
.products_img .gallery-scroll::-webkit-scrollbar-thumb {
    background-color: gray;
    border-right: none;
    border-left: none;
} */
@media (max-width: 767px) {
    .products_img_right {
        height: 300px;
    }
    .products_img_right img {
        height: auto;
    }
}
.products_img_left-1 {
    border-radius: 1.7rem;
    position: relative;
    background-color: #2986fe26;
}
.products_img_left-1 img {
    height: 200px;
}
.products_img_left-2 {
    border-radius: 1.7rem;
    background-color: var(--primary);
    position: relative;
}
.products_img_left-2 img {
    height: 140px;
}
.products_img_left-3 {
    border-radius: 1.7rem;
    background-color: var(--primary);
    position: relative;
}
.products_img_left-3 img {
    height: 140px;
}
.products_img_left-1 .num {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: var(--yellow);
    position: absolute;
    right: -5px;
    top: -18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* product-discription */
.product-discription .square {
    width: 25px;
    height: 25px;
    background-color: var(--yellow);
}
.product-discription .pro-name {
    color: var(--primary);
    margin-right: 15px;
    font-family: notokufiarabic;
}
.product-discription .pro-desc {
    margin-right: 40px;
    /* -webkit-line-clamp: 3; */
    /* display: -webkit-box; */
    /* overflow-y: clip; */
    /* -webkit-box-orient: vertical; */
    margin-bottom: 0;
}
.product-discription .product-feat .feat-title {
    color: var(--primary);
    margin-right: 15px;
}

.product-discription .product-feat ul li {
    display: flex;
    /* align-items: center; */
    margin-bottom: 20px;
}
.product-discription .product-feat ul li i {
    color: var(--primary);
    font-size: 20px;
    margin-left: 20px;
}
.product_departments {
    background-color: #fafafa;
    border-radius: 10px;
    padding: 20px;
}
.product-discription .departments .title {
    font-family: Barada;
    padding-right: 10px;
    color: var(--primary);
    border-right: 3px solid var(--primary);
    margin-bottom: 20px;
}
.product-discription .departments ul li {
    background-color: #2986fe26;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 10px;
    transition: 0.5s;
}
.product-discription .departments ul li:hover {
    background-color: var(--primary);
}
.product-discription .departments ul li:hover p {
    color: var(--white);
}
.product-discription .departments ul li p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    color: #000;
}
.product-discription .departments ul li p span {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Technical Data Sheet */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    border-radius: 10px 10px 0 0;
    display: flex;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}
/* .tab button:hover {
    background-color: #ddd;
} */
/* .tab button.active {
    background-color: #ccc;
} */
.tab button.active {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    font-weight: bold;
}
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/* Table */
.table {
    border: 1px solid #dee2e6;
}
.table.single-pro-tbl {
    text-align: start;
}
.table tbody td,
.table tbody td,
.table thead th {
    vertical-align: bottom;
    border: 1px solid #dee2e6;
    color: #fff;
}
.table.single-pro-tbl th {
    color: black;
    font-size: 16px;
    background-color: #ececec;
    letter-spacing: 0;
    text-wrap: nowrap;
}
.table.single-pro-tbl td {
    vertical-align: bottom;
    color: black;
    overflow: hidden;
    letter-spacing: 0;
    text-wrap: nowrap;
}
@media (min-width: 320px) and (max-width: 767px) {
    .table.single-pro-tbl th {
        font-size: 10px;
    }
    .table.single-pro-tbl td {
        font-size: 9px;
    }
}

/* rating */
.rating {
    display: inline-block;
    display: flex;
    flex-direction: row-reverse;
}

.rating input {
    display: none;
}

.rating label {
    float: right;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
}

.rating label:before {
    content: "\2605";
    font-size: 30px;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: var(--yellow);
    transition: color 0.3s;
}

/* form */
.contact-form form input {
    padding: 10px;
}
.contact-form .title {
    color: var(--primary);
    font-family: notokufiarabic;
}
.contact-form form #submit {
    background: var(--primary);
    padding: 10px 40px;
    width: 150px;
    color: #fff;
    border: 1px solid var(--primary);
    transition: 0.5s;
}
.contact-form form #submit:hover {
    color: var(--primary);
    background-color: #fff;
}
.contact-form form .code input:read-only {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
}
.contact-form form .code input:read-only:focus {
    box-shadow: none;
}
.contact-form form .code .icon-seral {
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    border-radius: 5px 0 0 5px;
}
.contact-form form .code .icon-seral:hover {
    color: #fff;
}
.rate i {
    font-size: 20px;
    margin-right: 10px;
    transition: 0.5s;
    cursor: pointer;
}
.rate i:hover {
    color: var(--yellow);
}
.share .social-links i {
    margin-right: 10px;
    padding: 10px;
    font-size: 15px;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: var(--primary);
    color: #fff;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share .social-links i.fa-facebook-f {
    background-color: #3b5998;
}
.share .social-links i.fa-twitter {
    background-color: #1da1f2;
}
.share .social-links i.a-linkedin-in {
    background-color: #0a66c2;
}
.share .social-links i.fa-whatsapp {
    background-color: #25d366;
}
.share .social-links i.fa-instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}
.share .social-links i:hover {
    transform: scale(1.1);
}
.pro-rate i {
    margin-right: 10px;
    color: var(--yellow);
    font-size: 20px;
}

/*  */
/*  */
.last-news .custom {
    border-top: 2px solid var(--primary);
    padding-top: 20px;
}
.title .head {
    color: var(--primary);
}
.last-news .news-content .overlay {
    padding: 10px;
    position: absolute;
    width: 100%;
    height: 50%;
    right: 0;
    bottom: 0;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: end;
}

.last-news .news-content .overlay .title {
    display: -webkit-box;
    overflow-y: clip;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    /* text-align: justify; */
    padding-bottom: 10px;
    text-align: end;
}
.owl-stage-outer {
    direction: ltr;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
    display: none !important;
}

.height-info img {
    object-fit: cover;
    aspect-ratio: 1/1;
}

.key-words .key-tabs a {
    color: #fff;
    border: 1px solid var(--primary);
    background: var(--primary);
    font-size: 12px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
    border-radius: 4px;
}
.key-words .key-tabs a:hover {
    color: #000;
    border: 1px solid #dddddd;
    background: transparent;
}
/* .last-news */
.product-item {
    background-color: var(--primary);
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #00000040;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    direction: rtl;
    transition: 0.5s;
    border: 1px solid #fff;
}
.product-item:hover {
    background-color:  var(--white) !important;
    box-shadow: 6px 6px 0px 0px #00000010;
    border: 1px solid #00000040;
}
.product-item:hover p {
    color: #000;
}
.product-item:hover .btn {
    border: 1px solid #000;
}

.last-news .product-item .product-img {
    margin-top: 50px;
    height: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.last-news .product-item .info {
    color: #fff;
}
.last-news .title{
    width: fit-content;
}
.title .head {
    color: var(--primary);
}
.last-news .product-item .info .name {
    color: var(--yellow);
    /* margin-left: 10px; */
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
    font-family: notokufiarabic;
}
.last-news .product-item .info p {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
    text-align: justify;
}
.last-news .product-item .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.last-news .product-item .foot .more {
    background-color: #fff;
    border-radius: 8px;
    padding: 6px;
    padding: 8px 50px;
}
.last-news .product-item .foot i {
    background-color: #fff;
    color: var(--primary);
    border-radius: 8px;
    padding: 10px;
}
@media (min-width: 320px) and (max-width: 767px) {
    .last-news .content {
        flex-direction: column-reverse;
    }
}
@media (min-width: 768px) and (max-width: 990px) {
    .last-news .product-item {
        padding: 10px;
    }
}
@media (min-width: 1200px) {
    .product .product-info .title {
        width: 65%;
    }
}
/*products*/

.products .departments .title {
    padding-left: 10px;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    margin-bottom: 20px;
}

.products .departments ul li {
    background-color: #2986fe26;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 10px;
    transition: 0.5s;
}

.products .departments ul li:hover {
    background-color: #2986fe;
}

.products .departments ul li p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    color: #000;
    font-family: notokufiarabic;
}

.products .departments ul li p span {
    background-color: #fff;
    color: #000;
    padding: 5px;
    border-radius: 5px;
}

.products .product-item {
    background-color: #2986fe;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #fff;
    transition: 0.5s;
}
.product-item:hover {
    background-color:  var(--white) !important;
    box-shadow: 6px 6px 0px 0px #00000010;
    border: 1px solid #00000040;
}
.product-item:hover p {
    color: #000;
}
.product-item:hover .btn {
    border: 1px solid #000;
}

.products .product-item .product-img {
    margin-top: 50px;
    height: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.products .product-item .info {
    color: #fff;
}

.products .product-item .info .name {
    color: var(--yellow);
    margin-left: 10px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
    font-family: notokufiarabic;
}

.products .product-item .info p {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
    text-align: justify;
}

.products .product-item .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products .product-item .foot .more {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 60px;
    transition: 0.5s;
}

.products .product-item .foot .more:hover {
    opacity: 0.7;
}

.products .product-item .foot i {
    background-color: #fff;
    color: #2986fe;
    border-radius: 8px;
    padding: 10px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .products .content {
        flex-direction: column-reverse;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .products .product-item {
        padding: 10px;
    }
}

@media (min-width: 1200px) {
    .product .product-info .title {
        width: 30%;
    }
}
