.v-view{
    font-weight: 700;
    color: #222;
    font-size: 16px;
    text-transform: uppercase;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    /*border: 2px solid #fff;*/
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    bottom: 0;
    margin: auto;
    opacity: 0;
    z-index: 2;
    background: #fff;
    border-radius: 100%;
    cursor: pointer;
}
.v-view:hover{
    background-color: #ffd000;
}
.product-thumb .image{
    position:relative;
    overflow:hidden;
}
.product-layout:hover .v-view{
    opacity: 1;
    -webkit-animation: zoomIn 300ms ease-in-out;
    -moz-animation: zoomIn 300ms ease-in-out;
    -ms-animation: zoomIn 300ms ease-in-out;
    animation: zoomIn 300ms ease-in-out;
}
.product-thumb .image:after{
    content: "";
    width: 0;
    height: 0;
    background: rgba(0,0,0,0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    pointer-events: none;
}
.product-layout:hover>.product-thumb .image:after{
    width: 100%;
    height: 91%;
}
.ui-dialog-titlebar-close{
    width: 36px;
    height: 36px;
    line-height: 36px;
    position: absolute;
    margin: 10px;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    padding: 0 0 18px 10px;
    font-style: normal;
    /*font-size: 28px;*/
    font-family: Arial,Baskerville,monospace;
    background: #999;
    border:0;
}
.ui-dialog-titlebar-close:after {
    content: 'x';
    color: #fff;
    margin: -10px -12px;
    position: absolute;
    font-size: 28px
}