.ghm-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(5px);
    z-index: 999999;
}

.ghm-popup-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1070px;
    width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    height: auto;
    margin: auto;
    border-radius: 10px;
    box-shadow: -0.2px 10px 13.5px 1.5px rgba(51, 51, 51, .5);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
}

.ghm-popup-content-area {
    text-align: center;
    padding: 3rem;
}

.ghm-popup-content-area .ghm-gdpr-heading h2 {
    font-size: 32px;
}

.ghm-popup-content-area .ghm-gdpr-content {
    height: 300px;
    width: 100%;
    border: 1px solid black;
    overflow-y: auto;
    padding: 15px
}

.ghm-popup-content-area .ghm-gdpr-content .ghm-gdpr-iframe {
    height: 100%;
    width: 100%;
}

.ghm-popup-content-area .ghm-gdpr-terms {
    margin-block-start: 0.9rem;
}

.ghm-popup-content-area .ghm-gdpr-terms input,
.ghm-popup-content-area .ghm-gdpr-terms label {
    cursor: pointer;
}

.ghm-terms-button {
    border: none;
}

.ghm-terms-button.disabled,
.ghm-terms-button.disabled:hover {
    background-color: gray;
    cursor: auto;
}