/* Loading Yext */

/* LOADING */
.block {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.block:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
 /* Adjusts for spacing */;
}

.block div {
    display: inline-block;
    vertical-align: middle;
}

.block {
    height: 100%;
}

.block div span {
    position: relative;
    transition: top .4s;
    transition: top .4s;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #000;
    color: #FFF;
    text-align: center;
}

.animated-area {
    overflow: inherit;
}

/* Timer*/

.position {
    position: absolute;
    top: 50%;
    left: 50%;
}

.timer {
    width: 24px;
    height: 24px;
    background-color: transparent;
    box-shadow: inset 0px 0px 0px 2px #000;
    border-radius: 50%;
    position: relative;
}

.timer:after, .timer:before {
    position: absolute;
    content: "";
    background-color: #000;
}

.timer:after {
    width: 10px;
    height: 2px;
    top: 11px;
    left: 11px;
    -webkit-transform-origin: 1px 1px;
    -moz-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    -webkit-animation: minhand 2s linear infinite;
    -moz-animation: minhand 2s linear infinite;
    animation: minhand 2s linear infinite;
}

.timer:before {
    width: 8px;
    height: 2px;
    top: 11px;
    left: 11px;
    -webkit-transform-origin: 1px 1px;
    -moz-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    -webkit-animation: hrhand 8s linear infinite;
    -moz-animation: hrhand 8s linear infinite;
    animation: hrhand 8s linear infinite;
}

@-webkit-keyframes minhand {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes minhand {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes minhand {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes hrhand {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes hrhand {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes hrhand {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Typing Loader*/
.typing_loader {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-animation: typing 1s linear infinite alternate;
    -moz-animation: Typing 1s linear infinite alternate;
    animation: typing 1s linear infinite alternate;
    margin: 46px auto;
 /* Not necessary- its only for layouting*/
    position: relative;
    left: -12px;
}

@-webkit-keyframes typing {
    0% {
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }

    25% {
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }

    75% {
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
    }
}

@-moz-keyframes typing {
    0% {
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }

    25% {
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }

    75% {
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
    }
}

@keyframes typing {
    0% {
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }

    25% {
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }

    75% {
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
    }
}

/*Location indicator */
.location_indicator {
    margin: 30px auto;
    position: relative;
    left: -9px;
}

.location_indicator:before, .location_indicator:after {
    position: absolute;
    content: "";
}

.location_indicator:before {
    width: 20px;
    height: 20px;
    border-radius: 100% 100% 100% 0;
    box-shadow: 0px 0px 0px 2px rgba(0,0,0,1);
    -webkit-animation: mapping 1s linear infinite;
    -moz-animation: mapping 1s linear infinite;
    animation: mapping 1s linear infinite;
    -webkit-transform: rotate(-46deg);
    -moz-transform: rotate(-46deg);
    transform: rotate(-46deg);
}

.location_indicator:after {
    width: 30px;
    height: 10px;
    border-radius: 100%;
    left: -4px;
    background-color: rgba(0, 0, 0, 0.2);
    top: 24px;
    z-index: -1;
}

@-webkit-keyframes mapping {
    0% {
        top: 0;
    }

    50% {
        top: -5px;
    }

    100% {
        top: 0;
    }
}

@-moz-keyframes mapping {
    0% {
        top: 0;
    }

    50% {
        top: -5px;
    }

    100% {
        top: 0;
    }
}

@-keyframes mapping {
    0% {
        top: 0;
    }

    50% {
        top: -5px;
    }

    100% {
        top: 0;
    }
}



/*Battery*/
.battery {
    width: 28px;
    height: 14px;
    border: 1px #000 solid;
    border-radius: 2px;
    position: relative;
    -webkit-animation: charge 5s linear infinite;
    -moz-animation: charge 5s linear infinite;
    animation: charge 5s linear infinite;
    top: 40px;
    margin: 0 auto;
}

.battery:after {
    width: 2px;
    height: 7px;
    background-color: #000;
    border-radius: 0px 1px 1px 0px;
    position: absolute;
    content: "";
    top: 2px;
    right: -4px;
}

@-webkit-keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px #000;
    }

    100% {
        box-shadow: inset 30px 0px 0px #000;
    }
}

@-moz-keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px #000;
    }

    100% {
        box-shadow: inset 30px 0px 0px #000;
    }
}

@keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px #000;
    }

    100% {
        box-shadow: inset 30px 0px 0px #000;
    }
}



/*help*/
.help {
    width: 30px;
    height: 30px;
    border: 1px #000 solid;
    border-radius: 50%;
    -webkit-animation: rotation 1s ease-in-out infinite;
    -moz-animation: rotation 1s ease-in-out infinite;
    animation: rotation 1s ease-in-out infinite;
    margin: 30px auto;
}

