
@font-face {
    font-family: Montserrat-Black;
    src: url("../../css/Montserrat-Black.otf") format("opentype");
}

@font-face {
    font-family: Roboto-Regular;
    src: url("../../css/Roboto-Regular.ttf");
}

*{
    margin:0px;
    padding:0px;
    font-family: Roboto-Regular;
}

button, input{
    padding:5px;
}

button, a{
    cursor: pointer;
}


.null{
    color:darkgreen;
}

body{
    /*background-color:lightgray;*/
    background-image: url("/viewmain/img/noisy_grid.png");
    background-repeat: repeat;
}

#Header{
    position: relative;
    margin:auto;
    width:100%;
    min-width: 1200px;
    height: 100px;
    /*border:1px solid red;*/
    background-color: var(--header-bg-color);
}

#HeaderContent{
    position: relative;
    margin:auto;
    min-width: 1200px;
    max-width: 1200px;
    min-height: 95px;
    max-height: 95px;
    border-bottom: 5px solid var(--header-border-color);

    padding-left:5px;


}

#HeaderShopName{
    display:block;
    padding-top: 25px;
    font-size: 36px;
    color:var(--header-logo-font-color);
    font-family: Montserrat-Black;
    text-transform: uppercase;
}

#HeaderCartDetails{
    display:block;
    padding-top: 25px;
    font-size: 14px;
    color:var(--header-cart-font-color);
    position: relative;
    float:right;
    margin-right:300px;
    margin-top:-50px;
    font-family: Roboto-Regular;
    cursor: pointer;
}

#HeaderCartItems{
    color:var(--header-cartitem-font-color);
    font-weight: bold;
}

#MenuDiv{
    /*border:1px solid red;*/

    width: 1200px;
    min-height: 50px;
    max-height: 50px;
    margin:auto;
    border-top:5px dotted var(--header-border-color);
    overflow:visible;


}


#Menu{
    /*border:1px solid red;*/
    padding-left: 10px;
    /*width:content-box;*/
    line-height: 50px;
    background-color:var(--menu-background-color);
    min-height: 50px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    color:var(--menu-default-color);


}

#Menu a{

    padding-left:5px;
    padding-right:5px;
    margin:0px;
    line-height: 50px;
    position:relative;
    text-transform: uppercase;
    color:var(--menu-font-color);
    font-weight: bold;
    text-shadow: 1px 1px var(--menu-font-shadow-color);
    /*border:1px solid red;*/
    font-size:15px;
    text-decoration:none;
    cursor: pointer;

}


#Menu a:hover{

    color: var(--menu-font-hover-color);
    border-bottom: 5px double var(--menu-font-hover-color);
}


#MenuDiv img{
    /*border:1px solid red;*/
    width:150px;
    height: auto;
    float:right;
    margin-top:-145px;
    margin-right: 125px;
    position:relative;
    display: block;
    float:right;
}

#ContentDiv{
    /*border:1px solid red;*/
    position: relative;
    margin-top:10px !important;
    margin:auto;
    min-width: 1200px;
    max-width: 1200px;


    overflow: auto;
    min-height: 500px;

    border-bottom: 5px dotted var(--header-border-color);

    border-radius: 5px;
    background-color:rgba(255,255,255,.9);

    -webkit-box-shadow: 0px 0px 8px 1px rgba(125,123,125,1);
    -moz-box-shadow: 0px 0px 8px 1px rgba(125,123,125,1);
    box-shadow: 0px 0px 8px 1px rgba(125,123,125,1);

}

#LeftContent, #MiddleContent, #RightContent{
    /*	border:1px solid red;*/
    min-height: 495px;


}

#LeftContent{
    display: block;
    position: relative;
    float:left;
    margin:auto;
    min-width: 230px;
    max-width: 230px;
    margin-right:10px;


    border-top-left-radius: 10px;

}

#Categories{
    margin-top:10px;
    margin-left: 10px;
}

