/*
.theme-btn {
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    cursor: pointer;
    display: inline-block;
    padding: 12px 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
	border-radius: 5px;
}
.theme-btn:hover {
    background-color: #666;
    color: #fff;
}

.theme-btn2 {
    font-size: 11px;
    line-height: 14px;
    border: 1px solid  #000;
    background: transparent;
    color:  #000;
}

.theme-btn2:hover {
    border: 1px solid #000;
    background-color: #000 !important;
    color: #fff;
}
*/


.theme-btn {
  position:relative;
}
.theme-btn span {
  display: inline-block;
  min-width: 0.3em;
  text-transform: uppercase;
  transition: 0.25s cubic-bezier(0.5, -1, 0.5, 2);
  opacity: 0;
  transform: translate(0, -20px);
}
.theme-btn:before {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  left: 0%;
  text-align: center;
  transition: 0.25s cubic-bezier(0.5, -1, 0.5, 2);
  text-transform: uppercase;
/*  letter-spacing: 3.5px;*/
  opacity: 1;
  transform: translate(0, 0px);
}
.theme-btn:hover:before, .theme-btn:focus:before {
  opacity: 0;
  transform: translate(0, 20px);
}
.theme-btn:hover span, .theme-btn:focus span {
  opacity: 1;
  transform: translate(0, 0);
}
.theme-btn:hover span:nth-child(1), .theme-btn:focus span:nth-child(1) {
  transition-delay: 0.025s;
}
.theme-btn:hover span:nth-child(2), .theme-btn:focus span:nth-child(2) {
  transition-delay: 0.05s;
}
.theme-btn:hover span:nth-child(3), .theme-btn:focus span:nth-child(3) {
  transition-delay: 0.075s;
}
.theme-btn:hover span:nth-child(4), .theme-btn:focus span:nth-child(4) {
  transition-delay: 0.1s;
}
.theme-btn:hover span:nth-child(5), .theme-btn:focus span:nth-child(5) {
  transition-delay: 0.125s;
}
.theme-btn:hover span:nth-child(6), .theme-btn:focus span:nth-child(6) {
  transition-delay: 0.15s;
}