﻿/*
    Use classes in the following order:
    vp-btn vp-btn-<size> vp-btn-<type>-color vp-btn-<filled | hollow>

    Default: #26abe2, hover/active/focus: #53b7e8
*/

.vp-btn {
    color: #26abe2;
    border-color: #26abe2;
    background: #26abe2;
    border-style: solid;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
    -ms-border-radius: 0;
    border-radius: 0;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -ms-transition: border-color 0.5s ease;
    -o-transition: border-color 0.5s ease;
    -webkit-transition: border-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    transition: color 0.5s ease;
    transition: border-color 0.5s ease;
    transition: background-color 0.5s ease;
}

    .vp-btn label {
        margin: 0;
        cursor: pointer;
    }

    .vp-btn span {
        cursor: pointer;
    }

    .vp-btn:hover, .vp-btn:active, .vp-btn:focus {
        color: #fff !important;
        border-color: #53b7e8;
        background: #53b7e8;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.vp-btn-small {
    padding: 3px 6px;
    border-width: 1px;
    line-height: 12px;
}

    .vp-btn-small label {
        font-weight: normal;
        font-size: 10px;
    }

    .vp-btn-small span {
        margin-left: 3px;
        font-size: 12px;
    }

.vp-btn-medium {
    padding: 3px 8px;
    border-width: 1.5px;
    line-height: 22px;
}

    .vp-btn-medium label {
        float: left;
    }

    .vp-btn-medium span {
        margin-left: 10px;
        font-size: 22px;
    }

.vp-btn-large {
    padding: 6px 15px;
    border-width: 2px;
}

    .vp-btn-large label {
        float: left;
        line-height: 30px;
        font-family: 'OpenSans-Bold', 'open sans', 'Helvetica Neue', Helvetica;
    }

    .vp-btn-large span {
        margin-left: 15px;
        font-size: 30px;
    }

/* Use this section to declare site specific colors for buttons. 
=======================================================================
=======================================================================
*/

/* Example of site specific color for a button. This pattern also works for
    inlined CSS used by buttons with an ID and colors from a model.

.vp-btn-admin-color {
    color: #f47d6e;
    border-color: #f47d6e;
    background: #f47d6e;
}

    .vp-btn-admin-color:hover, .vp-btn-admin-color:active, .vp-btn-admin-color:focus {
        border-color: #ff8c7d;
        background: #ff8c7d;
    }
*/

/*  
=======================================================================
=======================================================================
*/

.vp-btn-filled {
    color: #fff !important;
}

.vp-btn-hollow {
    background: transparent;
}

.vp-btn-center {
    text-align: center;
}

.vp-btn-left {
    text-align: left;
}

.vp-btn-right {
    text-align: right;
}