/**
 * Style of modal close button
 */

.img-close-button {
    position: absolute;
    right: 1.5vw;
    top: 1.5vh;
    cursor: pointer;
    background-color: white;
    opacity: .9;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    z-index: 999999;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.8rem;
	-webkit-transition: color .5s;
	-o-transition: color .5s;
	transition: color .5s;
}
.img-close-button:hover {
    color: var(--main-orange);
}
/* RESPONSIVE */
@media screen and (max-width: 750px) {
    .img-close-button {
        font-size: 1.5rem;
        padding: 15px;
    }
}
@media screen and (max-width: 480px) {
    .img-close-button {
        right: 10px;
        padding: 12px;
        font-size: 1.2rem;
        padding: 10px;
    }
}