@charset "utf-8";
/* CSS Document - products */
.mj-productlist {
  margin: 0 auto 6%;
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
}
.mj-productlist li {
  width: 46%;
  margin: 2%;
}
.mj-productlist li > a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #bbb3a9;
  box-sizing: border-box;
  text-align: center;
  padding: 2.5% 3% 10%;
}
.mj-productlist li > a:hover {
  text-decoration: none;
}
.mj-productlist .mj-productlist-name {
  font-size: 1.07em;
  font-weight: bold;
  color: #e63376;
  margin-top: .2em;
}
.mj-productlist .mj-productlist-txt {
  font-size: .78em;
  color: #4c443a;
  line-height: 1.36em;
  margin-top: .4em;
  min-height: 4.08em;
}

.mj-productlist .btn-box {
  text-align: center;
  margin: 0px auto;
}
.mj-productlist .btn-box span {
  color: #fff;
  display: inline-block;
	box-sizing: border-box;
  position: relative;
  font-size: .78em;
  line-height: 1em;
  padding: .8em;
  width: 100%;
  background-color: #4c443a;
  background-image: url(../shared/img/btn_ar.png);
  -webkit-background-size: auto 1em;
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: 0 50%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin-top: .8em;
}
.mj-productlist a:hover .btn-box span {
  text-decoration: none;
  color: #fff;
  background-color: #e63376;
}
.mj-productlist .btn-box span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -2px;
  left: -2px;
  opacity: 0;
  box-sizing: border-box;
	/*
  border-top: 1px solid #e63376;
  border-left: 1px solid #e63376;
	*/
	border-top: 1px solid #4c443a;
  border-left: 1px solid #4c443a;
	-webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.mj-productlist a .btn-box span:before {
  content: "";
  opacity: 1;
  width: -webkit-calc(100% + 4px);
  width: -o-calc(100% + 4px);
  width: calc(100% + 4px);
  height: -webkit-calc(100% + 4px);
  height: -o-calc(100% + 4px);
  height: calc(100% + 4px);
}
.mj-productlist .btn-box span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -2px;
  right: -2px;
  opacity: 0;
  box-sizing: border-box;
	/*
  border-bottom: 1px solid #e63376;
  border-right: 1px solid #e63376;
	*/
  border-bottom: 1px solid #4c443a;
  border-right: 1px solid #4c443a;
	-webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.mj-productlist a .btn-box span:after {
  content: "";
  opacity: 1;
  width: -webkit-calc(100% + 4px);
  width: -o-calc(100% + 4px);
  width: calc(100% + 4px);
  height: -webkit-calc(100% + 4px);
  height: -o-calc(100% + 4px);
  height: calc(100% + 4px);
}