/**
*
* Module Rules
* ============
*
* Defines styles for discrete components of a page.  Only use classes or
* attribute selectors (no element selectors or IDs).  Please use BEM naming
* syntax for your class names.
*
* See here for more info on module rules:  https://smacss.com/book/type-module
* BEM Sytax: http://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/
*
*
* Modules
* =======
* FDN Highlights
* FDN Tooltip
* FDN Message
* FDN Form
* FDN Short Form
* FDN Fieldset
* FDN Popup
* FDN Quote
* Browse Object
* FDN Spinner
* FDN Status Dialog
*
**/

.fdn-highlight {
    overflow: hidden;
    margin-top: 52px;
    margin-bottom: 26px;
    position: relative;
}

.fdn-highlight::after {
    background: #f0f0f0;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    right: 0;
    left: 0;
}

.fdn-highlight ul,
.fdn-highlight ol {
    padding-left: 0;
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 18px;
}

.fdn-highlight__container {
    box-sizing: content-box;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 78px;
    z-index: 1;
    position: relative;
}

.fdn-highlight__container::before {
    display: none;
}

.fdn-highlight--left .fdn-highlight__container::before {
    right: auto;
    left: 0;
}

.fdn-highlight__title {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.1471em;
    padding-bottom: 0;
    padding-top: 26px;
    margin: 0;
}

/* ----- Color Modifiers ----- */


/* Default */
.fdn-highlight {
    color: #fff;
}

.fdn-highlight::after {
    background-color: #555;
}

.fdn-highlight a {
    color: #fff;
    text-decoration: underline;
}

/* Red */
.fdn-highlight--red {
    color: #fff;
}

.fdn-highlight--red::after {
    background-color: #cc3232;
}

.fdn-highlight--red a {
    color: #fff;
    text-decoration: underline;
}

/* Blue */
.fdn-highlight--blue {
    color: #fff;
}

.fdn-highlight--blue::after {
    background-color: #1762e0;
}

.fdn-highlight--blue a {
    color: #fff;
    text-decoration: underline;
}

/* Navy */
.fdn-highlight--navy {
    color: #fff;
}

.fdn-highlight--navy::after {
    background-color: #4360ae;
}

.fdn-highlight--navy a {
    color: #fff;
    text-decoration: underline;
}

/* Green */
.fdn-highlight--green {
    color: #fff;
}

.fdn-highlight--green::after {
    background-color: #298900;
}

.fdn-highlight--green a {
    color: #fff;
    text-decoration: underline;
}

@media only screen and (min-width: 50em) {
    .fdn-highlight__container::before {
        display: block;
        position: absolute;
        top: 129px;
        right: 0;
        font-size: 130px;
        line-height: 1px;
        text-align: center;
        height: 100%;
        width: 30.3%;
        color: #fff;
    }
}

@media only screen and (min-width:620px) {
    .fdn-highlight__container {
        padding-left: 4.8%;
        padding-right: 4.8%;
        max-width: 688px;
    }

    .fdn-highlight__container {
        padding-bottom: 52px;
    }
}

@media only screen and (min-width:800px) {
    .fdn-highlight__container {
        padding-left: 4.4%;
        padding-right: 4.4%;
        max-width: 864px;
    }

    .fdn-highlight__container::before {
        font-size: 180px;
    }

    .fdn-highlight__container {
        min-height: 208px;
    }

    .fdn-highlight__content {
        margin-left: 25.9%;
        margin-right: 25.9%;
    }

    .fdn-highlight--left::after {
        width: 80%;
        right: 20%;
    }

    .fdn-highlight--right::after {
        width: 80%;
        left: 20%;
    }
}


