.product_page {
    max-width:1200px;
    padding:25px;
    margin:0 auto;
}
.product_page .fixed-btns-cart .top ,.product_page .fixed-btns-cart .bottom {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;
    font-size:1.5em;
    margin:0 auto;
}

.review .right_side {
    display:flex;
    align-items:center;
}

.review .checked {
    color: orange;
}


.add_review input[type="text"]  , .add_review select {
    background:#f1f1f1;
    height:45px;
    border-radius:30px;
    margin:10px;
}

.add_review button {
    background:#ecd050;
    color:#000;
    font-size:20px;
    width:100px;
    outline:none;
}

.review-container {
    width:500px;
}

.add_review textarea {
    background:#f1f1f1;
    border-radius:30px;
    margin:10px;
}

.reviews {
    height:300px;
    overflow-y:scroll;
}

.reviews .top_title {
    display:flex;
    align-items:center;
}

.reviews .avg_rating {
    font-size:18px;
    margin-bottom: 6px;
    margin-right: 3px;
}

.reviews .review {
    margin:20px 10px;
}

.add_review {
    margin-bottom:25px;
}

.review .content {
    margin-top:10px;
    font-size:17px;
}

.review .date {
    margin-right:15px;
}

.add_review {
    text-align:left;
}

.review .right_side {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    font-size:1.2em;
}

.review .rating_date {
    display:flex;
    align-items:center;
}

.product_show_after {
    font-size: 0.9rem;
}

.product_page .addons .addon {
    margin-bottom: 3rem;
}

.product_page .addons .addon label {
    margin-bottom: 0;
}

.product_page .addons .addon.error {
    outline: 1px solid red;
    outline-offset: 5px;
}

.product_page .addons .addon .title {
    margin-bottom: 0;
    background: black;
    padding: 0 1rem;
    border-radius: 0.1rem;
    color: white !important;
    font-size: 2.4rem;
}

.product_page .addons .addon .message {
    padding: 0 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.product_page .addons .addon .title[aria-expanded] {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_page .addons .addon .title i {
    transform: rotate(0);
    transition: transform .5s ease;
}

.product_page .addons .addon .title[aria-expanded="false"] i {
    transform: rotate(180deg);
}

.product_page .addon_options {
    margin-top: 15px;
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, min(141px));
}

.product_page .addon_option {
    user-select: none;
    height: 100%;
}

.product_page .addon_option input[type="checkbox"] {
    display: none;
}

.product_page .addon_option.text label,
.product_page .addon_option.image label,
.product_page .addon_option.pizza-grid {
    color: #212529;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 0.5em;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px;
    height: 100%;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.product_page .addon_option.text input[type="checkbox"]:checked + label,
.product_page .addon_option.image input[type="checkbox"]:checked + label {
    position: relative;
    overflow: hidden;
    vertical-align: top;
    border: 2px solid #333;
    background-color: #b7f4ba;
}

.product_page [data-multi_addon="1"] .addon_option.text input[type="checkbox"]:checked + label::after,
.product_page [data-multi_addon="1"] .addon_option.image input[type="checkbox"]:checked + label::after {
    position: absolute;
    content: attr(data-qty);
    top: 0;
    right: 0;
    width: 1.5em;
    height: 1.5em;
    border-bottom-left-radius: 0.4rem;
    background-color: #000;
    color: #fff;
}

.product_page .addon_option.image label,
.product_page .addon_option.pizza-grid,
.product_page .addon_option.image_circle .addon_info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_page .addon_option.image label .add_price,
.product_page .addon_option.image_circle .addon_info .add_price {
    color: red;
}

.product_page .addon_option.image_circle label {
    height: auto;
    width: auto;
    overflow: visible !important;
    padding: 0.2em;
}

.product_page .addon_option.image_circle .addon_info {
    text-align: center;
    margin-top: 0.2em;
}

.product_page [data-multi_addon="1"] .addon_option.image_circle input[type="checkbox"]:checked + label::after {
    border-radius: 50%;
}

.product_page .addon_option.image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    padding: 0.2em;
}

.product_page .addon_option.pizza-grid .addon_desc {
    transition: all 0.5s ease;
    font-size: 0.9em;
}

.product_page .addon_option.pizza-grid img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    padding: 0.2em;
}

