#info {
    -webkit-transition: -webkit-transform 0.65s 0.2s;
    transition: -webkit-transform 0.65s 0.2s;
    transition: transform 0.65s 0.2s;
    transition: transform 0.65s 0.2s, -webkit-transform 0.65s 0.2s;
    opacity: 1;
    background: #eeece4;
    position: fixed;
    padding: 40px 35px 40px 35px;
    width: 255px;
    z-index: 999999;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#info.remove {
    opacity: 0;
    -webkit-transform: translate(120%, 0);
    transform: translate(120%, 0);
    -webkit-transition: all 1s 0.2s;
    transition: all 1s 0.2s;
}

#info a.close {
    cursor: pointer;
    background: rgb(29, 92, 96);
    border: 1px solid rgb(29, 92, 96);
    padding: 17px 25px;
    font-family: Cinzel,serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: .2em;
    color: #9a926f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: background .3s,color .3s;
    transition: background .3s,color .3s;
}

#info a.close:hover {
    color: rgb(29, 92, 96);
    background: transparent;
}

#info p {
    font-size: 12px;
    color: #1d5c60;
    line-height: 20px;
    letter-spacing: .12em;
}

#info p a {
    color: #1d5c60;
    font-weight: 600;
}

/*
 * POSITIONS
*/

#info.bottom.right {
    bottom: 40px;
    right: 40px;
}

#info.bottom.left {
    bottom: 40px;
    left: 40px;
}

#info.top.left {
    top: 40px;
    left: 40px;
}

#info.top.right {
    top: 40px;
    right: 40px;
}

@media (max-width: 480px) {
    #info {
        width: 100%;
        z-index: 99999999999;
    }

    #info.bottom.left {
        bottom: 0;
        left: 0;
    }

    #info.bottom.right {
        bottom: 0;
        left: 0;
    }
}