/****************************************************************************/
/* This is the default custom CSS file that is included in every template.  */
/* It can be edited, but it cannot be renamed or deleted.                   */
/****************************************************************************/

/*------------------------------------------*/
/*     Link Setting
/*------------------------------------------*/

a {
    text-decoration: none;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

a:hover {
    color: #ffffff;
    text-decoration: none;
}

a:focus {
    color: #ffffff;
    outline: none;
    border: none;
    text-decoration: none;
} 

/*------------------------------------------*/
/*	 Theme Button
/*------------------------------------------*/

.btn-theme {
    font-weight: 700;
    background-color: ;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 20px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    
}

.btn-theme:hover {
    background-color: ;
    color: #ffffff;
    
}

/*------------------------------------------*/
/*	 Button Hover/Focus
/*------------------------------------------*/

.btn:focus {
    outline: none;
}

.btn:focus {
    color: #ffffff;
    text-decoration: none;
}