/* GENERAL ====================================================================== */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6em;
    color: #3b424d;
    -webkit-font-smoothing: antialiased;
}

.light-grey-separator {
    height: 2px;
    background: #d2d2d2;
    border-bottom: 1px solid rgba(255,255,255,.8);
}

.lighter-grey-separator {
    height: 1px;
    background: #e7eaed;
}

.obl-lines-separator {
    height: 7px;
    background: url(../img/bgs/bg-separator-obl-lines.png) repeat;
}

.dark-emboss-separator {
    height: 2px;
    background: #171b21;
    border-bottom: 1px solid #2f343e;
}

.facebook-login-btn {
    font-family: 'Oswald', sans-serif;
    background: #45619d;
    padding: 6px 0 4px;
    color: white;
    width: 100%;
    display: block;
    text-transform: uppercase;
    box-shadow: 0 2px 0 #314b81;
    border-radius: 2px;
    font-size: 90%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

    .facebook-login-btn:hover {
        background: #36518b;
        box-shadow: 0 2px 0 #264076;
        color: white;
        text-decoration: none;
    }

::-webkit-input-placeholder { /* WebKit browsers */
    color: #555 !important;
    font-size: 90%;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #555 !important;
    font-size: 90%;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #555 !important;
    font-size: 90%;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #555 !important;
    font-size: 90%;
}

a {
    cursor: pointer;
    margin: 0;
    padding: 0;
}

    a.orange-link {
        color: #f25430;
    }

.back-to-top {
    position: fixed;
    right: 1em;
    bottom: 1.3em;
    display: none;
}

.back-to-top-btn {
    font-size: 120%;
    color: white;
    background: rgba(0,0,0,.3);
    padding: 8px 12px;
    border-radius: 3px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

    .back-to-top-btn:hover {
        text-decoration: none;
        background: rgba(0,0,0,.85);
        color: white;
    }

.white-text {
    color: white;
}

.uppercase {
    text-transform: uppercase;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

.position-relative {
    position: relative;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
.uneditable-input:focus {
    border-color: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    outline: -webkit-focus-ring-color auto 0px;
}

.cp-input {
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #a9a9a9;
    box-shadow: none;
    width: 100%;
}
/* END OF GENERAL ================================================================= */


/* PRELOADER ====================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* change if the mask should have another color then white */
    z-index: 1031; /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%; /* centers the loading animation horizontally one the screen */
    top: 50%; /* centers the loading animation vertically one the screen */
    background-image: url(../img/status.gif); /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px; /* is width and height divided by two */
}
/* END OF PRELOADER ================================================================ */

/* HEADER ========================================================================== */
.navbar {
    min-height: 60px;
    margin-bottom: 0;
    padding: 0 10px;
}

.navbar-inverse {
    background: #1b1e24;
}

.navbar-brand {
    padding: 9px 0 0;
}

.teaser {
    padding: 30px 0 20px;
    background: #f25430;
    position: fixed;
    top: 60px;
    z-index: 1029;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.teaserScrolled {
    padding: 0 0 15px 0;
    top: 43px;
    background: rgba(242,84,48,.95);
}

.teaser .teaser-title {
    color: white;
    font-family: 'Oswald', sans-serif;
    line-height: 0;
    padding: 0;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.search-input-group {
    margin: 0 auto;
    width: 22%;
    margin-top: 10px;
}

    .search-input-group input {
        border-radius: 2px;
        border: none;
    }

    .search-input-group span.input-group-btn button {
        border: 1px solid #f48564;
        background-color: #f48564;
        color: white;
        cursor: pointer;
        -webkit-border-top-right-radius: 2px;
        -webkit-border-bottom-right-radius: 2px;
        -moz-border-radius-topright: 2px;
        -moz-border-radius-bottomright: 2px;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
    }

        .search-input-group span.input-group-btn button:hover {
            border-left: none;
            color: #ffd2c5;
        }
/* END OF HEADER =================================================================== */

/* SIDEBAR MENU ==================================================================== */
#sidebar-wrapper {
    margin-right: -280px;
    right: 0;
    top: 0;
    width: 280px;
    background: #22262e;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.sidebar-brand {
    color: #fff;
    font-size: 120%;
    background: #f25430;
    padding: 18px 0 19px 20px;
    border-left: 2px solid rgba(255,255,255,.5);
    text-transform: uppercase;
}

    .sidebar-brand i {
        font-size: 70%;
    }

#sidebar-wrapper.active {
    right: 280px;
    width: 280px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.toggle, #menu-toggle {
    margin: 13px 20px 0 0;
    color: white;
    font-size: 100%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

#menu-toggle {
    font-size: 230%;
    margin: 0;
    padding: 0;
    margin-top: 12px;
}

    .toggle:hover, #menu-toggle:hover {
        color: rgba(255,255,255,.7);
        text-decoration: none;
    }

.button-close-side-menu {
    margin-top: 20px;
}

.login-buttons-wrapper, .sidebar-content-wrapper {
    text-align: center;
    padding: 30px 20px;
}

.sidebar-content-wrapper {
    color: #c4cad6;
}

.sidebar-img-wrapper {
    max-width: 100px;
}

.sidebar-content-wrapper img.sidebar-user-img {
    padding: 5px;
    border: 2px solid rgba(255,255,255,.15);
}

.login-buttons-wrapper .panel-group .panel {
    border-radius: 2px;
}

.login-buttons-wrapper .panel-heading {
    border: none;
    box-shadow: none;
    padding: 10px 0;
    border-radius: 0;
}

    .login-buttons-wrapper .panel-heading a {
        text-transform: uppercase;
        font-size: 80%;
        font-weight: bold;
        color: #555;
    }

        .login-buttons-wrapper .panel-heading a:hover {
            color: rgba(85,85,85,.7);
            text-decoration: none;
        }

.login-buttons-wrapper .panel-group .panel .form-group {
    margin-bottom: 10px;
}

.login-buttons-wrapper .panel-group .panel input,
.login-buttons-wrapper .panel-group .panel button {
    border-radius: 2px;
    margin: 0;
}

.login-buttons-wrapper .panel-group .panel button {
    text-transform: uppercase;
    border: none;
    background: #222;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 90%;
    margin-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.sidebar-icons-wrapper ul li a {
    color: rgba(255,255,255,.7);
    padding: 7px 10px;
    line-height: 0;
    font-size: 110%;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.sidebar-icons-wrapper ul li {
    position: relative;
}

    .sidebar-icons-wrapper ul li span.notifications {
        padding: 5px;
        line-height: 10px;
        text-align: center;
        font-size: 80%;
        background: #dc3522;
        color: white;
        position: absolute;
        right: 0;
        top: -15px;
        display: block;
        height: 20px;
        width: 20px;
        border-radius: 50px;
        cursor: pointer;
    }

    .sidebar-icons-wrapper ul li a:hover {
        color: #04bfbf;
        text-decoration: none;
        border: 1px solid #04bfbf;
    }

.quick-campaign-wrapper {
    padding: 4px 2px 0;
    font-size: 80%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
}

.latest-donations-wrapper {
    position: relative;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 2px;
    padding: 20px 15px 15px;
    font-size: 85%;
    text-align: left;
    line-height: 1.5em;
}

    .latest-donations-wrapper ul li {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px dotted rgba(255,255,255,.2);
    }

        .latest-donations-wrapper ul li:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: none;
        }

        .latest-donations-wrapper ul li a {
            color: white;
        }

.close-pannel-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    color: rgba(255,255,255,.2);
    font-size: 85%;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

    .close-pannel-btn:hover {
        color: rgba(255,255,255,.6);
    }
/* END OF SIDEBAR MENU ==================================================================== */


/* GRID =================================================================================== */
#container {
    margin: 0 auto;
}

/* no transition on .isotope container */

.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

/* Categories Menu Dropdown */
.categories-nav {
    margin: 30px auto;
    width: 250px;
    text-align: center;
    text-transform: uppercase;
}

    .categories-nav ul {
        position: relative;
        z-index: 10;
        padding-left: 0;
    }

        .categories-nav ul li {
            position: relative;
            list-style: none;
            cursor: pointer;
            width: 250px;
        }

            .categories-nav ul li ul {
                position: absolute;
                left: 0;
                -webkit-border-bottom-right-radius: 20px;
                -webkit-border-bottom-left-radius: 20px;
                -moz-border-radius-bottomright: 20px;
                -moz-border-radius-bottomleft: 20px;
                border-bottom-right-radius: 20px;
                border-bottom-left-radius: 20px;
            }

        .categories-nav ul .categories-button {
            position: relative;
            background: #222;
            color: white;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            border-radius: 2px;
            box-shadow: 0 2px black;
        }

        .categories-nav ul a.active {
            -webkit-border-bottom-right-radius: 0px;
            -webkit-border-bottom-left-radius: 0px;
            -moz-border-radius-bottomright: 0px;
            -moz-border-radius-bottomleft: 0px;
            border-bottom-right-radius: 0px;
            border-bottom-left-radius: 0px;
        }

        .categories-nav ul .categories-button:hover, .categories-nav ul .active {
            background: black;
        }

        .categories-nav ul li a {
            transition: all 0.2s ease-in-out;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            display: block;
            padding: 8px 10px;
            background: #222;
            border-bottom: 1px solid black;
            border-top: 1px solid #333;
            color: white;
            text-decoration: none;
        }

            .categories-nav ul li a:hover {
                background: black;
            }

    /* Fallbacks */
    .categories-nav .categories-list ul {
        display: none;
    }

    .categories-nav .categories-list:hover ul {
        display: block;
    }

/* GRID ITEM STYLES */
.item {
    background: white;
    box-shadow: 0 2px 0 #cacaca;
    border-radius: 2px;
    border: 1px solid #e5e5e5;
}

.item-wrapper {
    margin: 5px;
    padding: 5px;
    border: 1px solid #ddd;
}

.grid-image-overlay-btn:hover {
    text-decoration: none;
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.6);
}

.grid-image-wrapper img {
    margin: 0 auto;
}

.description-wrapper {
    padding: 18px 11px;
    line-height: 1.6em;
}

    .description-wrapper .grid-item-title, .description-wrapper .grid-item-title a {
        padding: 0;
        margin: 0;
        font-family: 'Oswald', sans-serif;
        font-size: 110%;
        text-transform: uppercase;
        color: #3b424d;
        font-weight: bold;
        line-height: 1.4em;
        -webkit-transition: color 0.2s;
        -moz-transition: color 0.2s;
        -ms-transition: color 0.2s;
        -o-transition: color 0.2s;
        transition: color 0.2s;
    }

        .description-wrapper .grid-item-title a:hover {
            color: #f25430;
            text-decoration: none;
        }

p.small-text {
    margin-bottom: 0;
}

.small-light-text {
    font-size: 80%;
    color: #aaa;
    margin: 0;
}

.subtitle-text {
    color: #aaa;
    font-size: 90%;
}

.cp-progress {
    /*height: 5px;*/
    border-radius: 0;
    background: #cfd5da;
    box-shadow: none;
    margin-bottom: 5px;
    line-height: normal;
}

    .cp-progress .progress-bar {
        background: #f25430;
        border: none;
        box-shadow: none;
        line-height: normal;
    }

    .cp-progress .Progresscomplete {
        font-size: 10px;
        line-height: normal;
    }


/* END OF GRID ============================================================================= */


/* INNER PAGES ============================================================================= */
.breadcrumb {
    background: rgba(255,255,255,.3);
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 85%;
}

.main-content-background {
    background: white;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
    padding: 25px;
    border-radius: 2px;
}

.title-wrapper {
    overflow: hidden;
}

.list-social-icons {
    margin-left: 0;
}

    .list-social-icons li {
        margin: 0;
        padding: 0;
    }

        .list-social-icons li a {
            font-size: 160%;
            color: #aaa;
        }

            .list-social-icons li a:hover {
                text-decoration: none;
                color: #888;
            }

.campaign-stats-list li {
    color: #777;
    text-shadow: 1px 1px 0 #fff;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

    .campaign-stats-list li span {
        float: right;
    }

.central-content-wrapper h1,
.central-content-wrapper h2,
.central-content-wrapper h3,
.central-content-wrapper h4,
.central-content-wrapper h5,
.central-content-wrapper h6 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.campaign-title h1,
.campaign-title h2,
.campaign-title h3,
.campaign-title h4,
.campaign-title h5,
.campaign-title h6 {
    margin-top: 0;
}

.fundraiser-title {
    background: #f8f8f8;
    border: 1px solid #eee;
}

.campaign-image {
    max-width: 150px;
}

.recent-donations-list li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .recent-donations-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.campaigns-list-container {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 3px;
    min-height: 130px;
}

    .campaigns-list-container img {
        max-width: 100px;
    }

.content-title {
    padding: 5px 10px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.form-section-wrapper {
    padding: 5px 10px;
    border-top: none;
}
/* END OF INNER PAGES ====================================================================== */


/*  FOOTER ================================================================================= */
#footer-silhouettes {
    background: url(../img/footer-silhouettes.png) no-repeat;
    width: 390px;
    height: 130px;
    float: right;
}

.footer-wrapper {
    background: #222;
    padding: 30px;
}

#footer-sales-questions {
    color: #777;
    padding-bottom: 30px;
    border-bottom: 1px solid #111;
}

span.white-text {
    color: #ddd;
    font-weight: bold;
}

.footer-container {
    /*border-top:1px solid #333;*/
    padding: 30px 0;
}

ul.footer-list li {
    margin: 5px 0;
}

    ul.footer-list li a {
        color: #656565;
        text-decoration: none;
    }

        ul.footer-list li a:hover {
            color: #aaa;
        }

.footer-right-column {
    color: #656565;
}

ul.footer-social-icons {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dotted #333;
}

    ul.footer-social-icons li {
        display: inline;
        margin-right: 3px;
    }

.footer-container a {
    color: #aaa;
}
/*  END OF FOOTER ========================================================================== */


/* SIDEBAR ================================================================================= */

/* END OF SIDEBAR ========================================================================== */


/* WIDGETS ================================================================================= */
.light-widget {
    background: #f8f8f8;
    box-shadow: 0 0 2px rgba(0,0,0,.15);
    border: 1px solid #fff;
    overflow: hidden;
}

.donation-widget {
    background: #f5f5f5;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
}

.dw-second-stage {
    display: none;
}

.dw-section-title {
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}

#month-frequency {
    display: none;
    background: url(../img/months-bg.png) no-repeat top right;
    padding-right: 70px;
}

