.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 102;
    padding: 30px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.1s, opacity 0.3s ease;
}
.modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    outline: none;
    background: none;
    font-size: 24px;
    color: #747474;
    font-weight: bold;
}
.modal__close:hover {
    color: #000;
}
.modal__container {
    position: relative;
    z-index: 22;
    width: 600px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px;
    margin: 0 auto;
    padding: 1px;
    background-color: transparent;
    text-align: center;
}

.modal__container img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .modal__container {
        width: 100%;
        height: auto;
    }
  }