/* solid021 */

.button_solid021 {
    text-align: center;
}
.button_solid021 p {
    margin-bottom: 5px;
    font-weight: 600;
    color: #FFA500;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}
.button_solid021 p:before, .button_solid021 p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #FFA500;
    content: "";
}
.button_solid021 p:before {
    left: -30px;
    -webkit-transform: rotate( 50deg );
    transform: rotate( 50deg );
}
.button_solid021 p:after {
    right: -30px;
    -webkit-transform: rotate( -50deg );
    transform: rotate( -50deg );
}

.button_solid021 a {
    background : rgb(255, 165, 0) none repeat scroll 0% 0%;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color : orange;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 50px;
    border-bottom: 4px solid #FF7F50;
    overflow: hidden;
    text-decoration: none;
}
.button_solid021 a:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.button_solid021 a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  animation: shine 3s infinite;
}

@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.button_solid021 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-48%);
    position: absolute;
    top: 48%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}