.pop-anim {
    visibility: hidden;
}

.pop {
    animation-name: pop;
    -webkit-animation-name: pop;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    position: relative;
}

@keyframes pop {
    0% {
        /* opacity: 0; */
        /* transform: translateY(70%); */
        /* size: 0%; */
        /* width: 0rem; */
        /* height: 0rem; */
        transform: scale(0);
    }
    100% {
        /* opacity: 1; */
        /* transform: translateY(0%); */
        /* size: 100%; */
        /* width: 1rem; */
        /* height: 1rem; */
        /* transform: translate(+25%, +25%) scale(1); */
        transform: scale(1);
    }
}

@-webkit-keyframes pop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}


/*--------------------------------1-----------------------------------------*/

.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}


/*--------------------------------2---------------------------------------*/

.motto {
    animation-name: motto;
    animation-duration: 5s;
    /*animation-iteration-count: 1;*/
    animation-direction: normal;
    /* -webkit-animation-name: motto; */
    /* -webkit-animation-duration: 5s; */
    visibility: visible;
    opacity: 1;
    color: #007bff;
    font-size: 1rem;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    /* width: 100%; */
    /* height: 100%; */
    /* box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'FontAwesome'!important;
    font-style: italic; */
    /* font-size: large !important; */
}

@keyframes motto {
    0% {
        /* font-size: 20%; */
        opacity: 0;
        transform: scale(0);
        /* transform: translateY(70%); */
    }
    80% {
        /* font-size: 110%; */
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        /* font-size: 100%; */
        transform: scale(1);
        opacity: 1;
        /* transform: translateY(0%); */
        /*content: "Original Text"*/
        /* transform: rotate(380deg); */
    }
}

@-webkit-keyframes motto {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    80% {
        transform: scale(2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.crazy {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
    animation-name: mymove;
    animation-duration: 10s;
    animation-iteration-count: 100;
}

@keyframes mymove {
    0% {
        /* opacity: 0; */
        font-size: 100%;
    }
    100% {
        font-size: 100%;
        /* opacity: 1; */
        width: 300px;
        height: 300px;
        font-size: 500%;
        transform: rotate(380deg);
    }
}


/*--------------------------------3-----------------------------------------*/


/*-------------------------------4------------------------------------------*/

.slideanim-y-slow {
    visibility: hidden;
    width: 100px;
    height: 100px;
}

.slide-y-slow {
    animation-name: slide-y-slow;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    -webkit-animation-name: slide-y-slow;
    -webkit-animation-duration: 3s;
    visibility: visible;
}

@keyframes slide-y-slow {
    0% {
        opacity: 1;
        transform: translateX(-1000%);
        /*transform: rotate(-90deg);*/
    }
    60% {
        transform: rotate(-40deg);
    }
    50% {
        opacity: 1;
        /*transform: rotate(90deg); cant combine transfer and rotate in same place... probs*/
    }
    80% {
        transform: rotate(20deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0%) rotate(0deg);
        /* transform: rotate(0deg); */
    }
}

@-webkit-keyframes slide-y-slow {
    0% {
        opacity: 1;
        -webkit-transform: translateX(-1000%);
    }
    60% {
        -webkit-transform: rotate(-40deg);
    }
    50% {
        opacity: 1;
    }
    80% {
        -webkit-transform: rotate(20deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%) rotate(0deg);
    }
}


/*----------------------------5---------------------------------------------*/

.slideanim-x {
    visibility: hidden;
}

.slide-x {
    animation-name: slide-x;
    -webkit-animation-name: slide-x;
    animation-duration: 1s;
    -webkit-animation-duration: 3s;
    visibility: visible;
}

@keyframes slide-x {
    0% {
        opacity: 1;
        /* height: 0; */
        /* transform: translateX(70%); */
        transform: rotate3d(0);
    }
    50% {
        opacity: 1;
        /* height: 200px; */
        /* transform: translateX(0%); */
        transform: rotate3d(1, 1, 1, 45deg);
        /* transform: rotate3d(0, 1, 0.5, 3.142rad); */
    }
    100% {
        opacity: 1;
        /* height: 0; */
        /* transform: translateX(70%); */
        transform: rotate3d(0);
    }
}

@-webkit-keyframes slide-x {
    0% {
        opacity: 1;
        -webkit-transform: translateX(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}


/*----------------------------5---------------------------------------------*/

.myanim-popup-slow {
    animation-name: slide;
    animation-duration: 5s;
    animation-iteration-count: 100;
    visibility: visible;
}

.myanime2 {
    animation-name: myanime2;
    animation-duration: 6s;
    animation-iteration-count: 1;
    visibility: visible;
    z-index: 5;
}

@keyframes myanime2 {
    0% {
        opacity: 0;
        /* transform: rotate(180deg) translateY(1000%); */
    }
    100% {
        opacity: 1;
        /* transform: rotate(360deg) translateX(0%); */
    }
}

.myanim {
    animation-name: myanim;
    -webkit-animation-name: myanim;
    animation-duration: 5s;
    -webkit-animation-duration: 5s;
    /* animation-iteration-count: 1; */
    visibility: visible;
    z-index: 3;
}

@keyframes myanim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes myanim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.floating-div {
    width: 200px;
    height: 100px;
    background: transparent;
    opacity: 1;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1030;
}