
@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);

body {
    overflow-x: initial;
}

.footer__bottom {
    overflow-x: hidden;
}

.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 {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article__details {
    color: #828284;
    font-size: var(--font-size-1);
}

.article__title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.blog-slider .article__title {
    font-size: 24px;
    font-size: 20px;
}

.blog-slider, .owl-stage-outer, .owl-stage {
    display: flex;
    height: 100%;
}

.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;
}

.article__btn {
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto !important;
}

    .article__btn:hover {
        background-color: #6dcd1f;
    }

.article__img img {
    border-radius: 20px;
}

.blog-slider .article {
    padding: 20px 32px;
}

.blog-slider .article__btn {
    margin: 0 auto 0 0;
}


/* -------------------------- slider ----------- */
.owl-prev, .owl-next {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    transition: all 0.3s;
}

    .owl-prev:hover, .owl-next:hover {
        background-color: #6dcd1f;
    }


.owl-next {
    left: -10px;
    background: #fff url(../images/left.png) center no-repeat;
}

    .owl-next:hover {
        background-image: url(../images/left-white.png);
        background-color: #6dcd1f;
    }

.owl-prev {
    right: -10px;
    background: #fff url(../images/right.png) center no-repeat;
}

    .owl-prev:hover {
        background-image: url(../images/right-white.png);
        background-color: #6dcd1f;
    }

.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;
}

.owl-stage {
    display: flex;
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-dots {
    display: none;
}

.white-box {
    padding: 24px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 40px -10px rgba(0, 0, 0, 0.45);
}

.page-title {
    color: var(--color-green-primary);
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
    font-size: var(--font-size-3);
}

    .page-title::before {
        content: " ";
        width: 150px;
        display: inline-block;
        position: absolute;
        bottom: -17px;
        height: 4px;
        background: linear-gradient(to right,#08B30300,#08B30385,#08B303);
        right: 0;
    }

.article__menu li {
    background: linear-gradient(270deg, #D9D9D9 0%, #FFFFFF 100%);
    border-radius: 10px;
    padding: 10px 13px;
    font-weight: 500;
    color: #000;
    font-size: var(--font-size-2);
    transition: all 0.3s;
}

    .article__menu li span {
        color: var(--color-green-primary);
        font-size: var(--font-size-3);
    }

    .article__menu li:hover {
        background: linear-gradient(270deg, #D9D9D9 50%, #FFFFFF 100%);
    }

.main-btn {
    padding: 10px 20px;
    background-color: var(--color-green-primary);
    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: 500;
    width: 300px;
}

    .main-btn.big {
        font-size: var(--font-size-3);
        padding: 15px 20px;
    }

.ltr .page-title::before {
    left: 0;
    background: linear-gradient(to left,#08B30300,#08B30385,#08B303);
}

.ltr .blog-slider .article__btn {
    margin: 0 0 0 auto;
}
/* ------------------------------ single blog */
.aside-blog .article {
    height: auto;
}

.blog-details span {
    margin-left: 15px;
    /* color: var(--color-green-primary); */
    font-size: var(--font-size-2);
}

.blog-details svg {
    margin-left: 3px;
}

.ltr .blog-details span {
    margin-left: 0;
    margin-right: 15px;
}

.ltr .blog-details svg {
    margin-left: 0;
    margin-right: 3px;
}

.blog-title {
    color: var(--color-green-primary);
    font-weight: 600;
    font-size: 40px;
}

.blog__body p {
    color: #828284;
    font-weight: 300;
    text-align: justify;
    line-height: 37px;
    margin-bottom: 12px;
}

.blog__body h2 {
    font-weight: 500;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 16px;
}

.aside-blog {
    position: sticky;
    top: 65px;
}

.form__lable {
    color: #8C8C8C;
    font-size: var(--font-size-2);
    display: block;
    margin-bottom: 10px;
    font-weight: 200;
}

.form__input {
    height: 45px;
    border: 1px solid #eee;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 100%;
    font-size: var(--font-size-2);
}

.form__textarea {
    min-height: 180px;
    resize: none;
}

.form__input:focus {
    border-color: var(--color-green-primary);
}

.comment::before {
    content: " ";
    position: absolute;
    height: 102%;
    width: 25px;
    border-radius: 7px;
    top: 50%;
    right: -1px;
    display: block;
    z-index: -2;
    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;
}

.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);
    font-weight: 500;
    font-size: var(--font-size-3);
}

.comment__desc {
    color: #757775;
    font-weight: 500;
    font-size: var(--font-size-1);
    line-height: 25px;
}

.comment__left {
    margin-right: 20px;
}

.comment__date {
    font-weight: 600;
    font-size: var(--font-size-0);
}

.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;
}





.download-box .main-btn {
    margin: 0;
    width: auto;
}

/* -------------------------------- comment section  */



.alert {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert__head {
    background-color: var(--color-blue-1);
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-bottom: 5px;
    font-size: var(--font-size-3);
    font-weight: 400;
    margin-bottom: 15px;
}

.danger .alert__head {
    background-color: #de6f7a;
}

.alert__content {
    padding: 20px 10px 30px;
}

.alert__message {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.alert__detail {
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-medium);
    font-size: 18px;
}

.alert__detail {
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-medium);
    font-size: 18px;
}

.alert__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.danger .alert-btn {
    background-color: #b23a45;
}

.alert-btn {
    background-color: var(--color-blue-1);
    border-radius: 10px;
    height: 46px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-yekan-regular);
    color: #fff;
    min-width: 108px;
    border: 0;
    width: 100%;
    font-size: 17px;
    margin-bottom: 5px;
    max-width: 300px;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

    .success .alert__head {
        background-color: #45be41;
    }

    .success .alert-btn {
        background-color: var(--color-green-primary);
    }

/* new  */


.project__row .article .article__title {
    font-size: var(--font-size-1);
}

.project:hover img {
    transform: scale(1.2) translate(0,0);
    transition: 500ms all ease;
}

.project {
    /* padding: 12px; */
    overflow: hidden;
}

.project__content {
    padding: 12px;
}

.project__title {
    font-size: var(--font-size-1);
    font-weight: 400;
}

.project__img {
    overflow: hidden;
    /* border-radius:0 0  20px 20px; */
}

    .project__img img {
        /* border-radius: 0 0 20px 20px; */
    }

.project {
    cursor: pointer;
    position: relative;
}

.project__details {
    font-size: var(--font-size-0);
}

.project:hover {
    /* border-color: var(--color-green-primary); */
}

.project .project__gallery {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    align-items: center;
    display: flex;
    border-radius: 5px;
    padding: 1px 3px;
    font-size: var(--font-size-0);
}

.gallery-modal {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100vw;
    height: 100%;
    padding: 50px;
    overflow-y: auto;
    display: none;
}

    .gallery-modal .gallery {
        display: none;
    }

    .gallery-modal .gallery-modal__close {
        position: absolute;
        top: 15px;
        left: 15px;
        cursor: pointer;
    }

    .gallery-modal .loader {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 5px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.thumbnail {
    overflow: hidden;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 140px;
    display: flex;
    transition: all 0.3s;
    border: 2px solid transparent;
    border-radius: 10px;
}

    .thumbnail.active {
        border: 2px solid #fff;
    }

.big-image,
.thumbnail__image {
    max-width: 100%;
    border-radius: 2px;
}

.big-image {
    border: 5px solid #fff;
    max-width: 70%;
}

.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%;
    background: none;
}

.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%;
    background: none;
}

.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;
}

