#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: #efefef;
    position: fixed;
    width: 340px;
    z-index: 999999;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

#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 {
    height: 28px;
    outline: none;
    width: 28px;
    cursor: pointer;
    background: none;
    border: 1px solid #b8a359;
    padding: 0;
    position: absolute;
    z-index: 9;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}

#info a.close span {
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    cursor: pointer;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}

#info a.close span.top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #b8a359;
}

#info a.close span.bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #b8a359;
    top: 23px;
}

#info a.close:hover {
    border: 1px solid #9d9d9d;
}

#info a.close:hover span.bottom, #info a.close:hover span.top {
    background: #9d9d9d;
}

#info p {
    font-size: 14px;
    margin: 0;
    line-height: 18px;
}

/*
 * POSITIONS
*/

#info.right {
    padding: 10px 52px 10px 20px;
}

#info.left {
    padding: 10px 20px 10px 52px;
}

#info.right a.close {
    top: 10px;
    right: 10px;
}

#info.left a.close {
    top: 10px;
    left: 10px;
}

#info.bottom.right {
    bottom: 25px;
    right: 25px;
}

#info.bottom.left {
    bottom: 25px;
    left: 25px;
}

#info.top.left {
    top: 25px;
    left: 25px;
}

#info.top.right {
    top: 25px;
    right: 25px;
}

@media (max-width: 480px) {
    #info {
        width: 100%;
        z-index: 99999999999;
    }

    #info.bottom.left {
        bottom: 0;
        left: 0;
    }

    #info.bottom.right {
        bottom: 0;
        left: 0;
    }
}