*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all .2s linear;

}
i{
    cursor: pointer;
}


html,body {
    overflow-x: hidden;
    margin: 0;


}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
     color: #313133;
}

.location-box{
    position:relative;
    width: 33.33%;
}
.location-box #suggestion-container-laptop{
    position:absolute;
    top:43px;
    width:100%;
    background-color:white;
    padding:5px;
}
.location-box #suggestion-container-laptop div{
    padding:5px;
    cursor:pointer;
    font-size:.9rem;

}
.location-box #suggestion-container-laptop div:hover{
    background-color:gray;
    color:white;
}


.product-box{
    position:relative;
    width: 33.33%;
}
.product-box #suggestion-product-container{
    position:absolute;
    top:43px;
    width:100%;
    
    background-color:white;
    padding:5px;
}
.product-box #suggestion-product-container div{
    padding:5px;
    cursor:pointer;
    font-size:.9rem;

}
.product-box #suggestion-product-container div:hover{
    background-color:gray;
    color:white;
}


.listing-box{
    position:relative;
    width: 33.33%;
}
.listing-box #suggestion-listing-container{
    position:absolute;
    top:43px;
    width:100%;
    background-color:white;
    padding:5px;
}
.listing-box #suggestion-listing-container div{
    padding:5px;
    cursor:pointer;
    font-size:.9rem;

}
.listing-box #suggestion-listing-container div:hover{
    background-color:gray;
    color:white;
}

.main-body-wrapper{
    flex: 1;

}
#suggestion-container div{
    font-size:.7rem;
    padding:3px 10px;
}
#suggestion-container{
    position:relative;
    z-index:100;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    top:-9px;
    background-color:white;
}
.icon-tray-wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
        margin: 20px 6%;
    }
    .icon-tray-wrapper .cards{
        text-decoration: none;
        padding: 4px 0;
    }
    .icon-tray-wrapper .items{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: black;

    }
    .icon-tray-wrapper .items .icon{
        color: #f68b1e;
        font-size: 1rem;
    }
    .icon-tray-wrapper .items .text{
        text-align: center;
        font-size: .7rem;
    }




.message-wrapper{
    position: fixed;
    top: 0;left: 0;right: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.message-wrapper .message{

    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 10px;
    width: auto;
    animation: shake 0.5s;
    animation-iteration-count: 1;
}


.success {
    background-color: green;
    color: white;
}

.error {
    background-color: red;
    color: white;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

.message-wrapper .message .icon{
    margin-right: 20px
}


.header{

    position:fixed;
    z-index: 1000;
    top: 0;right: 0;left: 0;
    box-shadow: 0 10px 10px -4px rgb(0 0 0 / 12%);

    background-color: white;

}


.header .top-nav{
    padding: 10px 0;
     background-color: #f1f1f2;
     display: flex;
     justify-content: space-between;
     position: relative;
     padding: 8px 6%;
 }


 .header .top-nav .hover-container{
    position: absolute;
    cursor: pointer;
    top:23px;
    left:0;right:0;

    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 10px 10px -4px rgb(0 0 0 / 12%);

}



.header .top-nav .items:hover .hover-container{
    display: block;
}
.header .top-nav .items .text-container{
    font-size: .7rem;
    text-decoration: none;
    color: #282828;

}
.header .top-nav .items span{
    margin-right: 10px;
}
.header .hover-container .wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 5px;

}

.header .hover-container .wrapper .box a{
     text-decoration: none;
    color: black;
    font-size:.8rem;
}
.header .hover-container .wrapper i{
    margin-right: 5px;

}


.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;

}

form{
    display: flex;
    margin: 0 6px 0 25px;
    flex-grow: 1;

}
.find{
    flex: 1;
    position: relative;

}
.find-wrapper{
    display: flex;
    border: 2px solid #c7c7cd;
    border-right: none;
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
    padding: 3px 4px 3px 12px;

}

.find input{
    padding: 8px;
    font-size: .8rem;
   border: transparent;
   width:100%;
}

.find .product-search{

    border-right:  solid gainsboro 2px;
}
.find .listing-search{

    border-right:  solid gainsboro 2px;
}
.find .location-search{

}
.find input:focus{
    outline:transparent;
    border: solid #4a85c9 2px;
    border: transparent;
}