#Categories h3{
    padding:10px;
    background-color: var(--header-bg-color);
	color:  var(--header-logo-font-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

#Categories li{

    list-style-position: inside;
    min-width: 200px;
    max-width: 200px;
    text-overflow:ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding:7px;
    padding-left:3px;
    margin-top:3px;
    border-radius: 5px;


    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}

#Categories li:hover{
    font-weight: bold;
	text-decoration: underline;
    cursor: pointer;
}

#BestSellers{
    padding-left:3px;
    margin-left:10px;
}

#BestSellers h3{
    padding:10px;
    background-color: var(--header-bg-color);
	color: var(--header-logo-font-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

#BestSellerList{
    min-width: 200px;
    max-width: 210px;
    margin-left:10px;
}

#BestSellers li{
    list-style-position: inside;

    text-overflow:ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding:7px;
    padding-left:3px;
    margin-top:3px;
    border-radius: 5px;


    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

}

#BestSellers li:hover{
    font-weight: bold;
    cursor: pointer;
}

#LeftProductViewerDiv {
    max-width: 100%;

    border-bottom-left-radius:  5px;
    border-bottom-right-radius:  5px;
    margin-left:10px;
    padding-bottom: 10px;

    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

}


#LeftProductViewerImageDiv {
    display: table-cell;
    vertical-align: middle;
    height:150px !important;
    text-align: center;
    width:230px;
    margin:auto;
    position:relative;


}

#LeftProductViewerDiv img{
    max-height: 145px;
    max-width: 145px;
    width: auto;
    height:auto;
}

#LeftProductViewerHeading{
    padding:10px;
    background-color: var(--header-bg-color);
	color: var(--header-logo-font-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

#Container {
    text-align: center;

}

#Container p{
    overflow: hidden;
    height: 40px;
    width: 100%;
    text-overflow:ellipsis;
    white-space: nowrap;
}


#Container button{
    margin-top:3px;
    padding:5px
}

#Container span{
    font-weight: bold;

}

#MiddleContent{

    position: relative;
    float:left;
    margin:auto;
    min-width: 700px;
    max-width: 700px;
    margin-left: 1px;
    margin-right:1px;

    padding-top:10px;
    padding-bottom:10px;


}

#MiddleContent h3{
    padding:10px;
    background-color: var(--header-bg-color);
	color: var(--header-logo-font-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.ProductDiv{
    position:relative;
    display: block;
    float:left;
    padding-top:10px;
    text-align: center;
    border:1px solid lightgrey;
    width:200px;
    max-height: 275px;
    min-height:275px;
    margin-top:10px;
    margin-left:25px;
    border-radius: 10px;


    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

}

.ProductDiv hr{
    color:lightgrey;
    margin-bottom: 2px;
}

.ProductDiv div{
    /*border:1px solid red;*/

    width:180px;
    height:150px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}



.ProductDiv p{
    /*border: 1px solid red;*/
    min-height: 39px;
    max-height: 39px;
    text-overflow:ellipsis;
	max-width: 98%;
    /*white-space: nowrap;*/
    overflow: hidden;
	font-size: 12px;
	width:100% ;
	text-align: center;
    padding:5px;


}


.ProductDiv img{
    /*border:1px outset grey;*/
    max-width:125px;
    max-height: 125px;
    width:auto;
    height:auto;
    margin-left:10px;
}

.ProductDiv span{
    font-weight: bold;
}

.ProductDiv button{
    margin-top:3px;
    padding:5px
}

.beforeDiscountCost{
    text-decoration: red line-through;
    color:red;
}

.newItemJpg{
    display:block;
    float:left;
    position: absolute;
    margin:0px;
    width:100px !important;
    height:auto !important;
    transform: rotate(35deg) scale(.5);
    margin-top:-30px;
    margin-left:115px !important;


}

#ContactUsDiv input,textarea{
	width:75%;
	margin-top:20px;
	font-size: 14px;
	font-family: cursive;
	padding:5px;
}

#ContactUsDiv textarea{
	width:77%;
	min-height: 200px;
}

