.container h2 {
    margin-top: calc(80 / var(--bw) * 100vw);
    margin-bottom: calc(40 / var(--bw) * 100vw);
}
.container h4 {
    color: var(--color-dark-primary);
    font-weight: bold;
}
.list_options {
    margin-top: calc(88 / var(--bw) * 100vw);
    gap: calc(47 / var(--bw) * 100vw);
    justify-content: space-between;
}
.list_options .item_options {
    width: 100%;
}
.list_options .item_options img {
    border-radius: calc(20 / var(--bw) * 100vw);
    width: 100%;
    margin-top: calc(32 / var(--bw) * 100vw);
    margin-bottom: calc(24 / var(--bw) * 100vw);
}
.price-option {
    margin-bottom: calc(120 / var(--bw) * 100vw);
    flex-direction: column;
    gap: calc(48 / var(--bw) * 100vw);
}
@media (max-width: 767px) {
    .list_options {
        flex-direction: column;
   }
    .list_options .item_options img {
        margin-top: calc(24 / var(--bw) * 100vw);
        margin-bottom: calc(18 / var(--bw) * 100vw);
   }
    .price-option {
        gap: calc(32 / var(--bw) * 100vw);
   }
   .table_price table {
    display: table !important;
    }
    .tab_price_options {
        flex-direction: column;
    }
    .tab_price_options table {
        width: 100%;
        margin: 0;
        height: fit-content;
        margin-bottom: calc(16 / var(--bw) * 100vw);
    }
    .tab_price_options .content-des {
        width: 100%;
        padding-left: 0;
    }
}