@import 'https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@100..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap';

.paywall .container {
    min-width: 0 !important;
}

.paywall {
    background-color: #02C98F;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 30px 0;
    z-index: 150;
    max-width: 800px;
    width: 80dvw;
    border: none !important;
    display: none;
}

#paywall-backdrop {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 102;
    display: none;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}


.paywall__close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
}

.paywall__close:hover {
    background: transparent !important;
}

.paywall__close svg {
    pointer-events: none;
}

.paywall__illustration {
    height: 100%;
}

.paywall__illustration img {
    width: 300px;
    max-width: 90%;
    height: auto;
}

.paywall__action {
    background-color: white;
    border-radius: 8px;
    padding: 15px 6px;
    box-sizing: border-box !important;
    width: 100%;
    font-size: 15px;
    text-decoration: none !important;
}

.paywall__action--google,
.paywall__action--upgrade {
    color: black !important;
}

.paywall__action--google svg {
    fill: orange !important;
}

.paywall__action--google:hover,
.paywall__action--upgrade:hover {
    background-color: white !important;
    color: black !important;
}

.paywall__action--email:hover {
    background-color: #1E3166 !important;
    color: white !important;
}

.paywall__action--email {
    background-color: #1E3166;
    color: white !important;
}



.paywall__action svg {
    height: 18px;
    width: 18px;
    display: inline-block;
    margin-right: 10px;
}

.paywall__content {
    padding: 30px 0;
}

.paywall__content h2 {
    font-family: anek telugu, sans-serif !important;
    font-size: 48px;
    color: black;
    line-height: 48px;
}

.paywall__content h2 span {
    color: #084FD5;
}

.paywall__content p {
    margin-bottom: 20px;
    color: black;
}

.paywall__existing {
    font-size: 14px;
    color: #00160F;
    margin-top: 30px;
}

.paywall__existing a {
    font-size: 16px;
    color: #084FD5;
    font-weight: 600;
    text-decoration: underline;
}

.hover-pop {
    transition: all .15s ease-in-out
}

.hover-pop:hover {
    transform: scale(1.05)
}

[data-animate="paywall-image"] {
    opacity: 0;
    /* Initially hidden */
    transform: translate3d(0, 100px, 0);
    /* Initially translated */
    animation: fadeInUp 700ms ease-in-out forwards;
}

[data-animate="paywall-content"] {
    opacity: 0;
    /* Initially hidden */
    animation: fadeIn 300ms ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media only screen and (max-width:768px) {
    .paywall {
        padding: 30px 10px 10px;
    }

    .paywall .container, .paywall .row, .paywall .col-md-6, .paywall .col-md-7, .paywall .col-md-4 {
        padding: 0 !important;
        margin: 0 !important;
        min-width: 0 !important;
    }

    .paywall__action--google {
        margin-bottom: 15px;
    }

    .paywall__content {
        padding-bottom: 0;
    }

    .paywall__content h2 {
        font-size: 18px;
        margin: 0 0 10px 0;
        text-align: center;
    }

    .paywall__content p {
        text-align: center;
    }

    .paywall__illustration img {
        width: 120px;
        height: auto;
    }
}
