@charset "UTF-8";
/* CSS Document */


.box.lamourbox {
  background: #4f575c; background: var(--dark-color);
}

.lamour {
  display: inline-block;
  position: relative;
  z-index: 1;
  height: 58px;
  padding: 2px 30px 0;
  -webkit-font-smoothing: antialiased;
  font-family: serif;
  font-size: 19px;
  line-height: 55px;
  letter-spacing: 2px;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: color .3s cubic-bezier(.455,.03,.515,.955);
  transition: color .3s cubic-bezier(.455,.03,.515,.955);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 80px;
  text-align: center;
}

.lamour:hover {
  color: #4f575c; color: var(--dark-color);
}
.lamour-border.vert {
  top: 0;
  width: 2px;
  height: 100%;

}
.lamour-border.lleft {
  left: 0;
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.lamour-border.lright {
  right: 0;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.lamour-border.ltop {
  top: 0;
  -webkit-transform-origin: right center;
  transform-origin: right center;
   height: 2px;
}

.lamour-border.lbottom {
  bottom: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.lamour-border.hor {
  left: 0;
  width: 100%;
  height: 2px;
}
.lamour-border {
  position: absolute;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: .3s cubic-bezier(.455,.03,.515,.955);
  transition: .3s cubic-bezier(.455,.03,.515,.955);
}

.lamour:hover .vert {
  -webkit-transform: translate3d(0,0,0) scaleY(0);
  transform: translate3d(0,0,0) scaleY(0);
}

.lamour:hover .hor {
  -webkit-transform: translate3d(0,0,0) scaleX(0);
  transform: translate3d(0,0,0) scaleX(0);
}

.lamour:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  z-index: -1;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transform: translate3d(0,0,0) scaleY(0);
  transform: translate3d(0,0,0) scaleY(0);
  -webkit-transition: .3s cubic-bezier(.455,.03,.515,.955);
  transition: .3s cubic-bezier(.455,.03,.515,.955);
  background: #fff;
}

.lamour:hover:after {
  -webkit-transform: translate3d(0,0,0) scaleY(1);
  transform: translate3d(0,0,0) scaleY(1);
}
