body {
    color: #777777;
    font-size: 14px;
}

img.full-width {
    width: 100%;
}

/* Add background-image on the same element, and this will make it full screen */
.full-body-bg-image {
    /*background-image: url(/img/signup/background-dog-walker.jpg);*/
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
}

/*
    BUTTONS
*/
.btn {
    font-size: 18px;
    text-transform: uppercase;
    padding-top: 8px;
    padding-bottom: 8px;
}
.btn-lowercase {
    text-transform: none !important;
}
.btn-social {
    text-transform: none;
}
.btn-social>:first-child {
    padding-left: 5px;
    padding-right: 5px;
}
.btn-social>:first-child {
    padding-top: 4px;
}
.btn-social.btn-tall>:first-child {
    padding-top: 9px;
}

.btn-lg.btn-arrow {
    background-image: url("/img/css/btn-bg-arrow.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.btn-lg.btn-arrow-left {
    background-image: url("/img/css/btn-bg-arrow-left.png");
    background-repeat: no-repeat;
    background-position: left 20px center;
}

.btn-tall {
    padding-top: 13px;
    padding-bottom: 13px;
}

@media screen and (min-width: 768px) {
    .btn-lg {
        font-size: 26px;
        font-weight: normal;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .btn-lg:not(.btn-block) {
        padding-left: 40px;
        padding-right: 40px;
    }

    .btn.btn-wide {
        padding-left: 48px;
        padding-right: 48px;
    }

    .btn-lg.btn-wide {
        padding-left: 90px;
        padding-right: 90px;
    }
}
@media screen and (min-width: 768px) {

}


.rounded {
    border-radius: 20px;
}
.rounded-sm {
    border-radius: 10px;
}





.circle {
    border-radius: 50%;
}


.wag-font {
    font-family: GrilledCheeseBTN;
    font-weight: normal;
    font-style: normal;
}
.wag-title {
    font-family: GrilledCheeseBTN;
    font-weight: normal;
    font-style: normal;
    color: #00bf8f;
    text-align: center;
}
h1.wag-font, h2.wag-font, h3.wag-font, h4.wag-font, h5.wag-font {
    line-height: 1.4em;
}


.text-wag-green {
    color: #00bf8f;
}

.text-wag-purple {
    color: #62699d;
}
.text-wag-light-purple {
    color: #7785bf;
}

.text-wag-orange {
    color: #ff7a4f;
}

.text-gray {
    color: #aaaaaa;
}
.text-white {
    color: #FFFFFF;
}

.text-lg {
    font-size: 20px;
}
.text-xl {
    font-size: 26px;
}
.text-sm {
    font-size: 12px;
}
.text-strong {
    font-weight: 500;
}
.text-shadow {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.text-light {
    opacity: .7;
}

.text-muted {
    color: #999;
}
.text-strike {
    text-decoration: line-through;
}
.help-block {
    color: #999;
}


.bg-wag-green {
    background-color: #00bf8f !important;
}
.bg-wag-purple {
    background: #62699d !important;
}
.bg-wag-purple-transparent {
    background: url('/img/layout/bg-purple-transparent.png') repeat;
}
.bg-wag-light-purple {
    background-color: #7785bf !important;
}
.bg-wag-purple,
.bg-wag-purple-transparent,
.bg-wag-purple a,
.bg-wag-purple-transparent a,
.bg-wag-light-purple,
.bg-wag-light-purple a {
    color: #FFFFFF;
}

.bg-gray {
    background: #e6e7e2 !important;
    color: #aaaaaa;
}
.bg-gray a {
    color: #62699d;
}

.bg-white {
    background: #FFFFFF !important;
    color: #777777;
}


.border-wag-green {
    border: 10px solid #00bf8f;
}
.border-wag-purple {
    border: 10px solid #62699d;
}
.border-white {
    border: 10px solid #FFF;
}
.border-gray {
    border: 10px solid #aaaaaa;
}
.border-sm {
    border-width: 2px;
}
.border-xs {
    border-width: 1px;
}




.line-behind {
    display: table;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    line-height: 1em;
}
.line-behind:before {
    right: 1.5%;
}
.line-behind:after {
    left: 1.5%
}
.line-behind:before, .line-behind:after {
    border-top: 1px dashed #aaaaaa;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 45%;
}



ol.wag-ordered-list {
    margin-left: 0;
    padding-right: 0;
    list-style-type: none;
    display: table;
    -webkit-padding-start: 0px;
}
ol.wag-ordered-list li {
    counter-increment: step-counter;
    display: table-row;
}
ol.wag-ordered-list li::before {
    content: counter(step-counter) ".";
    margin-right: 5px;
    font-size: 110%;
    font-family: GrilledCheeseBTN;
    font-weight: normal;
    font-style: normal;
    color: #00bf8f;
    padding: 3px 8px;
    border-radius: 3px;
    display: table-cell;
}


ul.leaders {
    max-width: 40em;
    padding: 0;
    overflow-x: hidden;
    list-style: none}
ul.leaders li:before {
    float: left;
    width: 0;
    white-space: nowrap;
    content:
            "............................................................................................................................................"
}
ul.leaders span:first-child {
    padding-right: 0.33em;
    background: white}
ul.leaders span + span {
    float: right;
    padding-left: 0.33em;
    background: white}



/************************************************************************************
    CHECKBOXES
************************************************************************************/
.wag-checkbox {
    display: inline-block;
    height: 30px;
    width: 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 4px;
}
.wag-checkbox {
    background-image: url('../img/checkboxes/checkbox-unchecked.png');
    background-color: #00bf8f;
}
.wag-checkbox.checked {
    background-image: url('../img/checkboxes/checkbox-checked.png');
}
.wag-checkbox.reverse {
    background-image: url('../img/checkboxes/checkbox-reverse-unchecked.png');
    background-color: white;
}
.wag-checkbox.reverse.checked {
    background-image: url('../img/checkboxes/checkbox-reverse-checked.png');
}
.wag-checkbox.green {
    background-image: url('../img/checkboxes/checkbox-green-unchecked.png');
    background-color: white;
}
.wag-checkbox.green.checked {
    background-image: url('../img/checkboxes/checkbox-green-checked.png');
}
.wag-checkbox.purple {
    background-image: url('../img/checkboxes/checkbox-purple-unchecked.png');
    background-color: white;
}
.wag-checkbox.purple.checked {
    background-image: url('../img/checkboxes/checkbox-purple-checked.png');
}




/************************************************************************************
    FORMATTING
************************************************************************************/
.padding-none {
    padding: 0 !important;
}
.padding-top-none {
    padding-top: 0 !important;
}
.padding-right-none {
    padding-right: 0 !important;
}
.padding-bottom-none {
    padding-bottom: 0 !important;
}
.padding-left-none {
    padding-left: 0 !important;
}
.padding-xs {
    padding: 4px;
}
.padding-top-xs {
    padding-top: 4px;
}
.padding-right-xs {
    padding-right: 4px;
}
.padding-bottom-xs {
    padding-bottom: 4px;
}
.padding-left-xs {
    padding-left: 4px;
}
.padding-sm {
    padding: 10px;
}
.padding-top-sm {
    padding-top: 10px;
}
.padding-right-sm {
    padding-right: 10px;
}
.padding-bottom-sm {
    padding-bottom: 10px;
}
.padding-left-sm {
    padding-left: 10px;
}
.padding,
.padding-md {
    padding: 15px;
}
.padding-top,
.padding-top-md {
    padding-top: 15px;
}
.padding-right,
.padding-right-md {
    padding-right: 15px;
}
.padding-bottom,
.padding-bottom-md {
    padding-bottom: 15px;
}
.padding-left,
.padding-left-md {
    padding-left: 15px;
}
.padding-lg {
    padding: 25px;
}
.padding-top-lg {
    padding-top: 25px;
}
.padding-right-lg {
    padding-right: 25px;
}
.padding-bottom-lg {
    padding-bottom: 25px;
}
.padding-left-lg {
    padding-left: 25px;
}
.padding-xl {
    padding: 40px;
}
.padding-top-xl {
    padding-top: 40px;
}
.padding-right-xl {
    padding-right: 40px;
}
.padding-bottom-xl {
    padding-bottom: 40px;
}
.padding-left-xl {
    padding-left: 40px;
}

.margin-none {
    margin: 0 !important;
}
.margin-top-none {
    margin-top: 0 !important;
}
.margin-right-none {
    margin-right: 0 !important;
}
.margin-bottom-none {
    margin-bottom: 0 !important;
}
.margin-left-none {
    margin-left: 0 !important;
}
.margin-xs {
    margin: 2px;
}
.margin-top-xs {
    margin-top: 2px;
}
.margin-right-xs {
    margin-right: 2px;
}
.margin-bottom-xs {
    margin-bottom: 2px;
}
.margin-left-xs {
    margin-left: 2px;
}
.margin-sm {
    margin: 5px;
}
.margin-top-sm {
    margin-top: 5px;
}
.margin-right-sm {
    margin-right: 5px;
}
.margin-bottom-sm {
    margin-bottom: 5px;
}
.margin-left-sm {
    margin-left: 5px;
}
.margin,
.margin-md {
    margin: 15px;
}
.margin-top,
.margin-top-md {
    margin-top: 15px;
}
.margin-right,
.margin-right-md {
    margin-right: 15px;
}
.margin-bottom,
.margin-bottom-md {
    margin-bottom: 15px;
}
.margin-left,
.margin-left-md {
    margin-left: 15px;
}
.margin-lg {
    margin: 25px;
}
.margin-top-lg {
    margin-top: 25px;
}
.margin-right-lg {
    margin-right: 25px;
}
.margin-bottom-lg {
    margin-bottom: 25px;
}
.margin-left-lg {
    margin-left: 25px;
}
.margin-xl {
    margin: 45px;
}
.margin-top-xl {
    margin-top: 45px;
}
.margin-right-xl {
    margin-right: 45px;
}
.margin-bottom-xl {
    margin-bottom: 45px;
}
.margin-left-xl {
    margin-left: 45px;
}




/*
    BOOTSTRAP OVERRIDES
*/

/* Add bottom margin to collapsed cols/rows in mobile responsive view */
@media screen and (max-width: 767px) {
    .row-spacing .row>div[class^="col-"]:not(:last-child) {
        margin-bottom: 1em;
    }
}

.no-gutter .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.no-gutter .row>div[class^="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gutter-sm .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.gutter-sm .row>div[class^="col-"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}





/*
CUSTOM BUTTON COLOR
*/
.btn-orange {
    color: #ffffff;
    background-color: #ff7a4f;
    border-color: #ff7a4f;
}
.btn-orange:focus,
.btn-orange.focus {
    color: #ffffff;
    background-color: #e9724b;
    border-color: #e9724b;
}
.btn-orange:hover {
    color: #ffffff;
    background-color: #e9724b;
    border-color: #e9724b;
}
.btn-orange:active,
.btn-orange.active,
.open > .dropdown-toggle.btn-orange {
    color: #ffffff;
    background-color: #e9724b;
    border-color: #e9724b;
}
.btn-orange:active:hover,
.btn-orange.active:hover,
.open > .dropdown-toggle.btn-orange:hover,
.btn-orange:active:focus,
.btn-orange.active:focus,
.open > .dropdown-toggle.btn-orange:focus,
.btn-orange:active.focus,
.btn-orange.active.focus,
.open > .dropdown-toggle.btn-orange.focus {
    color: #ffffff;
    background-color: #e9724b;
    border-color: #e9724b;
}
.btn-orange:active,
.btn-orange.active,
.open > .dropdown-toggle.btn-orange {
    background-image: none;
}
.btn-orange.disabled:hover,
.btn-orange[disabled]:hover,
fieldset[disabled] .btn-orange:hover,
.btn-orange.disabled:focus,
.btn-orange[disabled]:focus,
fieldset[disabled] .btn-orange:focus,
.btn-orange.disabled.focus,
.btn-orange[disabled].focus,
fieldset[disabled] .btn-orange.focus {
    background-color: #ff7a4f;
    border-color: #ff7a4f;
}
.btn-orange .badge {
    color: #ff7a4f;
    background-color: #ffffff;
}

/*
CUSTOM BUTTON COLOR
*/
.btn-yellow {
    color: #ffffff;
    background-color: #F3CE60;
    border-color: #F3CE60;
}
.btn-yellow:focus,
.btn-yellow.focus {
    color: #ffffff;
    background-color: #DAB547;
    border-color: #DAB547;
}
.btn-yellow:hover {
    color: #ffffff;
    background-color: #DAB547;
    border-color: #DAB547;
}
.btn-yellow:active,
.btn-yellow.active,
.open > .dropdown-toggle.btn-yellow {
    color: #ffffff;
    background-color: #DAB547;
    border-color: #DAB547;
}
.btn-yellow:active:hover,
.btn-yellow.active:hover,
.open > .dropdown-toggle.btn-yellow:hover,
.btn-yellow:active:focus,
.btn-yellow.active:focus,
.open > .dropdown-toggle.btn-yellow:focus,
.btn-yellow:active.focus,
.btn-yellow.active.focus,
.open > .dropdown-toggle.btn-yellow.focus {
    color: #ffffff;
    background-color: #DAB547;
    border-color: #DAB547;
}
.btn-yellow:active,
.btn-yellow.active,
.open > .dropdown-toggle.btn-yellow {
    background-image: none;
}
.btn-yellow.disabled:hover,
.btn-yellow[disabled]:hover,
fieldset[disabled] .btn-yellow:hover,
.btn-yellow.disabled:focus,
.btn-yellow[disabled]:focus,
fieldset[disabled] .btn-yellow:focus,
.btn-yellow.disabled.focus,
.btn-yellow[disabled].focus,
fieldset[disabled] .btn-yellow.focus {
    background-color: #F3CE60;
    border-color: #F3CE60;
}
.btn-yellow .badge {
    color: #F3CE60;
    background-color: #ffffff;
}

.endorsements__image--main {
    height: 250px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 480px) {
    .endorsements__image--main {
        height: 150px;
        padding-bottom: 10px;
    }
}

.endorsements__image--gift {
    height: 100px;
}

.endorsements__btn.btn-yellow {
    color: #5F5F5F;
    font-weight: 300;
}

.endorsements__download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.endorsements__download h4 {
    color: #8F8F8F;
    font-weight: 300;
    padding: 10px 20px;
    margin: 0;
}

.endorsements__download hr {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
}

.endorsements__separator {
    margin-top: 0;
    padding: 0 10px;
}

.image__app-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.image__app-store-wrapper {
    padding: 30px 5px 10px;
}

.image__app-store {
    height: 5rem;
}


.btn-purple {
    background-color: #62699d !important;
    border-color: #62699d !important;
    color: #fff;
}


/*
Override Facebook Button Hover Text Color from Social Buttons
*/
.btn-facebook:hover{color:#fff !important;}


/*
WEB FONT FIX
--------------------------------------------------------------------------------
This is a CSS hack that makes the web fonts preload, to avoid text showing up
without the web font loaded.
See: https://codestag.com/fix-google-chrome-web-fonts-issue/
*/

body {
    -webkit-animation-duration: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0.1s;
}

@-webkit-keyframes fontfix {
    from { opacity: 1; }
    to { opacity: 1; }
}

/** Contact Form **/

.round-block {
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.round-block-small {
    border-radius: 8px;
    margin: 0 0 5px 0;
    padding: 5px;
    position: relative;
}

.round-block-small h4 { margin-bottom: 5px; }

.bg-wag-gray {
    background-color: #e6e7e3;
    color: #727272;
}

.supernova-gray {
    background-color: #f5f5f5;
    color: #727272;
}

.border-left {
    border-left: 1px solid #aaa;
}