﻿.loader {
    box-sizing: border-box;
    color: #fff;
    display: none;
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: fixed;
    top: -9999px;
    width: 0;
    z-index: 999999;
}

.loader:after, .loader:before {
    box-sizing: border-box;
    display: none
}

.loader.is-active {
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.85);
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.loader.is-active:after, .loader.is-active:before { display: block }

@keyframes rotation {
    from { transform: rotate(0) }

    to { transform: rotate(359deg) }
}

@keyframes blink {
    from { opacity: .5 }

    to { opacity: 1 }
}

.loader[data-text]:before {
    color: currentColor;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    left: 0;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 100%;
}

.loader[data-text='']:before { content: 'Cargando...' }

.loader[data-text]:not([data-text='']):before { content: attr(data-text) }

.loader[data-text][data-blink]:before { animation: blink 1s linear infinite alternate }

.loader-default[data-text]:before { top: calc(50% - 63px) }

.loader-default:after {
    animation: rotation 1s linear infinite;
    border: solid 8px #fff;
    border-left-color: transparent;
    border-radius: 50%;
    content: '';
    height: 48px;
    left: calc(50% - 24px);
    position: fixed;
    top: calc(50% - 24px);
    width: 48px;
}

.loader-default[data-half]:after { border-right-color: transparent }

.loader-default[data-inverse]:after { animation-direction: reverse }

.loader-double:after, .loader-double:before {
    animation: rotation 1s linear infinite;
    border: solid 8px;
    border-radius: 50%;
    content: '';
    position: fixed;
}

.loader-double:after {
    border-color: #fff;
    border-left-color: transparent;
    height: 48px;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    width: 48px;
}

.loader-double:before {
    animation-duration: 2s;
    border-color: #eb974e;
    border-right-color: transparent;
    height: 64px;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    width: 64px;
}

.loader-bar[data-text]:before {
    color: #fff;
    top: calc(50% - 40px);
}

