/**  search box style **/

.search-wrap {
  margin: 10px 0;
  position: relative;
}

input#search-input {
  border: solid 1px #ccc;
  opacity: 0.95;
  padding: 10px 6px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  max-width: 100%;
}

span#clear-icon {
  display: none;
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  padding: 0px 5px;
  font-style: normal;
  font-size: 25px;
  user-select: none;
  cursor: pointer;
  color: #9e9e9e;
  z-index: 12;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

/**  table style **/
.my-table {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.my-table tr {
  background: rgba(38, 38, 38, 0.9);
  color: #e6e6e6;
}

.my-table th {
  padding: 10px 10px;
  border: solid 1px #1e1e22;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  cursor:pointer;
}

.my-table td {
  border: solid 1px #1e1e22;
  font-size: 13px;
  padding: 10px 10px;
  text-align: center;
}

.my-table td.hidden {
  font-size: 0;
  white-space: nowrap;
}

.my-table thead > tr {
  background: rgba(23, 22, 21, 0.9);
}

.my-table > tbody > tr:hover {
  background: rgba(23, 22, 21, 0.9);
}

.header{
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

a.link {
  color: rgb(255, 255, 255, 0.9);
}

a.link:hover {
  color: rgb(165, 60, 165, 0.9);
}

a.buttons {
  font-size: 16px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  padding: 8px 12px;
  margin-right: 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: rgba(15, 93, 112, 0.9);
  color: white;
}

/* styles links while mouse is hovered over */
a.buttons:hover {
  background-color: rgb(165, 60, 165, 0.9);
}

/* styles links while being clicked */
a.buttons:active {
  color: white;
}

.backwrap {
  background: #113243;
  /* Old browsers */
  background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwallpapercave.com%2Fwp%2Fwp3006044.png&f=1&nofb=1&ipt=fb5fcbffdd759e2af054f45365818d273081212076411cee6159a56622b3ac66&ipo=images");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

/* Shapes & Animation
*/
.back-shapes {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.back-shapes img {
  opacity: 0.2;
  position: absolute;
  width: 1.5%;
}

.floating {
  position: absolute;
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 10s;
  -webkit-animation-duration: 10s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.floating.book {
  display: inline-block;
  width: 75px;
  height: 75px;
  background-image: url("https://cdn.modrinth.com/data/Kgm0Z8tP/b01a7a85ce25234750fd0d84cd6c1ed1950f16a9.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: .75;
}
.floating.table {
  display: inline-block;
  width: 85px;
  height: 85px;
  background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.apexminecrafthosting.com%2Fimg%2Fuploads%2F2020%2F11%2F05204919%2Fenchanting-table.png&f=1&nofb=1&ipt=14e18457ba49cc030bb070a66e917c48fb22888370d0c21a802cfbab304fe867&ipo=images");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: .75;
}

@keyframes floating {
  0% {
    transform: translateY(0%) rotate(-55deg);
  }
  50% {
    transform: translateY(300%) rotate(55deg);
  }
  100% {
    transform: translateY(0%) rotate(-55deg);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(300%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}