.product_page .addon_option.pizza-fullwidth,
.product_page .addon_option.table label {
    border-radius: 10px;
    padding: 0.4em 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 0px 0px;
}

.product_page .addon_option.pizza-fullwidth .details,
.product_page .addon_option.table label .details {
    display: flex;
    text-align: start;
    align-items: center;
}

.product_page .addon_option.pizza-fullwidth,
.product_page .addon_option.table {
    grid-column: 1 / -1;
    height: auto;
    margin-bottom: auto;
}

.product_page .addon_option.pizza-fullwidth {
    flex-wrap: wrap;
}

.product_page .addon_option.pizza-fullwidth .first-row {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    align-items: center;
}

.product_page .addon_option.pizza label {
    margin: 0;
}

.product_page .addon_option.pizza .addon_desc {
    text-decoration: underline;
}

.product_page .addon_option.pizza .addon_price {
    font-weight: bold;
}

.product_page .addon_option.pizza .pizza-sizes {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.product_page .addon_option.pizza-grid .pizza-sizes {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.product_page .addon_option.pizza-grid label:nth-of-type(-n+3) {
    flex: 1 0 33%;
}

.product_page .addon_option.pizza-fullwidth img,
.product_page .addon_option.pizza .pizza-sizes img,
.product_page .addon_option.table img {
    width: 35px;
    height: 35px;
    margin: 0.1em 0.3em;
    transition: transform 0.1s ease;
    border-radius: 50%;
    border: 1px solid white;
}

.product_page .addon_option.pizza-grid .pizza-sizes img {
    margin: 0.1em 0.2em;
}

.product_page .addon_option.pizza .pizza-sizes img {
    max-width: 30px;
    max-height: 30px;
    box-shadow: 0 0 5px -2px;
    border-radius: 50%;
}

.product_page .addon_option.table input[type="checkbox"]:checked + label {
    background: #b7f4ba;
    border: 2px solid #333;
}

.product_page .addon_option.pizza input[type="checkbox"]:checked + label img {
    transform: scale(1.3);
    border-radius: 50%;
    border: 2px solid #333;
    padding: 2px;
    background: #92ff92;
}

.product_page .addon_option.table .addon_price {
    margin-right: 5px;
}

.product_page .addon_option.table input[type="checkbox"] + label .check-icon:before {
    font-family: "Font Awesome\ 5 Free";
    content: "\f111";
    margin: 0 5px;
    font-size: 1.5em;
    font-weight: 400;
}

.product_page .addon_option.table input[type="checkbox"]:checked + label .check-icon:before {
    content: "\f058";
    font-weight: 700;
    color: #12a55e;
}

.product_page .buttons_block .fixed-btns-cart {

    position:fixed;
    visibility:hidden;
    opacity:0;
    transform:translateY(100%);
    background:#fff;
    transition:all 0.6s;
    left:0;
    right:0;
    bottom:0;
    z-index:104;
    justify-content:Center;
    width:100%;
    padding:0px 10px;
    box-shadow: 3px 1px 3px 2px rgba(0,0,0,0.3);
}

.product_page .sku {
    font-size:18px;
}


.product_page .title , .product_page .oldprice , .product_page .productdescription {
    margin-bottom:25px;
}

.product_page .title {
    font-weight:bold;
    font-size: 2rem;
}
.product_page .divider {
    border-bottom: 1px solid rgba(0,0,0,.125);
    margin: 2rem 0;
}

.product_page .why_ys {
    font-size:16px;
    margin-top:0px;
}

.product_page .why_ys .titlewhy {
    font-weight:bold;
}

.product_page .card-header button {
    position: relative;
    width: 100%;
    text-align: right;
}
.product_page .card-header button:before {
    position: absolute;
    content: "+";
    left: 10px;
    top: 2px;
    font-size: 1.3rem;
}
.product_page .card-header button[aria-expanded="true"]:before {
    content: "-";
}
.product_page .card-body {
    font-size: 15px;
}

.product_page .addtocart , .product_page .buy_now{
    background: #000;
    margin: 20px 5px;
    padding: 7px 16px;
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 18px;
    font-weight:bold;
    cursor: pointer;
}

.product_page .buy_now {
    height:fit-content;
    height: 42px;
    padding-top: 0px;
}

.inner_btns {
    display:flex;
}

.inner_btns button {
    margin:5px !important;
}

.product_page .card {
    border:0px;
}
.product_page .card-header {
    background-color: transparent !important;
}

.product_page .square .fas , .product_page .square .far {
    font-size:22px;
    transition:all 0.3s;
}
.product_page .products_details {
    width:auto;
}

.product_page .otherdisplay {
    cursor:pointer;
    margin:6px;
}

.product_page .coupon_row .code {
    display: none;
    width: fit-content;
    background-color: #cad7ce;
    padding: 10px 0 10px 0;
    text-align: center;
    font-weight: bold;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.product_page .coupon_row {
    position: relative;
    background: #d4d7d4;
    margin-top: 20px;
    width: 85%;
    padding: 10px;
    line-height: 22px;
    color: #000000;
    background: -moz-linear-gradient(45deg, #aaaaaa 0%, #d4d7d4 100%);
    background: -webkit-linear-gradient(45deg, #aaaaaa 0%, #d4d7d4 100%);
    background: linear-gradient(45deg, #aaaaaa 0%, #d4d7d4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="aaaaaa", endColorstr="#d4d7d4", GradientType=1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size:18px;
    cursor: pointer;

}

.flexdisplay {
    display:flex;
    align-items:Center;
    justify-content:space-between;
}

.product_page .compare_link {
    font-size:15px;
}

.fixed-btns-cart .title {

    margin-bottom:0px;
    margin-left:15px;
}

.warningborder {
    border: 1px solid red;
    padding-bottom: 30px;
    width: fit-content;
    padding-left: 8px;
}

.warning {
    display:none;
}
.fixed-btns-cart .qi {
    margin: 0px 6px 0px 16px !important;
}
.product_page .products_details {
    display:flex;
    justify-content:flex-start;
    align-items:center;
    margin-top:25px;
}
.product_page .square .fas , .product_page .square .far {
    font-size:22px;
    transition:all 0.3s;
}
.product_page .youtube {
    padding-left:10px;
}
.product_page .square {
    border: 1px solid #ececec;
    margin:5px 0px 5px 7px;
    padding: 20px;
    flex:1 30%;
    border-radius: 6px;
    font-size: 0.9em;
    transition:all 0.3s;
    white-space:nowrap;
    text-align:center;
}
.product_page .innerproduct {
    display:flex;
    justify-content:center;
    align-items:flex-start;
}
.product_page .rightside , .product_page .leftside{
    width:50%;
    font-size:20px;
}

.sharebtns {
    margin:15px;
    text-align:center;
}
.addtocart {
    display:flex;
    align-items:center;
    justify-content:center;
}
.addtocart img {
    display:none;
}
.product_page .comments {
    background-color: #ffffff;
    line-height: 50px;
    width:85%;
    color: #8a8a8a;
    resize: none;
    border-color: oldlace;
    overflow: hidden;
    outline: none;
}
.product_page .buy_now:hover {
    border-radius:6px;
}

.squares_productpage .delivery {
    cursor:pointer;
}


.product_page .products_details .qi {
    margin:5px 20px 5px 5px;
}

.product_page .products_details .kg-quantity {
    text-align: center;
    background: #efedea;
    border-radius: 20px;
    display: flex;
    margin: 10px auto 0 auto;
    border: 1px solid #aaa;
    width: 80%;
}

.product_page .products_details .kg-quantity .kg-quantity-item {
    width: 50%;
    margin-bottom: inherit;
    border-radius: 35px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    font-size: 16px;
}


.product_page .products_details .kg-quantity .kg-quantity-item:first-of-type {
    margin: 5px 5px 5px 0;
}

.product_page .products_details .kg-quantity .kg-quantity-item:last-of-type {
    margin: 5px 0 5px 5px;
}

.product_page .products_details .kg-quantity input[type=radio]:checked + label.kg-quantity-item {
    background-color: #161616;
    color: white;
    font-weight: bold;
}

.product_page .products_details .kg-quantity input[type=radio] {
    display: none;
}


.product_page .buttons {
    display:Flex;
    justify-content:center;
    align-items:center;

}

.product_page .compare_link {
    line-height:15px;
    margin:10px;
}

.product_page .why_ys {
    margin:15px;
}

@media(max-width:1200px) {
    .review-container {
        width:95%;
        margin:0;
    }

    .product_page .comments {
        width:100%;
        margin:0px;
    }

    .product_page .square {
        font-size:0.8em;
    }

    .product_page .breadcrumbs {
        margin:0px;
    }

    .product_page .products_details  {
        margin-top:10px;
    }

    .product_page .title {
        margin-bottom:0px;
    }

    .product_page .comments {
        margin-top:15px;
    }


    .product_page .compare_link {
        line-height:15px;
    }

    .product_page .why_ys {
        margin:0px;
    }

    .product_page .buttons {
        display:Flex;
        justify-content:center;
        align-items:center;
        width:100%;
        margin-top:10px;

    }

    .product_page .quantity {
        display: flex;
        width:100%;
        align-items: center;
    }

    .product_page .fixed-btns-cart .quantity {
        width:auto;
    }

    .product_page .products_details .kg-quantity {
        text-align: center;
        background: #efedea;
        border-radius: 20px;
        display: flex;
        align-items: center;
        margin: -20px auto 0 auto;
        border: 1px solid #aaa;
        width: 38%;
    }

    .product_page .buttons button {
        margin:5px !important;
    }

    .product_page .products_details .qi {
        margin:0 auto;

    }

    .product_page .products_details .qi , .product_page .products_details .price {
        margin-bottom:15px;
    }
    .product_page {
        padding:10px;
    }

    .product_page .products_details .price {
        width:50%;
    }

    .product_page .fixed-btns-cart .buy_now {
        width:fit-content;
    }

    .product_page .top div {
        margin:8px;
    }

    .product_page .fixed-btns-cart .buy_now {
        height:fit-content;
        padding-top: 0px;
    }


    .product_page .youtube iframe{
        width:100% !important;
    }

    .product_page .fixed-btns-cart .addtocart, .product_page .fixed-btns-cart .buy_now {
        padding:5px;
        font-size:14px;
        width:45%;
    }
    .product_page .fixed-btns-cart .bottom {
        justify-content:center;
    }

    .product_page .fixed-btns-cart .bottom {
        justify-content:center;
        font-size:1.0em;
    }
    .flexdisplay {
        flex-direction:column;
        justify-content:center;
    }

    .fixed-checkout  .disclaimer {

        font-size:12px !important;
        margin:0!important;
        padding:0px 0 10px 0 !important;
    }

    .fixed-checkout .check-btn {

        width:50% !important;
        margin:0 auto;

    }


    .warningborder {

        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;

    }

    .fixed-btns-cart .inner_btns {

        width:75% !important;
        justify-content:center;
    }


    .product_page .fixed-hidden .addtocart, .product_page .fixed-hidden .buy_now {
        width:100%;
        margin:5px 0px;
        font-weight:normal;
        border-radius:0px;
    }

    .product_page .fixed-btns-cart .qi {
        width: auto;
        display: flex;
        justify-content: center;
        padding: 3px;
        height: 38px;
        align-items: center;
    }
    .desktophide {
        display:block;
    }

    .product_page .fixed-btns-cart .container_btns_cart {
        width:100%;
    }
    .product_page .fixed-btns-cart .top, .product_page .fixed-btns-cart .bottom {
        margin:unset;

    }

    .product_page .innerproduct {
        flex-direction:column-reverse;
    }
    .product_page .products_details {
        display: flex;
        justify-content:space-around;
        flex-wrap: wrap;
        flex-direction:column;
        align-items: center;
    }
    .mobilewidth {
        width:100%;
    }
    .product_page .fixed-btns-cart .top ,.product_page .fixed-btns-cart .bottom {
        display:flex;
        flex-direction:row;
        justify-content:center;
        flex-wrap:nowrap;
        font-size:1.5em;
        margin:0 auto;
    }
    .product_page .squares_productpage {
        margin-left:0px;
    }
    .product_page .rightside , .product_page .leftside{
        width:100%;
        font-size:22px;
        text-align:center;
        margin-bottom: 15px;
    }

    .product_page .addon_options {
        justify-content: center;
    }

    .product_page .addon_option.pizza img {
        margin: 0.1em 0.2em;
    }
}
.product_page .rightside .oldprice {
    text-decoration: line-through;
    font-size: 15px;
}
.product_page .leftside .thumbsgallery li {
    width:50px;
    height:50px;
    list-style-type:none;
}
.product_page .gallerynew {
    display:flex;
    align-items:Center;
}
.product_page .price {
    font-weight:bold;
    font-size: 1.7rem;
}

.product_page .subproducts .subproduct {
    margin-bottom: 0.85rem;
}

.product_page .subproducts .subproduct.not-selected {
    border: 1px solid red;
    padding: 5px;
}

.product_page .subproducts .subproduct > .title {
    display: block;
    margin-bottom: 0.4em;
    background: black;
    padding: 0 1rem;
    border-radius: 0.1rem;
    color: white !important;
    font-size: 2.4rem;
}

.product_page .subproducts .color-select,
.product_page .subproducts .button-select {
    line-height: 1;
}

.product_page .subproducts label {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0.2em;
}

.product_page .subproducts input[type=radio]:not(.disabled) + label:hover,
.product_page .subproducts input[type=checkbox]:not(.disabled) + label:hover {
    box-shadow: 0 0 0 1px #333;
}

.product_page .subproducts input[type=radio]:checked + label,
.product_page .subproducts input[type=checkbox]:checked + label {
    box-shadow: 0 0 0 0.15rem #000 !important;
    background-color: #b7f4ba;
}

.product_page .subproducts input[type=radio].disabled + label,
.product_page .subproducts input[type=checkbox].disabled + label {
    /*cursor: not-allowed;*/
    filter: alpha(opacity=5);
    opacity: .5;
}

.product_page .subproducts input[type=radio].disabled + label::after,
.product_page .subproducts input[type=checkbox].disabled + label::after {
    position: absolute;
    top: 45%;
    left: -.1rem;
    content: "";
    width: 110%;
    -webkit-transform: rotate(
            45deg);
    transform: rotate(
            45deg);
    height: 4px;
    background-color: rgb(0,0,0);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.product_page .subproducts .color-select label {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.product_page .subproducts .button-select label {
    font-size: 0.85em;
    min-width: 8ch;
    text-align: center;
    color: #212529;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 0.85em 2em;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px;
}

.product_page .subproducts .image-select label {
    padding: 0.2em;
    border-radius: 5px;
    max-height: 80px;
    max-width: 80px;
}

.product_page .subproducts .select-select select {
    width: fit-content;
    min-width: 20ch;
}

.product_page .subproducts .select-select select:focus {
    box-shadow: none;
    border-color: unset;
}

.product_page .subproducts input[type=radio],
.product_page .subproducts input[type=checkbox]{
    display: none;
}

.products_info .product_page .price , .products_info .product_page .old_price , .products_info .product_page .title , .products_info .product_page .productdescription {
    color: #212529 !important;
}

.unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}