/*Globle*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.headercontainer{
    width: 100%;
    top: 0;
    height: 120px;
    box-sizing: border-box;
    overflow: visible;
}
.navbar{
    z-index: 999;
    padding-left: 2%;
    padding-right: 2%;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    width: 100%;
    display: flex;
    background-color: white;
    align-items: center;
    position: fixed;
    overflow: visible;
}
.headerloginmenu{
    clear:left;
    position: relative;
    overflow: visible;
    display: none;
    z-index: 99999;
    width: 100%;
    background: white;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);

}
.headerloginmenu ul{
    list-style: none;
}
.headerloginmenu li{
    padding:10px
}
.headerloginmenu li:hover{
    background-color: #dddddd;
}
.header_flax_left,.header_flax_middle,.header_flax_right{
    /*border-style: solid;*/
    display: flex;
}
.header_flax_left{
    width: 10%;
}
.headerlefthome{
    display: none;
}
.header_flax_middle{
    width: 75%;
    margin: 30px;
}
.header_flax_middle input{
    /*width: 100%;*/
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.headerlocation{
    width: 20%;
    margin-right: 20px;
}
.headermiddlesearch{
    width: 100%;
    /*margin-right: 20px;*/
    text-align: center;
}
.headermiddlesearch input[type=button]{
    background: url('../img/websiteimg/searchtxtwhite.png') no-repeat;
    color: white;
    background-position: center;
    background-color: #247183;
    background-size: 50%;
    width: 20%;
}
#searchbtn:before{
    content: "Contact Us";
}

.searchitem{
    background: white;
    /*width: 80%;*/
    left: calc(13vw + 1%);
    width: 53vw;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
    top: 85px;
    display: none;
    text-align: left;
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    padding: 10px;
}
.searchitem a{
    text-decoration: none;
}
/*.headermiddlesearch input[type=text]{
    width: 80%;
}*/

/*Element in side Class*/
.logo{
    cursor: pointer;
    margin-right: 10px;
}
.logo img{
    height:50px;
    width:50px;
}
/*Element in side Class*/
.websitename p{
    font-size: 13px;
    margin: 0;
    padding: 0;
    font-weight: bold;
    cursor: pointer;
}
.websitename a{
    text-decoration: none;
    color: inherit;
}
/*Class*/
.websitenamemy{
    color:#247183;
    font-family:Arial;
}
.clickableblock1{
    cursor: pointer;
}
.showcart{
    cursor: pointer;
    align-items:center;
    max-height:50px;
    width: 50%;
    background-color: #247183;
    border-radius:7px
}
.showcart table{
    width: 100%;
    height:100% ;
}
.showcart td{
    padding: 0px;
    margin: 0px;
    text-align: center;
}
.cartimg{
    padding: 0px;
    margin: 0px;
    margin-top: 2px;
}
.cartimg img{
    padding: 0px;
    margin: 0px;
    width:20px;
    height:20px;
}

.showcartmobile{
    display: none;
}
.toast{
    position: fixed;
    align-content: center;
    align-items: center;
    text-align: center;
    bottom:10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 9999;
    display: none;
    padding: 10px;
}
.toast-body{

}
@keyframes toastanimation {
    0% {opacity: 0%; }
    10% {opacity: 30%; }
    20% {opacity: 70%; }
    25% {opacity: 100%;}
    50% {opacity: 100%;}
    75% {opacity: 50%;}
    100% {opacity: 0%;}
}

.header_flax_right{
    width: 15%;
}
.headerloginbtn{
    cursor: pointer;
    height:50px;
    padding: 15px;
    margin: auto;
    text-align:center;
    width: 50%;
}
.headerloginbtn img{
    height:50px;
    margin-left: auto;
    margin-right: auto;
}
.headerlogintxt{
    padding: 10px;
    color: #247183;
}
.headerlogintxt:hover{
    color: black;
}
@media only screen and (max-width: 620px) {
    /* For mobile phones: */
    .websitename,.logo{
        display: none;
    }
    .header_flax_left{
        width: 7%;
    }
    .headerlefthome{
        display: block;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .headerlefthome img{
        height: 30px;
        width: 35px;
    }
    .headerlocation{
        display: none;
    }
    .showcart{
        position: fixed;
        align-content: center;
        align-items: center;
        text-align: center;
        bottom: 3px;
        left: 50%;
        width: 95%;
        transform: translate(-50%, -50%);
        background: #247183;
        box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        z-index: 9999;
        display: block;
        padding: 10px;
    }
    .showcartimg{
        display: none;
    }
    .cartitem{
        text-align: left !important;
        padding-left: 20px !important;
    }
    .showcartmobile{
        display: block;
        font-size:15px;
        padding: 0px;
        margin: 0px;
        color: white;
        text-align: right !important;
        height: 100%;
    }
    .showcartmobile div{
        height: 100%;
    }
    .viewcartmobile{
        font-weight:bold;
        height: 100%;
        padding: 5px;
        justify-content: center;
        align-content: center;
        align-items: center;
        vertical-align: middle;
    }
    .header_flax_middle{
        width: 78%;
    }
    .headermiddlesearch{
        width: 100%;
        margin: 0px;
    }
    .headermiddlesearch input[type=button]{
        background: url('../img/websiteimg/search-iconWhite.png') no-repeat;
        color: white;
        background-position: center;
        background-color: #247183;
        background-size: 30%;
        width: 20%;
    }
    .searchitem{
        background: white;
        /*width: 80%;*/
        left: calc(14vw + 1%);
        width: 63vw;
        box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
        top: 76px;
        text-align: left;
        position: absolute;
        overflow: hidden;
    }
    .headermiddlesearch input{
        width: 100%;
        margin: 0px;
    }
    .headerloginbtn{
        margin: 0px;
        padding: 0px;
        padding-top: 15px;
        width: 100%;
    }
    .header_flax_right{
        width: 15%;
    }
}
