html{
    background-color: #666666;
    font: 400 1.5em/1.58 Vollkorn, serif;
    padding: 0px;
    margin: 0px;
}

.myGallery {
  margin-top: 100px;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}

.myGallery img {
  width: 100%;
}

.myGallery .item {
  position: relative;
  overflow: hidden;    
}

.myGallery .item img {
  vertical-align: middle;
}

.myGallery .caption {
  display: none;
  position: absolute; 
  margin: 0;    
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow:hidden;
  box-sizing: border-box;  
  background: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
  padding: 15px;
}

.myGallery .item:hover .caption {
  display: block;
}

#header {  
  text-align: center;   
  background-color: #ffffff;
  width: 100%;
}

#nav{
  font-family: "Raleway",Sans-serif;
  font-weight: 400;  
  text-align: center;  
  z-index: 2;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px 1px 1px;
  border-color: rgba(198,198,198,.22);
  width: 100%;
}

.myGallery {
  font-size: 1rem;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.basic-button{
    background-color: #ffffff;
    border: none;
    color: #000000;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
 }

 .basic-button:hover{
     background-color: #cccccc;    
  }
  
  .add-button{
      margin-right: 3px;
      background-color: #e7e7e7; 
      color: black;
      padding: 10px;
  }
  
.modal {
    display : none;
    position : fixed;
    overflow: auto;    
    z-index: 100;
    margin: 0px;    
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;   
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
} 

 .modal-content {
background-color : #fefefe;
border : #888 solid 1px;
margin: auto;
width : 75%;
height: 75%;
min-height: 500px;
}

#scContent {    
    overflow: auto;
    width: 100%;
    height: 80%;
}
#scButtons {
    
}

.close {
color : #aaaaaa;
float : right;
font-size : 28px;
font-weight : bold;
}
.close:hover, .close:focus {
color : #000;
text-decoration : none;
cursor : pointer;
} 

#confirmPersonal
{
    display: table;
}

#confirmPersonal div{
    display: table-row;
}

#confirmPersonal div label{
    display: table-cell;
}
#confirmPersonal div input{
    display: table-cell;
    margin-left: 30px;
    width: 330px;
}

#confirmItems{
    display: table;        
}

#confirmItems div{
    display: table-row;
}

#confirmItems div span{
    display: table-cell;
    padding-left: 20px; 
}

#confirmItems img{
    padding-right: 20px;
}

#confirmItems span{
    margin-right: 20px;
}
    
#confirmItems input{
    margin-left: 20px;
    margin-right: 20px;
}

.timeline{
    background-color: #ffffff;
    border: none;
    color: #000000;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;   
}

.timeline:hover{
     background-color: #cccccc;    
  }
  
  #cartButton{
      margin-left: 50px;
  }