root {
    --color-white: #ffffff;
    --color-web: #2596be;
}

html{
    background-color: #666666;    
    font-family: "Montserrat",Sans-serif;
    padding: 0px;
    margin: 0px;
}

.myGallery {
  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{
    background-color: #ffffff;
    display: flex;    
    text-transform: uppercase;
    font-weight: 300;
    justify-content: center;
    border-bottom: 1px solid var(--color-web);
}

#header a {  
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
  color: #000000;  
}

#header a:hover {  
  color: #dc2b19;
}


#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);
}
#group{
  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);
}


.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: 15px;
    margin-bottom: 2px;
 }

 .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;
}

.groupitem, .timeline{
    background-color: #ffffff;
    border-right: 2px solid;
    border-left: 2px solid;
    margin-left: 2px;
    color: #000000;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}

	.groupitem:hover, .timeline:hover{
     background-color: #cccccc;
  }

  #cartButton{
      margin-left: 50px;
      font-size: 20px;
  }

.fa-shopping-basket{
	padding-right: 8px;
}
