/*!
*
* Css Of FeedBack jQuery Plugin.
*
* @autor:
*   MedInention <medmarouen@gmail.com>
*
* @Date:
*   31 Mai 2012 20.30:00
*
*/
.mask {
    background: rgba(0, 0, 0, 0.1);
    background: -moz-radial-gradient(
        center,
        circle closest-corner,
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.1)
    );
    background: -ms-radial-gradient(
        center,
        circle closest-corner,
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.1)
    );
    background: -o-radial-gradient(
        center,
        circle closest-corner,
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.1)
    );
    background: -webkit-radial-gradient(
        center,
        circle closest-corner,
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.1)
    );
    background: radial-gradient(
        center,
        circle closest-corner,
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.1)
    );
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.boxer {
    position: absolute;
    width: 1px;
    height: 1px;
    border-style: solid;
    border-color: white;
    border: 2px;
}
.view-box {
    background: red;
    opacity: 0.2;
}
.hide-box {
    background: black;
    opacity: 1;
}
.cross {
    background-image: url(../img/cross.png);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
    position: absolute;
    right: -15px;
    top: -15px;
}
.comment {
    padding: 10px;
}