/*===================================
=            FDN Tooltip            =
===================================*/

    .FDN-tooltip,
    .fdn-tooltip,
    .FDN-tooltip,
    .fdn-tooltip--wide {
        position: relative;
        display: inline-block;
        overflow: visible !important;
    }

    .FDN-tooltip::before,
    .fdn-tooltip::before,
    .FDN-tooltip::after,
    .fdn-tooltip::after,
    .fdn-tooltip--wide::before,
    .fdn-tooltip--wide::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        z-index: 11;
        /* Not sure about pointer events yet */
        pointer-events: none;
    }

    /* triangle */
    .FDN-tooltip::after,
    .fdn-tooltip::after,
    .fdn-tooltip--wide::after {
        bottom: -.7em;
        border-right: .7em solid transparent !important;
        border-bottom: .7em solid #595959;
        border-left: .7em solid transparent !important;
        content: "";
        visibility: hidden;
    }

    /* tooltip content */
    .FDN-tooltip::before,
    .fdn-tooltip::before,
    .fdn-tooltip--wide::before {
        background: #595959;
        -webkit-border-radius: .5em;
        -moz-border-radius: .5em;
        border-radius: .5em;
        color: #fff;
        content: attr(data-tooltip);
        font-style: normal;
        font-weight: 400;
        margin-top: .7em; /* create space for triangle */
        min-width: 10em;
        padding: .7em;
        text-align: center;
        top: 100%;
        visibility: hidden;
        box-shadow: rgba(0, 0, 0, 0.3) 0 2px 10px;
    }

    .FDN-tooltip::before,
    .fdn-tooltip::before {
        max-width: 12em;
    }

    .fdn-tooltip--wide::before {
        width: 20em;
        max-width: 20em;
        white-space: normal;
    }
    
    .FDN-tooltip:focus,
    .fdn-tooltip:focus,
    .fdn-tooltip--wide:focus {
        outline: 0;
    }

    .FDN-tooltip:hover::before,
    .fdn-tooltip:hover::before,
    .FDN-tooltip:hover::after,
    .fdn-tooltip:hover::after,
    .fdn-tooltip--wide:hover::before,
    .fdn-tooltip--wide:hover::after {
        visibility: visible;
    }

    /* Left/right/Top Modifiers */
    
    .fdn-tooltip--left::before {
        padding: 0 .7em;
    }
    
    .fdn-tooltip--left::before,
    .fdn-tooltip--left::after,
    .fdn-tooltip--right::before,
    .fdn-tooltip--right::after {
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        top: 50%;
    }
    
    .fdn-tooltip--top::before {
        bottom: 100%;
        top: auto;
    }
    
    .fdn-tooltip--left::before {
        left: auto;
        right: 100%;
    }
    
    .fdn-tooltip--right::before {
        left: 100%;
        right: auto;
    }
    
    /* triangle */
    
    .fdn-tooltip--top::after {
        top: -.7em;
        border-right: .7em solid transparent !important;
        border-top: .7em solid #595959;
        border-left: .7em solid transparent !important;
        border-bottom: none;
    }
    
    .fdn-tooltip--left::after {
        bottom: auto;
        left: -.7em;
        border-bottom: .7em solid transparent !important;
        border-left: .7em solid #595959 !important;
        border-top: .7em solid transparent !important;
        border-right: none !important;
    }
    
    .fdn-tooltip--right::after {
        bottom: auto;
        right: -.7em;
        border-bottom: .7em solid transparent !important;
        border-right: .7em solid #595959 !important;
        border-top: .7em solid transparent !important;
        border-left: none !important;
    }
    
    /* content */
    
    .fdn-tooltip--top::before {
        margin: 0 0 .7em 0;
    }
    
    .fdn-tooltip--left::before {
        margin: 0 .7em 0 0;
    }
    
    .fdn-tooltip--right::before {
        margin: 0 0 0 .7em;
    }
    
    /* Color Modifiers */
    
    .fdn-tooltip--light::after {
        border-color: #ffffff;
    }

.fdn-tooltip--light::before {
    color: #595959;
    background-color: #ffffff;
}


/*-----  End of FDN Tooltip  ------*/




/*==================================
=            FDN Message           =
==================================*/