#LocationMapDiv{
	width:90%;
	height:400px;
	margin-left:10px;
	border:1px solid grey;
}
#AddressDiv{
	padding-left:50px;
}
#CartTable{
    width:98%;
    border-collapse: collapse;
    vertical-align: middle;
}



#CartTable tr{
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    border-top:1px solid grey;
    border-bottom: 1px solid grey;

}
#CartTable tr:first-child,#CartTable tr:last-child{

    border-top:0px solid grey;
    border-bottom: 0px solid grey;

}


#CartTable td{
    text-align: center;
    padding:5px;
}

#CartTable tr>td:first-child{

    width: 120px;
    max-width: 120px;
    height:120px;
    max-height: 120px;

}

#CartTable tr>td:nth-child(2){
    width: 350px;
    max-width: 350px;
}


#CartTable tr>td:nth-child(3){
    width: 70px;
    max-width: 70px;
}

#CartTable tr>td:nth-child(4){
    /*background-color: red;*/
    width: 100px;
    max-width: 100px;
}

#CartTable tr>td:nth-child(5){
    width: 70px;
    max-width: 70px;
}


#CartTable tr:first-child>td:first-child{

    border-top-left-radius:10px;
}

#CartTable tr:first-child>td:last-child{

    border-top-right-radius:10px;
}

#CartTable tr:last-child>td:first-child{

    border-bottom-left-radius:10px;

}

#CartTable tr:last-child>td:last-child{

    border-bottom-right-radius:10px;
}



#CartTable img{
    max-width:100px;
    max-height: 100px;
    height:auto;
    width:auto;
    cursor: pointer;
}

#UpdateCartPNG{
    max-width:42px !important;
    max-height:42px !important;
}

#CartTable input{
    width:50px;
    height: 50px;
    padding:0px;
    font-size: 14px;
}

#CartTable h3{
    background-color:transparent;
	color:black;
}

#CartTable tr>td:last-child img{
    width:64px;
    height:64px;
}

#LoginTable td{
    padding:10px;
}

#LoginTable input{
    width:300px;
}

#MyAccountNav button{
    padding:10px;
    font-weight: bold;
    margin:10px;
}

.UserMostOrdered{
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    max-width:95%;
    padding:5px;

    /*/scale to floating div hight*/
    overflow: auto;


}

.UserMostOrdered div{
    white-space: nowrap;
    text-overflow:ellipsis;
    max-width:30%;
    min-width: 30%;
    padding:5px;
    margin:5px;
    border:1px solid lightgray;
    position:relative;
    float:left;

    /**Make the overflow text ....*/
    text-overflow:ellipsis;
    overflow: hidden;

}

.UserMostOrdered div:hover{
    background-color:lightblue;
    cursor:pointer;
}

.PrevOrder{
    white-space: nowrap !important;
    text-overflow:ellipsis !important;
    max-width:45% !important;
    min-width: 45% !important;
    padding:5px !important;
    margin:5px !important;
    border:1px solid lightgray !important;
    position:relative !important;
    float:left !important;

    /**Make the overflow text ....*/
    text-overflow:ellipsis !important;
    overflow: hidden !important;
    font-size: 12px;
}

.PrevOrder span{
    position:relative;
    float:right;
}

#UserProfileDiv{
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    padding:10px;
}

#UserProfileDiv input{
    border:1px solid lightgrey;
    width:50%;
    margin-bottom:10px;
    padding:10px;
    border-radius: 4px;
}

#UserProfileDiv span{
    font-weight: bold;
    padding:10px;
}

#UpdatePassDiv{
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    padding:10px;
}

#UpdatePassDiv input{
    border:1px solid lightgrey;
    width:30%;
    margin-bottom:10px;
    padding:10px;
}

#UpdatePassDiv button{
    margin-top:3px;
    padding:5px
}

#PlaceOrderItemTable{
    width:95%;
    border-collapse: collapse;
    border:1px solid grey;
}

#PlaceOrderItemTable td{

    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    padding:10px;
    border:1px solid grey;

}

