@import url('./var.css');


.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.select-items__inner {
  width: 90%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media screen and (min-width: 1280px) {
  .select-items__inner {
    width: 100%
  }
}

.select-items__inner a {
  color: #000
}

.select-items__inner img {
  width: 100%
}

.select-items__inner figure {
  position: relative;
  width: 100%;
  margin-bottom: 50px
}

.select-items__inner figure:hover {
  opacity: .7
}

.select-items__inner figure:hover span {
  opacity: 1
}

@media screen and (min-width: 600px) {
  .select-items__inner figure {
    width: 46%
  }
}

@media screen and (min-width: 1280px) {
  .select-items__inner figure {
    width: 30%
  }
}

@media screen and (min-width: 960px) {
  .select-items__inner figure .cover-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    pointer-events: none;
    -webkit-animation-name: kf-img-show;
    animation-name: kf-img-show;
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none
  }

  .select-items__inner figure .cover-slide:hover::before {
    background-color: rgba(0, 0, 0, .4)
  }
}

.select-items__inner figure img:hover {
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, .5);
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, .5)
}

.select-items__inner figure span {
  pointer-events: none;
  font-size: 10px;
  display: none;
  color: #fff;
  width: 90%;
  text-align: center;
  opacity: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100
}

@media screen and (min-width: 960px) {
  .select-items__inner figure span {
    display: block
  }
}

.select-items__inner figure p {
  font-size: 16px;
  -moz-text-align-last: justify;
  text-align-last: justify
}

@media screen and (min-width: 600px) {
  .select-items__inner figure p {
    font-size: 12px
  }
}

@media screen and (min-width: 960px) {
  .select-items__inner figure p {
    display: none
  }
}

.inview {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none
}

.inview:nth-child(1) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s
}

.inview:nth-child(2) {
  -webkit-transition-delay: .2s;
  transition-delay: .2s
}

.inview:nth-child(3) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s
}

.inview:nth-child(4) {
  -webkit-transition-delay: .4s;
  transition-delay: .4s
}

.inview:nth-child(5) {
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

.inview:nth-child(6) {
  -webkit-transition-delay: .6s;
  transition-delay: .6s
}

.inview:nth-child(7) {
  -webkit-transition-delay: .7s;
  transition-delay: .7s
}

.inview:nth-child(8) {
  -webkit-transition-delay: .8s;
  transition-delay: .8s
}

.inview:nth-child(9) {
  -webkit-transition-delay: .9s;
  transition-delay: .9s
}

.inview:nth-child(10) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s
}

.title-container > div > p {
  padding-bottom: 2.5rem;
}

.title-container > div > p:last-child {
  padding-bottom: 0;
}

.product-title {
  padding: 0.625rem 0 0.625rem 5%;
  margin-bottom: 1em;
  color: #fff;
  background-color: #92a5b9;
}

.product-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-list > li {
  flex-basis: 50%;
  padding: 0.625rem 0.3125rem 0.625rem 0.3125rem;
  border: solid #000;
  border-width: 1px 1px 0 1px;
  font-weight: bold;
}

.product-list > li:nth-child(even) {
  border-left: 0;
}

.product-list > li:nth-last-child(-n + 2) {
  border-width: 1px 1px 1px 1px;
}

.product-list > li > a {
  display: inline-block;
  padding: 5px;
  font-size: var(--text-xs);
}

@media screen and (min-width: 600px) {
  .product-list > li {
    width: 45%;
  }
}

@media screen and (min-width: 960px) {
  .product-list > li > a {
    font-size: var(--text-base);
  }
}

/* 
.cover-slide {
  position: relative;
  overflow: hidden
}

.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0
}

.cover-slide.inview::after {
  opacity: 1;
  -webkit-animation-name: kf-cover-slide;
  animation-name: kf-cover-slide;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
} */