:root {
    --box: #cacaca;
    
}


body {
    background-color: pink;
    margin-left: auto;
    margin-right: auto;
    font-size: small;
    font-family:'MS UI Gothic';
    font-weight: bold;
     background: url('/toybox/pixelcliques/Plasma.png') repeat 0 0;
  background-attachment: fixed;
  animation: bg-scrolling-upleft 3s infinite;
  -webkit-animation: bg-scrolling-upleft 3s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  padding-bottom: 20px;
}

::selection {
    background-color: hotpink;
}

.navbutton {
    background-color: var(--box);
    font-size: small;
    font-family:'MS UI Gothic';
    font-weight: bold;
    border: 1px outset white;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    outline: 1px outset black;
    cursor: pointer;
}

.navbutton:active {
    background-color: grey;
    border: 1px outset grey;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

a {
   color: black;
    text-decoration: none;
}

a:hover {
    color: hotpink;
}

.bodysizer {
    width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}


header {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 5px;
}

footer {
    background-color: var(--box);
    padding: 2px;
    border: 2px outset white;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    outline: 1px outset black;
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.box {
    height: fit-content;
    padding: 2px;
    margin-bottom: 20px;
    border: 2px outset white;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    background-color: var(--box);
    outline: 1px outset black;
    
    
}

.boxinfo {
    padding: 2px;
    font-weight: normal;
    font-size: smaller;
}

.boxinfo::first-letter {
    text-decoration: underline;
}

.boxtitle {
    background-color: hotpink;
    padding: 1px;
    color: white;
    text-shadow: 1px 1px black;
    border: 1px solid hotpink;
}

.boxinner {
    background-color: white;
    padding: 20px;
    border: 2px inset white;
    border-top: 2px solid black;
    border-left: 2px solid black;
    outline: 1px inset black;
    outline-offset: -3px;
}

.boxdesc {
    background-color: white;
    padding: 5px;
    border: 2px inset white;
    border-top: 2px solid black;
    border-left: 2px solid black;
    font-weight: normal;
    outline: 1px inset black;
    outline-offset: -3px;
}

.boxdesc p{
    margin-top: 0px;
    margin-bottom: 5px;
}

.boxdescempty {
    padding: 5px;
    font-weight: bold;
    text-align: center;
    border-top: 1px inset white;

}

.boxdescempty p{
    margin-top: 0px;
    margin-bottom: 5px;
}


.boxbuttongrid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 3px;
    
}

.boxbutton {

}

.divider {
    text-align: center;
    margin-bottom: 15px;
}

.divider img{
    border: 2px outset white;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    background-color: var(--box);
    outline: 1px outset black;
    
}

#fizzyvendor {
    background: url('/toybox/pixelcliques/fizzy.gif') repeat 0 0;
    background-attachment: scroll;
    animation: bg-scrolling-up 5s infinite;
    -webkit-animation: bg-scrolling-up 5s infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    padding: 20px;
    text-align: left !important;
}

#fizzycont {
    border: 1px dotted #486cb4;
    background-color: #aa92ca85;
    backdrop-filter: blur(5px);
    padding-left: 5px;
    padding-right: 5px;
}

#stickersheetclub {
    text-align: center;
    background-color: #ffe7f7;
    padding: 10px;
    
}

#stickersheetclub p{
    margin: 0px;
    color: hotpink;
    font-weight: normal;
    
}

#stickersheetclub hr{
    background-color: hotpink;
    border: none;
    height: 1px;
    
}

.collection {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}

.collection img{
  filter: drop-shadow(2px 2px #0000003d); 
  margin-top: 10px;
}

.mine {
    outline: 1px dashed hotpink;
    outline-offset: 2px;
    padding: 0px;
    position: relative;
    display: inline-block;
    margin-bottom: 2px;
}

.mine p{
    font-size: smaller;
    color: hotpink;
    margin: 0px;
    font-weight: bold !important;
    text-align: center;
    padding: 0px;
    position: absolute;
    left: -3px;
    bottom: -15px;
}


/*SCROLLING BG UPLEFT*/
@-webkit-keyframes bg-scrolling-upleft {
  0% {
   background-position: 54px 54px;
  }
}
@-moz-keyframes bg-scrolling-upleft {
  0% {
    background-position: 54px 54px;
  }
}
@-o-keyframes bg-scrolling-upleft {
  0% {
   background-position: 54px 54px;
  }
}
@keyframes bg-scrolling-upleft {
  0% {
   background-position: 54px 54px;
  }
}

/*SCROLLING BG UP*/

@-webkit-keyframes bg-scrolling-up {
  0% {
   background-position: 0px 256px;
  }
}
@-moz-keyframes bg-scrolling-up {
  0% {
    background-position: 0px 256px;
  }
}
@-o-keyframes bg-scrolling-up {
  0% {
   background-position: 0px 256px;
  }
}
@keyframes bg-scrolling-up {
  0% {
   background-position: 0px 256px;
  }
}

/* COMMENTS BOX */

.hcb-comment-body {
    font-size: small !important;
    
}

#HCB_comment_box {
    font-size: small !important;
    font-family:'MS UI Gothic' !important;

}

.comment {
    border-top: 1px solid var(--box);
}

#HCB_comment_box #hcb_form .btn, #HCB_comment_box #HCB_comment_form_box .btn {
    background-color: var(--box) !important;
    font-size: small !important;
    font-family:'MS UI Gothic' !important;
    font-weight: bold !important;
    border: 1px outset white !important;
    border-right: 1px solid black !important;
    border-bottom: 1px solid black !important;
    outline: 1px outset black !important;
    cursor: pointer !important;
    color: black !important;
}

h3 {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--box);
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: top;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
