.ezpost-img-circle {
    width: 150px;
    height: 150px;
    position: relative!important;
    overflow: hidden!important;
    border-radius: 50%!important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 200px;
	-webkit-transition: all ease-out 0.5s;
	-moz-transition: all ease-out 0.5s;
	-ms-transition: all ease-out 0.5s;
	-o-transition: all ease-out 0.5s;
	transition: all ease-out 0.5s;
}
/*.img-circle img {
    display: inline!important;
    margin: 0 auto!important;
    width: 100%!important;
    height: auto!important;
}*/

.ezpost-img-circle:hover {
	background-size: 225px;
}

.ezpost-hidden-info {
	position: absolute;
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	opacity: 0;
	/*display: none;*/
	-webkit-transition: all ease-out 0.8s;
	-moz-transition: all ease-out 0.8s;
	-ms-transition: all ease-out 0.8s;
	-o-transition: all ease-out 0.8s;
	transition: all ease-out 0.8s;
}
.ezpost-img-circle:hover .ezpost-hidden-info {
	opacity: 1;
	/*display: block;*/
}
.ezpost-img-circle a, .ezpost-img-circle a:hover {
	color: white;
}

.div-center {
    margin: 0 auto;
}

.float-left  { float:  left; }
.float-right { float: right; }


/****** MODAL *******/

/* The Modal (background) */
.ezpost-lightbox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%!important; /* Full width */
    height: 100%!important; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
}

/* Modal Content (Image) */
.ezpost-lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
.ezpost-lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.ezpost-lightbox-content, .ezpost-lightbox-caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.ezpost-lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.ezpost-lightbox-close:hover,
.ezpost-lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .ezpost-lightbox-content {
        width: 100%;
    }
} 