﻿/* BUTTON STYLE */
.custom-button{
    text-align: center;
    cursor: pointer;
    -moz-transition:all 300ms ease-out;
    -o-transition:all 300ms ease-out;
    -webkit-transition:all 300ms ease-out;
    transition:all 300ms ease-out;
}
.custom-button.style01{
    color: #fff;
    background-color: #e5534c;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-transform: uppercase;
}
.custom-button.style01:hover{
    background-color: #000;
}
.custom-button.style02{
    color: #fff;
    background-color: #f29f29;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-transform: uppercase;
}
.custom-button.style02:hover{
    background-color: #000;
}