@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
* {
  margin: 0;
  padding: 0;
}

.tabinator {
  background: #000;
  padding: 40px;
  font-family: Open Sans;
}
.tabinator h2 {
  text-align: center;
  margin-bottom: 10px;
}
.tabinator input {
  display: none;
}
.tabinator label {
  box-sizing: border-box;
  display: inline-block;
  padding: 15px 25px;
  color: #eee;
  margin-bottom: -1px;
  margin-left: -1px;
}
.tabinator label:before {
  display:block;
  width:100%;
  height:15px;
  background-color:#000;
  position:absolute;
  bottom:-11px;
  left:0;
  z-index:10;  
}
.tabinator label:hover {
  color: #999;
  cursor: pointer;
}
.tabinator input:checked + label {
  position: relative;
  color: #ccc;
  background: #444;
  border: 2px solid #ccc;
  border-bottom: 2px solid #fff;
  border-radius: 5px 5px 0 0;
}
.tabinator input:checked + label:after {
  display: block;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  box-shadow: 0 0 15px #939393;
}
#cont1, #cont2, #cont3, #cont4, #cont5, #cont6, #cont7 {
  display: none;
  border-top: 1px solid #bbb;
  padding: 15px;
}
#tab1:checked ~ #cont1,
#tab2:checked ~ #cont2,
#tab3:checked ~ #cont3,
#tab4:checked ~ #cont4,
#tab5:checked ~ #cont5,
#tab6:checked ~ #cont6,
#tab7:checked ~ #cont7  {
  display: block;

}

.object-fit_cover { object-fit: cover }


img {
  width: 100%; /* need to overwrite inline dimensions */
  height: auto;
}
h2 {
  margin-bottom: .5em;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1em;
}


/* hover styles */
.location-listing {
  position: relative;
}

.location-image {
  line-height: 0;
  overflow: hidden;
  height: 110px;
}

.location-image img {
  filter: blur(0px);
  transition: filter 0.3s ease-in;
  transform: scale(1.1);
}

.location-title {
  font-size: 1.6em;
  font-weight: bold;
  text-decoration: none;
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  text-align: center;
  transition: opacity .5s;
  background: rgba(17,0,51,0.3);
  color: white;
  
  /* position the text in t’ middle*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-listing:hover .location-title {
  opacity: 1;
}

.location-listing:hover .location-image img {
  filter: blur(2px);
}


/* for touch screen devices */
@media (hover: none) { 
  .location-title {
    opacity: 1;
  }
  .location-image img {
    filter: blur(2px);
  }
}




table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  background-color:#fff;
  box-shadow: 0 0 15px #fff;
  border-bottom: 3px solid #fff;
  border-radius: 5px 5px 0 0;
  color: black;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color:#888;
  border: 1px solid #666;
  padding: .25em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
  background-color:#eee;
  color: black;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color:#eee;
  color: black;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  background-color:#000;
  color: black;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    color: black;
  }
  
  table tr {
    border-bottom: 1px solid #666;
    display: block;
    margin-bottom: .125em;
  }
  
  table td {
    display: block;
    font-size: .8em;
    text-align: right;
    color: black;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

td a:hover { 
   color: #ccc; 
}
td a { 
   color: black;
}


.vti{
  text-align: center;
  color: white;
  font-family: Open Sans;
  font-size: 1.0em;
}
