/*
Theme Name: RD Bois
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

#btn-lame,
html body #btn-lame {
  background: #e85c0d !important;
  color: #fff !important;
  border: 2px solid #e85c0d !important;
  position: relative !important;
  overflow: hidden !important;
  transition: color 0.5s !important;
  z-index: 1 !important;
}

#btn-lame::before {
  content: '';
  position: absolute !important;
  top: 0 !important;
  left: -110% !important;
  width: 100% !important;
  height: 100% !important;
  background: #fff !important;
  transform: skewX(-20deg) !important;
  transition: left 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 0 !important;
}

#btn-lame:hover,
html body #btn-lame:hover {
  background: transparent !important;
  color: #e85c0d !important;
}

#btn-lame:hover::before {
  left: 110% !important;
}