.help:after {
    width: 5px;
    height: 5px;
    background-color: rgba(0,0,0,1);
    border-radius: 100%;
    position: absolute;
    content: "";
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*eye ball*/
.eye {
    width: 20px;
    height: 20px;
    background-color: rgba(0,0,0,0.8);
    border-radius: 50%;
    box-shadow: 30px 0px 0px 0px rgba(0,0,0,0.8);
    position: relative;
    margin: 36px 26px;
}

.eye:after {
    background-color: #FFF;
    width: 10px;
    height: 10px;
    box-shadow: 30px 0px 0px 0px #FFF;
    border-radius: 50%;
    left: 9px;
    top: 8px;
    position: absolute;
    content: "";
    -webkit-animation: eyeball 2s linear infinite alternate;
    -moz-animation: eyeball 2s linear infinite alternate;
    animation: eyeball 2s linear infinite alternate;
}

@-webkit-keyframes eyeball {
    0% {
        left: 9px;
    }

    100% {
        left: 1px;
    }
}

@-moz-keyframes eyeball {
    0% {
        left: 9px;
    }

    100% {
        left: 1px;
    }
}

@keyframes eyeball {
    0% {
        left: 9px;
    }

    100% {
        left: 1px;
    }
}

/*coffee cup*/
.coffee_cup {
    width: 20px;
    height: 24px;
    border: 1px rgba(0,0,0,1) solid;
    border-radius: 0px 0px 5px 5px;
    position: relative;
    margin: 36px auto;
}

.coffee_cup:after, .coffee_cup:before {
    position: absolute;
    content: "";
}

.coffee_cup:after {
    width: 5px;
    height: 12px;
    border: 1px #000 solid;
    border-left: none;
    border-radius: 0px 20px 20px 0px;
    left: 20px;
}

.coffee_cup:before {
    width: 1px;
    height: 6px;
    background-color: rgba(0,0,0,1);
    top: -10px;
    left: 4px;
    box-shadow: 5px 0px 0px 0px rgba(0,0,0,1),
                5px -5px 0px 0px rgba(0,0,0,1),
                10px 0px 0px 0px rgba(0,0,0,1);
    -webkit-animation: steam 1s linear infinite alternate;
    -moz-animation: steam 1s linear infinite alternate;
    animation: steam 1s linear infinite alternate;
}

@-webkit-keyframes steam {
    0% {
        height: 0px;
    }

    100% {
        height: 6px;
    }
}

@-moz-keyframes steam {
    0% {
        height: 0px;
    }

    100% {
        height: 6px;
    }
}

@keyframes steam {
    0% {
        height: 0px;
    }

    100% {
        height: 6px;
    }
}

/*square*/
.square {
    width: 20px;
    height: 20px;
    border: 1px  rgba(0,0,0,1) solid;
    margin: 36px auto;
    position: relative;
    -webkit-animation: fill_color 5s linear infinite;
    -moz-animation: fill_color 5s linear infinite;
    animation: fill_color 5s linear infinite;
}

.square:after {
    width: 4px;
    height: 4px;
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,1);
    top: -8px;
    left: 0px;
    -webkit-animation: square_check 1s ease-in-out infinite;
    -moz-animation: square_check 1s ease-in-out infinite;
    animation: square_check 1s ease-in-out infinite;
}

@-webkit-keyframes square_check {
    25% {
        left: 22px;
        top: -8px;
    }

    50% {
        left: 22px;
        top: 22px;
    }

    75% {
        left: -9px;
        top: 22px;
    }

    100% {
        left: -9px;
        top: -7px;
    }
}

@-moz-keyframes square_check {
    25% {
        left: 22px;
        top: -8px;
    }

    50% {
        left: 22px;
        top: 22px;
    }

    75% {
        left: -9px;
        top: 22px;
    }

    100% {
        left: -9px;
        top: -7px;
    }
}

@keyframes square_check {
    25% {
        left: 22px;
        top: -8px;
    }

    50% {
        left: 22px;
        top: 22px;
    }

    75% {
        left: -9px;
        top: 22px;
    }

    100% {
        left: -9px;
        top: -7px;
    }
}

@-webkit-keyframes fill_color {
    0% {
        box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.1);
    }

    100% {
        box-shadow: inset 0px -20px 0px 0px rgba(0,0,0,1);
    }
}

@-moz-keyframes fill_color {
    0% {
        box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.1);
    }

    100% {
        box-shadow: inset 0px -20px 0px 0px rgba(0,0,0,1);
    }
}

@keyframes fill_color {
    0% {
        box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.1);
    }

    100% {
        box-shadow: inset 0px -20px 0px 0px rgba(0,0,0,1);
    }
}
/*circle classick*/
.circle {
    margin: 40px auto;
    position: relative;
    width: 8px;
    height: 8px;
    background-color: rgba(0,0,0,.5);
    ;
    box-shadow: -14px 0px 0px rgba(0,0,0,1);
    border-radius: 50%;
    -webkit-animation: circle_classic 1s ease-in-out infinite alternate;
    -moz-animation: circle_classic 1s ease-in-out infinite alternate;
    animation: circle_classic 1s ease-in-out infinite alternate;
}