.leaderboard-item {
    border: 1px solid #ddd;
    margin: 5px 0;
    padding: 5px;
    overflow: hidden;
    font-size: 90%;
}

    .leaderboard-item img {
        float: left;
        margin-right: 10px;
        margin-bottom: 10px;
        max-width: 50px;
        border-radius: 100px;
    }

    .leaderboard-item p {
        margin: 0;
    }

.fundraisers-widget-list li {
    background: white;
    padding: 3px;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-bottom: 7px;
    margin-right: 3px;
}

    .fundraisers-widget-list li img {
        max-width: 50px;
    }

/* *** DONATION STEPTS WIDGET *** */
.form-wrapper {
    overflow: hidden;
    position: relative;
}

.donation-success-note {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: white;
    background: rgba(0,150,125,.95);
    padding: 20px 10px;
    z-index: 1000;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 2em;
    border-radius: 3px;
    display: none;
}

.close-tynote-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-size: 80%;
}

.ui-widget {
    font-family: inherit;
    font-size: inherit;
    border: none !important;
}

.ui-datepicker.ui-widget {
    border: 1px solid #c5c5c5 !important;
}

.ui-state-default, .ui-widget-content .ui-state-default {
    border: 1px solid #959595;
    /* font-weight: unset; */
    color: #333;
    border-radius: 2px;
    background: #fff;
}