#PlaceOrderItemTable td:first-child{
    text-align: center;
    width:50px;
}



#PlaceOrderItemTable td:nth-child(3){
    text-align: center;
}

#PlaceOrderItemTable td:last-child{
    text-align: right;
    width:100px;
}

#OrderStatusTable{
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    width:80%;
    margin-left:3%;
    margin-top:10px;
    padding:10px;
}

#OrderStatusTable tr{

}

#OrderStatusTable td{
    padding: 10px;
    border-collapse: collapse;
    border-top:1px double grey;
    border-bottom:1px solid grey;

}
#OrderStatusTable tr:first-child>td{
    border-top:0px double grey;
}
#OrderStatusTable tr:last-child>td{
    border-bottom:3px double grey;
}

#OrderStatusTable tr>td:first-child{
    /*background-color:red;*/
    vertical-align: top;
    width:200px;

}

#RegisterTable{
    width:95%;

    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    padding: 5px;
}

#RegisterTable th{
    text-align: left;
    padding-left:10px;
    width: 275px;


}

#RegisterTable input{
    width:93%;
}

#RightContent{
    display: block;
    position: relative;
    float:left;
    margin:auto;
    min-width: 250px;
    max-width: 250px;
    margin-left:5px;
    min-height: 200px;
    border-top-right-radius: 10px;
	
	
	
}

.SearchBox{
    margin-top:10px;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:5px;
    width:98%;
    display:block;
    position:relative;
    background-color: var(--header-bg-color);
	color: var(--header-logo-font-color);
	font-weight: bold;
    border-radius: 5px;
}

.SearchBox input{

    width:86%;
}

.SearchBox button{
    margin-top:3px;
    text-align: center;





    text-transform: uppercase;
    text-decoration: none;
}

.SearchBox a:active{
    background-color: var(--SearchBox-button-highlight-color);
    color: var(--SearchBox-button-highlight-font-color);
}

#RightContent h3{
    padding:10px;
    background-color: var(--header-bg-color);
	color: var(--header-logo-font-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.twitter-timeline-div{
	max-height: 50vh;
	min-width: 99%;
	overflow-y: auto;
	border:1px solid grey;
}

/*.twitter-timeline-div iframe{
	width:95%;
	overflow-y: scroll;
}*/


#FooterDiv{
    /*border:1px solid red;*/
    position: relative;
    margin:auto;
    min-width: 1200px;
    height: 100px;
    background-color: var(--header-bg-color);
}

#FooterContentDiv{
    border-top: 5px solid var(--header-border-color);
    margin:auto;
    min-width: 1200px;
    max-width: 1200px;
    height: 100px;
    text-align: center;
    color:var(--header-logo-font-color);
    font-size:10px;
}

#FooterContentDiv table{
    width:100%;
	border-collapse: collapse;
    /*border:1px solid red;*/
}


#FooterContentDiv td{
    width:395px;
    height:65px;
    /*border:1px solid red;*/
    text-align: left;
    padding-left:5px;
    padding-top:5px;
    vertical-align: top;

    font-size: 14px;
    font-weight: bold;



	padding-left:10px;
	padding-right: 10px;

}

#FooterContentDiv td:nth-child(2){
	text-align: center;
}

#FooterContentDiv td:last-child{
	text-align: right;
}

#FooterContentDiv a{
	padding:5px;
	font-weight: 700px;
}

#CopyrightText{
	font-size:12px;
	color:var(--header-logo-font-color);
}


#CopyrightText a{
	font-size:12px;
	color:var(--header-logo-font-color);
}

.UserContent h1,.UserContent h2, .UserContent h3, .UserContent h4, .UserContent h5, .UserContent h6,.UserContent  pre, .UserContent p, .UserContent ol, .UserContent ul, .UserContent li{
	background-color: transparent !important;
	padding:5px !important;
	margin:5px !important;
	font-family: Roboto-Regular !important;
	color:black !important;
}

.UserContent ol, .UserContent ul{
	padding-left:25px !important;
	color:black !important;
}