.find i{
    position: absolute;
    top: 28%;
    left: 20px;
    font-size: 18px;
    font-weight: 700;
}
form .search-btn{
    padding: 0px 12px;
    background-color: #f68b1e;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    border: transparent;
    color: white;
   border-bottom-right-radius: 100px;
   border-top-right-radius: 100px;
    cursor: pointer;
    font-size: .9rem;

}
.nav-items{
    display: flex;
}


.nav-items .nav-card{
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    padding: 5px;
    position: relative;
}


.extra-nav-items{
    border-radius: 6px;
    display: none;
    width: 180px;
    position: absolute;
    top: 40px;
    left: -20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}
.extra-nav-items.active{
    display: block;
}
.extra-nav-items .extra-btn-1{
   display: flex;
   justify-content: center;
   align-items: center;
   border-bottom: 2px solid #ededed;

}
.extra-nav-items .extra-btn-1 a{
    flex-grow: 1;
    margin: 10px;
    padding: 6px 0;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    background-color: #f68b1e;
    color: white;
    border: transparent;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-weight: initial;
}

.extra-nav-items .extra-icon{
    display: flex;
    align-items: center;
    margin: 10px;
    font-weight: initial;
    text-decoration: none;
    color: #282828;
}

.extra-logout{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px;
    font-weight: initial;
}


.extra-logout a{
    color:#282828;
    cursor: pointer;
    text-decoration: none;
}
.extra-logout a:hover{
    color: #f68b1e;
    cursor: pointer;
}



.extra-nav-items .extra-icon:hover{
    cursor: pointer;
    color: #f68b1e;
}
.extra-nav-items .extra-icon i{
    margin-right: 9px;
}


.nav-items .nav-card i{
    font-size: 19px;
    font-weight: 700;
}

.user-items{
    white-space:nowrap;
}
.user-items:hover,.help-items:hover{
    color: #f68b1e;
    cursor: pointer;
}

.cart-items{
    cursor: pointer;
    text-decoration: none;
    color: #282828;
    position:relative;
}
.cart-items .cart-span{

    position:absolute;
    top:-10px;
    right:-4px;
    height:18px;
    width:18px;
    border-radius:18px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: #f68b1e;
    font-size:.6rem;
}
.cart-items a{
    color: #282828;
    text-decoration: none;
}
.cart-items a:hover{
    color: #f68b1e;
    cursor: pointer;
}
.logo{
    font-size: 23px;
    font-weight: 900;
    text-decoration: none;
    color: #282828;
}
.logo i{
    color: #f68b1e;
}
.mobile-header{
    display: none;
}
.sidebar{
    display: none;
}




.footer{
    flex-shrink: 0;
    padding: 16px 6%;
    background-color: #282828;
    color: white;
}
.footer .footer-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(17rem,1fr));
    grid-template-rows: repeat(2,auto);
    grid-auto-rows: auto;
    gap: 1.0rem;

}
/*.footer .footer-card{
}*/
.footer .f-headline{
    font-weight: 900;
    padding-bottom: 16px;
    font-size: 14px;
}
.footer .f-item{
    margin-bottom: 4px;
    font-size: 14px;
}
.footer .f-item a{
    text-decoration: none;
    color: #c7c7cd;;
}
.footer .f-item a:hover{
    color: #f68b1e;
    text-decoration: underline;
}
 .bottom-nav-wrapper{
     display:none;
 }
@media screen and (max-width:1120px) {

    .help-card{
        display: none;
    }
    form{
        margin-left: 16px;
    }
}

