@charset "utf-8";

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal__bg {
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content {
    width: 80%;
    max-width: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.modal__img {
    width: 100%;
}