.acf-block-preview .wp-block-popup{
    border: 2px dashed rgba(0,124,186,0.2);
    padding: 0 10px;
}

.html-content .wp-block-popup {
    position: fixed;
    padding: 13rem 8vw;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1099;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    overflow: scroll;
}

.html-content .wp-block-popup.show-popup {
    opacity: 1;
    pointer-events: auto;
    transition: all .3s linear;
}

.html-content .content-popup {
    background-color: white;
    overflow-y: auto;
    padding: 2em;
    border-radius: 1rem;
    box-shadow: 8px 8px 16px rgb(0 0 0 / 25%);
    min-width: 900px;
}

.html-content .wp-block-popup .popup-overlay {
    content: '';
    background-color: transparent;
    position: fixed;
    transition: background-color .2s ease;
    z-index: -1;
}

.html-content .wp-block-popup.show-popup .popup-overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 155 219 / 85%);
}

.html-content .close-popup-link {
    position: fixed;
    font-size: 40px;
    right: 5%;
    top: 17%;
    font-size: 40px;
}

body:not(.wp-admin) .wp-block-popup .icon-close:before {
    color: #fff;
}

html.prevent-overflow {
    overflow-y: hidden;
}

.html-content .content-popup .wp-block-table {
    font-size: 14px;
}

.html-content .content-popup .wp-block-table tbody > tr:first-child td,
.html-content .content-popup .wp-block-table tbody > tr > td:first-child {
    border: none;
    font-weight: 700;
}

.html-content .content-popup .wp-block-table tbody > tr:not(:first-child) td {
    border: none;
    border-bottom: 1px solid #F4F4F4;
}

.html-content .content-popup .wp-block-table tbody > tr > td:not(:first-child) {
    text-align: center;
}

.wp-block-buttons .wp-block-button a[href*="popup"]:before {
    background: url(../img/compare.png);
    background-size: cover;
}

.html-content .content-popup .wp-block-table tbody > tr:nth-child(2) img {
    border-radius: .5em;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.html-content .content-popup .wp-block-group p {
    padding: .5rem;
    font-size: 16px;
}

.html-content .content-popup :where(img[data-src*="check"], img[data-src*="close"]) {
    width: 24px !important;
}

.table-titles {
    gap: 0;
}

.table-titles > p:first-child {
    width: calc(45% - 1em);
    margin: 0.5em;
}

.table-titles > p:not(:first-child) {
    width: calc(22% - 1em);
    margin: 0.5em;
}