/**
 * Style of modal close button
 */

/* close modal button */
.img-close-button {
    position: absolute;
    right: 1.5vw;
    top: 1.5vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    background-color: white;
    opacity: .9;
    padding: 10px;
    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;
}
.img-close-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* RESPONSIVE */
@media screen and (max-width: 900px) {
    .img-close-button svg {
        width: 18px;
        height: 18px;
    }
}
@media screen and (max-width: 480px) {
    .img-close-button {
        right: 10px;
        padding: 12px;
    }
    .img-close-button svg {
        width: 15px;
        height: 15px;
    }
}
@media screen and (max-width: 380px) {
    .img-close-button svg {
        width: 10px;
        height: 10px;
    }
}