﻿.vanishOut {
    -webkit-animation: vanishOut 0.5s;
    animation: vanishOut 0.5s;
}

@keyframes vanishOut {
    0% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }
    100% {
        opacity: 0;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }
}

.vanishIn {
    -webkit-animation: vanishIn .3s;
    animation: vanishIn .3s;
}

@keyframes vanishIn {
    0% {
        opacity: 0;
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
    }

    100% {
        opacity: 1;
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        /*-webkit-filter: blur(0px);
        filter: blur(0px);*/
    }
}

.vanishInForm {
    -webkit-animation: vanishInForm 0.5s;
    animation: vanishInForm 0.5s;
}

@keyframes vanishInForm {
    0% {
        opacity: 0;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        /*-webkit-transform: scale(0);
        transform: scale(0);*/
        -webkit-filter: blur(20px);
        filter: blur(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        /*-webkit-transform: scale(1);
        transform: scale(1);*/
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

.vanishInCenter {
    -webkit-animation: vanishInCenter 0.4s;
    animation: vanishInCenter 0.4s;
}

@keyframes vanishInCenter {
    0% {
        opacity: 0;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: translate(-50%, -50%) scale(.2);
        transform: translate(-50%, -50%) scale(.2);
        -webkit-filter: blur(30px);
        filter: blur(30px);
    }

    
    100% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }

    
}


.vanishOutCenter {
    -webkit-animation: vanishOutCenter 0.4s;
    animation: vanishOutCenter 0.4s;
}

@keyframes vanishOutCenter {
    

    0% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        -webkit-filter: blur(0);
        filter: blur(0)
    }

    100% {
        opacity: 0;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: translate(-50%, -50%) scale(.2);
        transform: translate(-50%, -50%) scale(.2);
        -webkit-filter: blur(30px);
        filter: blur(30px);
    }

}

.trasparentVanishOut {
    -webkit-animation: trasparentVanishOut 6.5s;
    animation: trasparentVanishOut 6.5s;
}

@keyframes trasparentVanishOut {
    0% {
        opacity: 1;
        /*-webkit-filter: blur(0);
        filter: blur(0)*/
    }

    50% {
        opacity: .8;
        /*-webkit-filter: blur(0);
        filter: blur(0)*/
    }

    100% {
        opacity: 0;
     /*   -webkit-filter: blur(20px);
        filter: blur(20px);*/
    }
}

.trasparentVanishOutFast {
    -webkit-animation: trasparentVanishOutFast 2s;
    animation: trasparentVanishOutFast 2s;
}

@keyframes trasparentVanishOutFast {
    0% {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }

    
    100% {
        opacity: 0;
           -webkit-filter: blur(20px);
        filter: blur(20px);
    }
}

.trasparent-translate-left {
    -webkit-animation: trasparentTranslateLeft .5s;
    animation: trasparentTranslateLeft .5s;
}

@keyframes trasparentTranslateLeft {
    0% {
        opacity: .5;
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
        /*transform: translateX(-100%);*/
    }

    100% {
        opacity: 1;
        /*-webkit-filter: blur(0);
        filter: blur(0);*/
        /*transform: translateX(0);*/
    }
}

.trasparent-translate-right {
    -webkit-animation: trasparentTranslateRight .5s;
    animation: trasparentTranslateRight .5s;
}

@keyframes trasparentTranslateRight {
    0% {
        opacity: .5;
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
        /*transform: translateX(100%);*/
    }

    100% {
        opacity: 1;
        /*-webkit-filter: blur(0);
        filter: blur(0);*/
        /*transform: translateX(0);*/
    }
}

.trasparentIn {
    -webkit-animation: trasparentIn 4.2s 1 normal forwards;
    animation: trasparentIn 4.2s 1 normal forwards;
}

@keyframes trasparentIn {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    60% {
        opacity: .2;
    }

    100% {
        opacity: 1;
    }
}


.opacityIn {
    -webkit-animation: opacityIn 1s;
    animation: opacityIn 1s;
}

@keyframes opacityIn {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 1;
    }
}
.shake {
    animation: shake 1.2s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
}

.hide {
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    transition: all .8s;
    opacity: 0;
}

.div-back-login-success {
    background: radial-gradient(rgba(80, 80, 80, 0.6), rgba(114, 190, 71, 0.85) 120%);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: illuminateDown .8s;
}

@keyframes illuminateDown {
    0% {
        background-size: 100%
    }

    50% {
        background-size: 180%
    }

    100% {
        background-size: 100%;
    }
}

.light-green {
    animation: light-green 1.2s linear;
}