@media only screen and (max-width:992px) {
    .blog-slider .owl-next, .blog-slider .owl-prev {
        width: 36px;
        height: 36px;
    }

    .blog-slider .owl-next {
        left: 0;
    }

    .blog-slider .owl-prev {
        right: 0;
    }
}

@media only screen and (max-width:768px) {
    .blog-slider .article {
        padding: 20px;
    }

    .blog-slider .article__img {
        min-height: 200px;
    }

        .blog-slider .article__img img {
            object-fit: cover;
        }

    .blog-slider .owl-next {
        /* left: px; */
    }

    .blog-slider .owl-prev {
        /* right: -5px; */
    }

    .blog-slider .owl-next, .blog-slider .owl-prev {
        width: 31px;
        height: 31px;
    }

    .blog-title {
        font-size: 25px;
    }

    .blog__body h2 {
        font-size: 20px;
    }

    .main-btn.big {
        width: 200px;
    }

    .file__name {
        font-size: var(--font-size-1);
    }

    .download-box .main-btn {
        font-size: var(--font-size-1);
    }

    .download-box svg {
        flex-shrink: 0;
    }

    .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;
    }

    .big-image {
        max-width: 90%;
    }
}

@media only screen and (max-width:576px) {
    .thumbnail__container .owl-next, .thumbnail__container .owl-prev {
        width: 22px;
        height: 22px;
    }

    .thum__wrapper {
        padding: 0 30px;
    }

    .gallery-modal {
        padding: 50px 25px;
    }

    .big-image {
        max-width: 100%;
    }
}



.alert {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert__head {
    background-color: var(--color-blue-1);
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-bottom: 5px;
    font-size: var(--font-size-3);
    font-weight: 400;
    margin-bottom: 15px;
}

.danger .alert__head {
    background-color: #de6f7a;
}

.alert__content {
    padding: 20px 10px 30px;
}

.alert__message {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.alert__detail {
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-medium);
    font-size: 18px;
}

.alert__detail {
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-medium);
    font-size: 18px;
}

.alert__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.danger .alert-btn {
    background-color: #b23a45;
}

.alert-btn {
    background-color: var(--color-blue-1);
    border-radius: 10px;
    height: 46px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-yekan-regular);
    color: #fff;
    min-width: 108px;
    border: 0;
    width: 100%;
    font-size: 17px;
    margin-bottom: 5px;
    max-width: 300px;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

    .success .alert__head {
        background-color: #45be41;
    }

    .success .alert-btn {
        background-color: var(--color-green-primary);
    }

