.big-img:target a.close-img-btn {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: transparent;
	border: none;
	border-radius: 0;
}
.big-img:target a.close-img-btn:hover {
    border-color: #0779d1;
    background-color: transparent;
    color: #0779d1;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.big-img:target a.close-img-btn:before {
	content: 'X';
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #ffffff;
    color: #333333;
    z-index: 4000;
    font-weight: 600;
    font-size: 16px;
    border-radius: 100%;
    border: 4px solid #eeeeee;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.big-img:target a.close-img-btn:hover:before {
    border-color: #0779d1;
    background-color: #ffffff;
    color: #0779d1;
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}