/*Base Buttons*/
    a.button {
        background-color: transparent;
        background-color: #ffffff; /* accessibility */
        border-radius: 0;
        height: auto;
        text-align: center;
        color: #DA3D0F;          
        border: 1px solid #DA3D0F;
        font-family: 'Basis Grotesque Regular', sans-serif;
        font-weight: normal;
        font-size: 15px;
        line-height:1.2;
        text-decoration: none;
        padding: 12px 20px;
        letter-spacing: 1.15px;
    }
    
    a.button span {    color: #DA3D0F;      }
    
    a.button:hover, 
    a.button:focus {
        background-color: #DA3D0F;
        color: #FFF;
        cursor: pointer;
    }


    /*Buttons Arrow Styles*/
    a.button.textButton,
    a.button.bannerButton,
    a.button.ctaButton {
        position: relative;
        padding: 12px 60px 12px 12px;
        text-align: left !important;
        max-width: 100%;
    }
    
    a.button.textButton::after,
    a.button.ctaButton::after,
    a.button.bannerButton::after,
    a.button.largeButton::after {
        font-family: "csu-icons-2019";
        font-style: normal;
        font-weight: normal;
        speak: none;
        -webkit-font-smoothing: antialiased;
        -o-transform: scale(1);
        text-rendering: optimizeLegibility;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        text-align: center;
        font-variant: normal;
        text-transform: none;
        line-height: 1em;
        margin: 0 3px;
        content: '\e90c' !important;
        color: inherit;
        font-size: 25px;
        line-height: 9px;
        position: absolute;
        right: 0.25em;
        padding-top: 4px;
    }
    
    a.button.largeButton:hover::after {
        color: #DA3D0F !important;
    }
    
    
    /*Text Buttons*/
    a.button.textButton {
        color: #000;
        border-color: transparent !important;
        background-color: transparent !important;
        padding-left:0;
    }
    
    a.button.textButton:hover, 
    a.button.textButton:focus {
        color: #DA3D0F !important;
        text-decoration: underline !important;
        background-color: transparent !important;
    }
    
    a.button.textButton:hover::after,
    a.button.textButton:focus::after {
        text-decoration: none !important;
    }
    
    
    /*Banner Buttons*/
    a.button.bannerButton {
        background-color: #DA3D0F;
        color: #FFF;
    }
    
    a.button.bannerButton:hover, 
    a.button.bannerButton:focus {
        border-color: #000;
        background-color: #000;
    }

    
    /*Large CTA Buttons*/
    a.button.largeButton {
        background-color: #C7B8A0;
        border: 1px solid #C7B8A0 !important;
        min-height: 70px;
        color: #000;
        text-align: left !important;
        padding: 25px 20px;
        font-size: 17px !important;
        width: 100%;
        position: relative;
    }
    
    a.button.largeButton span {    color: #000;      }
    
    a.button.largeButton::after {
        font-size: 30px;
        line-height: 12px;
    }
    
    a.button.largeButton:hover, 
    a.button.largeButton:focus {
        border: 1px solid #DA3D0F;
        background-color: #FFF;
        color: #DA3D0F;
        text-decoration: none;
    }
  
  
/*    
.card-action a.button.modal-trigger {
    background-color: #EEE9E2 !important;
}
*/