.hpx_contentblocker_wrapper {
    position: relative;
}

.hpx_contentblocker_overlay {
    background-color: #f2f2f2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    color: black;
    text-align: center;
    box-sizing: border-box;
}

.hpx_contentblocker_unblock_button {
    background-color: #000;
    color: white;
    padding: 10px 15px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: 0.1s;
    margin-bottom: 0 !important;
}

.hpx_contentblocker_unblock_button:hover {
    transform: scale(0.98);
}

.hpx_contentblocker_head_element {
    min-height: 300px;
    display: block;
    padding: 30px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .hpx_contentblocker_wrapper {
        border-top: transparent solid 200px;
        position: static;
        margin-bottom: 80px !important;
    }
}

@media only screen and (max-width: 400px) {
    .hpx_contentblocker_wrapper {
        border-top: transparent solid 500px;
        position: static;
        margin-bottom: 80px !important;
    }
}