html,
body {
    height: 100%;
    background: #f2f2f2;

}

/* in the image admin insert/update */
.pigmentImages li{
      background-size:100px;
      position:relative;
      display:inline-block;
      width:100px;
      height:150px;
  }
.pigmentImages .actionLinks{
  position:absolute;
  bottom:0;
  height:20px;
  width:100%;
  background:white;
}
 .mix{

    display:inline-block;

}

.swatchLegend{
  width:100%;
  height:80%;
  border:1px;
  position:absolute;
  bottom:0;
  border-collapse:collapse;
}
.swatchLegend td{
  height:70px;
  border:1px solid white;
  width:50%;

}
.flip-card-front{

    background-position: center -60px;
    background-size:250px;
}
.flip-card-front h2{
    background:white;
}
.mix h2{
    text-align:center;

  margin-bottom:0;
}
.mix h3{
  margin:0;

}
.mix li a{
  color:white;
}
.flip-card-back *{
text-shadow: 1px 1px 2px black, 0 0 5px darkblue;
}
.flip-card-back h4{
    margin:0;

}

.flip-card-back p{
    margin:0;
}

.pigment-notes{
    display:none;
}

.updateLink{
    position:absolute;
    left:0;
    top:0;
}
.updateLink:hover{
  padding:0;
}


div.vbox-inline{
  padding:2rem;
  border-radius:1rem;
  font-size:2rem;
}


div.titleCard h2{
  background:blue;
  color:white;
}

.flip-card ul{
  text-align:left;
  margin:0;
  padding:1rem;
  font-size:0.8rem;
}
/*   FLIPCARD  */


/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 250px;
  height: 250px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: silver;
  color: white;
  transform: rotateY(180deg);
}
