.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
}
.modal-content {
    background: white;
    width: 70%;
    height: 85%;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}
.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    color: rgb(73, 73, 73);
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.close-button:hover {
    color: rgb(220, 212, 212);
    background: #3a3939;
}
.modal iframe {
    width: 100%;
    height: 90%;
    border: none;
    margin-top: 24px;
}
.logo {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 120px;
    height: 'auto';
    object-fit: 'contain';
}
.roi-widget__button {
    width: 100%;
}