[class*=fdn-msg-] {
    color: #000;
    font-weight: 700;
    padding: .5em;
}

.fdn-msg--info {
    background-color: #A6D3FF;
    color: #2D3A47;
}

.fdn-msg--warn {
    background-color: #FFFFA6;
    color: #2C2C1C;
}

.fdn-msg--error {
    background-color: #FFA6A6;
    color: #2D1D1D;
}

    .fdn-msg__link {
        text-decoration: underline;
    }

    .fdn-msg__link, .fdn-msg__link:visited {
        color: inherit;
    }


/*======================================
=            FDN Short Form            =
======================================*/

.fdn-short-form {
    position: relative;
}

    .fdn-short-form__label {
        display: block;
        font-size: .9em;
        font-weight: 700;
        margin-bottom: .5em;
    }

    .fdn-short-form__textbox,
    .fdn-short-form__submit {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 3px;
        display: inline-block;
        height: 2em;
        vertical-align: top;
    }

    .fdn-short-form__textbox {
        background-color: #f5f5f5;
        border: 1px solid #ececec;
        border-top: 1px solid #d2d2d2;
        -webkit-box-shadow: inset 0 1px 0 #ececec;
        box-shadow: inset 0 1px 0 #ececec;
        padding: 0 .3em;
        width: 15em;
    }

    .fdn-short-form__textbox--search {
        padding-right: 2em;
    }

    .fdn-short-form__submit {
        background-color: #cb4343;
        border: 2px solid #cb4343;
        color: #fff;
        display: inline-block;
    }

    .fdn-short-form__submit:focus,
    .fdn-short-form__submit:hover {
        background-color: #fff;
        color: #cb4343;
    }

    .fdn-short-form__submit:hover {
        cursor: pointer;
    }

    .fdn-short-form__hidden {
        display: none;
    }

    .fdn-short-form__required {
        color: #cb4343;
    }




/*====================================
=            FDN Fieldset            =
====================================*/

