﻿/* -------------------------------------
    GLOBAL
    A very basic CSS reset
------------------------------------- */
#pago {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    font-size: 14px;
}

    #pago img {
        max-width: 100%;
    }

#pago {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    width: 100% !important;
    height: 100%;
    line-height: 1.6;
}

    /* Let's make sure all tables have defaults */
    #pago table td {
        vertical-align: top;
    }

    /* -------------------------------------
    BODY & CONTAINER
------------------------------------- */


    #pago .body-wrap {
        width: 100%;
    }

    #pago .container {
        display: block !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        /* makes it centered */
        clear: both !important;
    }

    #pago .content {
        max-width: 600px;
        margin: 0 auto;
        display: block;
        padding: 20px;
    }

    /* -------------------------------------
    HEADER, FOOTER, MAIN
------------------------------------- */
    #pago .main {
        background: #fff;
        border: 1px solid #e9e9e9;
        border-radius: 3px;
    }

    #pago .content-wrap {
        padding: 20px;
    }

    #pago .content-block {
        padding: 0 0 20px;
    }

    /* -------------------------------------
    TYPOGRAPHY
------------------------------------- */
    #pago h1, h2, h3 {
        font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        color: #000;
        margin: 40px 0 0;
        line-height: 1.2;
        font-weight: 400;
    }

    #pago h1 {
        font-size: 32px;
        font-weight: 500;
    }

    #pago h2 {
        font-size: 24px;
    }

    #pago h3 {
        font-size: 18px;
    }

    #pago h4 {
        font-size: 14px;
        font-weight: 600;
    }

    #pago p, ul, ol {
        margin-bottom: 10px;
        font-weight: normal;
    }

        #pago p li, ul li, ol li {
            margin-left: 5px;
            list-style-position: inside;
        }

    /* -------------------------------------
    LINKS & BUTTONS
------------------------------------- */
    #pago a {
        color: #009881;
        text-decoration: underline;
    }

    #pago .btn-primary {
        text-decoration: none;
        color: #FFF;
        background-color: #009881;
        border: solid #009881;
        border-width: 5px 10px;
        line-height: 2;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        display: inline-block;
        border-radius: 5px;
        text-transform: capitalize;
    }




/* -------------------------------------
    RESPONSIVE AND MOBILE FRIENDLY STYLES
------------------------------------- */
@@media only screen and (max-width: 640px) {
    #pago h1, h2, h3, h4 {
        font-weight: 600 !important;
        margin: 20px 0 5px !important;
    }

    #pago h1 {
        font-size: 22px !important;
    }

    #pago h2 {
        font-size: 18px !important;
    }

    #pago h3 {
        font-size: 16px !important;
    }

    #pago .container {
        width: 100% !important;
    }

    #pago .content, .content-wrap {
        padding: 10px !important;
    }
}
