﻿.slide-right {
    -webkit-animation: slide-right 0.5s both;
    animation: slide-right 0.5s both;
}

.CollapsedHeight {
    height: 0px !important;
    /*margin: 0;*/
    overflow: hidden;
    white-space: nowrap;
    padding: 0 !important;
    border: none !important;
}

.CollapsedWidth {
    width: 0px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    min-width: 0px !important;
}

.closeanimation {
    transform: scale(0);
}

.removeopacityanimation {
    background-color: rgba(0,0,0,0) !important;
}

.addopacityanimation {
    background-color: rgba(0,0,0,0.4) !important;
}

.blink {
    animation: blinker 1s linear infinite;
}

.hPanel {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    align-items: center;
}

.CreateBoxAnimation {
    transition: all 0.5s;
    animation: createBox 0.5s;
}
.FadeInRightAnimation {
    transition: 0.5s ease-in-out;
    animation-duration: 0.5s;
    animation-name: fadeInRight;
}
.FadeInDown {
    transition: 0.5s ease-in-out;
    animation-duration: 0.5s;
    animation-name: fadeInDown;
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes createBox {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes addOpacity {
    0% {
        background-color: rgba(0,0,0,0);
    }

    100% {
        background-color: rgba(0,0,0,0.4);
    }
}

@-webkit-keyframes addOpacity {
    0% {
        background-color: rgba(0,0,0,0);
    }

    100% {
        background-color: rgba(0,0,0,0.4);
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@keyframes rowcreation {
    from {
        padding: 0 !important;
        height: 0 !important;
    }

    to {
        height: var(--Height) !important;
    }
}
@keyframes columncreation {
    from {
        padding: 0;
        width: 0 !important;
    }

    to {
        max-width: 1200px !important;
    }
}
@keyframes addOpacityCustomColor {
    0% {
        background-color: rgba(0,0,0,0);
    }

    100% {
        background-color: rgba(0,0,0,0.4);
    }
}

@-webkit-keyframes addOpacityCustomColor {
    0% {
        background-color: rgba(0,0,0,0);
    }

    100% {
        background-color: rgba(0,0,0,0.4);
    }
}
@keyframes scaleFromCorner {
    0% {
        transform: scale(0);
        transform-origin: bottom right;
    }

    100% {
        transform: scale(1);
        transform-origin: bottom right;
    }
}
