/*
Theme Name:     Newspaper Child theme
Theme URI: 		http://themeforest.net/user/tagDiv/portfolio
Description:    Child theme made by tagDiv
Author:         tagDiv
Author URI: 	http://themeforest.net/user/tagDiv/portfolio
Template:       Newspaper
Version:        9.0c
*/


/*  ----------------------------------------------------------------------------
    This file will load automatically when the child theme is active. You can use it
    for custom CSS.
*/

/*
CSS for Login/Regd CTA pop-up for un-auth users  
*/

.blog-popup-modal {
    display: none;
    flex-direction: column;
    width: 100%;
    top: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    overflow: auto;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.45);
}

.close-button {
    cursor: pointer;
    position: relative;
    top: -60%;
    right: 0%;
}

.blog-popup-main-container {
    align-items: center;
    display: flex;
    justify-content: center;
    background: #ffffff;
    border-radius: 25px;
    margin: 12% auto;
}

.blog-popup-left-container {
    padding: 73px 27px 64px 26px;
    background: #f6f4fe;
    border-radius: 25px 0px 0px 25px;
}

.blog-popup-right-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 21px 47px 23px;
}

.blog-popup-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: #1d1934;
    width: 246px;
}

.blog-popup-sub-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #777585;
    margin-top: 24px;
    width: 357px;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid rgba(196, 196, 196, 0.3);
    box-shadow: 0px 4px 8px rgba(93, 77, 168, 0.1);
    border-radius: 16px;
    width: 392px;
    margin-top: 16px;
    padding: 20px 22.75px 21px 16px;
}

.button-heading {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000000;

    /* margin :20px 22.75px 21px 16px;   */
}

.button-container-right {
    display: flex;
    align-items: center;
}

.action-button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    /* text-transform: capitalize; */
    color: #6f00be;
    cursor: pointer;
    border: none;
    background-color: transparent;
    margin-right: 12.25px;
    padding: 0px;
}

.right-arrow-image {
    width: 16.5px;
    height: 14px;
}

@media screen and (max-width: 768px) {
    .blog-popup-main-container {
        flex-direction: column !important;
        margin: 25% auto !important;
    }

    .blog-popup-modal{
        margin-top: 5%;
    }

    .blog-popup-left-container {
        padding: 18px 65px 12px 71px;
        background: #f6f4fe;
        border-radius: 16px 16px 0px 0px;
    }

    .blog-popup-right-container {
        align-items: center;
        padding: 26px 15px 37px 17px;
    }

    .blog-popup-title {
        text-align: center;
        width: 234px;
        font-size: 14px;
    }

    .blog-popup-sub-title {
        text-align: center;
        width: 252px;
        margin-top: 16px;
    }

    .button-container {
        width: 268px;
        margin-top: 24px;
    }

    .action-button {
        font-size: 14px;
        margin-right: 7.5px;
    }

    .close-button {
        top: -103%;
        right: -45%;
    }
}

/*
-------------------End ----------------------
*/