

/* Start:/local/templates/aobig/css/product.css?17148150603414*/
:root {
    --main-color-black: #231F20;
    --main-color-yellow: #FFCD08;
    --main-color-white: #FFFFFF;
    --main-color-gray: #E2E2E2;
}

.product {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 60px;
    gap: 60px;
}

.product_desc {
    width: 33%;
    display: flex;
    justify-content: end;
    align-items: start;
    gap: 20px;
}

.product_desc_line {
    width: 1px;
    background: var(--main-color-yellow);
    height: 284px;
    margin-top: 3px;
}

.product_desc_inside {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.product_desc_inside p {
    color: #727272;
    font-size: 16px;
    line-height: 140%;
    max-width: 340px;
}

.product_image {
    width: 33%;
    height: 400px;
    padding: 10px;
    border: 1px solid #e2e2e2;
    transition: all .5s ease;
}

.product_image:hover {
    transform: scale(1.03);
}

.product ~ .cacl {
    margin-top: 80px;
}

.product_info {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 13px;
    width: 35%;
}

.product_info_item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px dashed #E2E2E2;
    padding: 2px 0;
}

.product_info_title {
    font-size: 16px;
    line-height: 140%;
    color: #727272;
    font-family: Manrope;
}

.product_info_text {
    font-size: 16px;
    font-family: Manrope;
    font-weight: 600;
    color: var(--main-color-black);
}

.btn_product {
    margin-top: 16px;
}

.btn_product_second {
    display: none;
}

@media screen and (max-width: 1280px) {
    .product_image {
        height: 320px;
        width: 320px;
    }
    .product {
        gap: 20px;
    }
}

@media screen and (max-width: 1140px) {
    .product_desc {
        width: 100%;
    }
    .product_desc p {
        max-width: none;
    }
    .product_desc_line {
        height: 130px;
    }
    .product {
        flex-wrap: wrap;
        justify-content: start;
        gap: 30px;
    }
    .product_info {
        width: 50%;
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .product {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .btn_product {
        display: none;
    }
    .product_desc_line {
        display: none;
    }
    .product_desc_inside p {
        font-size: 14px;
    }
    .product_desc_inside {
        gap: 20px;
    }
    .product_image {
        width: 100%;
        max-width: 320px;
        height: 320px;
        border-radius: 10px;
        box-shadow: 0px 4px 18px 0px rgba(153, 153, 153, 0.25);
        background: #fff;
    }
    .product_desc_inside p:first-child {
        font-weight: 600;
        font-size: 14px;
    }
    .btn_product_second {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        max-width: 400px;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0px 8px 18px 0px rgba(153, 153, 153, 0.10);
    }
    .product_info {
        width: 100%;
    }
    .product_info_title, .product_info_text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .product_image {
        max-width: 100%;
    }
}
/* End */
/* /local/templates/aobig/css/product.css?17148150603414 */
