@import url(fonts.css);
@import url(grid.css);
@import url(global.css);
@import url(header.css);
@import url(owl.carousel.min.css);
@import url(owl.theme.default.min.css);

.owl-stage {
    display: flex;
}

.thumbnail {
    overflow: hidden;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 140px;
}

.big-image,
.thumbnail__image {
    max-width: 100%;
    border-radius: 10px;
}

.thumbnail__container .owl-prev {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    background-color: var(--color-yellow-primary);
    border: 0;
    border-radius: 50%;
}

.thumbnail__container .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    background-color: var(--color-yellow-primary);
    border: 0;
    border-radius: 50%;
}

.thumbnail__container .owl-next,
.thumbnail__container .owl-prev {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thum__wrapper {
    /* overflow: hidden; */
    position: relative;
    padding: 0 48px;
}

.thumbnail__container {
    max-height: 760px;
    gap: 5px;
    padding-bottom: 10px;
}

.owl-stage-outer {
    overflow: hidden;
}

.page-title {
    color: var(--color-green-primary);
    font-weight: 600;
    position: relative;
    margin-bottom: 60px;
}

    .page-title::before {
        content: " ";
        width: 300px;
        display: inline-block;
        position: absolute;
        bottom: -17px;
        height: 4px;
        background: linear-gradient(to right, #08B30300, #08B30385, #08B303);
        right: 0;
    }

.comment__stars {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
}

.rtl .comment__stars {
    margin-left: 8px;
}

.ltr .comment__stars {
    margin-right: 8px;
}

.gold-star {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='23' viewBox='0 0 24 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0.5L14.6942 8.7918H23.4127L16.3593 13.9164L19.0534 22.2082L12 17.0836L4.94658 22.2082L7.64074 13.9164L0.587322 8.7918H9.30583L12 0.5Z' fill='%23FFF323'/%3E%3C/svg%3E");
}

.product-title {
    margin-bottom: 40px;
}

.comment__stars-rate {
    color: #383838;
    font-size: var(--font-size-4);
    font-weight: 500;
}

.rtl .comment__stars-rate {
    margin-left: 14px;
}

.ltr .comment__stars-rate {
    margin-right: 14px;
}

.comments__num {
    color: #A7A7A7;
    font-size: var(--font-size-3);
    font-weight: 200;
}

.color-lable {
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #F5F5F5;
    cursor: pointer;
}

.property-title {
    color: #000;
    font-weight: 400;
    font-size: var(--font-size-2);
}

.rtl .property-title {
    margin-left: 12px;
}

.ltr .property-title {
    margin-right: 12px;
}

.color-lable input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

.color-lable img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.rtl .color-lable {
    margin-left: 12px;
}

.ltr .color-lable {
    margin-right: 12px;
}

.color-lable.active {
    border: 2px solid var(--color-green-primary);
}

.count {
    width: 43px;
    height: 43px;
    display: block;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus {
    background-color: var(--color-green-primary);
}

.minus {
    background-color: #D0D0D2;
}

.count-num {
    color: var(--color-green-primary);
    font-size: var(--font-size-3);
    appearance: none;
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtl .count-num {
    padding-right: 15px;
}

.ltr .count-num {
    padding-left: 15px;
}

.product-price {
    color: #000;
    font-weight: 500;
    font-size: 40px;
}

.rtl .product-price {
    margin-left: 10px;
}

.ltr .product-price {
    margin-right: 10px;
}

.gray-text {
    color: #828284;
    font-size: var(--font-size-3);
}

.property__title {
    color: #828284;
    font-weight: 200;
    font-size: var(--font-size-1);
}

.rtl .property__title {
    margin-left: 5px;
}

.ltr .property__title {
    margin-right: 5px;
}

.property__title::before {
    content: " ";
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--color-green-primary);
}

.rtl .property__title::before {
    margin-left: 5px;
}

.ltr .property__title::before {
    margin-right: 5px
}

.property__desc {
    font-weight: 500;
    color: #000;
    font-size: var(--font-size-1);
}

/* select 2 */
.select2-container {
    width: 100% !important;
}

.select2-selection {
    border-radius: 10px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--color-green-primary) !important;
    background-color: #F5F5F5;
}

.select2-container .select2-selection--single {
    height: 40px;
    display: flex;
    align-items: center;
}

.select2-container--open {
    border-radius: 10px !important;
    /* overflow: hidden !important; */
}

.select2-container--default .select2-results > .select2-results__options {
    border-radius: 10px !important;
}

.select2-dropdown {
    border-radius: 10px;
    border: 1px solid var(--color-green-primary);
    top: 1px;
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid var(--color-green-primary);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid var(--color-green-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #828284;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border: none;
        background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 1L9 9L1 1' stroke='%23828284' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
        width: 16px;
        height: 8px;
        background-position: center;
    }

.select2-container--default .select2-results__option--selected {
    background-color: #fff;
    color: #000;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #78df75;
}

.ltr .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 8px;
}


/* ---------------------------- */
.main-btn {
    padding: 10px 20px;
    background-color: var(--color-green-primary);
    color: #fff;
    border-radius: 15px;
    border: 0;
    font-family: inherit;
    margin-left: auto;
    margin-right: auto;
    display: table;
    font-size: var(--font-size-2);
    font-weight: 300;
}

    .main-btn.big {
        font-size: var(--font-size-3);
        padding: 15px 20px;
        min-width: 180px;
    }

.add-to-cart {
    width: 300px;
}

.rtl .add-to-cart {
    margin-left: 0;
}

.ltr .add-to-cart {
    margin-right: 0;
}


/* ----------------------------- services section */
.service__title {
    color: #828284;
    font-size: var(--font-size-2);
    font-weight: 300;
}

.service__img {
    min-height: 96px;
}

/* ----------------------------- tabs section ------------------- */
.blue-back {
    background-color: #E0E3E3;
    height: 210px;
    border-radius: 20px;
}

.tabs__wrapper {
    padding: 24px 38px;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0px 2px 90px -30px rgba(0, 0, 0, 0.45);
    margin-top: -170px;
    max-width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

.tab__link {
    display: block;
    padding: 6px 22px;
    border-radius: 40px;
    border: 1px solid transparent;
    cursor: pointer;
}

    .tab__link.active {
        border-color: var(--color-green-primary);
        color: var(--color-green-primary);
    }

.tab__content p {
    line-height: 35px;
    color: #828284;
    font-weight: 200;
    font-size: var(--font-size-1);
    text-align: justify;
}

.form__lable {
    color: var(--color-green-primary);
}

.rtl .form__lable {
    margin-left: 7px;
}

.ltr .form__lable {
    margin-right: 7px;
}

.form__input {
    height: 50px;
    background-color: #F5F5F5;
    border-radius: 50px;
    border: none;
    flex-grow: 1;
    padding: 0 20px;
}

.form__textarea {
    width: 100%;
    height: 200px;
    border-radius: 30px;
    resize: none;
    padding: 20px;
}


.gold-star {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 1px;
    cursor: pointer;
    background: url("data:image/svg+xml,%3Csvg width='24' height='22' viewBox='0 0 24 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z' fill='%23FFF323'/%3E%3C/svg%3E") center no-repeat;
}

.gray-star {
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin: 0 1px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='22' viewBox='0 0 24 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1.61804L14.2186 8.4463L14.3309 8.7918H14.6942H21.8738L16.0654 13.0119L15.7715 13.2254L15.8837 13.5709L18.1024 20.3992L12.2939 16.1791L12 15.9656L11.7061 16.1791L5.89763 20.3992L8.11627 13.5709L8.22853 13.2254L7.93464 13.0119L2.12616 8.7918H9.30583H9.6691L9.78136 8.4463L12 1.61804Z' fill='white' stroke='%23828284'/%3E%3C/svg%3E") center no-repeat;
}

.comment__rate input[type="radio"] {
    display: none;
}

/* ------------------------- product */
.product {
    border: 3px solid #E0E3E3;
    background-color: #F5F5F5;
    padding: 16px;
    border-radius: 30px;
    height: 100%;
}

.product__title {
    color: #000;
    font-weight: 600;
    font-size: var(--font-size-3);
}

.product__price {
    color: #EF304D;
    font-size: var(--font-size-2);
}

    .product__price sub {
        vertical-align: middle;
        font-size: var(--font-size-small);
    }

/* ------------------------ article */
.article {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sample-box {
    border-style: solid;
    border-width: 2px;
    border-color: rgba(153, 162, 163,0.3);
    border-radius: 20px;
    background-image: -moz-linear-gradient( 90deg, rgba(60,60,59,0.3) 0%, rgba(188,188,188,0.3) 0%, rgba(233,233,233,0.3) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(60,60,59,0.3) 0%, rgba(188,188,188,0.3) 0%, rgba(233,233,233,0.3) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(60,60,59,0.3) 0%, rgba(188,188,188,0.3) 0%, rgba(233,233,233,0.3) 100%);
    transition: all 0.3s;
}

.article__img img {
    border-radius: 20px;
}

.article__details {
    color: #828284;
    font-size: var(--font-size-1);
}

.article__title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.article__text {
    color: #828284;
    font-size: var(--font-size-2);
    padding-left: 10px;
    font-weight: 200;
    line-height: 24px;
    margin-bottom: 16px !important;
    text-align: justify;
}

.gray-btn {
    padding: 10px 20px;
    background-color: #8C8C8C;
    color: #fff;
    border-radius: 8px;
    border: 0;
    font-family: inherit;
    margin-left: auto;
    margin-right: auto;
    display: table;
    font-size: var(--font-size-2);
    font-weight: 300;
}

.article__btn:hover {
    background-color: #6dcd1f;
}

.article__btn {
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto !important;
}

.ltr .page-title::before {
    left: 0;
    background: linear-gradient(to left,#08B30300,#08B30385,#08B303);
}
/* ---------------------comments */
.comment::before {
    content: " ";
    position: absolute;
    height: 102%;
    width: 25px;
    border-radius: 7px;
    top: 50%;
    right: -1px;
    display: block;
    z-index: 0;
    transform: translateY(-50%);
    background-color: var(--color-green-primary);
}

.ltr .comment::before {
    right: unset;
    left: -5px;
}

.comment__link {
    padding: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 7px;
    color: #757775;
    margin-right: 5px;
    z-index: 3;
    background-color: #fff;
    position: relative;
}

.comment__img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 16px;
}

.ltr .comment__img {
    margin-right: 16px;
    margin-left: 0;
}

.comment__text p {
    color: #818181;
    font-weight: 500;
    font-size: var(--font-size-4);
}

    .comment__text p:last-child {
        font-size: var(--font-size-1);
    }

.comment__right {
    width: 210px;
    border-left: 2px solid #CBCBCB;
    margin-left: 20px;
    flex-shrink: 0;
}

.ltr .comment__right {
    border-left: 0 !important;
    border-right: 2px solid #CBCBCB;
    margin-left: 0;
    margin-right: 20px;
}

.comment__center {
    margin-left: auto;
}

.ltr .comment__center {
    margin-left: 0;
    margin-right: auto;
}

.comment__subject {
    color: var(--color-green-primary) !important;
    font-weight: 500 !important;
    font-size: var(--font-size-3) !important;
}

.comment__desc {
    color: #757775 !important;
    font-weight: 500 !important;
    font-size: var(--font-size-1) !important;
    line-height: 25px !important;
}

.comment__left {
    margin-right: 20px;
}

.comment__date {
    font-weight: 600 !important;
    font-size: var(--font-size-0) !important;
}

.rtl .comment__date {
    text-align: left;
}

.comment-answer {
    margin-right: 50px;
    position: relative;
    z-index: 2;
}

.ltr .comment-answer {
    margin-left: 50px;
    margin-right: 0;
}

.comment-answer::after {
    content: " ";
    position: absolute;
    width: 15px;
    height: 15px;
    right: 7%;
    top: -15px;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='95' height='74' viewBox='0 0 95 74'%3E%3Cdefs%3E%3Cfilter id='Polygon_13' x='0' y='0' width='95' height='74' filterUnits='userSpaceOnUse'%3E%3CfeOffset dy='3' input='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='3' result='blur'/%3E%3CfeFlood flood-opacity='0.161'/%3E%3CfeComposite operator='in' in2='blur'/%3E%3CfeComposite in='SourceGraphic'/%3E%3C/filter%3E%3C/defs%3E%3Cg transform='matrix(1  0  0  1  0  0)' filter='url(%23Polygon_13)'%3E%3Cpath id='Polygon_13-2' data-name='Polygon 13' d='M38.5 0 77 56H0Z' transform='translate(9 6)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
    background-position: top center;
}

.ltr .comment-answer::after {
    left: 7%;
    right: unset;
}

.login-modal {
    position: fixed;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 24px 31px;
    z-index: 120;
    border-radius: 24px;
    width: 500px;
    display: none;
}

@media only screen and (max-width: 768px) {
    .add-to-cart {
        margin-left: auto;
    }

    .form__lable {
        display: block;
        flex-basis: 100%;
        margin-bottom: 16px;
    }

    .form__row {
        flex-wrap: wrap;
    }

    .tab__link {
        white-space: nowrap;
        font-size: var(--font-size-1);
    }

    .tabs__menu {
        overflow: auto;
        justify-content: flex-start !important;
        padding-bottom: 20px;
    }

    .comment__link {
        flex-wrap: wrap;
    }

    .comment__left, .comment__right {
        /* flex-basis: 50%; */
        margin: 0;
    }

    .comment__right {
        flex-basis: 70%;
    }

    .comment__left {
        flex-basis: 30%;
    }

    .comment__right {
        /* margin-left: auto; */
        border-left: 0;
    }

    .ltr .comment__right {
        border: none;
        margin: 0;
    }


    .comment__center {
        flex-basis: 100%;
        order: 3;
        border-top: 2px solid #CBCBCB;
        padding-top: 10px;
        margin-top: 10px;
    }

    .comment__left {
        text-align: left;
    }

    .ltr .comment__left {
        text-align: right;
    }

    .comment-answer {
        margin-right: 20px;
    }

    .ltr .comment-answer {
        margin-right: 0;
        margin-left: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .page-title {
        font-size: 20px;
    }

        .page-title::before {
            width: 200px;
        }

    .comments__num, .comment__stars-rate {
        font-size: var(--font-size-1);
    }

    .property-title {
        font-size: 15px;
    }

    .count {
        width: 35px;
        height: 35px;
    }

    .product__title, .product__price {
        font-size: var(--font-size-1);
    }

    .products__row .col-6:nth-child(odd) {
        padding-left: 4px
    }

    .products__row .col-6:nth-child(even) {
        padding-right: 4px;
    }

    .count-num {
        padding: 0;
    }

    .tabs__wrapper {
        max-width: 100%;
        padding: 20px 10px;
    }

    .comment__text p {
        font-size: var(--font-size-2);
    }

        .comment__text p:last-child {
            font-size: var(--font-size-0);
        }

    .comment__subject {
        font-size: var(--font-size-2) !important;
    }
}


.login-modal .form__lable {
    display: block;
}

.login-modal .form__input {
    display: block;
    width: 100%;
}

.white-box__title {
    font-weight: 500;
}

.login-modal .main-btn {
    display: inline-block;
    min-width: 48%;
    text-align: center;
}

.login-modal .close-login {
    background-color: #757775;
}

@media only screen and (max-width: 576px) {
    .login-modal {
        max-width: 92vw;
        padding: 20px 15px;
        text-align: center;
    }

        .login-modal .main-btn {
            font-size: 13px;
            margin-bottom: 5px;
        }
}

.color-lable {
    position: relative;
}

.tooltip-text {
    position: absolute;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 2;
    /* width: 100px; */
    color: white;
    font-size: 12px;
    background-color: #192733;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

    .tooltip-text::before {
        content: "";
        position: absolute;
        transform: rotate(45deg) translateX(-50%);
        background-color: #192733;
        padding: 5px;
        z-index: 1;
        top: 2%;
        left: 50%;
    }

.color-lable:hover .tooltip-text {
    visibility: visible;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

table {
    width: 100%;
    margin-bottom: 1em;
    border-color: #ececec;
    border-spacing: 0;
}

    table tr th {
        font-size: 14px;
        font-weight: 500;
    }

th, td {
    padding: 0.5em;
    border-bottom: 1px solid #ececec;
    line-height: 1.3;
    font-size: .9em;
}

.rtl th, .rtl td {
    text-align: right;
}

.ltr th, .ltr td {
    text-align: left;
}

td {
    line-height: 35px;
    color: #828284;
    font-weight: 200;
    font-size: var(--font-size-1);
    text-align: justify;
    color: #666;
    font-weight: 300;
}

    td p {
        color: #666 !important;
        font-weight: 300 !important;
    }




.tabs__menu::-webkit-scrollbar {
    height: 3px;
}

.tabs__menu::-webkit-scrollbar-track {
    background-color: #e6e5e5;
    border-radius: 25px;
    position: absolute;
    height: 3px;
}

.tabs__menu::-webkit-scrollbar-thumb {
    background-color: var(--color-green-primary);
    border-radius: 25px;
}
.bg-gray {
    background-color: gray !important;
}