body{
    overflow-y: scroll;
    overflow-x: scroll;
    scrollbar-color: rebeccapurple green;
    scrollbar-width: thin;
}
.head{
    width: 100%;
    height: 160px;
    background-color: #4995f0;
    color: white;
    position: fixed;
    margin-top: 0px;
    padding-top: 0px;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:sans-serif;
    text-decoration: none;
}
a{
    cursor: pointer;
}
.head_top{
    
    font-size: 14px;
    font-weight: 150;
    text-align: right;
    padding-top: 10px;
    height: 30px;
    width: 90%;
    margin: auto;
    /* border: 1px solid red; should remove later */
}
.head_top ul{
    display: inline-flex;
    list-style: none;
    color:white;
}
.head_top ul li{
    width:190px;
}
.fa-angle-down{
    margin-left: 8px;
}
.fa-mobile{
    margin-right: 8px;
}
#savebig{
    height: 250px;
    width: 300px;
    background-color: white;
    color: black;
    border-radius: 5px;
    text-align: left;
    padding-left: 5px;
    /* position: absolute; */
    right: 200px;
    top:20px;
    display: none;
}
.head_top a{
    color:black;
}
#allstore{
    display: grid;
    grid-template-columns: repeat(2,100px);
    grid-template-rows: repeat(3,50px);
    grid-column-gap: 30px;
    grid-row-gap: -50px;
}
.qrcode{
    grid-area: 1/1/4/2;
}
.applestore{
    grid-area: 1/2/2/3;
}
.playstore{
    grid-area: 2/2/3/3;
}
.appstore{
    grid-area: 3/2/4/3;
}
#appoption:hover > #savebig{
    margin-top: 20px;
    display:block;
}
#language ul{
    display:none;
}
#support ul{
    display:none;
}
#language:hover > ul{
    /* margin-top: 20px; */
    display:block;
    color:black;
    position: absolute;
    background-color:white;
    line-height: 30px;
    border-radius: 10px;
    text-align: center;
}
#support:hover > ul{
    /* margin-top: 20px; */
    display:block;
    color:black;
    position: absolute;
    background-color:white;
    line-height: 30px;
    border-radius: 10px;
    text-align: left;
    padding-left: 10px;
}
.head_middle{
    height:100px;
    width:90%;
    /* border:1px solid red; */
    margin:auto;
    display:flex;
}
.logo img{
    height: 100%;
    width:200px;
    margin-left: 100px;
}
.head_search input{
    height: 50px;
    width:650px;
    margin: 20px 5px 20px 50px;
    border-radius: 10px;
}
.country{
    margin: 40px 30px 20px 30px;
}
.signin{
    margin: 40px 30px 20px 30px;
}
.cart{
    margin: 40px 30px 20px 30px;
}
.head_bottom{
    text-align: left;
}
.head_bottom ul{
    display: inline-flex;
    list-style: none;
}
.head_bottom ul li{
    /* margin-left: 100px; */
    width:100px
}
.categories{
    
    display:none
}
.categories ul{
    display: inline-block;
    background-color: beige;
    width: 150px;
    margin-left: 15px;
    line-height: 40px;
    text-align: center;

}
.head_bottom ul li:hover .categories{
    display: block;
    position: absolute;

}