.ui-helper-reset {
    /*line-height: 1.6em;*/
    line-height: inherit;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'Open Sans', sans-serif;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="textarea"],
.form-wrapper input[type="password"],
.form-wrapper input[type="datetime"],
.form-wrapper input[type="datetime-local"],
.form-wrapper input[type="date"],
.form-wrapper input[type="month"],
.form-wrapper input[type="time"],
.form-wrapper input[type="week"],
.form-wrapper input[type="number"],
.form-wrapper input[type="email"],
.form-wrapper input[type="url"],
.form-wrapper input[type="search"],
.form-wrapper input[type="tel"],
.form-wrapper input[type="color"],
.form-wrapper select {
    padding: 3px 5px;
    border: 1px solid #959595;
    border-radius: 2px;
}

.form-wrapper select {
    padding: 4px 5px 4px;
    font-size: 90%;
}

.form-wrapper textarea {
    padding: 5px 10px;
    font-size: 90%;
    width: 100%;
}

.form-wrapper input[type="checkbox"] {
    /*display: inline-block !important;*/
    display: inline-block;
    margin-right: 5px;
}

.checkbox-text {
    font-size: 90%;
}

.form-wrapper label {
    margin-bottom: 0.2em;
}

label.error {
    color: red;
}

.step .required-text {
    color: red;
}

input[type="text"], input[type="email"] {
    width: 100%;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: none;
    background: #333;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 0;
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    font-size: 130%;
}

