@import url('https://fonts.googleapis.com/css?family=PT+Sans');

* {
  margin: 0;
  padding: 0;
  font-family: 'PT Sans', sans-serif;
}

.fullbackgroundimage {
	height: 100%;
	width: 100%;
	background-size: 100% 100%;
}

.headertop{
	height: auto;
	width: 100%;
	padding: 15px 0px 15px 0px;
}

.headertop-image{
	height: 13.8vw;
	width: 100%;
}

.slideshow-item{
	/*height: 33vh;*/
	width: 100vw;
	height: 26vw;
	min-height:100px;
}

.mainpagebtn div {
	height: 30px;
}
.mainpagebtn img{
	height: 100%;
}

.headertop-image img{
    margin: 0;
    position: absolute;
    top: calc(13.8vw/2);
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	height: calc(13.8vw/2);
	width: auto;
}

/*--- Make correction for the anchors because of the fixed header navigation bar ---*/
.anchor{
  display: block;
  height: 58px; /*same height as header*/
  margin-top: -58px; /*same height as header*/
  visibility: hidden;
}

/*--------- Top Navigation ---------------------------*/
.highrestopnav {
	position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    
    z-index: 100;
	width: 100%;
	transition: margin-left .5s;
	box-sizing: border-box;
	
	height: auto;
	visibility: visible;
}

.lowrestopnav {
	position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    
    z-index: 100;
	width: 100%;
	transition: margin-left .5s;
	box-sizing: border-box;
	height:0px;
	visibility: hidden;
}

ul.topnav {
    position: relative;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background-color: #fcfcfc;
	
	box-shadow: 1px 0px 3px rgba(136,136,136,0.5);
}

ul.topnav li {float: left;}

ul.topnav li a {
	height: 30px;
	line-height: 30px;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #f0f0f0;}

ul.topnav li a.active {color: #e2bcbc;}

ul.topnav li.right {float: right;}

.minorwidthbtn { visibility: hidden; }

.mainpagebtn {
    font-weight: bold;
}

/* Centered section inside the top navigation */
ul.topnav .topnav-centered {
  float: none;
  position: absolute;  
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}

ul.topnav .topnav-right {
  float: none;
  position: absolute;  
  top: 0%;
  right: 8%;
  /*transform: translate(-50%, 0%);*/
}
.topnav-cart {
  float: none;
  position: absolute;  
  top: 5%;
  right: 2%;
}

/*--------- End Top Navigation -----------------------*/

/*--------- Side Navigation --------------------------*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 2px 2px 2px 32px;
    text-decoration: none;
    font-size: 1em;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
/*--------- End Side Navigation ----------------------*/


/*-------- Responsive Design -------------------------*/
/* Mobile Styles */
@media only screen and (max-width: 500px) {
  .highrestopnav {height:0px; visibility: hidden;}
  .lowrestopnav {visibility: visible; height: auto;}
  .headertop-image img {visibility: hidden;}
}

/* Tablet Styles */
@media only screen and (min-width: 501px) and (max-width: 960px) {
  .highrestopnav {height:0px; visibility: hidden;}
  .lowrestopnav {visibility: visible; height: auto;}
  .headertop-image img {visibility: hidden;}
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
}
/*-------- End of Responsive Design ------------------*/