/*
 Theme Name:   Prisma Child Theme
 Theme URI:    https://prisma.axiomthemes.com/
 Description:  Prisma Child Theme
 Author:       AxiomThemes
 Author URI:   https://axiomthemes.com/
 Template:     prisma
 Version:      1.0.0
 Tags: agency, digital marketing, digital agency, company, computer repair, digital, it, it company, it services, saas, software, startup, technology, seo, ai
 Text Domain:  prisma
*/


/* =Theme customization starts here
------------------------------------------------------------ */

.single-post .post_header_single .post_meta_item.post_share{
    clear: both;
    display: block;
    width: auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 12px;
    font-size: 24px;
    margin-top: 12px;
}
.single-post .post_header_single .post_meta_item.post_share .social_items.inited::before{
    content:"Share: ";
}
.single-post .post_header_single .post_meta_item.post_share a{
    color:#fff !important;
    margin-right:12px;
}

/* Exit-Intent Popup Overlay */
#exit-intent-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#exit-intent-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Popup Content Box */
#exit-intent-popup-content {
    position: relative;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#exit-intent-popup-overlay.visible #exit-intent-popup-content {
    transform: scale(1);
}

/* Close Button */
#exit-intent-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0;
}

#exit-intent-popup-close:hover {
    color: #000;
}

/* Popup Text and Form */
#exit-intent-popup-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

#exit-intent-popup-content p {
    margin-bottom: 20px;
    color: #666;
}

#newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

#newsletter-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #0073aa; /* WordPress blue */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

#newsletter-form button[type="submit"]:hover {
    background-color: #005a87;
}