@keyframes strike {
    0%   { width : 0; }
    100% { width: 100%; }
}

.strike {
    position: relative;
    margin-right: 1%;
}

.strike::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    animation-name: strike;
    animation-duration: 800ms;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.discount-obvious-text {
    display: block;
    opacity: 0;
}

.discount-obvious-text-link {
    text-decoration: underline;
    cursor: pointer;
}

.discount-obvious-text-savings {
    font-size: 12px;
    opacity: 0;
    white-space: nowrap;
}

.estimate-disclaimer {
    color: #444444c2;
    cursor: pointer;
    margin-left: 8px;
    background-color: transparent;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    position: absolute;
    font-size: 11px;
    border: 1px solid #aaa;
    opacity: 0;
    margin-top: 4px;
    z-index: 999999;
}

.do-badge {
    position: absolute;
    padding: 0.25% 2%;
    font-size: 13px;
    width: auto !important;
    height: auto !important;
}

.do-badge-top-left {
    top: 1% !important;
    left: 1% !important;
}

.do-badge-top-right {
    top: 1% !important;
    right: 1% !important;
}

.do-badge-center {
    top: 47% !important;
}

.do-badge-bottom-left {
    bottom: 1% !important;
    left: 1% !important;
}

.do-badge-bottom-right {
    bottom: 1% !important;
    right: 1% !important;
}

.discount-obvious-text-show, .estimate-disclaimer-show {
    opacity: 1;
}

.discount-obvious-text-savings-show {
    opacity: 0.9;
    position: relative;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

.fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    transition: opacity 800ms;
    animation-duration: 800ms;
}

@-webkit-keyframes yesanimation {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }
}

@keyframes yesanimation {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0)
    }
}

.yes-animation {
    -webkit-animation-name: yesanimation;
    animation-name: yesanimation;
    animation-duration: 1800ms;
    transition: transform 1800ms;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoom-in {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    transition: all 800ms;
    animation-duration: 800ms;
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.bounce-in {
    animation-duration: 800ms;
    transition: all 800ms;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}