html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

input, button, a {
    margin-top: 16px;
    margin-bottom: 16px;
}

.ctable {
    display: block;
    overflow: hidden;
    font-family: "Courier";
    font-size: 0.8rem;
    margin: 10px 0 20px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.ctr {
    display: table-row;
}
.ctd {
    display: table-cell;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0 10px;
}
.key {
    text-align: right;
}
.val {
    font-weight: bold;
}

.canv {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    cursor: pointer;
}

.fullimg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #00000082;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullimg .canv {
    max-height: 100%;
    width: auto;
    max-width: 100%;
}

.pag {
    width: 22px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius:36px;
    float: left;
    font-size: 12px;
    line-height: 19px;
    margin-right: 5px;
    text-align: center;
    cursor: pointer;
}

.pag.selected {
    background-color: #333;
    border-color: #333;
}

.pag.selected a {
    color: white
}

.pag.disabled {
    color: #ccc;
    cursor: default;
}

.pag.disabled a {
    cursor: default;
}

.pag a {
    text-decoration: none;
    color: #333;
}