/* Navigation links. */
.nav-link {
  font-family: Verdana,sans-serif;
  color: white;
  font-size: 1.25em;
}

/* Color of navigation links on mouse hover over. */
.nav-link:hover {
  color: grey;
}

/* Navbar background. Use background-image if necessary. */
.navbar-bg-anuko {
  /* background-color: grey; */
}

/* Width of navbar logo. */
.navbar-brand > img {
  width: 96px;
}

/* Hamburger icon. Color is in stroke='rgba(255,255,255, 1)' part. First 3 decimal values are RGB color. 255 is FF hex. 255,255,255 means white.*/
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* Center products horizontally in grid. */
.shopCell {
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
}

/* Center add to cart table horizontally. */
.add-to-cart {
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  border-spacing: 0.5em;
  border-collapse: separate;
}

.anuko-img-annotation {
  margin-top: 0.5em;
}

.anuko-product-img {
  margin-bottom: 1em;
}

.anuko-gallery-carousel-area {
  position: relative; /* designated "positioned ancestor" for next and previous buttons */
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Next & previous buttons */
.anuko-gallery-prev, .anuko-gallery-next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  color: #c0c0c0 !important;
  font-size: 3em;
  padding-left: 0.33em;
  padding-right: 0.33em;
}

/* Position the "next button" to the right */
.anuko-gallery-next {
  right: 0px;
}

/* On hover, add a black background color with a little bit see-through */
.anuko-gallery-prev:hover,
.anuko-gallery-next:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

.anuko-site-footer {
  color: #939393;
  font-size: 0.9em;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 1.5em;
}

/*** beginning of flip card css ***/
.flip-card-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.flip-card {
  width: 300px;
  height: 500px;
  margin: 1rem;
  perspective: 1500px;
  border: none;
}

.flip-card .flip-card-content {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.75, 0, 0.85, 1);
}

.flip-card-more {
  display: none;
}

.flip-card-more:checked ~ .flip-card-content {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: 6px;
}

.flip-card-front .flip-card-inner,
.flip-card-back .flip-card-inner {
  height: 100%;
  display: grid;
  padding: 1em;
  transform: translateZ(80px) scale(0.94);
}

.flip-card-front {
  background-color: #fff;
  background-size: cover;
  background-position: center center;
  border: 2px solid #f0f0f0;
}

.flip-card-front:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  backface-visibility: hidden;
}

.flip-card-front .flip-card-inner {
  grid-template-rows: 5fr 1fr 4fr;
  justify-items: center;
}

.flip-card-front h2 {
  grid-row: 2;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: #fff;
  font-weight: 500;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #fff;
  border: 2px solid #f0f0f0;
}

.flip-card-back .flip-card-inner {
  grid-template-rows: 1fr 18fr 1fr;
  grid-template-columns: repeat(4, auto);
  grid-column-gap: 0.8rem;
  justify-items: center;
}

.flip-card-back .flip-card-description {
  grid-row: 2;
  grid-column: 1/-1;
  font-size: 0.86rem;
  overflow: auto;
   padding-right: .5rem;
}

.flip-card-button {
  grid-row: -1;
  letter-spacing: .05rem;
  font-weight: 600;
  cursor: pointer;
  display: block;
  padding: 0 1.25rem;
  height: 3em;
  line-height: 2.9em;
  min-width: 3em;
  background-color: transparent;
  border: solid 2px #fff;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  left: 50%;
  backface-visibility: hidden;
  transition: 0.3s ease-in-out;
}

.flip-card-button:hover {
  background-color: #fff;
  color: #355cc9;
}

.flip-card-back .flip-card-button {
  grid-column: 1/-1;
  justify-self: center;
}

.flip-card-button.return {
  color: #355cc9;
  border-color: #355cc9;
}

.flip-card-button.return:hover {
  background-color: #355cc9;
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #859ddf;
}

::-webkit-scrollbar-thumb:hover {
  background: #355cc9;
}
/*** end of flip card css ***/

div.shop_item { 
  padding: 0 40px 20px 40px; 
  border: 1px solid #404040; 
  margin-bottom: 0 auto 12px auto;
 -moz-border-radius-bottomleft: 3px;
 -moz-border-radius-bottomright: 3px;
 -moz-border-radius-topleft: 3px;
 -moz-border-radius-topright: 3px;
 background-color: white; color: black;
}

div.shop_item img {
  display: block; margin: 0px auto 10px auto;
}

div.shop_item h3 {
  text-align: center;
/*  margin: 5px; padding: 5px;
  background: url("/img/.parts/gradients/black_vgrad3.gif") top left repeat-x; 
  color: white; */
}

div.shop_item form table { margin-top: 10px; }

div.shop_item table { margin-left: auto; margin-right: auto; }

div.shop_item form table tr td { padding-top: 4px; padding-bottom: 4px; }

.shopCell { 
 width: 140px;
 -moz-border-radius-bottomleft: 3px;
 -moz-border-radius-bottomright: 3px;
 -moz-border-radius-topleft: 3px;
 -moz-border-radius-topright: 3px;
  border: 1px solid #e0e0e0;
  background-color: white; color: black; 
  text-align: center;
}
.shopCell:hover { border-color: black; }

div.shopTn { height: 140px; line-height: 140px;  }
.shopTn a { border: none; outline-style: none; }
.shopTn img { display:inline; margin: 0px; padding: 0px; vertical-align: middle; }
div.shopNm { 
  padding-top: 8px;
  padding-left: 3px;
  padding-right: 3px;
  height: 60px; overflow: hidden; 
  background: url("/img/.parts/gradients/white_vgrad3.gif") top left repeat-x;
  font-size: 12px;
}
div.shopNm a { color: black; text-decoration: none; }
.shopCell:hover div.shopNm { 
  background: url("/img/.parts/gradients/black_vgrad3.gif") top left repeat-x; color: white; 
}

div.shopNm b { line-height: 24px; vertical-align: middle; }
.shopCell:hover div.shopNm a { color: white; }

.shopGallery { margin-left: auto; margin-right: auto; }
div.shop_item a { color: blue; }

#imgList a:link { color: blue; }body {
  color: black;
  background-color: #fffaef;
}

.nav-link {
  font-family: Verdana,sans-serif;
  color: white;
  font-size: 1.30em;
}

/* Color of navigation links on mouse hover over. */
.nav-link:hover {
  color: #b2faa5;
}

.navbar-bg-anuko {
  background-image:  url("/img/header-green.jpg");
 background-repeat: no-repeat;
  background-position: center center;
 /* background-color: white;*/
}
.navbar-brand > img {
  width: 300px;
}
h1, h2, h3, h4, h5{ color:  #195905; }

a {
  color: #195905;
}

a:hover {
  color: #278908; 
}

a:link {
  text-decoration: underline;
}

.nav-item > a { text-decoration: none; }

.container h1, h2, h3, h4, h5 {
  padding-top: 0.7em;
}