@media screen and (max-width:900px) {
     .bottom-nav-wrapper{
       background-color:#282828;
        position: fixed;
        z-index:1000;
        bottom: 0px;left: 0;right: 0;
        display: flex;
        justify-content: space-between;
        padding: 7px 20px;


    }
    .bottom-nav-wrapper .cards{
        display: flex;
        color:white;
        align-items: center;
        justify-content:center;
        flex-direction: column;
        padding: 5px 10px;
        font-size: .7rem;
        cursor: pointer;
        text-decoration: none
    }

    .header{
        display: none;
    }
    .delete-modal-container .header{
        display: block;
        position: unset;
        z-index: unset;
        top: unset;
        right: unset;
        left: unset;
        box-shadow: unset;
        background-color: unset;
    }

    .mobile-header{
        position:fixed;
        z-index: 70;
        top: 0;right: 0;left: 0;
        box-shadow: 0 10px 10px -4px rgb(0 0 0 / 12%);
        padding: 14px 6%;
        display: flex;
        flex-direction: column;
        background-color: white;

    }
    .mobile-nav-1{
        display: flex;
        justify-content: space-between;

    }
    .mobile-nav-1 .fa-bars,.fa-user,.fa-cart-shopping{
        font-size: 18px;
        font-weight: 700;
    }
    .mobile-nav-1 .fa-star{
        font-size: 18px;
        font-weight: 700;
        color: #f68b1e;
    }
    .mobile-nav-card1{
        display: flex;
        align-items: center;
    }
    .mobile-nav-card1 span{
        font-size: 23px;
        font-weight: 900;
       margin-left: 8px;
    }
    .mobile-nav-card2{
        display: flex;
        align-items: center;
    }
    .mobile-nav-card2 i{
        margin-left: 12px;

    }
    .mobile-nav-card2 i:hover{
        color: #f68b1e;
        cursor: pointer;
    }
    .mobile-nav-2{
        position:fixed;

        top:0;bottom:0;
        left:0;right:0;
        margin:0;
        padding:12px;
        display:none;
        overflow-y:scroll;
        background-color:white;

    }
    #mobile-search.show{
        display:flex;
        flex-direction:column;
    }
    .mobile-nav-2 .form-arrow{
        padding:7px;
        margin-right:10px;
        display:flex;
        justify-content:space-between;
    }
     .mobile-nav-2 .form-arrow i{
         color:#B22222;
     }
    .mobile-nav-2 .wrapper{
        width:100%;

    }
    .mobile-nav-2 .logo-search{
         font-weight:600;
    }
    .mobile-nav-2 .search-title{
        font-size:.6rem;
        font-weight:600;
        margin:10px;
        padding:3px 0;
    }
    .mobile-nav-2 .find-mobile1{
         position: relative;
         border: 1px solid #c7c7cd;
         margin: 10px 0;
         display:flex;
         border-radius:8px;
         width:100%;

    }
    .mobile-nav-2 .post-code{
        border-left: 1px solid #c7c7cd;
        width:40%;
    }
     .mobile-nav-2 .find-mobile1:nth-child(2) button{
         background-color: #313133;
     }


    .mobile-nav-2 input{
        flex-grow: 1;
        padding: 11px 0 11px 7px;
        font-size: .6rem;
        font-weight: 700;
        margin:2px;
         width:100%;
        border: none;

    }
    .mobile-nav-2 input:focus{
        outline: none;
    }
    .mobile-nav-2 .find-mobile1 button{
        background-color: #f68b1e;
        color:white;
        border:none;
        padding:0 11px;
        border-bottom-right-radius: 8px;
        border-top-right-radius: 8px;

    }
    .sidebar{
       display: block;
        position: fixed;
        background-color: white;
        z-index: 100;
        left: 0;top: 0;
        width: 88vw;
        height: 100%;
        transform: translate(-100%);
        transition: transform 300ms ease-in-out;
        overflow-y: scroll;
    }


    #sidebar.active{
        transform: translate(0);
        -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
        box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
    }
    .sidebar-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 10px 10px -4px rgb(0 0 0 / 12%);
        padding: 14px 6%;
    }
    .close-icon i{
        font-size: 26px;
        font-weight: 900;
        padding: 8px;
    }
    .close-icon i:hover{
        transform: rotate(360deg);
        color: #f68b1e;
        transition: all 0.4s linear;
    }
    .sidebar-nav{
        padding: 10px 20px;
    }
    .sidebar-nav a{
        color: black;
        text-decoration: none;
        font-size:.7rem;
    }
    .nav-headings{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-headings h2{
        color: #f68b1e;
    }
    .nav-headings i:hover{
        color: #f68b1e;
    }
    .nav-headings h2,.nav-headings i{
        font-size: 0.8rem;
    }
    .sidebar-nav .items{
        margin: 6px 0;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .sidebar-nav .items i{
        margin-right: 5px;
    }
    .sidebar-nav .items:hover{
        color:#f68b1e;
    }
    .hero-categories{
        display: none;
    }
    .hero-image{
        margin-top: 80px;
        height: 50vh;

    }


}