.navbar {
    background-color: #ffffff;
    margin-bottom: 0;
}

.navbar .navbar-logo {
    height: 45px;
}

.body {
    background-color: #3c6b9a;
    padding: 20px 0;
}

.body {
    color: #ffffff;
}

.body h3 {
    font-weight: bold;
}

.body .title {
    margin-top: 0;
    margin-bottom: 15px;
}

.body .checklist {
    background-color: rgba(0, 0, 0, .25);
    padding: 20px;
    border-radius: 5px;
}

.body .checklist ul {
    margin-bottom: 0;
}

.body .checklist ul li {
    margin: 2px 0;
}

.body .carousel-inner .blurb {
    background-color: rgba(255, 255, 255, .20);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.body .carousel-inner .blurb p {
    margin-bottom: 0;
}

.body .carousel-inner .fa-star {
    color: #FDBB30;
}

.body .carousel-indicators {
    left: auto;
    right: 0;
    bottom: 0;
    width: auto;
}

.body .margin-20 {
    margin: 20px 0;
}

.body .lead-form {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    color: #333333;
}

.body .lead-form .free-service {
    padding: 5px 25px;
    background-color: #009900;
    color: #ffffff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 22px;
    right: -65px;
    font-size: 10px;
    width: 200px;
    text-align: center;
    text-transform: uppercase;
}

.body .lead-form h3 {
    margin-top: 0;
}

.body .lead-form .row-small-padding {
    margin-left: -5px;
    margin-right: -5px;
}

.body .lead-form .row-small-padding>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.body .lead-form .form-group {
    margin-bottom: 10px;
}

.body .lead-form .form-group label {
    margin-bottom: 2px;
}

.body .lead-form .form-group .input-sm {
    padding: 2px 5px;
    height: 25px;
}

.body .lead-form .form-group .input-group-addon {
    padding: 2px 5px;
}

.body .lead-form .media {
    margin-top: 5px;
}

.body .lead-form .media button {
    font-weight: bold;
}

.body .lead-form .media img {
    height: 36px;
    margin-top: 5px;
}

.body .lead-form .disclaimer {
    font-size: 10px;
    margin: 10px 0 0 0;
}

.three {
    background-color: #f5f5f5;
    padding: 20px 0;
}

.three .media .blue {
    color: #3c6b9a;
}

.three .media h4 {
    font-weight: bold;
    margin: 0 0 5px 0;
}

.three .media p {
    margin: 0;
    line-height: 1.2em;
}

.has-error label {
    color: #cc0000;
}

#mastercard img {
    max-width: 100%;
    margin-top: 15px;
    border-radius: 5px;
}

.copyright {
    margin: 20px 0;
}

.navbar-toggle {
    padding: 10px 0;
    border: 0;
    background-color: transparent !important;
}

p,
li {
    font-size: 16px;
}

.fa-check-circle-o {
    color: #41ad49;
}

.fa {
    text-rendering: optimizeLegibility;
}

.has-feedback label~.form-control-feedback {
    top: 18px;
    right: 5px;
}

.countdown {
    background: #009900;
    font-size: 18px;
    padding: 20px 10px;
    border-radius: 5px;
}

.timer>span {
    background: black;
    padding: 5px;
    border-radius: 5px;
}

.phone-number:focus {
    border-color: #a94442;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(169, 68, 66, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(169, 68, 66, .6);
}


/* ------------- snackbar ------------- */

.snackbar {
    visibility: hidden;
    min-width: 350px;
    margin-left: -180px;
    background-color: #ffce0d;
    color: #000000;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    z-index: 1111;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}


/* ------------ end snackbar ------------ */


/* Portrait phones and smaller */

@media (max-width: 767px) {
    .navbar .navbar-logo {
        margin-left: 15px;
        height: 40px;
        margin-top: 5px;
    }
    .three .col-md-4:not(:last-child) {
        margin-bottom: 20px;
    }
    .countdown {
        font-size: 14px;
    }
    .snackbar {
        margin-left: 0;
        left: 0;
        width: 100%;
        bottom: 0;
        font-size: 15px;
    }
    @-webkit-keyframes fadein {
        from {
            bottom: 0;
            opacity: 0;
        }
        to {
            bottom: 0;
            opacity: 1;
        }
    }
    @keyframes fadein {
        from {
            bottom: 0;
            opacity: 0;
        }
        to {
            bottom: 0;
            opacity: 1;
        }
    }
    @-webkit-keyframes fadeout {
        from {
            bottom: 0;
            opacity: 1;
        }
        to {
            bottom: 0;
            opacity: 0;
        }
    }
    @keyframes fadeout {
        from {
            bottom: 0;
            opacity: 1;
        }
        to {
            bottom: 0;
            opacity: 0;
        }
    }
}