.ui-datepicker .ui-state-active, .ui-datepicker .ui-widget-content .ui-state-active {
    padding: .2em;
    font-family: 'Open Sans', sans-serif;
    font-size: .9em;
    border: 1px solid #333;
}

.ui-state-disabled {
    display: none;
}

.ui-datepicker .ui-state-disabled {
    display: table-cell;
}

.input-text-wrapper {
    position: relative;
    margin-bottom: 9px;
}

    .input-text-wrapper label {
        font-weight: normal;
        font-size: 90%;
    }



        .input-text-wrapper label.error, label.error {
            position: absolute;
            right: 4px;
            top: 4px;
            padding-right: 2px;
            font-size: 80%;
            font-weight: normal;
            display: none !important;
        }

input.error, select.error {
    border: 1px solid red !important;
    background-color: #fcecec !important;
}

textarea.error, textarea.error {
    border: 1px solid red !important;
    background-color: #fcecec !important;
}

.cards-image {
    text-align: center;
    margin-bottom: 5px;
}

#back {
    background: url(../img/back-button.png) no-repeat;
    width: 27px;
    height: 27px;
    position: absolute;
    left: 0;
    top: 0;
}

#fullname, #name-on-card {
    padding-left: 30px;
    background-image: url(../img/icons/ico-user.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

#email {
    padding-left: 30px;
    background-image: url(../img/icons/ico-email.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

#country {
    padding-left: 25px;
    background-image: url(../img/icons/ico-globe.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

#address {
    padding-left: 25px;
    background-image: url(../img/icons/ico-address.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

#city {
    padding-left: 25px;
    background-image: url(../img/icons/ico-location.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

#card-number {
    padding-left: 25px;
    background-image: url(../img/icons/ico-card.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

#cvv {
    padding-left: 25px;
    background-image: url(../img/icons/ico-cvv.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}
/* *** END OF DONATION STEPS WIDGET *** */


/* *** TABS *** */
.cp-nav-tabs {
    border-bottom: 1px solid #f15b38;
}

    .cp-nav-tabs > li.active > a, .cp-nav-tabs > li.active > a:hover, .cp-nav-tabs > li.active > a:focus {
        border: 1px solid #f15b38;
        border-bottom: none;
    }

    .cp-nav-tabs > li > a {
        border: none;
        background: #f15b38;
        margin-left: 3px;
        color: #fff;
        border-bottom: 1px solid #f15b38;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        -webkit-border-top-left-radius: 2px;
        -webkit-border-top-right-radius: 2px;
        -moz-border-radius-topleft: 2px;
        -moz-border-radius-topright: 2px;
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }

        .cp-nav-tabs > li > a:hover {
            background: #e14b28;
            border-bottom: 1px solid #e14b28;
        }

    .cp-nav-tabs > li:first-child > a {
        margin-left: 0;
    }

    .cp-nav-tabs .open > a,
    .cp-nav-tabs .open > a:hover,
    .cp-nav-tabs .open > a:focus {
        background-color: #f15b38;
        border-color: #f15b38;
    }

.cp-nav-dropdown-menu {
    padding: 0;
    margin: 2px 0 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.30);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cp-nav-tabs > li > a:hover,
.cp-nav-tabs > li > a:focus {
    background-color: #f15b38;
}

.cp-nav-dropdown-menu > .active > a,
.cp-nav-dropdown-menu > .active > a:hover,
.cp-nav-dropdown-menu > .active > a:focus {
    color: #333;
    text-decoration: none;
    outline: 0;
    background-color: #fff;
}

.cp-nav-dropdown-menu > li > a {
    display: block;
    padding: 10px 30px 10px 10px;
    clear: both;
    font-weight: normal;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.cp-nav-dropdown-menu > li:last-child > a {
    border-bottom: none;
}

.cp-tabs-tab-pane {
    padding: 40px 0;
}
/* *** END OF TABS *** */

/* END OF WIDGETS ========================================================================== */

.footer {
    background: #222;
    padding: 30px 0;
    text-align: center;
    color: white;
    margin-top: 30px;
}


/* CUSTOM BUTTONS =========================================================================== */

/* DEFAULT ORANGE BUTTON */
.cp-btn {
    padding: 8px 15px 7px;
    border: 1px solid #f25430;
    border-radius: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #f25430;
    font-size: 90%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.cp-btn-large {
    font-size: 160%;
}

.cp-btn-medium {
    font-size: 130%;
}

.cp-btn:hover {
    color: #222;
    border: 1px solid #222;
    text-decoration: none;
}

/* LINE BUTTONS ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
/* CP LINE BUTTON - White */
.cp-btn-line-White {
    border: 1px solid white;
    color: white;
}

    .cp-btn-line-White:hover {
        border: 1px solid rgba(255,255,255,.6);
        color: rgba(255,255,255,.6);
    }

/* CP LINE BUTTON - Tusk */
.cp-btn-line-Tusk {
    border: 1px solid #e6e2af;
    color: #e6e2af;
}

    .cp-btn-line-Tusk:hover {
        border: 1px solid #cdc990;
        color: #cdc990;
    }

/* CP LINE BUTTON - Supernova */
.cp-btn-line-Supernova {
    border: 1px solid #ffb03b;
    color: #ffb03b;
}

    .cp-btn-line-Supernova:hover {
        border: 1px solid #ffd89f;
        color: #ffd89f;
    }

/* CP LINE BUTTON - InchWorm */
.cp-btn-line-InchWorm {
    border: 1px solid #85db18;
    color: #85db18;
}

    .cp-btn-line-InchWorm:hover {
        border: 1px solid #6cba0a;
        color: #6cba0a;
    }

/* CP LINE BUTTON - Manz */
.cp-btn-line-Manz {
    border: 1px solid #cde855;
    color: #cde855;
}

    .cp-btn-line-Manz:hover {
        border: 1px solid #adca2a;
        color: #adca2a;
    }

/* CP LINE BUTTON - BlizzardBlue */
.cp-btn-line-BlizzardBlue {
    border: 1px solid #acf0f2;
    color: #acf0f2;
}

    .cp-btn-line-BlizzardBlue:hover {
        border: 1px solid #77cfd2;
        color: #77cfd2;
    }

/* CP LINE BUTTON - PersianGreen */
.cp-btn-line-PersianGreen {
    border: 1px solid #0AA699;
    color: #0AA699;
}

    .cp-btn-line-PersianGreen:hover {
        border: 1px solid #07847a;
        color: #07847a;
    }

/* CP LINE BUTTON - RobinEggBlue */
.cp-btn-line-RobinEggBlue {
    border: 1px solid #00d1b6;
    color: #00d1b6;
}

    .cp-btn-line-RobinEggBlue:hover {
        border: 1px solid #0aa699;
        color: #0aa699;
    }


/* FULL BACKGROUND BUTTONS ^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
/* CP BLACK BUTTON */
.cp-btn-Black {
    border: none;
    color: white;
    background: #333;
    box-shadow: 0 2px black;
}

    .cp-btn-Black:hover {
        background: black;
        border: none;
        color: white;
    }

/* CP LuckyPoint BUTTON */
.cp-btn-LuckyPoint {
    border: none;
    color: white;
    background: #263248;
    box-shadow: 0 2px #0d131d;
}

    .cp-btn-LuckyPoint:hover {
        background: #0d131d;
        border: none;
        color: white;
    }

/* CP LightSlateGrey BUTTON */
.cp-btn-LightSlateGrey {
    border: none;
    color: white;
    background: #7e8aa2;
    box-shadow: 0 2px #5e697e;
}

    .cp-btn-LightSlateGrey:hover {
        background: #5e697e;
        border: none;
        color: white;
    }

/* CP OrangePeel BUTTON */
.cp-btn-OrangePeel {
    border: none;
    color: white;
    background: #ff9800;
    box-shadow: 0 2px #d47e00;
}

    .cp-btn-OrangePeel:hover {
        background: #d47e00;
        border: none;
        color: white;
    }

/* CP BlueStone BUTTON */
.cp-btn-BlueStone {
    border: none;
    color: white;
    background: #105b63;
    box-shadow: 0 2px #09474e;
}

    .cp-btn-BlueStone:hover {
        background: #09474e;
        border: none;
        color: white;
    }

/* CP Cream BUTTON */
.cp-btn-Cream {
    border: none;
    color: #504d33;
    background: #fffad5;
    box-shadow: 0 2px #e2dba3;
}

    .cp-btn-Cream:hover {
        background: #e2dba3;
        border: none;
        color: #504d33;
    }

/* CP Mustard BUTTON */
.cp-btn-Mustard {
    border: none;
    color: #7c6c3d;
    background: #ffd34e;
    box-shadow: 0 2px #d4ae39;
}

    .cp-btn-Mustard:hover {
        background: #d4ae39;
        border: none;
        color: #7c6c3d;
    }

/* CP HintOfYellow BUTTON */
.cp-btn-HintOfYellow {
    border: none;
    color: #565745;
    background: #f5f6d4;
    box-shadow: 0 2px #d7d8ab;
}

    .cp-btn-HintOfYellow:hover {
        background: #d7d8ab;
        border: none;
        color: #565745;
    }

/* CP Cinnabar BUTTON */
.cp-btn-Cinnabar {
    border: none;
    color: white;
    background: #dc3522;
    box-shadow: 0 2px #bb2412;
}

    .cp-btn-Cinnabar:hover {
        background: #bb2412;
        border: none;
        color: white;
    }

/* CP SunsetOrange BUTTON */
.cp-btn-SunsetOrange {
    border: none;
    color: white;
    background: #f25430;
    box-shadow: 0 2px #d53f1c;
}

    .cp-btn-SunsetOrange:hover {
        background: #d53f1c;
        border: none;
        color: white;
    }

/* CP BahamaBlue BUTTON */
.cp-btn-BahamaBlue {
    border: none;
    color: white;
    background: #225378;
    box-shadow: 0 2px #194567;
}

    .cp-btn-BahamaBlue:hover {
        background: #194567;
        border: none;
        color: white;
    }

/* CP LightSeaGreen BUTTON */
.cp-btn-LightSeaGreen {
    border: none;
    color: white;
    background: #1695a3;
    box-shadow: 0 2px #0e7b87;
}

    .cp-btn-LightSeaGreen:hover {
        background: #0e7b87;
        border: none;
        color: white;
    }

/* CP GreenSmoke BUTTON */
.cp-btn-GreenSmoke {
    border: none;
    color: white;
    background: #95ab63;
    box-shadow: 0 2px #748847;
}

    .cp-btn-GreenSmoke:hover {
        background: #748847;
        border: none;
        color: white;
    }

/* CP IrisBlue BUTTON */
.cp-btn-IrisBlue {
    border: none;
    color: white;
    background: #04bfbf;
    box-shadow: 0 2px #019a9a;
}

    .cp-btn-IrisBlue:hover {
        background: #019a9a;
        border: none;
        color: white;
    }

/* CP Turquoise BUTTON */
.cp-btn-Turquoise {
    border: none;
    color: white;
    background: #29d9c2;
    box-shadow: 0 2px #1bb8a4;
}

    .cp-btn-Turquoise:hover {
        background: #1bb8a4;
        border: none;
        color: white;
    }

/* CP PersianGreen BUTTON */
.cp-btn-PersianGreen {
    border: none;
    color: white;
    background: #01a2a6;
    box-shadow: 0 2px #008487;
}

    .cp-btn-PersianGreen:hover {
        background: #008487;
        border: none;
        color: white;
    }

/* CP Amaranth BUTTON */
.cp-btn-Amaranth {
    border: none;
    color: white;
    background: #ea2e49;
    box-shadow: 0 2px #d01c36;
}

    .cp-btn-Amaranth:hover {
        background: #d01c36;
        border: none;
        color: white;
    }

/* CP FreeSpeechRed BUTTON */
.cp-btn-FreeSpeechRed {
    border: none;
    color: white;
    background: #d90000;
    box-shadow: 0 2px #b70000;
}

    .cp-btn-FreeSpeechRed:hover {
        background: #b70000;
        border: none;
        color: white;
    }

/* CP Scarlet BUTTON */
.cp-btn-Scarlet {
    border: none;
    color: white;
    background: #ff2d00;
    box-shadow: 0 2px #d92600;
}

    .cp-btn-Scarlet:hover {
        background: #d92600;
        border: none;
        color: white;
    }

/* CP OutrageousOrange BUTTON */
.cp-btn-OutrageousOrange {
    border: none;
    color: white;
    background: #ff5335;
    box-shadow: 0 2px #d83215;
}

    .cp-btn-OutrageousOrange:hover {
        background: #d83215;
        border: none;
        color: white;
    }

/* CP BlackRock BUTTON */
.cp-btn-BlackRock {
    border: none;
    color: white;
    background: #343642;
    box-shadow: 0 2px #1b1d27;
}

    .cp-btn-BlackRock:hover {
        background: #1b1d27;
        border: none;
        color: white;
    }

/* CP EbonyClay BUTTON */
.cp-btn-EbonyClay {
    border: none;
    color: white;
    background: #31353d;
    box-shadow: 0 2px #1b1e25;
}

    .cp-btn-EbonyClay:hover {
        background: #1b1e25;
        border: none;
        color: white;
    }

/* CP Arsenic BUTTON */
.cp-btn-Arsenic {
    border: none;
    color: white;
    background: #3b424d;
    box-shadow: 0 2px #232931;
}

    .cp-btn-Arsenic:hover {
        background: #232931;
        border: none;
        color: white;
    }

/* CP Cinder BUTTON */
.cp-btn-Cinder {
    border: none;
    color: white;
    background: #22262E;
    box-shadow: 0 2px #0b0c0f;
}

    .cp-btn-Cinder:hover {
        background: #0b0c0f;
        border: none;
        color: white;
    }

/* END OF CUSTOM BUTTONS ==================================================================== */


/* CUSTOM LABELS ============================================================================ */
.cp-label {
    background: #eee;
    width: 70px;
    display: block;
    text-align: center;
    padding: 6px 0;
    border-radius: 3px;
    float: left;
    font-weight: bold;
}

.cp-label-Cinnabar {
    background: #f15b38;
    color: white;
}
/* END OF CUSTOM LABELS ===================================================================== */


/* ====================================================
----- MARGINS -----------------------------------------
==================================================== */
.margin-1 {
    margin: 1px !important;
}

.margin-2 {
    margin: 2px !important;
}

.margin-3 {
    margin: 3px !important;
}

.margin-4 {
    margin: 4px !important;
}

.margin-5 {
    margin: 5px !important;
}

.margin-6 {
    margin: 6px !important;
}

.margin-7 {
    margin: 7px !important;
}

.margin-8 {
    margin: 8px !important;
}

.margin-9 {
    margin: 9px !important;
}

.margin-10 {
    margin: 10px !important;
}

.margin-15 {
    margin: 15px !important;
}

.margin-20 {
    margin: 20px !important;
}

.margin-25 {
    margin: 25px !important;
}

.margin-30 {
    margin: 30px !important;
}

.margin-35 {
    margin: 35px !important;
}

.margin-40 {
    margin: 40px !important;
}

.margin-45 {
    margin: 45px !important;
}

.margin-50 {
    margin: 50px !important;
}

.margin-55 {
    margin: 55px !important;
}

.margin-60 {
    margin: 60px !important;
}

.margin-65 {
    margin: 65px !important;
}

.margin-70 {
    margin: 70px !important;
}

.margin-75 {
    margin: 75px !important;
}

.margin-80 {
    margin: 80px !important;
}

.margin-top-1 {
    margin-top: 1px !important;
}

.margin-top-2 {
    margin-top: 2px !important;
}

.margin-top-3 {
    margin-top: 3px !important;
}

.margin-top-4 {
    margin-top: 4px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-top-6 {
    margin-top: 6px !important;
}

.margin-top-7 {
    margin-top: 7px !important;
}

.margin-top-8 {
    margin-top: 8px !important;
}

.margin-top-9 {
    margin-top: 9px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-top-35 {
    margin-top: 35px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-top-45 {
    margin-top: 45px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-top-55 {
    margin-top: 55px !important;
}

.margin-top-60 {
    margin-top: 60px !important;
}

.margin-top-65 {
    margin-top: 65px !important;
}

.margin-top-70 {
    margin-top: 70px !important;
}

.margin-top-75 {
    margin-top: 75px !important;
}

.margin-top-80 {
    margin-top: 80px !important;
}

.margin-bottom-1 {
    margin-bottom: 1px !important;
}

.margin-bottom-2 {
    margin-bottom: 2px !important;
}

.margin-bottom-3 {
    margin-bottom: 3px !important;
}

.margin-bottom-4 {
    margin-bottom: 4px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-6 {
    margin-bottom: 6px !important;
}

.margin-bottom-7 {
    margin-bottom: 7px !important;
}

.margin-bottom-8 {
    margin-bottom: 8px !important;
}

.margin-bottom-9 {
    margin-bottom: 9px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-35 {
    margin-bottom: 35px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-45 {
    margin-bottom: 45px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.margin-bottom-55 {
    margin-bottom: 55px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.margin-bottom-65 {
    margin-bottom: 65px !important;
}

.margin-bottom-70 {
    margin-bottom: 70px !important;
}

.margin-bottom-75 {
    margin-bottom: 75px !important;
}

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.margin-left-1 {
    margin-left: 1px !important;
}

.margin-left-2 {
    margin-left: 2px !important;
}

.margin-left-3 {
    margin-left: 3px !important;
}

.margin-left-4 {
    margin-left: 4px !important;
}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-left-6 {
    margin-left: 6px !important;
}

.margin-left-7 {
    margin-left: 7px !important;
}

.margin-left-8 {
    margin-left: 8px !important;
}

.margin-left-9 {
    margin-left: 9px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-left-25 {
    margin-left: 25px !important;
}

.margin-left-30 {
    margin-left: 30px !important;
}

.margin-left-35 {
    margin-left: 35px !important;
}

.margin-left-40 {
    margin-left: 40px !important;
}

.margin-left-45 {
    margin-left: 45px !important;
}

.margin-left-50 {
    margin-left: 50px !important;
}

.margin-left-55 {
    margin-left: 55px !important;
}

.margin-left-60 {
    margin-left: 60px !important;
}

.margin-left-65 {
    margin-left: 65px !important;
}

.margin-left-70 {
    margin-left: 70px !important;
}

.margin-left-75 {
    margin-left: 75px !important;
}

.margin-left-80 {
    margin-left: 80px !important;
}

.margin-right-1 {
    margin-right: 1px !important;
}

.margin-right-2 {
    margin-right: 2px !important;
}

.margin-right-3 {
    margin-right: 3px !important;
}

.margin-right-4 {
    margin-right: 4px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-right-6 {
    margin-right: 6px !important;
}

.margin-right-7 {
    margin-right: 7px !important;
}

.margin-right-8 {
    margin-right: 8px !important;
}

.margin-right-9 {
    margin-right: 9px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-right-25 {
    margin-right: 25px !important;
}

.margin-right-30 {
    margin-right: 30px !important;
}

.margin-right-35 {
    margin-right: 35px !important;
}

.margin-right-40 {
    margin-right: 40px !important;
}

.margin-right-45 {
    margin-right: 45px !important;
}

.margin-right-50 {
    margin-right: 50px !important;
}

.margin-right-55 {
    margin-right: 55px !important;
}

.margin-right-60 {
    margin-right: 60px !important;
}

.margin-right-65 {
    margin-right: 65px !important;
}

.margin-right-70 {
    margin-right: 70px !important;
}

.margin-right-75 {
    margin-right: 75px !important;
}

.margin-right-80 {
    margin-right: 80px !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-horizontal {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.no-margin-vertical {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}


/* ====================================================
----- PADDINGS ----------------------------------------
==================================================== */
.padding-1 {
    padding: 1px !important;
}

.padding-2 {
    padding: 2px !important;
}

.padding-3 {
    padding: 3px !important;
}

.padding-4 {
    padding: 4px !important;
}

.padding-5 {
    padding: 5px !important;
}

.padding-6 {
    padding: 6px !important;
}

.padding-7 {
    padding: 7px !important;
}

.padding-8 {
    padding: 8px !important;
}

.padding-9 {
    padding: 9px !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-15 {
    padding: 15px !important;
}

.padding-20 {
    padding: 20px !important;
}

.padding-25 {
    padding: 25px !important;
}

.padding-30 {
    padding: 30px !important;
}

.padding-35 {
    padding: 35px !important;
}

.padding-40 {
    padding: 40px !important;
}

.padding-45 {
    padding: 45px !important;
}

.padding-50 {
    padding: 50px !important;
}

.padding-55 {
    padding: 55px !important;
}

.padding-60 {
    padding: 60px !important;
}

.padding-65 {
    padding: 65px !important;
}

.padding-70 {
    padding: 70px !important;
}

.padding-75 {
    padding: 75px !important;
}

.padding-80 {
    padding: 80px !important;
}

.padding-top-1 {
    padding-top: 1px !important;
}

.padding-top-2 {
    padding-top: 2px !important;
}

.padding-top-3 {
    padding-top: 3px !important;
}

.padding-top-4 {
    padding-top: 4px !important;
}

.padding-top-5 {
    padding-top: 5px !important;
}

.padding-top-6 {
    padding-top: 6px !important;
}

.padding-top-7 {
    padding-top: 7px !important;
}

.padding-top-8 {
    padding-top: 8px !important;
}

.padding-top-9 {
    padding-top: 9px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-top-25 {
    padding-top: 25px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-top-35 {
    padding-top: 35px !important;
}

.padding-top-40 {
    padding-top: 40px !important;
}

.padding-top-45 {
    padding-top: 45px !important;
}

.padding-top-50 {
    padding-top: 50px !important;
}

.padding-top-55 {
    padding-top: 55px !important;
}

.padding-top-60 {
    padding-top: 60px !important;
}

.padding-top-65 {
    padding-top: 65px !important;
}

.padding-top-70 {
    padding-top: 70px !important;
}

.padding-top-75 {
    padding-top: 75px !important;
}

.padding-top-80 {
    padding-top: 80px !important;
}

.padding-bottom-1 {
    padding-bottom: 1px !important;
}

.padding-bottom-2 {
    padding-bottom: 2px !important;
}

.padding-bottom-3 {
    padding-bottom: 3px !important;
}

.padding-bottom-4 {
    padding-bottom: 4px !important;
}

.padding-bottom-5 {
    padding-bottom: 5px !important;
}

.padding-bottom-6 {
    padding-bottom: 6px !important;
}

.padding-bottom-7 {
    padding-bottom: 7px !important;
}

.padding-bottom-8 {
    padding-bottom: 8px !important;
}

.padding-bottom-9 {
    padding-bottom: 9px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-bottom-25 {
    padding-bottom: 25px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.padding-bottom-35 {
    padding-bottom: 35px !important;
}

.padding-bottom-40 {
    padding-bottom: 40px !important;
}

.padding-bottom-45 {
    padding-bottom: 45px !important;
}

.padding-bottom-50 {
    padding-bottom: 50px !important;
}

.padding-bottom-55 {
    padding-bottom: 55px !important;
}

.padding-bottom-60 {
    padding-bottom: 60px !important;
}

.padding-bottom-65 {
    padding-bottom: 65px !important;
}

.padding-bottom-70 {
    padding-bottom: 70px !important;
}

.padding-bottom-75 {
    padding-bottom: 75px !important;
}

.padding-bottom-80 {
    padding-bottom: 80px !important;
}

.padding-left-1 {
    padding-left: 1px !important;
}

.padding-left-2 {
    padding-left: 2px !important;
}

.padding-left-3 {
    padding-left: 3px !important;
}

.padding-left-4 {
    padding-left: 4px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}

.padding-left-6 {
    padding-left: 6px !important;
}

.padding-left-7 {
    padding-left: 7px !important;
}

.padding-left-8 {
    padding-left: 8px !important;
}

.padding-left-9 {
    padding-left: 9px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.padding-left-25 {
    padding-left: 25px !important;
}

.padding-left-30 {
    padding-left: 30px !important;
}

.padding-left-35 {
    padding-left: 35px !important;
}

.padding-left-40 {
    padding-left: 40px !important;
}

.padding-left-45 {
    padding-left: 45px !important;
}

.padding-left-50 {
    padding-left: 50px !important;
}

.padding-left-55 {
    padding-left: 55px !important;
}

.padding-left-60 {
    padding-left: 60px !important;
}

.padding-left-65 {
    padding-left: 65px !important;
}

.padding-left-70 {
    padding-left: 70px !important;
}

.padding-left-75 {
    padding-left: 75px !important;
}

.padding-left-80 {
    padding-left: 80px !important;
}

.padding-right-1 {
    padding-right: 1px !important;
}

.padding-right-2 {
    padding-right: 2px !important;
}

.padding-right-3 {
    padding-right: 3px !important;
}

.padding-right-4 {
    padding-right: 4px !important;
}

.padding-right-5 {
    padding-right: 5px !important;
}

.padding-right-6 {
    padding-right: 6px !important;
}

.padding-right-7 {
    padding-right: 7px !important;
}

.padding-right-8 {
    padding-right: 8px !important;
}

.padding-right-9 {
    padding-right: 9px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

.padding-right-15 {
    padding-right: 15px !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

.padding-right-25 {
    padding-right: 25px !important;
}

.padding-right-30 {
    padding-right: 30px !important;
}

.padding-right-35 {
    padding-right: 35px !important;
}

.padding-right-40 {
    padding-right: 40px !important;
}

.padding-right-45 {
    padding-right: 45px !important;
}

.padding-right-50 {
    padding-right: 50px !important;
}

.padding-right-55 {
    padding-right: 55px !important;
}

.padding-right-60 {
    padding-right: 60px !important;
}

.padding-right-65 {
    padding-right: 65px !important;
}

.padding-right-70 {
    padding-right: 70px !important;
}

.padding-right-75 {
    padding-right: 75px !important;
}

.padding-right-80 {
    padding-right: 80px !important;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-horizontal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-padding-vertical {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}



/* OTHERS ================================================================ */
.visible {
    display: block;
}

.hidden {
    display: none;
}

.opacity-00 {
    opacity: 0;
}

.test {
    border: 1px solid #0f0;
}

.text-105 {
    font-size: 105%;
}

.text-110 {
    font-size: 110%;
}

.text-120 {
    font-size: 120%;
}

.text-125 {
    font-size: 125%;
}

.text-130 {
    font-size: 130%;
}

.text-135 {
    font-size: 135%;
}

.text-140 {
    font-size: 140%;
}

.text-145 {
    font-size: 145%;
}

.text-150 {
    font-size: 150%;
}

.text-155 {
    font-size: 155%;
}

.text-160 {
    font-size: 160%;
}


/* CIRCULAR CHARTS */
.circliful {
    position: relative;
}

.circle-text, .circle-info, .circle-text-half, .circle-info-half {
    width: 100%;
    position: absolute;
    text-align: center;
    display: inline-block;
}

.circle-info, .circle-info-half {
    color: #999;
}

.circliful .fa {
    margin: -10px 3px 0 3px;
    position: relative;
    bottom: 4px;
}

/* pop up modal */

.modal .modal-header {
    border-bottom: none;
    padding: 20px 20px 0px 25px;
}

    .modal .modal-header .modal-title {
        font-weight: bold;
        color: #000;
    }

.modal .modal-body {
    padding: 5px 25px;
}

.modal .modal-footer {
    border-top: none;
    padding: 0px 20px 15px 25px;
}

.modal .btn-primary {
    background-color: #4285f4;
    border-color: #2369dc;
}

.modal .modal-dialog {
    -webkit-transform: translate(0,3%) !important;
    -ms-transform: translate(0,3%) !important;
    -o-transform: translate(0,3%) !important;
    transform: translate(0,3%) !important;
}

.modal-backdrop.fade {
    opacity: 0.5 !important;
    filter: alpha(opacity=0);
}
.fade {
    opacity: 1;
}

/* pop up modal */

.radioLabelAlign .widgetradio input,
.radioLabelAlign .widgetcheckbox input {
    float: left;
    display: block;
}

.radioLabelAlign .widgetradio label,
.radioLabelAlign .widgetcheckbox label {
    padding-left: 25px;
    display: block;
}


/* Parsley Validation */
input.parsley-error, textarea.parsley-error {
    border: 1px solid #f00 !important;
    background: #f6e1dc;
}

.parsley-error label {
    color: #f00;
}

.parsley-error-list {
    padding-left: 0px;
    list-style: none;
}

    .parsley-error-list li {
        color: red;
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 85%;
        line-height: normal;
    }

/* End Of Validation */
