﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Reset CSS */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: #000;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: 400;
    font-size: 10pt;
    color: #CECECE;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body * {
    line-height: 130%;
    box-sizing: border-box;
}

* {
    outline: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Stop all animations */

.mraid.stop-all-animations *,
.mraid.stop-all-animations *:before,
.mraid.stop-all-animations *:after,
.rtb.stop-all-animations *,
.rtb.stop-all-animations *:before,
.rtb.stop-all-animations *:after {
    /* CSS transitions */
    -o-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    /* CSS transforms */
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /* CSS animations */
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}


/* Clearfix Hack */

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


/* Display-Hide states by default */

.blocker::after,
.show-redirect::after,
.show-redirectreturn::after,
.show-redirectservice::after,
.show-redirectxhrreturn::after,
.show-immediatesubscribe::after,
.show-alreadysubscribed::after,
.show-confirmation::after,
.show-congrats::after,
.show-subscriptionpolling::after {
    /* Blocker overlay */
    content: '';
    background-color: rgba(27, 27, 27, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
}

#blocker {
    width: 300px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) !important;
    z-index: 9999;

    display: none;
}

.blocker #blocker {
    display: block;
}

#blocker p {
    display: block;
    font-size: 12px;
    color: #fff;
    padding: 0 0 10px 0;
}


/* Expandable banner */

#banner,
#expand {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
}

#banner {
    overflow: hidden;
}

#expand {
    z-index: 9;
    /* Change if required */
}

/* ********************************* */

#container {
    display: block;
    min-height: 100%;
}

#close {
    /* ID can be close or mraid-close */
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 100%;
    border: 1px solid #fff;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    /* Close button to float above on all states except blocker */
}

#close::after {
    content: "x";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 1px 0 0;
}

#creative,
#design {
    display: block;
}

#creative {
    display: flex;
    flex-direction: column;
}

#design {
    position: relative;
    /* flex-grow: .75; */
    flex-direction: column;
    display: flex;
    overflow: hidden;
}

.states > *:not(:last-child) {
    margin-bottom: 20px;
}

#footer {
    padding: 20px;
    border-top: 1px solid #2B2B2B;
}

.logo {
    background: url(/img/SecretLover/logo.svg) no-repeat;
    width: 100%;
    height: 40px;
    background-position: center;
    background-size: contain;
    margin-top: 10px;
}

.btn {
    width: 100%;
    max-width: 320px;
    height: 90px;
    border: 0;
    border-radius: 50px;
    background: #A65AEC;
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    animation: pulse 1.5s ease infinite normal;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes pulse{
    0% {
        transform: scale(0.9);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

#external-links {
    padding: 10px 0 0;
    font-size: 12px;
    line-height: 2;
}

.price-point span {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
}

.right-of-withdrawal,
.price-point+p {
    font-size: 11px;
}

#disclaimer p:nth-child(1) {
    margin-bottom: 10px;
}

.phone-input, #input-pin {
    width: 100%;
    height: 60px;
    display: flex;
    margin: auto;
    overflow: hidden;
    border-radius: 4px;
    align-items: center;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
}

.phone-input .phone {
    background-color: rgba(236, 236, 236, 50%);
    border-right: 1px solid #BBB;
    color: #000;
    padding: 10px;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin-right: 10px;
}

#input-number, #input-pin {
    text-align: left;
    height: 60px;
    display: flex;
    margin: auto;
    overflow: hidden;
    align-items: center;
    box-sizing: border-box;
    background-color: #fff;
    margin: 10px 0;
    position: relative;
    border: none;
    font-family: 'Roboto', sans-serif;
    flex: 1 1;
}

#checkmark, #checkmark1 {
    display: none;
}

.phone-input .checkmark-container {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.phone-input * {
    font-size: 15pt;
}

.checkmark__icon, .errormark__icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #7ac142;
    -webkit-animation: fill .4s .4s forwards, scale .3s .9s both;
    animation: fill .4s .4s forwards, scale .3s .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    -webkit-animation: stroke .6s cubic-bezier(0.65,0,0.45,1) forwards;
    animation: stroke .6s cubic-bezier(0.65,0,0.45,1) forwards;
}

.checkmark__check {
    transform: scale(0.75);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: stroke .3s cubic-bezier(0.65,0,0.45,1) .8s forwards;
    animation: stroke .3s cubic-bezier(0.65,0,0.45,1) .8s forwards;
}

