﻿.btn_new {
  color: purple;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #ffd800;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.btn_new:hover {
  color: #4da7f7;
}

.btn_new::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #4da7f7;
  z-index: -1;
  transition: all 1s;
}

.btn_new:hover::before {
  width: 160%;
}