@font-face {
    font-family: 'prime';
    src:  url('../fonts/prime.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.menuholder{
    position:fixed;
    z-index: 2;
    min-width: 100%;
    max-width:100%;
}
.menu{
    position: relative;

}

#navs{
    left:0;
    float:left;
}

#accs{
    right:0%;
    float:right;
}

.white::before{
    background:#fff ;
    box-shadow:0px -7.5px 0px 0px  #fff,
        0px -15px 0px 0px #fff;
}

.red::before{
    background:#f00;
    box-shadow:0px -7.5px 0px 0px  #f00,
        0px -15px 0px 0px #f00;
}

.black::before{
    background: #000;
    box-shadow:0px -7.5px 0px 0px  #000,
        0px -15px 0px 0px #000;
}

.orange::before{
    background: coral;
    box-shadow:0px -7.5px 0px 0px  coral,
        0px -15px 0px 0px coral;
}

#collapsenav:checked + labelnav:before{
    position:relative;
    right:calc(-260px);
    opacity:0.7;
}


#collapsenav:checked ~.ddcontent{
    display: block;
}

#collapseacc:checked ~.ddcontent{
    display:block;
}

.menu label{
        background: rgba(5,5,5,0.5);
    display:block;
    padding: 10px;
    margin-top: 5px;
    margin-left: 5px;
    margin-bottom: 0px;
    color:white;
    cursor:pointer;
        -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    -user-select: none; /* Standard */
    font-family: 'prime', Verdana, sans-serif;
}

.ddele{
    font-family:'prime', Verdana, sans-serif;
    text-decoration: none;
    display: block;
    color: black;
    width: 300px;
    padding-top:5px;
    padding-left:10px;
    padding-bottom:5px;
    font-weight: 500;
    font-size: 20px;
    opacity: 0;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    -user-select: none; /* Standard */
    background: rgba(0,0,0,0.8); 
}

.ddele:hover{
    text-decoration: none;
    background:rgba(5,5,5,0.5); 
}

.ddcontent{
    position:absolute;
    display: none;
        margin-left: 5px;
}

.menu label:before{
    height:3px;
    width:30px;

    display:inline-block;
    content:"";

    margin-right:20px;
    transition:all .5s;
    position:relative;
    opacity:1;

}

.clientpanel{
    float:right;
}

.clientpanel label{
    display:block;
    padding: 10px;
    margin: 10px;
    right:10px;
    background: rgba(5,5,5,0.5);
    color: white;
    font-family: 'prime', Trebuchet MS, sans-serif;
    font-weight: 800;
    font-size: 14px;
    
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    -user-select: none; /* Standard */
}

.welcome{
    display: block;
    float: left;
    /* top: 50%; */
    height: 100%;
    position:relative;
    padding-top: 1.5%;
}

.clientpanel label div div{
    display: block;
    float: left;
    height: 100%;
    position:relative;
    padding-top: 1.5%;
}

.clientpanel label a{
    font-family: Trebuchet MS, sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: white;
    text-decoration:none;
    cursor: pointer;
}

.menu input[type="checkbox"]{
    visibility:hidden;
    position:fixed;
}

#accbutton,#favbutton,#cartbutton,#logoutbutton{
    cursor: pointer;
}

@media only screen and (max-device-width: 480px) and (orientation : portrait){
    .ddele{

        background: rgba(0,0,0,0); 
        color: white;
    }

    .ddcontent{
        margin:0;
        padding: 10px;
        width: 100vw;
        height: 100vh;
        margin-top: -50%;
        padding-top: 50%;
        background: rgba(0,0,0,0.8); 
    }

    .clientpanel label{
        margin: 5px;
    }
    
    .welcome{
        display:none;
    }
}