@keyframes light-green {
    0% {
        box-shadow: 0 0px 0px 0px var(--color-green, #79b418)
    }

    50% {
        box-shadow: 0 1px 10px 5px var(--color-green, #79b418);
    }

    100% {
        box-shadow: 0 0px 0px 0px var(--color-green, #79b418)
    }

}


.light-primary {
    animation: light-primary 1.2s linear;
}

@keyframes light-primary {
    0% {
        box-shadow: 0 0px 0px 0px var(--primary-color, #79b418)
    }

    50% {
        box-shadow: 0 1px 8px 2px var(--primary-color, #79b418);
    }

    100% {
        box-shadow: 0 0px 0px 0px var(--primary-color, #79b418)
    }
}

@keyframes shake {
    10%, 90% {
        box-shadow: 0 0px 0px 0px var(--color-red, #dc143c);
        transform: translate3d(-4px, 0, 0);
    }

    20%, 80% {
        box-shadow: 0 0px 0px 0px var(--color-red, #dc143c);
        transform: translate3d(8px, 0, 0);
    }

    30%, 50%, 70% {
        box-shadow: 0 1px 10px 5px var(--color-red, #dc143c);
        transform: translate3d(-10px, 0, 0);
    }

    40%, 60% {
        box-shadow: 0 1px 10px 5px var(--color-red, #dc143c);
        transform: translate3d(8px, 0, 0);
    }
}

@-webkit-keyframes lifeAnimation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes lifeAnimation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes lifeAnimation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.illuminate {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    color: rgb(225, 225, 225);
    text-shadow: none;
    -webkit-animation: neon 1s;
    -moz-animation: neon 1s;
    animation: neon 1s;
}

@keyframes neon {
    0% {
        text-shadow: none;
    }

    50% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff, 0 0 35px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 75px #fff;
    }

    0% {
        text-shadow: none;
    }
}

.illuminate-box {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    color: rgb(225, 225, 225);
    text-shadow: none;
    -webkit-animation: neonBox 1s;
    -moz-animation: neonBox 1s;
    animation: neonBox 1s;
}

@keyframes neonBox {
    0% {
        box-shadow: 0 0px 0px 0px #FFFFFF
    }

    50% {
        box-shadow: 0 1px 10px 5px #FFFFFF;
    }

    100% {
        box-shadow: 0 0px 0px 0px #FFFFFF
    }
}


.illuminate-green {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    color: #dcf77f;
    text-shadow: none;
    -webkit-animation: neonGreen 1s;
    -moz-animation: neonGreen 1s;
    animation: neonGreen 1s;
}

@keyframes neonGreen {
    0% {
        text-shadow: none;
    }

    50% {
        text-shadow: 0 0 0px #dcf77f, 0 0 2px #dcf77f, 0 0 5px #dcf77f, 0 0 15px #dcf77f, 0 0 20px #dcf77f, 0 0 40px #dcf77f, 0 0 25px #dcf77f, 0 0 30px #dcf77f;
    }

    0% {
        text-shadow: none;
    }
}

.illuminate-red {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    color: white;
    text-shadow: none;
    -webkit-animation: neonRed 1s;
    -moz-animation: neonRed 1s;
    animation: neonRed 1s;
}

@keyframes neonRed {
    0% {
        /*text-shadow: none;*/
        color: white;
    }

    50% {
        /*text-shadow: 0 0 0px #ffacac, 0 0 2px #ffacac, 0 0 5px #ffacac, 0 0 15px #ffacac, 0 0 20px #ffacac, 0 0 40px #ffacac, 0 0 25px #ffacac, 0 0 30px #ffacac;*/
        color: white;
    }

    0% {
        /*text-shadow: none;*/
        color: white;
    }
}

.shimmer {
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-iteration-count: infinite;
    background: linear-gradient(to right, rgba(244, 244, 244, 1) 0%, rgba(234, 234, 234, 1) 50%, rgba(244, 244, 244, 1) 100%) 0 0/90% 100% no-repeat rgba(244, 244, 244, 1);
    background: linear-gradient(to right, rgba(var(--palette-neutral-4, 244, 244, 244), 1) 0%, rgba(var(--palette-neutral-8, 234, 234, 234), 1) 50%, rgba(var(--palette-neutral-4, 244, 244, 244), 1) 100%) 0 0/90% 100% no-repeat rgba(var(--palette-neutral-4, 244, 244, 244), 1);
    transition: opacity 200ms ease 0s
}


@-webkit-keyframes ky-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

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

@keyframes ky-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

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

@-webkit-keyframes moving-gradient {
    0% {
        background-position: -250px 0;
    }

    100% {
        background-position: 250px 0;
    }
}

@keyframes colorChange {
    0% {
        fill: var(--primary-color);
        color: var(--primary-color);
        opacity: .7;
        transform: scale(1)
    }

    50% {
        fill: var(--primary-color);
        color: var(--primary-color);
        opacity: 1;
        /*font-weight: bold;*/
        transform: scale(1.2)
    }

    100% {
        fill: var(--primary-color);
        color: var(--primary-color);
        opacity: .7;
        transform: scale(1)
    }
}
.ky-color-change > span,
.ky-color-change > svg {
    animation: colorChange 1.4s infinite;
    fill: var(--primary-color);
    color: var(--primary-color);
    opacity: 1;
    /*font-weight: bold;*/
    transform: scale(1.2)
}

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

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


@keyframes pulse-scale {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.4);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

.ky-loading > svg {
    animation: rotateLoad 1.5s infinite;
}

.ky-uploading > svg {
    /* animation: pulse-scale 1.5s infinite; */
    animation: rotateLoad 1.5s infinite;
}

.ky-star-shrink > svg {
    animation: shrink 1s forwards;
}

.ky-star-grow > svg {
    animation: grow 1s forwards;
}

@keyframes shrink {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes grow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.sk-cube {
    /*opacity: .1;*/
    transition: all .75s;
}

.ky-rotate {
    animation: rotateLoad 1.3s infinite;
}

    .ky-rotate > .sk-cube {
        opacity: .5;
        /*animation: rotateLoad 1.3s infinite;*/
        border-radius: 50%;
        /*transition: all 1s;*/
    }

    .ky-rotate > div:nth-child(1), .ky-rotate > div:nth-child(4) {
    opacity: .5;
    /*animation: rotateLoad 1.3s infinite;*/
    border-radius: 50%;
    /*transition: all 1s;*/
}


@keyframes colorChangeSuccess {
    0% {
        color: var(--color-placeholder);
        fill: var(--color-placeholder);
        opacity: .4;
    }

    50% {
        color: var(--color-green);
        fill: var(--color-green);
        opacity: 1;
    }

    100% {
        color: var(--color-placeholder);
        fill: var(--color-placeholder);
        opacity: .4;
    }
}

.ky-color-change-success > span,
.ky-color-change-success > svg,
.ky-color-change-success.ky-window-caption-text {
    animation: colorChangeSuccess 3s infinite;
}

.ky-blink {
    animation: blinker 1s linear;
}

.ky-blink-infinite {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    0%{
        opacity: 1;
    }
    50% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slideR {
    100% {
        right: 0;
    }
}

@keyframes slideR {
    0% {
        opacity: 0;
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
    }

    100% {
        opacity: 1;
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        /*-webkit-filter: blur(0px);
        filter: blur(0px);*/
    }
}

@keyframes slideRRev {
    0% {
        opacity: 1;
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        /*-webkit-filter: blur(0px);
        filter: blur(0px);*/
    }

    100% {
        opacity: 0;
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
    }
}

.ky-slide-right-reverse {
    -webkit-animation: slideRRev .5s forwards;
    /*-webkit-animation-delay: 2s;*/
    animation: slideRRev .5s forwards;
}

@keyframes colorChangeLoading {
    0% {
        color: var(--dark-color);
        fill: var(--dark-color);
    }

    50% {
        color: var(--primary-color);
        fill: var(--primary-color);
    }

    100% {
        color: var(--dark-color);
        fill: var(--dark-color);
    }
}

.ky-nav-color-loading {
    opacity: 1 !important;
}
.ky-nav-color-loading > svg {
    animation: colorChangeLoading 2s infinite;   
}

.ky-animated-gradient {
    /*background: repeating-linear-gradient(to right, #DC143C 0%, #027bff 50%, #FFD700 80%, #DC143C 100%);*/
    /*background: repeating-linear-gradient(to right, var(--color-red) 0%, var(--color-green) 50%, var(--color-blue) 80%, var(--color-red) 100%);*/
    background: linear-gradient(to right,rgb(76,217,105),rgb(90,200,250),rgb(0,132,255),rgb(52,170,220),rgb(88,86,217),rgb(255,45,83), rgb(76,217,105));
    width: 100%;
    height: .2rem;
    background-size: 200% auto;
    background-position: 0 100%;
    animation: gradient 1s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

.ky-animated-gradient-command {
    /*background: repeating-linear-gradient(to right, #DC143C 0%, #027bff 50%, #FFD700 80%, #DC143C 100%);*/
    /*background: repeating-linear-gradient(to right, var(--color-red) 0%, var(--color-green) 50%, var(--color-blue) 80%, var(--color-red) 100%);*/
    
}

    .ky-animated-gradient-command > span {
        background: linear-gradient(to right,rgb(76,217,105),rgb(90,200,250),rgb(0,132,255),rgb(52,170,220),rgb(88,86,217),rgb(255,45,83), rgb(76,217,105));
        background-size: 200% auto;
        background-position: 0 100%;
        animation: gradient 1s infinite;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        opacity: 1;
    }

@keyframes gradient {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        /*-webkit-transform: scaleY(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        transform: scaleY(0);*/
        /*-webkit-filter: blur(0px);
        filter: blur(0px);*/
    }

    50%{
        /*opacity: .1;*/
    }
    100% {
        opacity: 1;
        /*-webkit-transform: scaleY(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        transform: scaleY(1);*/
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        transform: scaleY(0);
        /*-webkit-filter: blur(0px);
        filter: blur(0px);*/
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        transform: scaleY(1);
        /*-webkit-filter: blur(20px);
        filter: blur(20px)*/
    }
}

.highlightUpdate-animation {
    -webkit-animation: trasparentTranslateLeft 3s;
    animation: trasparentTranslateLeft 3s;
}