/* Scss Document */
.button {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  position: relative;
  cursor: pointer;
  /* button */
  /* bg button */
  margin-left: -16px;
  }
  .button .link {
    font-family: 'Titillium Web', sans-serif;;
	letter-spacing: 1px;
	font-size: 16px;
    background-color: #1e1e1e;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 0;
    padding-left: 20px;
    left: 0;
    line-height: auto;
    overflow: hidden;
    /*line*/
    /*arrow*/ }
.button2 .link {
    font-family: 'Titillium Web', sans-serif;;
	letter-spacing: 1px;
	font-size: 16px;
    background-color: #1e1e1e;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 0;
    padding-left: 20px;
    left: 0;
    line-height: auto;
    overflow: hidden;
    /*line*/
    /*arrow*/ }

.link:hover{
	background-color: #fff !important;
	color: #1e1e1e;
	border: 3px solid #666;
}
.button:hover .link{
	background-color: #fff !important;
	color: #1e1e1e;
	border: 3px solid #666;
}
    .button .link:before {
      content: "";
      background-color: #666;
      width: 3px;
	  min-height: 40px;
	  max-height: 40px;
      height: 100%;
      position: absolute;
      z-index: 2;
      left: 0px;
      top: 0px;
      border-radius: 50px;
      transition: all 0.3s ease-in-out; }
    .button .link:after {
      content: "";
      width: 15px;
      height: 17px;
      display: flex;
      align-items: center;
      background-color: transparent;
      position: absolute;
      border: solid 3px #666;
      border-left: 0;
      border-bottom: 0;
      top: calc(50% - 9px);
      border-radius: 2px;
      transform: translateX(-42px) rotate(45deg);
      transition: all 0.3s 0.2s ease-in-out; }
  .button:before {
    content: "";
    background-color: transparent;
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0px;
    border-radius: 3px;
    transition: all 0.4s 0.3s ease-in-out; }
  .button:hover:before {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0px; }
  .button:hover .link {
    padding-left: 50px; }
    .button:hover .link:before {
      left: 6px;
      transform: rotate(90deg); }
    .button:hover .link:after {
      transform: translate(-33px) rotate(45deg); }

