.info-message-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    padding: 10px;
}

.info-message {
    background: #fff;
    padding: 30px 20px;
    max-width: 500px;
    position: relative;
}

.info-message p {
    line-height: 1.5;
}

.info-message p:last-child {
    margin-bottom: 0;
}

.info-message img {
    transform: translate(0, -3px);
}