body {
    margin: 0;
    font-size: 100%;
}

.banner {
    background-image: url('./logobanner_background_new.png');
    background-size: 25% 100%; 
    height: 150px; 
    background-repeat: repeat-x;
    justify-content: space-around; /* this is for the banner logo positioning to be in the center*/
    align-items: center; /* this is for the banner logo positioning to be in the center*/
    display: flex; /* this is for the banner logo positioning to be in the center*/    
}

.bannerlogo {
    width: 10%;
    height: 10%;
    border: 3px #0085ff solid; 
    position: absolute;
    top: 5%;
    right: 50%;
} 

.navbar {
    background-color: #00ffcc;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: auto;
    position: sticky;
    top: 0;
}

.navbar a, .navbar div {
    color: black;
    text-align: center;
    padding: 2vh;
    font-size: 1.2em;
    font-family: 'Caveat Brush', serif;
    text-decoration: none;
    white-space: nowrap;
}

/*This has no purpose, it is only to create a div with a name to hold the dropdown_content container*/
.submenu{
  border: none;
  position: relative;
} 

.productbutton {
    color: black;
    text-align: center;
    font-size: 1.2em;
    font-family: "Caveat Brush", serif;
    background-color: inherit;
    border: none;
}

.dropdown_content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown_content a{
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.cartbutton {
  background-color:white; 
  border-radius: 50%;
  border: none;
  padding-top: 8px;
  float: right;
  position: sticky;
  top: 55px;   
}

.navbar a:hover, .productbutton:hover, .dropdown_content a:hover {opacity: 0.5;}
.cartbutton:hover {opacity: 0.7; cursor: pointer;}

.prodshelf{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;  
}

.prodheader{
    font-family: Monaco, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-variant: small-caps;
    font-size: 1.2em;
}

.prodrows{
  display: flex;   
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  margin-bottom: 30px;
}

.prodcontainer{
  height: 350px;
  overflow: hidden;
}

.prodcontainer img{
  width: 300px;
  height: 250px;
  margin: 1vw;
  object-fit: contain;
}

.proditemdesc{
  font-family: Arial, sans-serif;
  text-align: center;
  font-variant: small-caps;
  font-size: 1em;
  padding: 0;
  margin-top: 0;
}

.popup-form{
    display: none;
    position: fixed;
    z-index: 1;
    right: 0;
    top: 0;
    overflow: auto;
    max-height: 100vh;
}

.cartform-container{
  max-width: 300px;
  padding: 10px;
  background-color: white;
  border: 3px solid #f1f1f1;
  font-family: 'Courier New', Courier, monospace;
}

.cartform-container input[type=text]{
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.form-container input[type=text]:focus{
  background-color: #ddd;
  outline: none;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {
  display: none;
  height: 100%;
}
img {vertical-align: middle;}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  height: 250px;
  background-color: #000;
}

.text {
  color: blue;
  font-size: 15px;
  padding: 8px 12px;
  bottom: 8px;
  width: auto;
  text-align: center;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.active {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.slide-contenttemp{
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  justify-content: center;
}

.slide-content{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.contactUsform{
  max-width: 600px;
  width: 70vw;
  padding: 10px;
  background-color: inherit;
  border: 3px solid black;
  font-family: 'Courier New', Courier, monospace;
  margin: 10px auto 20px auto;
}

.contactUsform input[type=text]{
  width: 80%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.contactUsform textarea{
  width: 80%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}