/* DESKTOP */
.grow-top-left { 
    transition: transform 250ms; 
    transform-origin: top left;
}
.grow-top-left:hover {
    transform: scale(1.05); 
}

.grow-center { 
    transition: transform 250ms; 
}
.grow-center:hover { 
    transform: scale(1.08); 
}

.grow-bottom-right { 
    transition: transform 250ms; 
    transform-origin: bottom right;
}
.grow-bottom-right:hover { 
    transform: scale(1.05); 
}

.addspace {
    margin-left: 30px;
    transition: all 0.5s ease;
}

.addspace-go-vegan {
    margin-left: 10px;
    transition: all 0.5s ease;
}

.removespace {
    margin-left: 0px;
    transition: all 0.5s ease;
}

.addspace-bottom {
    margin-bottom: 50px;
    transition: all 0.5s ease;
}

.removespace-bottom {
    margin-bottom: 0px;
    transition: all 0.5s ease;
}

.addspace-care-left {
    margin-left: -25px;
    transition: all 0.5s ease;
}

.addspace-extra-left {
    margin-left: -10px;
    transition: all 0.5s ease;
}

/* MOBILE */

@keyframes fadeInfromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
        
    }

    30% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animation__fadeInfromBottom {
    animation-name: fadeInfromBottom;
    animation-duration: 2s;
    animation-timing-function:cubic-bezier(.57,.21,.69,1.25);
    /* animation-delay: 3s; */
    animation-iteration-count: 1;
}


@keyframes fadeInfromBottom_innerElement {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    30% {
        opacity: 0;
            transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animation__fadeInfromBottom_innerElement {
    animation-name: fadeInfromBottom_innerElement;
    animation-duration: 2s;
    animation-timing-function:cubic-bezier(.57,.21,.69,1.25);
    /* animation-delay: 3s; */
    animation-iteration-count: 1;
}


.hidden {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s;
    transition-timing-function: cubic-bezier(.57,.21,.69,1.25);
}

.show {
    opacity: 1;
    transform: translateY(0);
    animation-duration: 800ms;
    transition-timing-function:cubic-bezier(.57,.21,.69,1.25);
}

.rotate {
    animation:spin 2s linear infinite;
    /* animation-delay: 3s; */
    animation-iteration-count: 1;
}

.rotate_noDelay {
    animation:spin 2s linear infinite;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

@keyframes spin { 
    100% { 
        -webkit-transform: rotate(90deg); 
        transform:rotate(90deg); 
    } 
}

.rotateLogo {
    animation:spinlogo 2s linear infinite;
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes spinlogo { 

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

