#present-link{
    right: -271px;
    margin-top: 75px;
    opacity: 0.7;
    z-index: 998;
    cursor: pointer;
}

#present-link i{
    padding: 15px;
    font-size: 1.7em;
    color: #004085;
    background: #cce5ff;
    border: 1px solid #b8daff;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: none;
    margin-right: -1px;
    z-index: 1000;
}

#present-link div {
    width: 270px;
    min-height: 100px;
    color: #004085;
    background: #cce5ff;
    border: 1px solid #b8daff;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px;
    border-right: none;
    padding: 8px 15px 15px 10px;
    text-align: right;
}

#present-link div span {
    font-size: 1.7em;
    display: block;
    font-weight: bold;
    padding-bottom: 15px;
}

.present{
    cursor: pointer;
    transform: translateX(-3000px);
    margin-top:-40px;
}

@keyframes present-start {
    0%{
        transform: rotate(0deg);
        margin-top: -40px;
        margin-left: 0px;
    }
    100%{

    }
}

.present1{
    /*animation: present-start 300ms ease backwards;*/
    transition: all 300ms ease;
}

.present1.forwards{
    /*animation: present-start 300ms ease forwards;*/
    transform: rotate(-40deg);
    margin-top: -70px;
    margin-left: -25px;
    transition: all 300ms ease;
}

.buildup{
    opacity: 0;
}

@keyframes slide-in {
    70% { transform: translateX(18px); }
    80% { transform: translateX(-13px); }
    70% { transform: translateX(10px); }
    80% { transform: translateX(-7px); }
    90% { transform: translateX(4px); }
    100% { transform: translateX(0%); }
}
.slide-in {
    animation: slide-in 650ms ease forwards;
}

@keyframes blend {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.blend{
    animation: blend 650ms linear;
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    75% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.pop-in-fast{
    animation: pop-in 500ms ease;
}

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

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.shake{
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}