﻿/* General button style */
.btn {
    border: none;
    font-size: 12px;
    color: inherit;
    background: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 0rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .btn:after {
        content: '';
        position: absolute;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    /* Pseudo elements for icons */
    .btn:before {
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        position: relative;
        -webkit-font-smoothing: antialiased;
    }


.btn-1 {
    background: #3498db;
    color: #fff;
    padding: 5px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

    .btn-1:hover {
        background: #5FBDFF;
        color: #0C0C0C;
    }

    .btn-1:active {
        background: #5FBDFF;
        top: 2px;
    }

    .btn-1:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 2 SUBMIT*/
.btn-2 {
    background: #41B06E;
    color: #fff;
    padding: 5px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

    .btn-2:hover {
        background: #8DECB4;
        color: #0C0C0C;
    }

    .btn-2:active {
        background: #8DECB4;
        top: 2px;
    }

    .btn-2:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 3 CANCEL */
.btn-3 {
    background: #D61355;
    color: #fff;
    padding: 5px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

    .btn-3:hover {
        background: #F94A29;
        color: #0C0C0C;
    }

    .btn-3:active {
        background: #F94A29;
        top: 2px;
    }

    .btn-3:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 4 */
.btn-4 {
    background: #34495e;
    color: #fff;
    padding: 5px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

    .btn-4:hover {
        background: #2c3e50;
        color: #89C4E1;
    }

    .btn-4:active {
        background: #2c3e50;
        top: 2px;
    }

    .btn-4:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 5 */
.btn-dark {
    background: #000000;
    color: #fff;
    padding: 5px !important;
    padding-left: 15px !important;
    padding-right: 10px !important;
    letter-spacing: 5px;
}

    .btn-dark:hover {
        background: #2c3e50;
        color: #89C4E1;
    }

    .btn-dark:active {
        background: #2c3e50;
        top: 2px;
    }

    .btn-dark:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 6 */
.btn-small {
    background: #227B94;
    color: #fff;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
    font-size: 11px;
    margin-bottom: 2px;
}

    .btn-small:hover {
        background: #16325B;
        color: #89C4E1;
    }

    .btn-small:active {
        background: #16325B;
        top: 2px;
    }

    .btn-small:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 7 */
.btn-smallD {
    background: #F05941;
    color: #fff;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
    font-size: 11px;
    margin-bottom: 2px;
}

    .btn-smallD:hover {
        background: #BE3144;
        color: #89C4E1;
    }

    .btn-smallD:active {
        background: #BE3144;
        top: 2px;
    }

    .btn-smallD:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }

/* Button 8 */
.btn-smallV {
    background: #3FA2F6;
    color: #fff;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
    font-size: 11px;
    margin-bottom: 2px;
}

    .btn-smallV:hover {
        background: #0F67B1;
        color: #89C4E1;
    }

    .btn-smallV:active {
        background: #0F67B1;
        top: 2px;
    }

    .btn-smallV:before {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 140%;
        width: 60px;
    }
