:root {
    --iframe-blocker-bg: #272729;
    --iframe-blocker-color: white;
}

.axeptio-iframe-blocker {
    display: flex;
    visibility: visible;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    padding: 1rem;
    text-align: center;
    inset: 0;
    background-color: var(--iframe-blocker-bg);
    color: var(--iframe-blocker-color);
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    &__button {
      text-decoration: underline;
    }
}

.axeptio-iframe-blocker-visibility {
    opacity: 1!important;
    transition: none;
    z-index: 10000;
}

.axeptio-iframe-blocker__button {
    background-color: var(--iframe-blocker-bg);
    color: var(--iframe-blocker-color);
    border: 1px solid var(--iframe-blocker-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.axeptio-iframe-blocker__button:hover {
    background-color: var(--iframe-blocker-color);
    color: var(--iframe-blocker-bg);
}