body {
  user-select: none;
}

/* Info about that gallery */

/* Movement between pages */
div.paging {
  width: 813px;
  margin: auto;
}
div.paging img.arrow {
  display: inline-block;
  width: 64px;
  height: 64px;
}
div.paging img.arrow#left {
  float: left;
}
div.paging img.arrow#right {
  float: right;
  transform: rotate(180deg);
}
div.paging img.inactive {
  opacity: 0.3;
}
div.paging p.pageNumber {
  /*display: inline-block;*/
  text-align: center;
}

/* Error for case that some imgs would be missing */
p.error {
  font-size: 16pt;
  text-align: center;
  color: #FF0000;
}
p.errcom {
  font-size: 10pt;
  text-align: center;
  color: #000;
}

a#buttonek {
  margin: auto;
  margin-bottom: 30px;
  display: block;
  width: 260px;
  padding: 4px;
  border-radius: 3px;
  border: 1px solid #000;
}
a#buttonek {
  color: #2c3e50;
  text-decoration: none;
}
a#buttonek img {
  padding-left: 3px;
  padding-right: 7px;
  width: 15px;
}

/* Downline of the emphasized img */
div#downLine {
  width: inherit;
  height: 50px;
  background-color: rgba(0,0,0,0.5);
  animation-name: viewText;
  animation-duration: 1000ms;
  position: relative;
  bottom: 50px;
  user-select: none;
  margin: auto;
  font-family: "rajdhani", sans-serif;
/*  font-weight: bold; */
  letter-spacing: 1px;
}
div#downLine table {
  color: #FFF;
  padding-top: 5px;
  padding-bottom: 10px;
  display: table;
  margin: auto;
  text-align: center;
  font-size: 12pt;
  font-weight: bold;
}
div#downLine table #name {
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}
div#downLine table td {
  padding-left: 5px;
  padding-right: 5px;
}
td a {
  color: inherit;
}
td.mid {
  border-right: 1px solid #FFF;
}
#downLine .arrow {
  width: 40px;
  height: 40px !important;
  margin: 5px;
  background-image: url("../../icons/arrow2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: opacity(80%);
  cursor: pointer;
}
#downLine .arrow:hover {
  filter: opacity(100%);
}
#downLine .arrow:active {
  filter:invert(100%);
}
#next {
  float: right;
}
#back {
  float: left;
  transform: rotate(180deg);
}
@keyframes display {
  from {
    display: none;
  } to {
    display: block;
  }
}
