@keyframes zoom-in {
  0% {
    transform: scale(.1);
  }

  100% {
    transform: none;
  }
}

@keyframes change-opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes expansion {
  0% {
    transform: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
  }
}

@keyframes rise {
  0% {
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
  }
}

.title-font {
  font-size: 30px;
  font-family: serif;
  color: #333333;
  line-height: 34px;
  letter-spacing: 10px;
  text-transform: none;
  float: left;
}

.btn-ignore {
  pointer-events: none;
}

/* for 'style-article.html' */
.style-header {
  /* position: fixed; */
  /* margin-left: 50px; */
  margin-bottom: 50px;
  /* margin-bottom: 20px; */
  /* background-color: #ccc; */
  width: auto;
  text-align: center;
}

.style-cat:hover, .style-header .active {
  color: #fff;
  background-color: #8A084B;
  border-radius: 4px;
  /* border-top: solid 2px #8b0000; */
  border-bottom: solid 0px #8A084B;
}

.style-cat {
  color: #555;
  display: block;
  font-size: 17px;
  text-transform: lowercase;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  transition: border, color .2s, .2s linear;
}

article {
  float: left;
  width: 50%;
  margin: 0 auto;
}

.none {
  display: none !important;
}

ul#img_previews {
  height: 61px;
  margin-bottom: 0;
}

li {
  list-style: none;
}

#img_previews li.current {
  opacity: 1.0;
}

#img_previews li {
  display: inline-block;
  opacity: 0.5;
}

#img_previews .all {
  vertical-align: middle;
  opacity: 0.5;
  height: 60px;
  width: 60px;
  text-align: center;
  padding-top: 15px;
  font-size: 11px;
  color: #000;
  background-color: #ccc;
}

.photo {
  margin: 3px 0;
}

#style-comment {
  margin-top: 30px;
  font-size: 17px;
}

#left-column {
  float: left;
  width: 25%;
  height: 100%;
  /* background-color: #000; */
}

/* .right-column {
  float: left;
  width: 25%;
  height: 100%;
} */
.column-title {
  width: 75%;
  border-top: solid 2px #555;
  border-bottom: solid 2px #555;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 30px auto;
  font-size: 22px;
}

#other-style-list div {
  width: 60%;
  margin: 15px auto;
}

#update-list .title {
  text-align: center;
  color: #000;
  font-size: 25px;
  font-weight: 400;
  width: 25%;
  margin: 10px auto 25px;
  padding-bottom: 5px;
  border-bottom: solid 2px #555;
}

.article {
  transition: transform .2s linear;
}

.article:hover {
  animation: .3s expansion;
  transform: scale(1.05);
  box-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

.swiper-container {
  float: left;
  width: 100%;
  height: 350px;
}

@media only screen and (max-width: 425px) {
  #left-column {
    float: none;
    width: 100%;
  }

  .column-title {
    font-size: 20px;
  }

  /* #other-style-list {
  width: auto;
  margin: 0 auto;
} */
  #other-style-list div {
    display: inline-block;
    width: auto;
    padding: 0 5px;
  }

  #other-style-list img {
    /* height: 100px; */
  }

  article {
    float: none;
    width: 90%;
    margin: 0 auto;
  }

  #update-list .title {
    font-size: 20px;
    width: 90%;
  }
}

/* for 'style-article-list.html' */
.is-animated {
  /* animation: .6s fade-in; */
}

h1 div {
  color: #333;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 10px;
  margin-left: 50px;
  text-transform: uppercase;
  /* text-align: center; */
}

.title {
  width: 200px;
  border-bottom: solid 2px #555;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 20px auto 50px;
  font-size: 30px;
}

.img-list {
  width: 80%;
  margin: auto;
}

.row-container {
  /* background-color: #000; */
  padding: 0;
}

.img-wrap {
  width: 100%;
  position: relative;
  /* background-color: #000; */
}

.see-more {
  opacity: 0;
  color: #000;
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 3px;
  /* border: solid 2px #000; */
  font-size: 22px;
  position: absolute;
  top: 100%;
  left: 50%;
  /* bottom: 0%; */
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  transition: transform, opacity .3s, .3s linear;
  z-index: 0;
}

#content {
  margin-bottom: 1000px;
}

@media only screen and (min-width: 426px) {
  .img-wrap:hover a {
    /* animation: .5s change-opacity; */
    /* opacity: 0.6; */
  }

  .img-wrap:hover .see-more {
    /* animation: 1s rise; */
    transform: translateX(-50%) translateY(-100%);
    -webkit- transform: translateX(-50%) translateY(-100%);
    opacity: 1;
  }
}
