.openinghours {
    font-family:Lucida Console;
    border-radius:4px;
    margin:10px;
    box-shadow: 0 0 10px black;
    padding:0 10px 0 10px;
    overflow: hidden;
    display: inline-block;
}
.openinghourscontent {
    float:left;
}
.openinghourscontent h2 {
    display:block;
    text-align:center;
    margin-top:.33em;
}
.openinghourscontent button {
    color:white;
    font-family:Courier New;
    font-size:large;
    font-weight:bolder;
    background-color:#4679BD;
    border-radius:4px;
    width:100%;
    margin-bottom:10px;
}
.today_open {
    color: #8AC007;
}
.today_closed {
    color: red;
}
/*.opening-hours-table tr td:first-child {

}*/
#open-status {
    display:block;
    margin-top:-1em;
    text-align:center;
    border:dotted lightgrey 3px;
}
.openorclosed:after {
    content:" open during these hours:";
}
.open {
    color:green;
}
.openShop {
    /*background:#9BC86A;*/
    font-weight: bold;
}
.closedShop {
    /*background:#ffcccb;*/
    font-weight: bold;
}
.openSoon {
    /*background:#ffffc8;*/
    cursor: pointer;
}

.shopLink{
    cursor: pointer;
}
.open:after {
    content:" Open";
    color: #6C0;
}
.closed:after {
    content:" Closed";
    color: red;
}
/*.opening-hours-table tr td {
    padding:5px;
}*/

.shopName {
    font-weight: bold;
}

.headerImage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  /*max-width: 800px;*/
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0.25em 0.25em  0.25em  rgba( 255, 255, 255, 0.4 );
}
table * {
  position: relative;
}
table td, table th {
  padding-left: 15px;
}
table thead tr {
  /*height: 60px;
  background: white;
  font-size: 24px;*/
  height: 48px;
  border-bottom: 2px solid darkgrey;
  font-size: 20px;
}
table tbody tr {
  height: 60px;
  border-bottom: 1px solid darkgrey;
  font-size: 25px;
}
table tbody tr:last-child {
  border: 0;
}
table td, table th {
  text-align: left;
}
table td.l, table th.l {
  text-align: right;
}
table td.c, table th.c {
  text-align: center;
}
table td.r, table th.r {
  text-align: center;
}

@media screen and (max-width: 35.5em) {
  table {
    display: block;
  }
  table > *, table tr, table td, table th {
    display: block;
  }
  table thead {
    display: none;
  }
  table tbody tr {
    height: auto;
    padding: 8px 0;
  }
  table tbody tr td {
    padding-left: 45%;
    margin-bottom: 12px;
  }
  table tbody tr td:last-child {
    margin-bottom: 0;
  }
  table tbody tr td:before {
    position: absolute;
    font-weight: 700;
    width: 40%;
    left: 10px;
    top: 0;
  }
  table.dashboard tbody tr td:nth-child(1):before {
    content: "Name";
  }
  table.dashboard tbody tr td:nth-child(2):before {
    content: "Location";
  }
  table.dashboard tbody tr td:nth-child(3):before {
    content: "Distance";
  }
  table.dashboard tbody tr td:nth-child(4):before {
    content: "Open/Closed";
  }
  table.shop tbody tr td:nth-child(1):before {
    content: "Day";
  }
  table.shop tbody tr td:nth-child(2):before {
    content: "Opens";
  }
  table.shop tbody tr td:nth-child(3):before {
    content: "Closes";
  }
  table.shop tbody tr td:nth-child(4):before {
    content: "Status";
  }
  header {
    text-align: center;
    font-size: 30px;
    color: white;
    height: 75px;
    font-family: "Snell Roundhand", cursive;
}
}
body {
  background: #282c34;
  font: 400 14px "Calibri", "Arial";
  padding: 20px;
  display: flex;
  flex-direction: column;
}

header {
    text-align: center;
    font-size: 50px;
    color: white;

    margin-bottom : 30px;
    height: 25%;
    font-family: "Snell Roundhand", cursive;
}

footer a, a:hover, a:active, a:visited { 
    color: white; 
}


main {
    flex: auto;
}

footer {
    height : 25%;
    margin-top : 60px;
    text-align: center;
    font-size: 25px;
    color: white;
}

blockquote {
  color: white;
  text-align: center;
}

.ring-container {
    display: inline-block;
    margin: 0;
}

.circle_open {
    width: 15px;
    height: 15px;
    background-color: #62bd19;
    border-radius: 50%;
    position: relative;
}

.circle_soon {
    width: 15px;
    height: 15px;
    background-color: orange;
    border-radius: 50%;
    position: relative;
}

.circle_closed {
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%;
    position: relative
}

.ring_open {
    border: 3px solid #62bd19;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: -8px;
    top: -8px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}

.soon_color{
    display: inline-block;
    color: orange;
}

.open_color {
    display: inline-block;
    color: green;
}

.closed_color {
    display: inline-block;
    color: red;
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}