body {
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

.factbtngroup{
    position: absolute;
    right: 50px;
    top: 20px;
    display: flex;
}

.closefact{
    width: 35px;
    height: 35px;
    border-radius: 50px;
    color: var(--red-color);
    background: #e6181814;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    font-size: 22px;
    cursor: pointer;
}

.closefact:hover{
    background: #e618183b;
}

.flexline{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.lineboxx{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.lineboxx i{
    font-size: 33px;
    margin: 10px;
}

.socials{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    background: #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    color: #fff;
}

.socialsx{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
}

.divise{
    margin: 0px 25px;
}

.divise a{
    text-decoration: none;
    color: #f1F9F9;
    margin-left: 5px;   
}

.socialsx .divise a{
    text-decoration: none;
    color: #444;
    margin-left: 5px;   
}

.divise a i{
    font-size: 20px;
}

.divise a:first-child{
    margin-left: 0px;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
    position: fixed;
    z-index: 2;
    top: 40px;
    left: 0;
}

/* .price{
    color: rgb(255, 81, 0);
} */

.logo img{
    width: 150px;
}

.menu {
    display: flex;
}

.menu a {
    display: block;
    width: auto;
    padding: 10px 10px;
    text-decoration: none;
    outline: none;
    color: #000;
    font-size: 15px;
    margin: 0px 10px;
    transition: 0.3s;
}

.menu a:hover {
    color: rgb(255, 81, 0);
}

.menu a.active {
    color: rgb(255, 81, 0);
    font-weight: bold;
}

.othermenu a {
    display: inline-block;
    text-decoration: none;
    outline: none;
    color: #000;
    margin: 0px 10px;
    font-size: 22px;
    transition: 0.3s;
}

.othermenu a.active{
    color: rgb(255, 81, 0);
    font-weight: bold;
}

.loginbtn {
    display: inline-block;
    width: auto;
    padding: 10px 15px;
    border-radius: 50px;
    background: rgb(255, 81, 0);
    font-weight: bold;
    color: #fff !important;
    font-size: 15px !important;
    transition: 0.3s;
}

.loginbtn:hover {
    background: rgb(255, 121, 59);
}

.mainsection{
    overflow: hidden;
    display: block;
    margin-top: 110px;
}

.welpage{
    overflow: hidden;
    display: block;
    height: 500px;
}

.Slideshow {
    height: 400px;
    width: 100%;
    overflow: hidden;
    /* background: rgba(0,0,0,.3); */
    position: relative;
    }

    .Slideshow-Content {
            position: relative;
            height: 100%;
            overflow: hidden;
        }
        .Slideshow-Content img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 400px;
            object-fit: cover;
            background-repeat: no-repeat;
        }

        .Slideshow-Content img:nth-of-type(1) {
            animation-delay: 4s;
            animation-name: fadeInOut;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            animation-duration: 6s;
            animation-direction: alternate;
        }
        .Slideshow-Content img:nth-of-type(2) {
            animation-delay: 4s;
            animation-name: fadeInOut2;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            animation-duration: 6s;
            animation-direction: alternate;
        }


    @keyframes fadeInOut {
        0% {
            opacity:1;
            visibility: visible;
        }
        30% {
            opacity:1;
            visibility: visible;
        }
        35% {
            opacity:1;
            visibility: visible;
        }
        65% {
            opacity:0;
            visibility: hidden;
        }
        70% {
            opacity:0;
            visibility: hidden;
        }
        100% {
            opacity:0;
            visibility: hidden;
        }
    }

    @keyframes fadeInOut2 {
        0% {
            opacity:0;
            visibility: hidden;
        }
        30% {
            opacity:0;
            visibility: hidden;
        }
        35% {
            opacity:0;
            visibility: hidden;
        }
        65% {
            opacity:1;
            visibility: visible;
        }
        70% {
            opacity:1;
            visibility: visible;
        }
        100% {
            opacity:1;
            visibility: visible;
        }
    }

    .weltext{
        display: block;
        position: absolute;
        z-index: 1;
        width: 450px;
        margin: 60px 100px;
    }

    .wel1{
        visibility: visible;
        opacity: 1;
        animation-delay: 2s;
        animation-name: fadeInOut;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-duration: 6s;
        animation-direction: alternate;
    }

    .wel2{
        visibility: hidden;
        opacity: 0;
        animation-delay: 2s;
        animation-name: fadeInOut2;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-duration: 6s;
        animation-direction: alternate;
    }


    .weltext h1{
        font-size: 53px;
    }

    .btnrestyle{
        background: rgb(255, 81, 0);
        color: #fff;
        border: none;
        margin-right: 15px;
        margin-bottom: 10px;
        padding: 10px 15px;
    }

    .btnrestyle:hover {
        background: rgb(255, 121, 59);
        color: #fff;
        box-shadow: 0px 0px 0px 4px rgba(193, 226, 255, 0.3);
    }

    .btnrestyle.black{
        background: #000;
    }

    .btnrestyle.white{
        background: #fff;
        color: #000;
        width: auto;
        border-radius: 50px;
    }

    .btnrestyle.black:hover {
        background: #2c2c2c;
        color: #fff;
        box-shadow: 0px 0px 0px 4px rgba(1, 9, 16, 0.3);
    }

    .boxcard{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 40px 50px;
        height: 400px;
    }

    .boxcard.white{
        background: #fff;
        height: auto;
        padding: 30px 0px;
        border-radius: 10px;
        /* box-shadow: 0px 0px 24px rgba(1, 9, 16, 0.3); */
    }

    .boxcard.margev{
        /* background: #fff; */
        height: auto;
        padding: 10px 0px;
        border-radius: 10px;
        /* box-shadow: 0px 0px 24px rgba(1, 9, 16, 0.3); */
    }

    .cardx{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 48%;
        height: 100%;
        background: #FFF;
        color: #fff;
    }

    .card1{
        background-image: url("../images/bg.jpg");
    }

    .card2{
        background-image: url("../images/bg3.avif");
        background-size: cover;
    }

    .marginbloc{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 150px 150px 150px 80px;
    }

    .bbulle{
        display: inline-block;
        font-size: 14px;
        background: #000;
        color: #fff;
        padding: 0px 5px;
        border-radius: 15px;
        height: 18px;
        text-align: center;
        line-height: 18px;
        position: absolute;
        margin-left: -10px;
    }

    .oneline{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 3em;
        text-decoration: none;
    }

    .rowx{
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .product-box {
        padding: 0;
        border: 1px solid #ddd !important;
        cursor: pointer;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        height: 400px;
        width: 300px;
    }

    .ibox-content{
        text-decoration: none;
        color: #333;
    }

    .ibox-content:hover{
        color: #333;
    }

      .product-imitation {
        text-align: center;
        /* padding: 90px 0; */
        background-color: #f8f8f9;
        color: #bebec3;
        /* font-weight: 600; */
        margin: 0px;
        height: 186px;
        overflow: hidden;
      }

      .product-imitation img{
        width: 100%;
        height: 186px;
        object-fit: cover;
        transition: 0.3s;
      }

      .product-imitation img:hover{
        transform: scale(1.2);
      }

      .product-desc {
        padding: 20px;
        position: relative;
       
      }

      .product-name {
        font-size: 16px;
        font-weight: 600;
        color: #676a6c;
        display: block;
        margin: 2px 0 5px 0;
      }
      .product-name:hover,
      .product-name:focus {
        color: rgb(255, 81, 0);
      }
      .product-price {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background-color: rgb(255, 81, 0);
        padding: 6px 12px;
        position: absolute;
        top: -32px;
        right: 0;
        border-radius: 20px 0px 0px 0px;
      }

      .btnrestyle.fill{
        margin-top: 15px;
        width: 100%;
      }

      .btnrestyle.padding{
       width: 180px;
       border-radius: 50px;
      }

      .rowcenter{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
      }

      .imgcircle{
        display: block;
        width: 180px;
        height: 180px;
        background: #f8f8f9;
        border-radius: 180px;
        margin: 20px 0px;
        overflow: hidden;
      }

      .imgcircle img{
        width: 100%;
        height: 180px;
        object-fit: cover;
      }

      .bloccat{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px 20px;
        text-decoration: none;
        color: #333;
        outline: none;
      }

      .bloccat:hover{
        color: rgb(255, 81, 0);
      }

      .container.center{
        display: flex;
        align-items: center;
        justify-content: center;
      }


      /* style contact page */

/* .contact3 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
} */

.contact3 h1,
.contact3 h2,
.contact3 h3,
.contact3 h4,
.contact3 h5,
.contact3 h6 {
  color: #3e4555;
}

.contact3 .font-weight-medium {
  font-weight: 500;
}

.contact3 .card-shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.contact3 .btn-danger-gradiant {
  background: #ff4d7e;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
  background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
}

.contact3 .btn-danger-gradiant:hover {
  background: #ff6a5b;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff6a5b 0%, #ff4d7e 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff6a5b), to(#ff4d7e));
  background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}

.icx{
    font-size: 60px;
    margin: 0px 25px;
}

.catline{
    display: inline-block;
    padding: 20px 0px;
    white-space: nowrap;
    overflow: auto;
    width: 100%;
}

.catline a{
    display: inline;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    outline: none;
    color: #666;
    margin: 0px 0px;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 50px;
}

.catline a:hover{
    color: rgb(255, 81, 0);
    border: 1px solid rgb(255, 81, 0);
}

.catline a.active{
    color: rgb(255, 81, 0);
    /* background: rgba(255, 81, 0, 0.08); */
    border: 1px solid rgb(255, 81, 0);
}

/* STYLE CONTENAIRE */

.bloc{
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px 0px;
}

.bloc h4{
    margin-bottom: 30px;
}

.flexbox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.inline{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.selectbox{
    display: flex;
    width: 240px;
    height: 70px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    background: #fff;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    margin: 0px 20px 10px 0px;
}

.selectbox.resize{
    width: 350px;
    height: 90px;
    margin: 0px 10px 10px 0px;
    padding: 10px 0px;
    justify-content: space-between;
}

.selectbox.active{
    border: 2px solid rgb(255, 81, 0);
    color: rgb(255, 81, 0);
}

.checkboxgroup{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}

.textgroup{
    display: block;
    width: 45%;
}

.qtebox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 70px;
    margin-right: 10px;
    color: #000;
}

.btn-pm{
    width: 30px !important;
    font-size: 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: 0.3s;
    /* background: #ccc; */
    padding: 0px;
}

/* .btn-pm.left{
    text-align: left;
    
} */

.btn-pm:hover{
    color: rgb(255, 81, 0);
}

.val{
    font-size: 20px;
    font-weight: bold;
}

.pname{
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: bold;
}

.psize{
    font-size: 16px;
    color: #777;
}

.textbox{
    display: block;
    width: calc(85% - 50px);
    text-align: center;
    font-weight: bold;
}

.checkbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 2px solid #E8E8E8;
    border-radius: 50px;
}

.checkbox.active{
    border: 2px solid rgb(255, 81, 0);
}

.boule{
    display: none;
    width: 10px;
    height: 10px;
    background: rgb(255, 81, 0);
    border-radius: 10px;
}

.boule.see{
    display: block;
}
.searchbox{
    display: flex;
    width: 220px;
    height: auto;
    align-items: center;
    position: relative;
}

.searchbox i{
    display: block;
    position: relative;
    left: -30px;
}

.form-search{
    display: block;
    padding: 15px 15px;
    width: 220px;
    border-radius: 10px;
    border: 2px solid #E8E8E8;
    outline: none;
    transition: 0.3s;
}

.form-search:focus{
    border: 2px solid #000;
}

.form-input{
    display: block;
    padding: 15px 15px;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #E8E8E8;
    outline: none;
    transition: 0.3s;
}

.tel{
    width: 350px;
}

.form-input:focus{
    border: 2px solid #000;
}

.btn-cat{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 10px;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    cursor: pointer;
}

.btn-cat.active{
    border: 2px solid rgb(255, 81, 0);
    color: rgb(255, 81, 0);
    background: #fff;
}

.gbox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sgbox.resize{
    width: calc(100% - 410px);
    border-left: 1px solid transparent;
    margin: 0px 0px;
    padding: 0px 20px;
    border-right: 1px solid #E8E8E8;
}

.sgbox{
    width: 350px;
    margin: 0px 20px 0px 20px;
}

.summery{
    border-bottom: 1px solid #e8e8e8;
}

.summery p{
    margin-top: 0px;
}

.noitem{
    display: none;
    flex-direction: row;
    width: 100%;
    height: 250px;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    margin: 20px 0px;
    color: #777;
    border-radius: 5px;
}

.btn-empty{
    display: block;
    padding: 5px 0px;
    text-align: center;
    background: #ff00001c;
    color: #ff3a3a;
    border-radius: 10px;
    transition: 0.3s;
    margin: 10px 0px;
    cursor: pointer;
    border: none;
}

 .btn-empty:hover{
      background: #ff00002b;
      border: none;
      color: #ff3a3a;
 }
 
 .itembox{
     margin-top: 40px;
 }
 
 .cbox{
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: center;
     text-align: center;
     height: 220px;
     background: #FFF;
     border: 1px solid #e8e8e8;
     border-radius: 10px;
     margin: 10px 0px;
     padding: 20px 0px;
 }
 
 .ctype{
     font-size: 18px;
     margin-bottom: 15px;
 }
 
 .cnumber{
     color: #555;
     font-size: 18px;
    
 }
 
 .nbr{
     font-size: 30px;
     font-weight: bold;
     color: rgb(255, 81, 0);
 }
 
 .binfos{
     font-size: 13px;
     margin: 20px;
     color: #999;
 }
 
 .progresslinex{
    display: block;
     margin: 10px 10px;
     height: 5px;
     border-radius: 10px;
     background: #e8e8e8;
     width: 90%;
     /*overflow: hidden;*/
 }
 
  .progressbarx{
    display: block;
     margin: 0px;
     height: 5px;
     border-radius: 10px;
     background: #000;
     width: 0%;
     transition: 0.3s;
 }
 
 .itemprod{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid #e8e8e8;
 }
 
 .itemsize{
     color: rgb(255, 81, 0);
 }
 
 .itemphoto{
     width: 80px;
     height: 50px;
     background: #f5F5F5;
     margin-right: 10px;
     border-radius: 10px;
     overflow: hidden;
 }
 
  .itemphoto img{
     width: 100%;
     height: 50px;
     object-fit: cover;
 }
 
 
 .catgroup{
     display: flex;
     flex-wrap: wrap;
 }
 
 .renderproduct{
    display: flex;
    flex-wrap: wrap; 
 }
 
 .isize{
     width: 70px;
     text-align: right;
 }
 
 .formbox{
     margin: 10px 0px;
 }
 
 .formbox .forminp{
     width: 100%;
 }

 .formbox.mrg{
    margin-bottom: 80px !important;
 }
 
 .btn-send{
     float: right;
     padding: 8px 15px;
     border-radius: 5px;
     color: #fff;
     background: rgb(255, 81, 0);
     cursor: pointer;
     outline: none;
     z-index: 1;
     position: relative;
     transition: 0.3s;
     width: 100%;
 }

.btn-send:hover{
    background: #000;
    color: #fff;
}

.suiv{
    display: none;
}

.close{
    display: none;
}

.minmax{
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.mbtn{
    background: #222;
    color: #fff;
    padding: 0px 5px;
    border-radius: 5px;
    font-size: 12px;
    transition: 0.3s;
}

 .mbtn:hover{
    background: #444;
}

.mobilemenu{
    display: none;
}

.weltext h1{
    margin-bottom: 40px;
}

.asidemenu{
    display: none;
}

.ombre{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,.7);
}

.modalsuccess{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 250px;
    height: auto;
    z-index: 3;
    background: #fff;
    border: 1px solid #F1F1F1;
    border-radius: 10px;
    padding: 15px 15px 30px 15px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.modalsuccess.see{
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

.modalsuccess i{
    font-size: 90px;
    color: #CCC;
    transform: scaleX(-1);
    transition: 0.3s;
}

#sicon.scalex{
    transform: scaleX(1) !important;
    color: #18b36a;
}

.modalsuccess .smsgt{
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0px 20px 0px;
}

.modalsuccess .smsgb{
    color: #555;
}

.containerx{
    margin: 0px 70px;
}

/* CART STYLE  */

.titlex{
    margin-bottom: 5vh;
}
.card{
    margin: auto;
    /* max-width:  89%; */
    width: 86%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    border: transparent;
    overflow: hidden;
}
@media(max-width:767px){
    .card{
        margin: 3vh 0;
        width: 100%;
    }
}
.cart{
    background-color: #fff;
    padding: 4vh 5vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}
@media(max-width:767px){
    .cart{
        padding: 4vh;
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem;
    }
}
.summaryx{
    background-color: #F7F9FE;
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
    padding: 4vh;
    color: rgb(65, 65, 65);
}
@media(max-width:767px){
    .summaryx{
    border-top-right-radius: unset;
    border-bottom-left-radius: 1rem;
    }
}

.summaryx .col-2{
    padding: 0;
}
.summaryx .col-10
{
    padding: 0;
}/*.row{
    margin: 0;
}*/
.titlex b{
    font-size: 1.5rem;
}
.mainx{
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}
.col-2, .col{
    padding: 0 1vh;
}

.col.flexx{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between !important;
    align-items: center;
    text-align: center;
}

.btnpm{
    cursor: pointer;
}

.btnpm:hover{
    color: rgb(255, 81, 0) !important;
}

@media(max-width:767px){
    .col.flexx{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center !important;
        align-items: center;
        text-align: center;
    }
}

.rowx.flexx{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between !important;
    align-items: center;
}

.alk{
    padding: 0 1vh;
    text-decoration: none;
}
.closex{
    margin-left: auto;
    font-size: 1.2rem;
    color: #555;
    cursor: pointer;
}

.closex:hover{
    color: #ff3a3a;
}
.col-2 img{
    width: 3.5rem;
}
.back-to-shop{
    margin-top: 4.5rem;
}
h5{
    margin-top: 4vh;
}
hr{
    margin-top: 1.25rem;
}
.formx{
    padding: 2vh 0;
}
.selectx{
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: #fff;
}
.inputx{
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: #fff;
}

.iti{
    width: 270px !important;
    margin-bottom: 5px;
}

.inputx:focus::-webkit-input-placeholder
{
      color:transparent;
}
.checkoutbtn{
    width: 100%;
}

.alk{
    color: black; 
}
.alk:hover{
    color: black;
    text-decoration: none;
    
}
 /* #code{
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.253) , rgba(255, 255, 255, 0.185)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
} */



/* RESPONSIVE MOBILE AND TABLETTE */

 @media (max-width: 768px) {
  .sgbox.resize{
        width: 100%;
        margin: 0px 0px;
        padding: 0px 0px;
        position: relative;
        display: block;
        border-left: none;
        border-right: none;
        left: 0;
        z-index: 1;
        overflow: hidden;
    }

    .sgbox{
        position: fixed;
        top: 0;
        left: 100%;
        right: 0;
        width: 100%;
        bottom: 0px;
        background: #fff;
        display: block;
        margin: 0px 0px 0px 0px;
        overflow: auto;
        z-index: 999;
        transition: 0.3s;
    }
    
    .sgbox.see{
        left: 0;
    }
    
    .close{
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        background: #ff00001c;
        font-size: 22px;
        color: #ff3a3a;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 50px;
        cursor: pointer;
    }
    
     .summery{
        margin-top: 20px;
        margin-right: 20px;
        margin-left: 20px;
    }
    
    .allb{
        margin-right: 20px;
        margin-left: 20px;
    }
    
     .noitem{
        width: 94%;
        margin-left: 20px;
        background: transparent;
        border: 1px solid transparent;
    }
    
    .formbox.restyle{
        margin-bottom: 40px;
    }

    .selectbox.resize{
        width: 300px;
        height: 90px;
        margin: 0px 10px 10px 0px;
        padding: 10px 0px;
        justify-content: space-between;
    }
    
    .suiv{
        display: flex;
        flex-direction: row;
        align-items:  center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(255, 81, 0);
        color: #fff !important;
        z-index: 1;
        padding: 15px 0px;
        font-size: 14px;
        cursor:pointer;
    }
    
    .margexx{
        margin: 0px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 98%;
    }
    
    .margexx i{
        font-size: 20px;
    }
    
    .tcount{
        font-size: 18px;
    }
    
    .tcount .nbr{
        color: #fff !important;
        font-size: 18px;
    }

    .containerx{
        margin: 0px 0px;
        overflow: hidden;
        width: 100%;
        background: #fff;
    }

    .gbox{
        margin: 20px;
    }

}

 @media (max-width: 540px) {

    .preview-thumbnail.nav-tabs li{
        width: 90px;
    }

     .bloc{
        display: block;
        width: 95%;
        height: auto;
        overflow: hidden;
        margin: 0px 20px;
    }

    .selectbox.resize{
        width: 100%;
        height: 90px;
        margin: 0px 0px 10px 0px;
        padding: 10px 0px;
        justify-content: space-between;
    }

    .selectbox{
        display: flex;
        width: 100%;
        height: 70px;
        border: 2px solid #E8E8E8;
        border-radius: 10px;
        background: #fff;
        justify-content: flex-start;
        align-items: center;
        cursor: pointer;
        margin: 0px 20px 10px 0px;
    }

     .flexbox.noflex{
        display: block;
        width: 95%;
    }

     .flexbox.st{
        width: 95%;
        display: flex;
        justify-content: space-between;
    }
    
    .catgroup{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .btn-cat{
        display: inline-block;
        margin-right: 0px;
        margin-bottom: 10px;
        padding: 10px 10px;
        background: #fff;
        border: 2px solid #E8E8E8;
        border-radius: 10px;
        cursor: pointer;
        width: 48%;
        text-align: center
    }
    
    .inline{
        display: block;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
     .searchbox{
        display: flex;
        width: 100%;
        height: auto;
        align-items: center;
        position: relative;
    }
    
    .searchbox i{
        display: block;
        position: relative;
        left: -30px;
        top: -15px;
    }

    .form-search{
        display: block;
        padding: 15px 15px;
        width: 100%;
        border-radius: 10px;
        border: 2px solid #E8E8E8;
        outline: none;
        transition: 0.3s;
        position: relative;
        top: -15px;
    }

    .weltext{
        width: 100%;
        height: 100%;
        margin: 0px 0px;
        background: rgba(0,0,0,.7);
        color: #fff;
    }

    .weltext h1{
        font-size: 40px;
        margin-bottom: 40px;
    }

    .boxcard{
        display: block;
        margin: 40px 0px;
        height: auto;
    }

    .cardx{
        width: 100%;
        height: 300px;
        margin-bottom: 15px;
        background-size: cover;
    }

    .marginblocx{
        margin: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 90%;
    }

    .mobilemenu{
        display: block;
        font-size: 22px;
    }

    .mobilemenu a{
        text-decoration: none;
        outline: none;
        color: #000;
        font-size: 22px;
        margin-right: 30px;
    }

    .mobilemenu a .bbulle{
       position: absolute;
       margin-left: -15px;
       margin-top: 2px;
       width: 15px;
       height: 15px;
       background: #000 !important;
       line-height: 13px;
       text-indent: 0px;
    }

    .mobilemenu a.active {
        color: rgb(255, 81, 0);
        font-weight: bold;
    }

    .othermenu{
        display: none;
    }

    .menu{
        display: none;
    }

    .marginbloc{
        margin: 20px 100px 20px 20px;
    }

    .asidemenu{
        display: block;
        position: fixed;
        top: 0px;
        left: -100%;
        width: 80%;
        height: 100%;
        background: #fff;
        box-shadow: 5px 0px 4px rgba(0,0,0,.1);
        z-index: 3;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
    }

    .asidemenu.see{
        left: 0;
    }

    .ahmenu{
        display: flex;
        margin: 40px ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ahmenu a{
        text-decoration: none;
        outline: none;
        color: #000;
        font-size: 22px;
        padding: 8px 15px;
    }

    .ahmenu a.active{
        color: rgb(255, 81, 0);
        font-weight: bold;
    }

    .px-5{
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
    
   .iti{
        width: 100% !important;
    }

    .product-box {
        width: auto;
    }

    .socialsx{
        display: flex;
        flex-direction: column-reverse;
    }

    .flexline{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .divise{
        margin: 0px 10px;
    }
}

.pdformat{
    /*display: none;*/
    position: fixed;
    width: 1180px;
    /*width: 100%;*/
    height: 100%;
    background: #FFF;
    top: 50%;
    left: 350%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 8px rgba(0,0,0,.2);
    z-index: 999;
    overflow: auto;
    transition: 0.8s;
}
 
.pdformat.see{
    left: 0;
    top: 0%;
    width: 100%;
    transform: none;
} 

 .margeformat{
    margin: 50px;
}

 .fline{
    display: flex;
    justify-content: space-between;
    height: auto;
    overflow: hidden;
    padding: 5px 0px;
}

.fline img{
   width: 300px;
}

 .fline.bar{
   border-bottom: 1px solid #eee;
}

 .fline.bar.bold{
   font-weight: bold;
}

.sfline{
   display: flex;
   flex-direction: column;
}

 .srline{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
}

.bprice{
   font-size: 36px;
   text-align: right;
   color: #ff3b00;
}

.sprice{
    font-size: 30px;
    text-align: right;
}

th{
    background: #00001e;
    color: #fff;
    padding: 10px 10px;
    border: none !important;
}

 td{
   border: 1px solid #00001e;
   padding: 10px 10px;
}

.pdformat table{
    border-spacing:0px;
    border-collapse: collapse;
    border: 1px solid #00001e;
    font-size: 22px;
    width: 100%;
}

.gray{
   color: #777;
   text-align: left;
   font-size: 22px;
}

.tt{
   font-size: 22px;
}

.formboxbtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0px;
    text-align: ccenter;
    background: #18b36a;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}

.formboxbtn i{
    margin-right: 10px;
}

.formboxbtn.red{
    background: #ff00001c;
    color: #ff3a3a;
}

 .btn-whatsapp{
     cursor: pointer;
}

 .btn-whatsapp:hover{
     background: #0a7c47;
}
