
/* Content */
.block{
    padding: 10px;
    border-radius: 4px;
    background: #fff;
    border:3px solid transparent;
}
.block.block-border{
    border:3px solid #F8F9FA;
}

/** formulario de cliente fijo**/
.fixed-form {
    position:fixed;
    top:0;
    right:0;
    transform: translateX(100%);
    width:50%;
    min-width:300px;
    height:100%;
    background: #1c7430;
}
.fixed-form.appear {
    transform: translateX(0);
    transition: transform 0.2s ease-in;
}
.fixed-layer-background {
    position:fixed;
    top:0;
    right:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
}