.fdn-fieldset {
    border: 0;
    padding: 0;
}

    .fdn-fieldset__label {
        font-size: .9em;
        display: inline-block;
        margin-bottom: .4em;
    }

    .fdn-fieldset__textbox,
    .fdn-fieldset__textarea,
    .fdn-fieldset__select {
        background-color: #f5f5f5;
        border: 1px solid #ececec;
        border-top: 1px solid #d2d2d2;
        -webkit-box-shadow: inset 0 1px 0 #ececec;
        box-shadow: inset 0 1px 0 #ececec;
        border-radius: 3px;
        display: block;
        max-width: 22em;
        padding: .2em .3em;
        width: 100%;
    }

    .fdn-fieldset__textbox--error,
    .fdn-fieldset__textarea--error,
    .fdn-fieldset__select--error {
        border: 1px solid red;
    }

    .fdn-fieldset__textarea {
        height: 7.5em;
    }

    .fdn-fieldset__select {
        background: #ffffff; /* Old browsers */
        background: -moz-linear-gradient(top,  #ffffff 1%, #f2f2f2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#f2f2f2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #ffffff 1%,#f2f2f2 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #ffffff 1%,#f2f2f2 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #ffffff 1%,#f2f2f2 100%); /* IE10+ */
        background: linear-gradient(to bottom,  #ffffff 1%,#f2f2f2 100%); /* W3C */
    }

    .fdn-fieldset__checkbox,
    .fdn-fieldset__checkbox-list input[type="checkbox"] {
        margin-right: .3em;
    }

    .fdn-fieldset__required {
        color: #cb4343;
        font-size: .9em;
    }

    .fdn-fieldset__required--block {
        display: block;
        margin-left: 0;
    }


/*-----  End of FDN Fieldset  ------*/






/*==================================
=            FDN Pop Up            =
==================================*/

.fdn-pop-up {

    height: 0;
    position: fixed;

    -webkit-transform: translate(-50%, -50%) scale(.7);
    -ms-transform: translate(-50%, -50%) scale(.7);
    -o-transform: translate(-50%, -50%) scale(.7);
    transform: translate(-50%, -50%) scale(.7);

    -webkit-transition: -webkit-transform 100ms ease-out;
    -o-transition: -o-transform 100ms ease-out;
    transition: transform 100ms ease-out;

    visibility: hidden;
    width: 0;
}

    .fdn-pop-up__title {
        font-size: 1.4em;
        font-weight: 700;
        margin-bottom: .5em;
    }

    .fdn-pop-up__close {
        float: right;
    }

    .fdn-pop-up__close:hover {
        cursor: pointer;
    }

    .fdn-pop-up__close:focus,
    .fdn-pop-up__close:hover {
        color: #888;
    }

.fdn-pop-up--active,
.fdn-pop-up-target--active {
    background-color: #fff;
    box-shadow: 0 0 0 .5em rgba(150,150,150,.5);
    height: auto;
    left: 50%;
    padding: 1em;
    top: 50%;

    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    width: 25em;
    visibility: visible;
    z-index: 10000;
}

/*-----  End of FDN Pop Up  ------*/




/*=====================================
=              FDN Quote              =
=====================================*/

.quote__container {
    position: relative;
}

.quote__container::before {
    content: "\e688";
    position: absolute;
    font-family: "furndeal";
    font-weight: 700;
    color: #f0f0f0;
    top: -40px;
    left: 0;
    font-size: 100px;
}

.quote__content {
    position: relative;
    font-size: 16px;
    line-height: 1.625em;
    padding-bottom: 0;
    padding-top: 40px;
    padding-left: 0;
}

.quote__content p {
    border-top: 1px solid #e0e0e0;
    text-align: right;
    font-weight: 500;
    margin-top: 12px;
    padding-top: 13px;
}

@media only screen and (min-width:50em) {
    .quote__content {
        font-size: 20px;
        font-weight: 300;
        line-height: 1.3em;
        padding-bottom: 0;
    }
}

/* End FDN Quote */




/*=====================================
=            Browse Object            =
=====================================*/

.browse-object {
    position: relative;
}

    .browse-object__linked-img {
        display: block;
        margin-bottom: 1em;
    }

        .browse-object__linked-img__img {
            height: auto;
            max-width: 100%;
        }

    .browse-object__min-desc {
        display: block;
        font-weight: 700;
    }

    .browse-object__prices {
        margin-top: 1em;
    }

    .browse-object__tags {
        margin-top: 1em;
    }

.browse-object__icons {
    position: absolute;
    top: .5em;
    right:.5em;
}

    .browse-object__quicklist {
        visibility: hidden;
        color: #BCBCBC;
        color: rgba(188,188,188,.7);
        float:right;
        margin-right:.5em;
    }

    .browse-object__cart {
        visibility: hidden;
        float:right;
        color: #BCBCBC;
    }

    .browse-object__quicklist.added {
        color: #6B9BEB;
    }

    .browse-object__cart.added {
        color:#C4161C;
    }

    .browse-object:hover > .browse-object__icons > .browse-object__quicklist,
    .browse-object:hover > .browse-object__icons > .browse-object__cart,
    .browse-object__quicklist.added,
    .browse-object__cart.added {
        visibility: visible;
    }

    .browse-object__quicklist:hover,.browse-object__cart:hover {
        cursor: pointer;
    }

        .browse-object__quicklist__heart, .browse-object__cart__icon {
            color: inherit;
            font-size: 1.5em;
            -webkit-text-fill-color: inherit;
            -webkit-text-stroke-width: .05em;
            -webkit-text-stroke-color: #fff;
        }

        .no-textstroke .browse-object__quicklist__heart {
            text-shadow: -.05em -.05em 0 #fff,  
                          .05em -.05em 0 #fff,
                         -.05em .05em 0 #fff,
                          .05em .05em 0 #fff;
        }

.browse-object__group {
    margin:1.2em 0 1em 0;
    padding:0 0 .6em 0;
    border-bottom:1px dashed #ccc;
}

    .browse-object__group:last-child {
        border-bottom:none;
        margin-bottom:0;
    }
/*-----  End of Browse Object  ------*/


/*==================================
=            Google Map            =
==================================*/

.google-map-col {
    position: relative;
}

.google-map-container--sticky {
    position: fixed !important;
    top: 16px;
}

.google-map-container--sticky-bottom {
    position: absolute;
    bottom: 0;
}

.google-map-canvas {
}

    .google-map-canvas img {
        max-width: inherit;
    }
    
    /* directions from/to address boxes */
    .adp-placemark {
        background-color: #FFFBD0;
    }
        .adp-text {
            padding: 0 .5em;
        }


/*====================================
=            Store Result            =
====================================*/

.store-result {
    border-style: solid;
    border-color: #ececec;
    border-width: 1px 2px;
    padding: 1em;
    overflow: hidden; /* clearfix */
    position: relative;
}

.store-result:first-child {
    border-top-width: 2px;
}

.store-result:last-child {
    border-bottom-width: 2px;
}

.store-result--active {
    background-color: #FFFBD0;
}

    .store-result__number {
        position: relative;
    }
        
        /* shadow beneath marker */
        .store-result__number:after {
            bottom: 0.2em;
            -webkit-box-shadow: 0 0 3px 2px rgba(150,150,150,0.1);
            box-shadow: 0 0 3px 2px rgba(150,150,150,0.1);
            content: "";
            height: 0;
            left: 5px;
            position: absolute;
            width: 22px;
        }

    .store-result__distance {
        float: right;
    }

    .store-result__name {
        color: inherit;
        display: block;
        font-size: 1.2em;
    }

    
    .store-result__location-alert {
        color:#cb4343;
    }

    .store-result__address {
        margin-top: 1em;
    }

    .store-result__directions-link,
    .store-result__directions-btn,
    .store-result__hours,
    .store-result__hours-btn {
        margin-top: 1em;
    }

    .store-result__hours {
        display: none;
    }

    .store-result__hours--active {
        display: block;
    }
        
        .store-result__hours__head,
        .store-result__hours__store-name,
        .store-result__hours__hours {
            margin-bottom: .5em;
        }

        .store-result__hours__head {
            font-size: 1.2em;
        }

        .store-result__hours__directions {
            margin: 1em .5em 0 0;
        }

.find-nearest-store.cta-btn {
    width:100%;
    max-width:20em;
    padding:.7em 0;
    text-align:center;
}

/*-----  End of Store Result  ------*/


/*==================================
=            Hero Image            =
==================================*/

.hero-img {
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}


/*====================================
=            Product List            =
====================================*/

    .product-list__title {
        font-size: 1.2em;
        font-weight: 700;
    }

    .product-list__products {

    }


/*=============================================
=            Call to Action Button            =
=============================================*/

[class*=cta-btn] {
    background-color: #cb4343;
    border: 2px solid #cb4343;
    border-radius: 3px;
    display: inline-block;
    line-height: 1.4;
    padding: .7em 5em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[class*=cta-btn],
[class*=cta-btn]:visited {
    color: #fff;
}

[class*=cta-btn]:focus,
[class*=cta-btn]:hover {
    background-color: #fff;
    color: #cb4343;
}

[class*=cta-btn]:hover {
    cursor: pointer;
}

[class*=cta-btn]:focus {
    outline: 0; /* remove default styling in chrome */
}

.cta-btn--skinny {
    padding: .3em .5em;
}

.cta-btn--alt {
    background-color: #fff;
    border: 2px solid #ececec;
}

.cta-btn--alt,
.cta-btn--alt:visited {
    color: #444;
}

.cta-btn--alt:focus,
.cta-btn--alt:hover {
    border-color: #ccc;
    color: #444;
}

.cta-btn.__loading,
.cta-btn.__loading:hover {
    background-color:#abb4bd;
    color:#abb4bd !important;
    border-color:#abb4bd;
    cursor:default;
}


/*=========================================
=            Google Map Marker            =
=========================================*/

.store-map-marker {
    overflow: hidden;
}

/*-----  End of Google Map Marker  ------*/



/*=========================================
=             FDN Sneaky Button           =
=========================================*/

.fdn-sneaky-btns-container {
    position:relative;
}

.fdn-sneaky-btns {
    position: absolute;
    bottom: 0;
    left: 0;
}

    .fdn-sneaky-btns__btn {
        background-color: #bbb;
        display: block;
        float: left;
        height: 1em;
        width: 1em;
    }

    .fdn-sneaky-btns__btn:nth-child(even) {
        background-color: #ddd;
    }

/*-----  End of FDN Sneaky Button  ------*/


/*----- Spinner ------*/
.fdn-spinner {
    border: 4px solid #f3f3f3; /* bg color */
    border-top: 4px solid #555; /* spinning color */
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    display:inline-block;
}

.fdn-spinner--xs {
    width:1.5em;
    height:1.5em;
    border-width:2px;
    border-top-width:2px;
}

.fdn-spinner--sm {
    width:2.5em;
    height:2.5em;
    border-width:2px;
    border-top-width:2px;
}

.fdn-spinner--lg {
    width:6em;
    height:6em;
}

.fdn-spinner--xl {
    width:10em;
    height:10em;
}

.fdn-spinner--absolute {
    position:absolute;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*-----  End of FDN Spinner  ------*/

/*-----  Alternate Spinner  ------*/
.loading-spinner-mask {
    position: absolute;
    z-index: 100;
    background: rgba(255,255,255,.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loading-spinner {
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-radius: 50%;
    width: 6em;
    height: 6em;
    display: inline-block;
    position: absolute;
    top: calc(50% - 3em);
    left: calc(50% - 3em);
    z-index:100;
    font-size:16px;
}

.loading-spinner.loading-spinner--sm {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    width: 1.5em;
    height: 1.5em;
    top: calc(50% - .75em);
    left: calc(50% - .75em);
}

.loading-spinner--dots {
    width: 7em;
    height:1em;
    text-align: center;
    position: absolute;
    top: calc(50% - .6em);
    left: calc(50% - 3.5em);
    z-index:100;
}

.loading-spinner--dots > div {
    width: .8em;
    height: .8em;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    margin: 0 .25em;
}

.loading-spinner--dots .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loading-spinner--dots .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}



.loading-complete--checkmark {
    display: block;
}

    .loading-complete--checkmark.draw:after {
        animation-duration: 800ms;
        animation-timing-function: ease;
        animation-name: checkmark;
        transform: scaleX(-1) rotate(135deg);
    }

    .loading-complete--checkmark:after {
        opacity: .35;
        height: 3.5em;
        width: 1.75em;
        transform-origin: left top;
        border-right: 3px solid #fff;
        border-top: 3px solid #fff;
        content: '';
        left: calc(50% - 1.5em);
        top: 2em;
        position: absolute;
        transition:opacity .2s ease-in-out;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: .9;
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: .7;
    }

    60% {
        height: 3.5em;
        width: 1.75em;
        opacity: .5;
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: .35;
    }
}


/*-----  End of Alternate Spinner  ------*/

/*=============================
        FDN status dialog
================================*/

#_status-dialog {
    position: fixed;
    max-width: 500px;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    padding: 1em 2em;
    text-align: center;
    opacity: 0;
    transition-property: top, bottom, right, left, width, opacity;
    transition-duration: .5s;
    font-size: 1.2em;
    border-radius: .2em;
    background-color: #ffce54;
    z-index: 10000;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .1);
}

#_status-dialog.__active {
    opacity:1;
    top:85%;
}

#_status-dialog._status-dialog--good {
    background-color:#517394;
}

#_status-dialog._status-dialog--bad {
    background-color:#ed5564;
}

/*-----  End of FDN status dialog  ------*/