Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.8 kB
4
Indexable
body.eg-show-popup {
    overflow: hidden;
}

html body.eg-show-popup .entry-content>div:nth-child(13) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 600px !important;
    display: flex;
    flex-direction: column;
    grid-gap: 0 !important;
}

html body.eg-show-popup .entry-content>div:nth-child(13)>div {
    grid-gap: 0 !important;
}

html body.eg-show-popup .entry-content>div:nth-child(13)>div .wp-block-columns {
    flex-direction: column;
    grid-gap: 0;
}

html body.eg-show-popup .entry-content>div:nth-child(13)>div .wp-block-columns h2 {
    text-align: center;
    margin-top: 0;
}

html body.eg-show-popup .entry-content>div:nth-child(13)>div .wp-block-columns p {
    text-align: center;
    margin-bottom: 18px;
    margin-top: 11px;
}

html body.eg-show-popup .entry-content>div:nth-child(13)>div .wp-block-columns p>br {
    display: none;
}

html body.eg-show-popup .entry-content>div:nth-child(13)>div .wp-block-columns>.wp-block-column:last-child p {
    margin-bottom: 0 !important;
}

html body.eg-show-popup .eg-close-icon {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

html body.eg-show-popup .eg-close-icon::before {
    content: '\00D7';
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

html body:not(.eg-show-popup) .eg-close-icon {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    html body.eg-show-popup .entry-content>div:nth-child(13) {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    html body.eg-show-popup .entry-content>div:nth-child(13) {
        width: 90%;
    }
}
Leave a Comment