#mini-gallery img {
  width: calc((100% - 12px) / 3);
  filter: blur(0.8px);
}

#mini-gallery .selected {
  filter: blur(0);
  filter: grayscale(80%);
}


#main-image {
  width: 80%;
  height: 345px;
  margin-left: 10%;
}

#mini-gallery {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-top: 6px;
  margin-left: 10%;
}

.w-100 .container {
    display: flex;
    flex-wrap: wrap;
}

.box {
    flex: 1;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
}

h2 {
    margin-bottom: 0;
}

/***** TABLE STYLES *****/

.table-fill {
  border-color: #fff;
  background: white;
  border-radius:5px;
  border-collapse: collapse;
  height: 200px;
  margin: auto;
  max-width: 100%;
  padding:5px;
  width: 80%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}
 
th {
  color:#fff;
  background:#1b915a;
  border-bottom:1px solid #fff;
  border-right: 1px solid #343a45;
  font-size:20px;
  font-weight: 100;
  padding:7px;
  text-align:left;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align:middle;
}

th:first-child {
  border-top-left-radius:3px;
}
 
th:last-child {
  border-top-right-radius:3px;
  border-right:none;
}
  
tr {
  border-top: 1px solid #C1C3D1;
  border-bottom: 1px solid #C1C3D1;
  color:#414452;
  font-size:16px;
  font-weight:normal;
  text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
 
tr:hover td {
  background:#27ab48;
  color:#FFFFFF;
  /*border-top: 1px solid #22262e;*/
}
 
tr:first-child {
  border-top:none;
}

tr:last-child {
  border-bottom:none;
}
 
tr:nth-child(odd) td {
  background:#abfca9;
}
 
tr:nth-child(odd):hover td {
  background:#1b915a;
}

tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}
 
tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}
 
td {
  background:#FFFFFF;
  padding:5px;
  padding-left: 10px;
  text-align:left;
  vertical-align:middle;
  font-weight:300;
  font-size:16px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #C1C3D1;
}

td:last-child {
  border-right: 0px;
}

th.text-left {
  text-align: left;
}

th.text-center {
  text-align: center;
}

th.text-right {
  text-align: right;
}

td.text-left {
  text-align: left;
}

td.text-center {
  text-align: center;
}

td.text-right {
  text-align: right;
}

/***** END OF TABLE STYLES *****/

@media (max-width: 768px) {
    .w-100 .container {
        flex-direction: column;
    }

    .box {
        flex: none;
        width: 100%;
    }
    
    #mini-gallery img {
      width: calc((100% - 12px) / 3);
      filter: blur(0.8px);
    }
    
    #mini-gallery .selected {
      filter: blur(0);
      filter: grayscale(80%);
    }
    
    #main-image {
      width: 100%;
      height: 345px;
      margin-left: 0;
    }
    
    #mini-gallery {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-top: 6px;
      margin-left: 0;
    }
}