/*
*
*
* Date: 1/18/19
* Author: Brennon Gee
*
* Purpose: This will style our custom buy my books button to match that of the other timber buttons found
* throughout the site. Used by course Schedule page which is generated by CCREG.49.1.
*
*
*/


.books-link{
    display: inline-block;
  }
  
  .books-link{
    background: #2ac56c;
    color: #fff;
    box-shadow: 0 6px #0a833d;
    border-radius: 5px;
    cursor: pointer;
    padding: 15px 35px;
    display: inline-block;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    top: 0px;
  }
  
  .books-link:hover {
    box-shadow: 0 4px #0a833d;
    top: 2px;
  }
  
  .books-link:active {
    box-shadow: 0 0 #0a833d;
    top: 6px;
  }
  
  .books-link:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  