div.imageScroll {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: no-wrap;
    width: 95vw;
    overflow: scroll;
    overscroll-behavior: none;
    padding: 5px;
}
div.imageScroll::-webkit-scrollbar {
    display: none;
}
div.imageScroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
div.imageScroll div.scrollItem {
    margin-right: 5px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0%);
    border-radius: 10px;
    padding: 10px 5px;
}
div.imageScroll div.scrollItem img.piece {
    padding: 0.1px;
    background-color: black;
}
div.imageScroll div.scrollItem.ownedByVisitor {
    background-color: gold;
    border: 1px solid goldenrod;
}
div.imageScroll div.scrollItem.giftedByVisitor {
    background: repeating-linear-gradient(115deg, #ff3232 0 30px, white 30px 50px);
    border: 1px solid red;
}
div.imageScroll div.scrollItem div.loading {
    color: #777;
    background-color: #777;
    border: 1px solid #777;
    animation: loading 2s infinite;
    line-height: 15vmin;
    text-align: center;
    font-size: 80%;
    width: 15vmin;
    height: 15vmin;
    margin-bottom: 5px;
}
@keyframes loading {
    50%  { background-color: #999; }
}

div.imageScroll .piece {
    display: none;
    background-color: black;
    border: 1px solid #777;
    margin-bottom: 5px;
    padding: 0;
    spacing: 0;
}
div.imageScroll .label, div.zoomed .label {
    display: inline-block;
    background-color: #ddd;
    padding: 1px 10px;
    border: 1px solid #777;
    border-radius: 5px;
}
div.imagePanel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}
div.imagePanel div {
    display: inline-block;
    vertical-align: middle;
    padding: 1px 5px;
}
div.imagePanel a.action, div.imagePanel a.action:visited {
    vertical-align: middle;
    font-size: 65%;
    font-weight: bold;
    text-decoration: none;
    color: #111;
    padding-left: 5px;
    white-space: nowrap;
}
div.imagePanel a.action img, div.followLink a.action img {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}
div.imageScroll div.beginning {
    min-width: 100px;
    max-width: 250px;
}
div.imageScroll div.mintForm {
    padding: 20px 20px;
}
div.actionContainer {
    padding: 0;
    margin: 0;
    position: relative;
    display: inline-block;
}
div.actionContainer div.actionMessage {
    padding: 10px;
    width: 200px;
    background-color: #f6f6f6;
    text-align: center;
    border: 1px solid #777;
    border-radius: 5px;

    position: absolute;
    z-index: 2;
    left: 50%;
    margin-left: -100px;
}
div.actionContainer div.actionMessage.above {
    bottom: 125%;
}
div.actionContainer div.actionMessage.below {
    top: 125%;
}
div.actionContainer div.actionMessage button {
    background-color: #ccc;
    font-weight: bold;
    margin-top: 10px;
    padding: 10px 10px;
    border: 1px solid #777;
    border-radius: 5px;
    color: #000;
}
div.actionContainer div.actionMessage button:hover {
    background-color: #bbb;
}
div.imagePanel div.sizeChooser {
    white-space: nowrap;
    padding-left: 15px;
}

div.mintForm {
    white-space: nowrap;
}
div.mintForm div.title {
    font-weight: bold;
    padding: 5px;
}
div.mintForm .timeRemaining {
    /* animation: blinker 2s steps(1, end) infinite; */
}
@keyframes blinker {
    50%  { color: red; }
}
div.mintForm table.mintEnabledControls tr td {
    padding: 3px;
    vertical-align: middle;
}
div.mintForm table.mintEnabledControls span, div.mintForm table.mintEnabledControls select {
    margin-top: 3px;
}
div.mintForm .mintButton {
    background-color: #ccc;
    color: black;
    font-weight: bold;
    padding: 12px;
    border: 1px solid #777;
    border-radius: 5px;
    text-align: center;
}
div.mintForm .mintButton:hover {
    background-color: #bbb;
}
div.mintForm .mintButton:disabled {
    background-color: #aaa;
    color: #333;
    cursor: not-allowed;
}
div.mintForm div.mintFeedback {
    display: none;
}
div.mintForm div.mintFeedback div.mintStatus {
    white-space: normal;
    width: 200px;
    line-height: 130%;
}
div.imageScroll span.topCorner {
    position: absolute;
    margin: 2px;
}
div.zoomed {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0,0,0,90%);
    flex-direction: column; /*row*/
    flex-wrap: no-wrap;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
div.zoomed div.image {
    display: block;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
div.zoomed div.info {
    flex-grow: 0;
    text-align: center;
    padding: 1vh;
}
div.zoomed div.panel {
    flex-grow: 0;
    text-align: center;
    padding: 1vh 30px;
}
div.zoomed div.info div.label {
    font-size: 90%;
    padding: 0px 10px;
}
div.zoomed div.info div.attributes {
    font-size: 75%;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; /*column*/
    flex-wrap: wrap;
    max-width: 1000px;
}
div.zoomed div.info div.attributes div.trait {
    min-width:160px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1px 7px;
    border: 0.5px solid #777;
    border-collapse: collapse;
    background-color: #ddd;
}
div.zoomed div.info div.attributes div.trait span.label {
    flex-grow: 1;
}
div.zoomed div.info div.attributes div.trait span.value {
    flex-grow: 1;
    text-align: right;
    padding-left: 5px;
    font-weight: bold;
}
div.zoomed div.close {
    position: fixed;
    top: 1vh;
    right: 1vh;
    margin: 1px;
    padding: 1px 3px;
}

div.messageBox {
    display: none;
    position: fixed;
    top: 80px;
    right: 10px;
    border: 1px solid #777;
    background-color: #C2EFC9;
    padding: 10px 15px;
}