@-webkit-keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes scale {
    0%,
    100% {
        -webkit-transform: none;
                transform: none;
    }
    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
                transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes scale {
    0%,
    100% {
        -webkit-transform: none;
                transform: none;
    }
    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
                transform: scale3d(1.1, 1.1, 1);
    }
}

@-webkit-keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.numberentry-msg {
    font-size: 12pt;
    font-weight: 500;
    color: #fff;
}

.numberentry-msg span {
    font-size: inherit;
    font-size: 10pt;
    display: block;
    margin-top: 6px;
    font-weight: normal;
}

.call-to-action-text {
    font-weight: 600;
    font-size: 20px;
    text-align: center;

    color: #FFFFFF;
}

.call-to-action-text span {
    color: #A65AEC;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 20px;
}

#directsubscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cards {
    display: flex;
    gap: 10px;

    width: 100%;
    max-width: 1200px;
    margin: auto;
}

@media only screen and (orientation: portrait) {
    .cards {
        flex-wrap: nowrap;
        overflow-x: scroll;
        scrollbar-width: none;

        padding: 10px;
    }
}

@media only screen and (orientation: landscape) and (max-width: 1000px) {
    .cards {
        flex-wrap: nowrap;
        overflow-x: scroll;
        scrollbar-width: none;

        padding: 10px;
    }
}

.card-wrapper {
    flex-basis: 33.33%;

    display: flex;
    position: relative;

    border-radius: 12px;
    overflow: hidden;
}

@media only screen and (orientation: portrait) {
    .card-wrapper {
        flex-basis: 90%;
        flex-shrink: 0;
    }
}

@media only screen and (orientation: landscape) and (max-width: 1000px) {
    .card-wrapper {
        flex-basis: 75%;
        flex-shrink: 0;
    }
}

.profile-img {
    width: 100%;
    position: relative;
}

.profile-img::after {
    content: "";
    width: 100%;
    height: 100%;
    
    position: absolute;
    left: 0;
    top: 0;

    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.6) 100%);
}

.profile-img img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
}

.card-info {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;

    width: 100%;
    padding: 20px;
    box-sizing: border-box;

    text-align: left;

    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.card-user-info {
    flex-grow: 1;
}

.username {
    font-weight: 200;
    font-size: 40px;

    display: flex;
    gap: 5px;
}

.verified::after {
    content: "";
    width: 15px;
    height: 15px;

    background: url(/img/SecretLover/verified.svg) center no-repeat;
    background-size: contain;

    margin-top: 10px;
}

.age {
    color: #8F8F8F;
}

.status {
    color: #00CB14;
    font-weight: 500;
    font-size: 12px;

    display: flex;
    align-items: center;
    gap: 5px;
}

.status::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #00CB14;
    border-radius: 100%;
}

.country img {
    width: 27px;
    height: 16px;
    object-fit: cover;
}

.card-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-action-btn {
    width: 50px;
    height: 50px;
}

.like {
    background: url(/img/SecretLover/heart.svg) center no-repeat;
    background-size: contain;
}

.chat {
    background: url(/img/SecretLover/chat.svg) center no-repeat;
    background-size: contain;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;

    margin-top: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.card-title::before {
    content: "";
    width: 13px;
    height: 20px;

    background: url(/img/SecretLover/lightening.svg) center no-repeat;
    background-size: contain;
}

.design {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#directsubscribe,
#subscriptionpolling,
#congrats,
.confirmation {
    display: none;
}

.show-directsubscribe #directsubscribe,
.show-subscriptionpolling #subscriptionpolling,
.show-congrats #congrats,
.show-confirmation .confirmation {
    display: flex;
}

.popup {
    width: calc(100% - 40px);
    max-width: 480px;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;

    border-radius: 12px;
    background-color: #000000;
    padding: 20px;
}

.confirmation h2, #congrats {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.confirmation small {
    font-size: 10px;
    margin-top: -10px;
}

.preloader {
    width: 50px;
    height: 50px;
    background: url(/img/SecretLover/loader.svg) center no-repeat;
    background-size: 50px auto;
    margin: auto;
}

@-webkit-keyframes preloader {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes preloader {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

#congrats {
    padding-top: 60px;
    padding-bottom: 60px;
}

.paypal-buttons {
    height: 80px !important;
    position: absolute !important;
    left: 0;
    top: 0;
    opacity: 0;
    bottom: 0;
    margin: auto;
}

.btn {
    position: relative;
}
