    @import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}

html,
body {
    height: 100%;
    width: 100%;
}

.alert>h1 {
    position: absolute;
    top: 8%;
    width: 100%;
    padding: 10px 20px;
    font-size: 1.4rem;
    background-color: #dfac02de;
    color: white;
    z-index: 999;
    text-align: center;
}

.pro_detail_content {
    padding: 70px 10px 10px 10px;
    height: 100%;
    width: 100%;
}

.pro_detail_content>h3>a {
    color: #555;
    text-decoration: none;
    font-weight: 300;
}

.prod {
    height: 100%;
    overflow: hidden;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
    justify-content: space-evenly;
}

.pro_img_slider {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    padding: 5px;
}

.slider {
    transition: transform 0.5s ease-in-out;
    width: 100%;
    overflow: hidden;
    height: 80%;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.slider>img {
    height: 100%;
    width: 100%;
    z-index: 5;
    object-fit: cover;
    display: block;
    z-index: 111;
    transition: transform 0.25s ease, opacity 0.25s ease;
    cursor: zoom-in;
}

.slider>img:hover {
    transform: scale(1.3);
    transform-origin: center center;
}

.slides {
    display: flex;
    z-index: 8;
    height: 20%;
    overflow-x: scroll;
    z-index: 999;
    padding: 5px;
}

.slides>img {
    cursor: pointer;
    margin: 10px;
    object-fit: cover;
    filter: brightness(80%);
    overflow: hidden;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    transition: .2s all ease-in-out;
    height: 80%;
    width: 150px;
}

.slides>img:hover {
    scale: 1.05;
    filter: brightness(100%);
    background: #f9f9f9;
}

.prod_detail {
    position: relative;
    width: 50%;
    border-radius: 3px;
    height: 100%;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prod_id {
    font-weight: bolder;
    padding: 5px 10px;
    color: #555;
    width: 100%;
    text-align: end;
    font-size: .8rem;
    height: 5%;
}

.prod_title {
    line-break:anywhere;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px;
    line-height: 1.4rem;
}

.prod_price {
    font-size: 1rem;
    padding: 15px 10px;
    font-weight: bolder;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.prod_price>.save_price{
    padding: 8px 15px;
    color: #055b05;
    border: 1px solid rgba(5, 128, 5, 0.28);
    background: linear-gradient(90deg, rgba(5, 155, 5, 0.18), rgba(4, 128, 4, 0.35));
    border-radius: 10px;
}
.prod_price>.s_price {
    text-transform: initial;
    font-size: 1.3rem;
    color: green;
}

.prod_price p {
    color: #555;
    text-decoration: line-through;
    font-size: 1.1rem;
    text-transform: initial;
    font-weight: 500;
}

.prod_price span {
    font-size: 1.4rem;
    text-transform: initial;
}

.disc_perc {
    position: absolute;
    right: 2%;
    top: 1.5%;
    z-index: 9999;
    background-color: black;
    color: #dfbe02;
    font-size: .8rem;
    border-radius: 3px;
    padding: 8px;
}

.prod_desc {
    padding: 20px 10px;
    font-size: 1rem;
    word-wrap: break-word;
    color: #555;
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 40%;
    border-radius: 3px;
}

.prod_detail>form {
    height: 17%;
    width: 100%;
}

.cata {
    padding: 10px 10px;
    display: flex;
    height: 45%;
    width: 100%;
}
.cata .color_box{
    width: 80%;
    display: flex;
    padding: 5px 0px;
}
.color_box>p{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
}
.cata .color {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: fit-content;
}

.color input {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.color input:checked~label {
    background: black;
    color: white;
    transition: .2s all ease-in-out;
}

.color label {
    border: 1px solid #ddd;
    margin: 0px 4px;
    font-size: .9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    border-radius: 3px;
}

.cata>h2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #555;
    height: 100%;
    width: 20%;
    font-size: .8rem;
    text-transform: capitalize;
}

.purc_option {
    height: 45%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.purc_option>form {
    display: flex;
    justify-content: center;
    width: 75% !important;
    height: 100%;
    align-items: center;
    overflow: hidden;
}

.purc_option .btn_buy {
    width: 100%;
    height: 100%;
    border: 0px solid white;
    padding: 5px;
    cursor: pointer;
    background: black;
    font-size: 1.2rem;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 3px;
    transition: .2s all ease;
}

.purc_option .btn_buy:hover {
    background: white;
    color: #dfbe02;
    border: 2px solid #dfbe02;
}

.purc_option > .add_cart {
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 25%;
}
.purc_option > .add_cart>form{
    width: 100%;
    height: 100%;
}
.purc_option > .add_cart .cart_btn {
    width: 100%;
    height: 100% !important;
    border: 2px solid #dfbe02;
    color: #dfbe02;
    background: none;
    border-radius: 3px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.purc_option > .add_cart .cart_btn > i {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.purc_option > .add_cart .cart_btn:hover {
    background: #dfbe02;
    transform: scale(1.02);
    color: #fff;
}
.free_delivery_badge {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 6px;
    margin-top: 6px;
}

.free_delivery_badge i {
    color: #dfbe02;
    font-size: 0.95rem;
}

.free_delivery_badge p {
    background: linear-gradient(90deg, rgba(5, 155, 5, 0.18), rgba(4, 128, 4, 0.35));
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #055b05;
    border: 1px solid rgba(5, 128, 5, 0.28);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    letter-spacing: .4px;
    text-transform: uppercase;
    animation: fadeIn 0.4s ease-in-out;
}

/* Smooth entry animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info {
    font-weight: bolder;
    text-transform: initial;
    padding: 20px 10px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.buy_btn {
    width: 100%;
    padding: 10px;
    border: none;
    color: #dfbe02;
    background-color: #000;
    font-weight: bolder;
    text-transform: initial;
    font-size: 1.3rem;
    border-radius: 3px;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.buy_btn:hover {

    scale: 1.03;
    background-color: #dfbe02;
    color: #000;
    box-shadow: 0px 0px 10px #dfbe02;
}

.rel_pro {
    width: 100%;
    height: auto;
    padding: 70px 20px;
}

.rel_pro>h1 {
    position: relative;
    height: auto;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
    padding: 0px 10px;
}

.rel_pro>h1:after {
    content: "";
    left: 30%;
    top: 0%;
    height: 100%;
    background-color: #dfbe02;
    position: absolute;
    width: 70%;
}

.slider_container {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 20px 50px;
    position: relative;
}

.slider_pro {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 20px;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    position: relative;
}

.sliding_pro {
    flex: 0 0 20%;
    min-width: 20%;
    transition: transform 0.5s ease-in-out;
    position: relative;
    margin: 0 20px;
    scroll-snap-align: start;
    height: 280px;
    display: flex;
    text-decoration: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: .5px solid #DDD;
    border-radius: 3px;
    padding: 5px;
    transition: .2s all ease;
}

.discount_perc {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    z-index: 8;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
}
.product_item {
    cursor: pointer;
    position: relative;
    height: 300px !important;
    transition: .3s all ease-in-out;
    overflow: hidden;
    border: 1px solid white;
    padding: 3px;
}

.product_item:hover {
    height: 100%;
    border: 1px solid #ddd;
    width: 100%;
}

.product_item>a {
    text-decoration: none;
    height: 100%;
}

.product_item .pro_img {
    width: 100%;
    height: 55% !important;
}

.pro_img {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0px !important;
}

.pro_img>img {
    position: absolute;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s all ease;
}

.product_item:hover #pro_img2 {
    opacity: 0;
}

.pro_title {
    color: #222;
    font-size: 0.8rem;
    height: 17%;
    padding: 2px 3px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.pro_cata {
    height: 5%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px;
    color: #555;
    font-size: .7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discount_perc {
    position: absolute;
    left: 0px;
    top: 5px;
    color: white;
    font-size: .7rem;
    padding: 2px 5px;
    background-color: rgb(199, 2, 2);
    z-index: 8 !important;
}

.pro_price {
    height: 10%;
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
}

.pro_price>.sale_price {
    text-transform: initial;
    color: #dfbe02;
    font-weight: bold;
}

.original_price {
    text-transform: initial;
    color: #777;
    font-size: .8rem;
    padding: 2px 5px;
    text-decoration: line-through;
}

.pur_option {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 12%;
    padding: 2px;
    gap: 5px;
    overflow: hidden;
}

.pur_option .btn_buy {
    width: 100%;
    padding: 5px;
    width: 70%;
    cursor: pointer;
    background: black;
    border-radius: 3px;
    font-weight: bolder;
    border: none;
    color: white;
    transition: .2s all ease;
    font-size: .9rem;
}
.pur_option .btn_buy>a{
    color:white;
    text-decoration:none;
}
.pur_option .btn_buy:hover {
    background: #dfbe02;
    color: white;
    scale: 1.02;
}

.pur_option .add_cart {
    padding: 2px;
    height: 100%;
    width: 25%;
}

.pur_option .add_cart form {
    height: 100%;
    width: 100%;
}

.pur_option>.add_cart .cart_btn {
    width: 100%;
    background: none;
    height: 100%;
    border: 2px solid #dfbe02;
    border-radius: 3px;
    cursor: pointer;
    color: #dfbe02;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: .2s all ease-in-out;
}
.quickcheckout_box {
    position: fixed;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 999;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.3); /* Optional: background dimming */
    pointer-events: none;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease;
}

.quickcheckout_box.active {
    height: 100%;
    opacity: 1;
    pointer-events: auto;
}


.quickcheckout_box > .quickcheckout_form {
    background: #fff;
    width: 700px;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.quickcheckout_box.active > .quickcheckout_form {
    transform: translateY(0);
    opacity: 1;
}

.quickcheckout_cancel_btn {
    padding: 10px 16px;
    border: none;
    border-radius: 3px;
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quickcheckout_header {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40% !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.quickcheckout_header>.quickcheckout_image {
    width: 30%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
}

.quickcheckout_header>.quickcheckout_image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quickcheckout_header>span {
    font-size: 1rem;
    overflow: hidden;;
    font-weight: 600;
    width: 30%;
    color: #333;
}

.quickcheckout_discount {
    position: absolute;
    top: -8px;
    right: -16px;
    background: #dfbe02;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 8px 8px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quickcheckout_colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 40%;
    margin-top: 10px;
}

.quickcheckout_color_option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px;;
    transition: 0.2s;
}

.quickcheckout_color_option>input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.quickcheckout_color_option>label {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

.quickcheckout_color_option>input:checked~label {
    background: black;
    color: white;
    border-radius: 5px;
}

.quickcheckout_pricing {
    width: 100% !important;
    height: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row !important;
}

.quickcheckout_pricing>.quickcheckout_quantity {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quickcheckout_quantity_field {
    width: 35px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.quickcheckout_btn {
    cursor: pointer;
    padding: 2px 7px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 0.9rem;
    transition: 0.2s;
}

.quickcheckout_btn:hover {
    background: #eee;
}

.quickcheckout_pricing>.quickcheckout_price_display {
    width: 40%;
    text-align: right;
}

.quickcheckout_price_display .quickcheckout_o_price {
    font-size: .8rem;
    text-decoration: line-through;
    font-weight: bold;
    color: rgb(199, 2, 2);
}

.quickcheckout_price_display .quickcheckout_s_price {
    font-weight: bold;
    font-size: 1rem;
    color: green;
    margin-top: 3px;
}

.quickcheckout_submit_btn {
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 500;
    background-color: #111;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quickcheckout_submit_btn:hover {
    background-color: #333;
}

.pur_option>.add_cart .cart_btn:hover {
    background: #dfbe02;
    scale: 1.02;
    color: white;
}

.sliding_pro:hover {
    box-shadow: 0px 0px 10px black;
    padding: 5px;
    scale: 1.05;
}

.sliding_pro_img {
    width: 100%;
    height: 60%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.img2 {
    background-color: white;
    position: absolute;
    left: 0%;
    top: 0%;
    opacity: 0;
}

.sliding_pro:hover .img2 {
    opacity: 1;
    transition: .2s opacity ease-in-out;
}

.sliding_pro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0px 0px;
}



.sliding_pro_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: bold;
    color: #555;
    padding: 5px;
    width: 100%;
    height: 20%;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #999;
}

.sliding_pro_title>p {
    display: block;
    width: 100%;
    text-transform: initial;
    height: 100%;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    padding: 2px 5px;
}

.sliding_pro_price {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15%;
    width: 100%;
    color: rgb(223, 0, 0);
}

.sliding_pro_price>p {
    text-transform: initial;
}

.sliding_pro_price>p>span {
    font-size: .8rem;
    text-transform: initial;
    color: black;
    text-decoration: line-through;
}

.sliding_pro_view {
    background-color: #dfbe02;
    position: relative;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    scale: .90;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    height: 10%;
    font-weight: bold;
    transition: .2s all ease;
}

.sliding_pro_view:hover {
    background-color: #000;
    color: #dfbe02;
    scale: 1;
}

.prev,
.next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


.cart_image_btn {
    position: fixed;
    bottom: 8%;
    right: 5%;
    cursor: pointer;
    border: 2px solid #dfbe02;
    padding: 18px;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    border-radius: 50%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cart_image_btn:hover {
    background-color: #dfbe02;
    transform: scale(1.1);
}

.cart_image_btn:hover a {
    color: black;
}

.cart_image_btn:active {
    transform: scale(0.95);
}

.cart_image_btn>a {
    color: #dfbe02;
}

.cart_image_btn p {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.9rem;
    background: #dfbe02;
    color: black;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    border: 1px solid black;
}

@media screen and (max-width: 699px) {
    .pro_detail_content{
        padding: 90px 5px 5px 5px !important;
    }
    .pro_detail_content>h3{
        font-size: .9rem;
    }
    .disc_perc{
        top: 3%;
        right: 3%;
    }
    .slides {
        overflow-x: scroll;
    }
    .slider{
        height: 85%;
    }
    .slides>img {
        margin: 5px;
        flex: 0 0 25%;
    }

    .pro_detail_content {
        height: max-content;
    }

    .prod {
        padding: 5px;
        flex-direction: column;
    }

    .pro_img_slider,
    .prod_detail {
        width: 100%;
    }

    .disc_perc>h3 {
        font-size: .7rem;
    }
    .prod_title{
        padding: 5px;
        line-break: auto;
        font-size: 1rem;
    }
    .prod_title>p{
        font-size: .8rem;
        line-height: 1rem;
    }
    .prod_desc{
        padding:5px;
    }
    .s_price>p{
        font-size: .8rem;
    }
    .s_price>span{
        font-size: 1rem;
    }
    .prod_price>.save_price{
        padding: 5px 8px;
        color: #736200;
        border: 1px solid #dfbe02;
        background: #dfbe0224;
        border-radius: 3px;
        box-shadow: 0px 0px 1px 0px #dfbe02;
        font-size: .8rem;
    }
    .cata{
        padding: 5px;
    }
    .color {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: .7rem;
        overflow-x: scroll;
        width: 50%;
    }
    .color_box>p{
        font-size: .9rem;
    }
    .color label{
        margin: 0px 3px;
        min-width:40px;
        font-size: .9rem;
    }
    .color input{
        min-width:40px;
    }
    .cata>h2 {
        width: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-size: .6rem;
    }
    .purc_option .btn_buy{
        font-size: 1.2rem;
    }
    .purc_option>.add_cart>.cart_btn{
        font-size: 1rem;
    }
    .free_delivery_badge p {
       padding: 5px 8px;
       color: #736200;
        border: 1px solid #dfbe02;
        background: #dfbe0224;
        border-radius: 3px;
        box-shadow: 0px 0px 1px 0px #dfbe02;
        font-size: .8rem;
    }
    .free_delivery_badge i{
        color: #dfbe02;
    }
    .info{
        font-size: .9rem !important;
    }
    .rel_pro{
        padding: 20px 10px;
    }
    .rel_pro>h1 {
        width: 100%;
        font-size: 1.2rem;
    }.quickcheckout_image{
        width: 25%;
    }
    .quickcheckout_box > .quickcheckout_form{
        padding: 5px;
    }
    .quickcheckout_header span{
        width: 35%;
        font-size: .8rem !important;
    }
    .quickcheckout_colors{
        gap: 3px;;
    }
    .quickcheckout_color_option>label{
        padding: 3px 5px;
        font-size: .7rem;
    }

    .rel_pro>h1::after {
        left: 55%;
        top: 0%;
        height: 100%;
        background-color: #dfbe02;
        position: absolute;
        width: 40%;
    }

    .slider_container {
        padding: 10px;
    }

    .slider_pro {
        padding: 5px;
    }

    .sliding_pro {
        flex: 0 0 50%;
    }
}