.loader-bar:after {
    animation: moveBar 1.5s linear infinite reverse;
    background: linear-gradient(-45deg, #4183d7 25%, #52b3d9 25%, #52b3d9 50%, #4183d7 50%, #4183d7 75%, #52b3d9 75%, #52b3d9);
    background-size: 20px 20px;
    box-shadow: inset 0 10px 0 #ffffff, 0 0 0 5px #000000;
    box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(0, 0, 0, 0.2);
    content: '';
    height: 20px;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
}

.loader-bar[data-rounded]:after { border-radius: 15px }

.loader-bar[data-inverse]:after { animation-direction: normal }

@keyframes moveBar {
    from { background-position: 0 0 }

    to { background-position: 20px 20px }
}

.loader-bar-ping-pong:before {
    background-color: #000;
    content: '';
    height: 20px;
    left: calc(50% - 100px);
    position: absolute;
    top: calc(50% - 10px);
    width: 200px;
}

.loader-bar-ping-pong:after {
    animation: moveBarPingPong .5s linear infinite alternate;
    background-color: #f19;
    content: '';
    height: 20px;
    left: calc(50% - 100px);
    position: absolute;
    top: calc(50% - 10px);
    width: 50px;
}

.loader-bar-ping-pong[data-rounded]:before { border-radius: 10px }

.loader-bar-ping-pong[data-rounded]:after {
    animation-name: moveBarPingPongRounded;
    border-radius: 50%;
    width: 20px;
}

@keyframes moveBarPingPong {
    0% { left: calc(50% - 100px) }

    100% { left: calc(50% - -50px) }
}

@keyframes moveBarPingPongRounded {
    0% { left: calc(50% - 100px) }

    100% { left: calc(50% - -80px) }
}

@keyframes corners {
    6% {
        height: 15px;
        width: 60px;
    }

    25% {
        height: 15px;
        left: calc(100% - 15px);
        top: 0;
        width: 15px;
    }

    31% { height: 60px }

    50% {
        height: 15px;
        left: calc(100% - 15px);
        top: calc(100% - 15px);
    }

    56% { width: 60px }

    75% {
        left: 0;
        top: calc(100% - 15px);
        width: 15px;
    }

    81% { height: 60px }
}

.loader-border[data-text]:before { color: #fff }

.loader-border:after {
    animation: corners 3s ease both infinite;
    background-color: #ff0;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    width: 15px;
}

.loader-ball:before {
    animation: kick 1s infinite alternate ease-in both;
    background-color: #fff;
    border-radius: 50%;
    content: '';
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 1;
}

.loader-ball[data-shadow]:before {
    box-shadow: -5px -5px 10px 0 #000000 inset;
    box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 0.5) inset
}

.loader-ball:after {
    animation: shadow 1s infinite alternate ease-out both;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    content: '';
    height: 20px;
    left: 50%;
    margin: 0 0 0 -22.5px;
    position: absolute;
    top: calc(50% + 10px);
    width: 45px;
    z-index: 0;
}

@keyframes shadow {
    0% {
        background-color: transparent;
        transform: scale(0)
    }

    40% {
        background-color: transparent;
        transform: scale(0)
    }

    95% {
        background-color: #000000;
        background-color: rgba(0, 0, 0, 0.75);
        transform: scale(1)
    }

    100% {
        background-color: #000000;
        background-color: rgba(0, 0, 0, 0.75);
        transform: scale(1)
    }
}

@keyframes kick {
    0% { transform: translateY(-80px) scaleX(0.95) }

    90% { border-radius: 50% }

    100% {
        border-radius: 50% 50% 20% 20%;
        transform: translateY(0) scaleX(1);
    }
}

.loader-smartphone:after {
    animation: shake 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
    background: radial-gradient(circle at 50% 90%, rgba(0, 0, 0, 0.5) 6px, transparent 6px), linear-gradient(to top, #fd0 22px, transparent 22px), linear-gradient(to top, rgba(0, 0, 0, 0.5) 22px, rgba(0, 0, 0, 0.5) 100%);
    border: solid 5px #fd0;
    border-radius: 10px;
    box-shadow: 0 5px 0 0 #fd0 inset;
    color: #fff;
    content: '';
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    height: 130px;
    left: 50%;
    line-height: 120px;
    margin: -65px 0 0 -35px;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 70px;
}

.loader-smartphone[data-screen='']:after { content: 'Loading' }

.loader-smartphone:not([data-screen='']):after { content: attr(data-screen) }

@keyframes shake {
    5% { transform: translate3d(-1px, 0, 0) }

    10% { transform: translate3d(1px, 0, 0) }

    15% { transform: translate3d(-1px, 0, 0) }

    20% { transform: translate3d(1px, 0, 0) }

    25% { transform: translate3d(-1px, 0, 0) }

    30% { transform: translate3d(1px, 0, 0) }

    35% { transform: translate3d(-1px, 0, 0) }

    40% { transform: translate3d(1px, 0, 0) }

    45% { transform: translate3d(-1px, 0, 0) }

    50% { transform: translate3d(1px, 0, 0) }

    55% { transform: translate3d(-1px, 0, 0) }
}

.loader-clock:before {
    animation: rotation infinite 2s linear;
    background: linear-gradient(to bottom, transparent 50%, #f5f5f5 50%), linear-gradient(90deg, transparent 55px, #2ecc71 55px, #2ecc71 65px, transparent 65px), linear-gradient(to bottom, #f5f5f5 50%, #f5f5f5 50%);
    border-radius: 50%;
    box-shadow: 0 0 0 10px #f5f5f5 inset, 0 0 0 5px #555, 0 0 0 10px #7b7b7b;
    content: '';
    height: 120px;
    left: 50%;
    margin: -60px 0 0 -60px;
    overflow: hidden;
    position: fixed;
    top: 50%;
    width: 120px;
}

.loader-clock:after {
    animation: rotation infinite 24s linear;
    background: radial-gradient(circle at 14px 20px, #25a25a 10px, transparent 10px), radial-gradient(circle at 14px 20px, #1b7943 14px, transparent 14px), linear-gradient(180deg, transparent 15px, #2ecc71 15px, #2ecc71 25px, transparent 25px);
    border-radius: 20px 0 0 20px;
    content: '';
    height: 40px;
    left: 50%;
    margin: -20px 0 0 -15px;
    overflow: hidden;
    position: fixed;
    top: 50%;
    transform-origin: 15px center;
    width: 60px;
}

.loader-curtain:before, .loader-curtain:after {
    content: 'Loading';
    font-family: Helvetica, Arial, sans-serif;
    font-size: 70px;
    line-height: 1.2;
    margin-top: -35px;
    overflow: hidden;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 100%;
}

.loader-curtain:before { color: #666 }

.loader-curtain:after {
    animation: curtain 1s linear infinite alternate both;
    color: #fff;
    height: 0;
}

.loader-curtain[data-curtain-text]:not([data-curtain-text='']):before, .loader-curtain[data-curtain-text]:not([data-curtain-text='']):after { content: attr(data-curtain-text) }

.loader-curtain[data-brazilian]:before { color: #f1c40f }

.loader-curtain[data-brazilian]:after { color: #2ecc71 }

.loader-curtain[data-colorful]:before { animation: maskColorful 2s linear infinite alternate both }

.loader-curtain[data-colorful]:after {
    animation: curtain 1s linear infinite alternate both, maskColorful-front 2s 1s linear infinite alternate both;
    color: #000
}

@keyframes maskColorful {
    0% { color: #3498db }

    49.5% { color: #3498db }

    50.5% { color: #e74c3c }

    100% { color: #e74c3c }
}

@keyframes maskColorful-front {
    0% { color: #2ecc71 }

    49.5% { color: #2ecc71 }

    50.5% { color: #f1c40f }

    100% { color: #f1c40f }
}

@keyframes curtain {
    0% { height: 0 }

    100% { height: 84px }
}

.loader-music:before, .loader-music:after {
    border-radius: 50%;
    color: #fff;
    content: '';
    font-family: Helvetica, Arial, sans-serif;
    font-size: 40px;
    height: 240px;
    left: 50%;
    letter-spacing: -1px;
    line-height: 240px;
    margin: -120px 0 0 -120px;
    position: fixed;
    text-align: center;
    text-shadow: 1px 1px 0 #000000;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    top: 50%;
    width: 240px;
}

.loader-music:after { backface-visibility: hidden }

.loader-music[data-hey-oh]:before, .loader-music[data-hey-oh]:after { box-shadow: 0 0 0 10px }

.loader-music[data-hey-oh]:before {
    animation: coinBack 2.5s linear infinite, oh 5s 1.25s linear infinite both;
    background-color: #fff;
    color: #000;
}

.loader-music[data-hey-oh]:after {
    animation: coin 2.5s linear infinite, hey 5s linear infinite both;
    background-color: #000;
}

.loader-music[data-no-cry]:before, .loader-music[data-no-cry]:after {
    background: linear-gradient(45deg, #009b3a 50%, #fed100 51%);
    box-shadow: 0 0 0 10px #000
}

.loader-music[data-no-cry]:before { animation: coinBack 2.5s linear infinite, cry 5s 1.25s linear infinite both }

.loader-music[data-no-cry]:after { animation: coin 2.5s linear infinite, no 5s linear infinite both }

.loader-music[data-we-are]:before {
    animation: coinBack 2.5s linear infinite, theWorld 5s 1.25s linear infinite both;
    background: radial-gradient(ellipse at center, #4ecdc4 0, #556270)
}

.loader-music[data-we-are]:after {
    animation: coin 2.5s linear infinite, weAre 5s linear infinite both;
    background: radial-gradient(ellipse at center, #26d0ce 0, #1a2980)
}

.loader-music[data-rock-you]:before {
    animation: coinBack 2.5s linear infinite, rockYou 5s 1.25s linear infinite both;
    background: #444
}

.loader-music[data-rock-you]:after {
    animation: coin 2.5s linear infinite, weWill 5s linear infinite both;
    background: #96281b
}

@keyframes coin {
    to { transform: rotateY(359deg) }
}

@keyframes coinBack {
    0% { transform: rotateY(180deg) }

    50% { transform: rotateY(360deg) }

    100% { transform: rotateY(180deg) }
}

@keyframes hey {
    0% { content: 'Hey!' }

    50% { content: 'Let\'s!' }

    100% { content: 'Hey!' }
}

@keyframes oh {
    0% { content: 'Oh!' }

    50% { content: 'Go!' }

    100% { content: 'Oh!' }
}

@keyframes no {
    0% { content: 'No...' }

    50% { content: 'no' }

    100% { content: 'No...' }
}

@keyframes cry {
    0% { content: 'woman' }

    50% { content: 'cry!' }

    100% { content: 'woman' }
}

@keyframes weAre {
    0% { content: 'We are' }

    50% { content: 'we are' }

    100% { content: 'We are' }
}

@keyframes theWorld {
    0% { content: 'the world,' }

    50% { content: 'the children!' }

    100% { content: 'the world,' }
}

@keyframes weWill {
    0% { content: 'We will,' }

    50% { content: 'rock you!' }

    100% { content: 'We will,' }
}

@keyframes rockYou {
    0% { content: 'we will' }

    50% { content: '🤘' }

    100% { content: 'we will' }
}

.loader-pokeball:before {
    animation: movePokeball 1s linear infinite both;
    background: linear-gradient(to bottom, red 42%, #000 42%, #000 58%, #fff 58%);
    background-color: #fff;
    background-repeat: no-repeat;
    border-radius: 50%;
    content: '';
    height: 100px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 100px;
    z-index: 1;
}

.loader-pokeball:after {
    animation: movePokeball 1s linear infinite both, flashPokeball .5s infinite alternate;
    background-color: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #fff, 0 0 0 10px #000;
    content: '';
    height: 24px;
    left: 50%;
    margin: -12px 0 0 -12px;
    position: absolute;
    top: 50%;
    width: 24px;
    z-index: 2;
}

@keyframes movePokeball {
    0% { transform: translateX(0) rotate(0) }

    15% { transform: translatex(-10px) rotate(-5deg) }

    30% { transform: translateX(10px) rotate(5deg) }

    45% { transform: translatex(0) rotate(0) }
}

@keyframes flashPokeball {
    0% { background-color: #fff }

    100% { background-color: #fd0 }
}