.box {    
    border: 1px solid #eee;
    color: #000;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: fixed;
    width: 30%;
    bottom: 48px;
    right: -384px;
    background-color: #fafafa;
    padding: 16px 25px 0px 25px;
    z-index: 9999;
    visibility: hidden;
    -webkit-transition: right 500ms cubic-bezier(0.265, 0.365, 0.26, 0.865);
    -moz-transition: right 500ms cubic-bezier(0.265, 0.365, 0.26, 0.865);
    -o-transition: right 500ms cubic-bezier(0.265, 0.365, 0.26, 0.865);
    transition: right 500ms cubic-bezier(0.265, 0.365, 0.26, 0.865);    
}
.box-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    width: 290px;
    margin-bottom: 18px;
}
.box img {
    zoom:60%;
}
.display-block {
    right: 0px;
    visibility: visible;   
}
.display-hidden {
    display: none;
}
.box .btn-default {
    height: 40px;
    background-color: #90d13e;
    color: #fdfdfd;
    border: transparent;
    border-radius: 5px;    
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;      
    width: 100%;
}
.box .btn-default:hover,
.box .btn-default:focus {    
    background-color: #eeb42d;
    color: #fdfdfd;    
}
@media (min-width: 1600px) {
    .box {
        width: 20%;
    }
}
@media (max-width: 900px) {
    .box {
        width: 40%;
    }
}
@media (max-width: 900px) {
    .box {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .box {
        width: 100%;
    }
}