@-webkit-keyframes circle_classic {
    0% {
        opacity: 0.1;
        -webkit-transform: rotate(0deg) scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: rotate(360deg) scale(1.2);
    }
}

@-moz-keyframes circle_classic {
    0% {
        opacity: 0.1;
        -moz-transform: rotate(0deg) scale(0.5);
    }

    100% {
        opacity: 1;
        -moz-transform: rotate(360deg) scale(1.2);
    }
}

@keyframes circle_classic {
    0% {
        opacity: 0.1;
        transform: rotate(0deg) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: rotate(360deg) scale(1.2);
    }
}

/*cloud*/

.cloud {
    margin: 42px 30px;
    width: 4px;
    height: 10px;
    opacity: 0.5;
    position: relative;
    box-shadow: 6px 0px 0px 0px rgba(0,0,0,1),
                12px 0px 0px 0px rgba(0,0,0,1),
                18px 0px 0px 0px rgba(0,0,0,1),
                24px 0px 0px 0px rgba(0,0,0,1),
                30px 0px 0px 0px rgba(0,0,0,1),
                36px 0px 0px 0px rgba(0,0,0,1);
    -webkit-animation: rain 1s linear infinite alternate;
    -moz-animation: rain 1s linear infinite alternate;
    animation: rain 1s linear infinite alternate;
}

.cloud:after {
    width: 40px;
    height: 10px;
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,1);
    top: 0px;
    opacity: 1;
    -webkit-animation: line_flow 2s linear infinite reverse;
    -moz-animation: line_flow 2s linear infinite reverse;
    animation: line_flow 2s linear infinite reverse;
}

@-webkit-keyframes rain {
    0% {
        box-shadow: 6px 0px 0px 0px rgba(0,0,0,1),
                12px 0px 0px 0px rgba(0,0,0,0.9),
                18px 0px 0px 0px rgba(0,0,0,0.7),
                24px 0px 0px 0px rgba(0,0,0,0.6),
                30px 0px 0px 0px rgba(0,0,0,0.3),
                36px 0px 0px 0px rgba(0,0,0,0.2);
    }

    100% {
        box-shadow: 6px 0px 0px 0px rgba(0,0,0,0.2),
                12px 0px 0px 0px rgba(0,0,0,0.3),
                18px 0px 0px 0px rgba(0,0,0,0.6),
                24px 0px 0px 0px rgba(0,0,0,0.7),
                30px 0px 0px 0px rgba(0,0,0,0.9),
                36px 0px 0px 0px rgba(0,0,0,1);
        opacity: 1;
    }
}

@-moz-keyframes rain {
    0% {
        box-shadow: 6px 0px 0px 0px rgba(0,0,0,1),
                12px 0px 0px 0px rgba(0,0,0,0.9),
                18px 0px 0px 0px rgba(0,0,0,0.7),
                24px 0px 0px 0px rgba(0,0,0,0.6),
                30px 0px 0px 0px rgba(0,0,0,0.3),
                36px 0px 0px 0px rgba(0,0,0,0.2);
    }

    100% {
        box-shadow: 6px 0px 0px 0px rgba(0,0,0,0.2),
                12px 0px 0px 0px rgba(0,0,0,0.3),
                18px 0px 0px 0px rgba(0,0,0,0.6),
                24px 0px 0px 0px rgba(0,0,0,0.7),
                30px 0px 0px 0px rgba(0,0,0,0.9),
                36px 0px 0px 0px rgba(0,0,0,1);
        opacity: 1;
    }
}

@keyframes rain {
    0% {
        box-shadow: 6px 0px 0px 0px rgba(0,0,0,1),
                12px 0px 0px 0px rgba(0,0,0,0.9),
                18px 0px 0px 0px rgba(0,0,0,0.7),
                24px 0px 0px 0px rgba(0,0,0,0.6),
                30px 0px 0px 0px rgba(0,0,0,0.3),
                36px 0px 0px 0px rgba(0,0,0,0.2);
    }

    100% {
        box-shadow: 6px 0px 0px 0px rgba(0,0,0,0.2),
                12px 0px 0px 0px rgba(0,0,0,0.3),
                18px 0px 0px 0px rgba(0,0,0,0.6),
                24px 0px 0px 0px rgba(0,0,0,0.7),
                30px 0px 0px 0px rgba(0,0,0,0.9),
                36px 0px 0px 0px rgba(0,0,0,1);
        opacity: 1;
    }
}

@-webkit-keyframes line_flow {
    0% {
        width: 0px;
    }

    100% {
        width: 40px;
    }
}

@-moz-keyframes line_flow {
    0% {
        width: 0px;
    }

    100% {
        width: 40px;
    }
}

@keyframes line_flow {
    0% {
        width: 0px;
    }

    100% {
        width: 40px;
    }
}