/* -------------------------------- comment section  */
.alert {
    font-size: 12px;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-success {
    background: #28a745;
    color: white;
}

.alert-error {
    background: #ee264f;
    color: white;
}

.text-danger {
    color: red;
    /* flex-basis: 100%; */
    position: absolute;
    top: 100%;
    font-size: 11px;
    /* left: 0; */
    right: 126px;
}




.blog__body h1, .blog__body h2, .blog__body h1 *, .blog__body h2 * {
    font-size: 1.5rem !important
}

.blog__body h3, .blog__body h3 * {
    font-size: 1.4rem !important;
    line-height: 2rem !important
}

.blog__body h4, .blog__body h4 * {
    font-size: 1.3rem !important;
    line-height: 2.5rem !important
}

.blog__body h5, .blog__body h5 * {
    font-size: 1.2rem !important
}

.blog__body p {
    font-size: 15px !important;
    margin-bottom: 7px;
    color: var(--color-text);
    line-height: 30px !important;
}

    .blog__body p * {
        font-size: 15px !important;
        color: var(--color-text) !important;
        line-height: 30px !important;
    }

.blog__body *, .blog__body li {
    color: var(--color-text);
    font-weight: 300;
    font-size: 15px
}

.blog__body h6, .blog__body h6 * {
    font-size: 1rem !important;
    line-height: 1.5rem !important
}

    .blog__body h1, .blog__body h2, .blog__body h3, .blog__body h4, .blog__body h5, .blog__body h6,
    .blog__body h1 *, .blog__body h2 *, .blog__body h3 *, .blog__body h4 *, .blog__body h5 *, .blog__body h6 * {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
        color: #4d4d4d !important;
        font-weight: 600 !important
    }

.blog__body strong {
    font-weight: 600;
    color: #4d4d4d !important
}

.blog__body ul li::before {
    content: " ";
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4d4d4d;
    display: inline-block;
    margin-left: 7px
}

.blog__body p {
    color: #4d4d4d;
}

.blog__body img {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 100%
}

.blog__body li {
    line-height: 40px
}

@media only screen and (max-width:576px) {
    .blog__body h1, .blog__body h2 {
        font-size: 1.4rem !important;
        line-height: 1.5rem !important
    }

    .blog__body h3 {
        font-size: 1.3rem !important;
        line-height: 1.5rem !important
    }

    .blog__body h4 {
        font-size: 1.2rem !important;
        line-height: 1.5rem !important
    }

    .blog__body h5 {
        font-size: 1.1rem !important
    }

    .blog__body p {
        font-size: 15px !important;
        margin-bottom: 7px;
        line-height: 25px
    }

    .blog__body h6 {
        font-size: 1rem !important;
        line-height: 1.5rem !important
    }

    .blog__body h1, .blog__body h2, .blog__body h3, .blog__body h4, .blog__body h5, .blog__body h6 {
        margin-bottom: 1rem;
        margin-top: 1rem;
        color: #4d4d4d;
        font-weight: 600
    }

    .span_TextInLine {
        font-size: 18px;
    }
}

.blog__body iframe {
    width: 100%;
    height: 100%;
}

/* ------------------------------ related-products */
.related-products {
    margin: 30px 0;
}

.product {
    display: inline-flex;
    flex-direction: row;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(33, 33, 33, 0.07) 0px 2px 5px 2px;
    padding: 12px;
    width: 100%;
    align-items: center;
}

.product__img {
    max-width: 120px;
}

    .product__img img {
        margin: 0 !important;
        border-radius: 10px;
    }

.product__detail {
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product__title {
    color: var(--color-green-primary) !important;
    font-weight: 600 !important;
}

.product__desc {
    line-height: 24px !important;
    font-size: 13px !important;
}

.product__discount {
    background-color: red;
    color: #fff;
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 12px !important;
    margin-left: 5px;
}

.product__price {
    margin-top: auto;
    padding-left: 10px;
}

.product__off {
    color: rgb(163, 163, 163);
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: line-through;
}

.product__total {
    color: rgb(38, 38, 38);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.flex-column {
    flex-direction: column;
}

.related-wrapper .owl-stage {
    padding: 5px 0;
}

.related-wrapper .owl-stage-outer {
    max-width: 100%;
}

.related-wrapper .owl-item {
    padding: 2px 3px;
}

.related-wrapper .owl-prev {
    display: none;
}

.related-wrapper .owl-next {
    display: none;
}

.related-wrapper .owl-dots:not(.disabled) {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

    .related-wrapper .owl-dots:not(.disabled) .owl-dot {
        width: 7px;
        height: 7px;
        background-color: #d5d3d3;
        border: none;
        border-radius: 50%;
        margin: 0 2px;
        padding: 0 !important;
    }

        .related-wrapper .owl-dots:not(.disabled) .owl-dot.active {
            background-color: var(--color-green-primary);
            width: 18px;
            border-radius: 5px;
        }

.blog__body a {
    background-color: var(--color-green-primary);
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: 0 !important;
    text-decoration: none !important;
}