.fancybox-layout2{
    position: relative;
}
.fancybox-layout2 img{width: 100%;}
.fancybox-layout2 img,
.fancybox-layout2 .overlay-area{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.fancybox-layout2 .overlay-area {
    border: 30px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    background: none repeat scroll 0 0 rgba(247, 185, 38, 0.9);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transform: scale(0.1);
	-moz-transform: scale(0.1);
	-webkit-transform: scale(0.1);
    opacity: 0;
}

.fancybox-layout2:hover .overlay-area {
    transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
    opacity: 1;
}

.fancybox-layout2 .overlay-area:not(:empty)::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.fancybox-layout2 .overlay-area:not(:empty) {
    font-size: 0.001px;
}
.fancybox-layout2 .cshero-fancybox-content{
    color: #ffffff;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
.fancybox-layout2.arrow-item-left:before,
.fancybox-layout2.arrow-item-right:after{
    position: absolute;
    top: 50%;
    font-size: 30px;
}
.fancybox-layout2.arrow-item-left:before{
    content: "\f104";
    left: -40px;
    font-family: FontAwesome;
}
.fancybox-layout2.arrow-item-right:after{
    content: "\f105";
    right: -40px;
    font-family: FontAwesome;
}
