.logo {
    width: 8em;
    position: absolute;
    left: 1em;
    top: 1em;
}

div.hidden,
span.hidden{
    display: none;
}

span.spin {
    -webkit-animation: spin 50s linear infinite;
    animation: spin 50s linear infinite;
}

.spin-reverse {
    -webkit-animation: spin 12s ease-in-out infinite;
    animation: spin 12s ease-in-out infinite;
}

span.pulse {
    -webkit-animation: spin-pulse 200s linear infinite;
    animation: spin-pulse 200s linear infinite;
}

/*@-webkit-keyframes spin {*/
/*    0% {*/
/*        -webkit-transform: rotateZ(0);*/
/*        transform: rotateZ(0) scale(1);*/
/*    }*/

/*    50% {*/
/*        -webkit-transform: rotateZ(180deg);*/
/*        transform: rotateZ(180deg) scale(1.2);*/

/*    }*/

/*    100% {*/
/*        -webkit-transform: rotateZ(180deg);*/
/*        transform: rotateZ(180deg) scale(1);*/
/*    }*/
/*}*/

@keyframes spin {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    20% {
        -webkit-transform: rotateZ(5deg);
        transform: rotateZ(5deg);
    }
    40% {
        -webkit-transform: rotateZ(-5deg);
        transform: rotateZ(-5deg);
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
}
@keyframes spinless {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    20% {
        -webkit-transform: rotateZ(3deg);
        transform: rotateZ(3deg);
    }
    40% {
        -webkit-transform: rotateZ(-3deg);
        transform: rotateZ(-3deg);
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
}
@keyframes spinminimal {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    20% {
        -webkit-transform: rotateZ(1deg);
        transform: rotateZ(1deg);
    }
    40% {
        -webkit-transform: rotateZ(-1deg);
        transform: rotateZ(-1deg);
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
}
.overflowhidden{
    overflow: hidden;
}
body{
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background: none;
    font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*color: #fff;*/
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
}


body.nonembed{
    display: flex;
    height: auto;
    overflow-y: auto;
    /*background-color: #d9d9d9;*/
    /*background-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);*/
    margin: 0;
    padding-bottom: 20px;
    justify-content: flex-start;
    animation: fadein 800ms ease-out;
    position: relative;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

#username{
    top: auto;
    left: auto;
    text-decoration: none;
    color: #000;
    position: relative;
}
.circle {
    border-radius: 57%;
    left: calc(50% - 0em);
    top: calc(48% - 10em);
    -webkit-transform-origin: 50% 12.5em;
    transform-origin: 0% 10.5em;
}

.squircle {
    border-radius: 25%;
}

.circle, .squircle {
    width: 7.5em;
    height: 7.5em;
    position: absolute;
    border-top: 0.1em solid rgba(255, 255, 255, 0.4);
}

.large.circle {
    box-shadow: 0 1em 2em rgba(0, 0, 0, 0.5);
}

.small {
    width: 4em;
    height: 4em;
    left: calc(50% - 2em);
    top: calc(50% - 15em);
    -webkit-transform-origin: 50% 15em;
    transform-origin: 50% 15em;
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.2);
}

.one {
    background: rgba(230, 57, 70, 0.77);
    -webkit-transform: rotateZ(225deg);
    transform: rotateZ(225deg);
}

.two {
    background: #fff;
    background: rgba(255, 255, 255, 0.96);
    margin-top: -76vh;
    /*margin-top: -45.9vh;*/
    background-color: #d9d9d9;
    background-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
}
.two.nonembed{
    margin-top: -440px;
}

.large.squircle{
    position: relative;
    /* background: rgba(30, 7, 66, 0.65); */
    /* background: rgba(255, 255, 255, 0.84); */
    border: none;
    /*left: calc(50% - 5.5em);*/
    /*top: calc(50% - 8em);*/
    width: 80vw;
    height: 76vh;
    /*max-height: 520px;*/
    /*-webkit-transform: none;*/
    /*transform: none;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    /*box-shadow: 0 0 17px rgba(0, 0, 0, 0.4);*/
    /*box-shadow: 0 0 17px -6px rgba(0, 0, 0, 0.58);*/
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.52);
}
.large.squircle.nonembed{
    max-height: none;
    width: 500px;
    max-width: 82vw;
    height: 440px;
}
.large.squircle.one {
    background-color: #000000;
    background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%);
    will-change: transform;
}

.content {
    text-align: center;
    /* padding: 1em 4.9em; */
    width: 74%;
    height: 100%;
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h1,
#card_t,
#card_t_rel,
#comp #h1{
    font-weight: bold;
    font-size: 1em;
    text-align: left;
    margin: 0 auto 1em;
}

#card_t_rel{
    margin-top: 5vh;
}

.content p{
    font-size: 12px;
    text-align: left;
}

.message {
    position: absolute;
    left: 1em;
    bottom: 1em;
    right: 0;
    color: #222;
    text-align: left;
}
.message a {
    text-decoration: none;
    font-weight: bold;
    color: #999;
}

#handle:hover{
    animation: none;
}

#track,
#track_comp{
    /*box-shadow: inset 0 0 20px 10px #3d6cff0a;*/
    /*box-shadow: inset 0 0 6px 0px #00000012;*/
    /*box-shadow: inset 0 0 6px 0px #00000024;*/
    box-shadow: inset 0 0 6px 0 #00000014;
    border-radius: 500px;
    width: 90vw;
    margin: 41px 0 0;
    display: flex;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
}
#track{
    width: 240px;
    max-width: 90%;
}
#track.nonembed{
    width: 240px;
    max-width: 90%;
}
#track_comp.nonembed{
    width: 364px;
    max-width: 90%;
    margin: 0 0 0 12px;
}
#track_comp.nonembed #handle{
    height: 40px;
    width: 40px;
}
#track_comp.nonembed #htxt{
    font-size: 12px;
    margin-left: 13px;
}
body.nonembed #comp,
body.alignleft #comp{
    /*margin-top: 40px;*/
    margin: 0;
    height: 72px;
    max-width: 100%;
}
#comp.em-c{
    justify-content: center;
}
#handle,
#handle_comp{
    background-image: url('https://subscribe.to/assets/img/brand/logo.png');
    width: 43px;
    z-index: 99;
    border-radius: 50%;
    height: 43px;
    /*background: #3D6CFF;*/
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    will-change: transform;
    /*background-color: #000000;*/
    /*background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%);*/
    /*mix-blend-mode: multiply;*/
}
#htxt,
#htxt_comp{
    color: #6d6d6d;
    font-weight: 600;
    text-align: center;
    z-index: 90;
    position: absolute;
    left: 50%;
    /*transform: translate3d(-50%, -50%, 0);*/
    transform: translate(-50%, -50%);
    width: fit-content;
}
#htxt{
    font-size: 13px;
    margin-left: 14px;
    top: 50%;
}
#track_comp #htxt{
    font-size: 15vh;
    margin-left: 17vh;
    top: 52%;
}
#htxt_comp.nonembed,
#htxt_comp.nonembed{
    font-size: 13px;
    margin-left: 12px;
}
#p,
#p_comp,
#p_2{
    font-size: 10px;
    top: 1em;
    margin-top: 24px;
    position: relative;
    color: #989898;
    text-align: center;
}
#p_2{
    top: 0;
    margin-top: 0;
}
#p a{
    text-decoration: none;
    color: #989898;
}
#sub_m #p_2 a{
    color: #989898;
}

#card-c{
    color: #fff;
    top: -11px;
    position: relative;
    text-align: center;
    font-size: 12px;
    margin-bottom: 7px;
    cursor: pointer;
}
#card-inner-2-comp{
    margin-left: 6px;
}
#card-inner-2-comp.comp_success{
    display: flex;
    align-items: center;
    user-select: none;
}

#card-inner-2-comp #card_t_rel{
    user-select: none;
    font-size: 16px;
    color: #656464;
    margin: 15px 0 0 0;
    text-align: center;
}

body.nonembed #card-inner-2-comp #card_t_rel{
    margin-top: -8px;
}

#invalidemail{
    font-size: 10px;
    color: #FF5722;
    position: absolute;
    top: 0;
    left: 2px;
    font-weight: bold;
}

#cb{
    /*position: absolute;*/
    background: #dadada;
    height: 5px;
    width: 30px;
    margin: 0 auto;
    border-radius: 8px;
    left: 0;
    right: 0;
    top: 1px;
    opacity: 1;
    animation: fadeInOpacity 150ms ease-out 1;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#ba{
    background: #fff;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    position: relative;
    display: block;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: #fff;
    top: 2px;
    position: relative;
    margin-right: 1px;
}

#go{
    cursor: pointer;
    background: #000;
    background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%);
    border-radius: 50%;
    padding: 7px 9px 11px 10px;
    font-weight: bold;
    margin-left: 11px;
    height: 15px;
    width: 13px;
    display: flex;
    align-items: center;
}

#go svg{
    fill: #fff;
    /*transform: scale(1.2);*/
}

.t{
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}
.d{
    font-size: 11px;
    color: #5d5d5d;
    margin: 8px 0 7px;
    line-height: 17px;
    text-align: left;
}

#i_email,
#i_email_comp{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 9px;
    border-radius: 13px;
    width: 223px;
    max-width: 85%;
    font-size: 11px;
    margin-top: 16px;
    outline: none;
    background: none;
    border: 1px solid #c3c3c3;
    color: #000;
    height: 35px;
    line-height: 30px;
    box-shadow: none;
    transition: box-shadow 0.08s ease-in;
}
#i_email:focus{
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.09);
}
#i_email_comp:focus{
    border: 1px solid #9ca2a7;
}
#i_email::placeholder,
#i_email_comp::placeholder{
    color: #828282;
    font-size: 13px;
    position: relative;
    top: -1px;
}

#em-c{
    display: flex;
    align-items: flex-end;
    position: relative;
}
#comp #em-c{
    justify-content: center;
}

#em-c.hidden{
    display: none;
}

#top.hidden{
    display: none;
}

#suggestions_container{
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    padding-bottom: 24px;
    /*-ms-overflow-style: none;*/
    /*scrollbar-width: none;*/
}

#suggestions_container::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    height: 5px;
}
#suggestions_container::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(188, 188, 188, 0.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}

#suggestions_container a{
    text-decoration: none;
    font-size: 12px;
}

#suggestions_container .rel{
    padding: 18px 12px;
    border-radius: 10px;
    background: none;
    color: #000;
    margin: 7px 5px;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.18);
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
}

#suggestions_desc{
    margin: 9px 0 23px;
}

#card_d_rel{
    font-size: 12px;
    text-align: left;
}

#welcome{
    color: #808080;
    position: absolute;
    top: 24px;
    font-size: 12px;
}

#welcome_rel{
    color: #808080;
    position: relative;
    margin: 0 0 25px;
    font-size: 12px;
}

#wid{
    position: relative;
    height: 85vh;
    width: initial;
    margin-top: 6vh;
    opacity: 1;
    color: #000;
    transition: opacity 800ms ease-out;
}

#wid-wrap-out{
    display: flex;
    flex-direction: column;
    background: #eaeaea2e;
    background: #f3f3f3;
    padding: 25px 0;
    border-radius: 21px;
    width: 420px;
    max-width: 86%;
    height: 147px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
#wid-wrap-out.hidden{
    display: none;
}
#wid-wrap-out.nolinks{
    height: 195px;
    width: 350px;
    margin-bottom: 84px;
    /*background-color: #f1f1f1;*/
    /*background-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);*/
}
#wid-wrap-out.nolinks #wid-wrap-out-inner{
    position: relative;
    top: -3px;
}
#wid-wrap-out-inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 78%;
    margin: 0 auto;
}
#wid-wrap{
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: auto;
    overflow: hidden;
    padding: 0 0 5px;
}
#wid-wrap-out.nolinks #wid-wrap{
    top: 14px;
}
#wid-wrap-out #wid-wrap{
    position: relative;
    left: -14px;
    top: 9px;
    height: 59px;
    width: 251px;
    max-width: 95%;
    justify-content: flex-start;
}
#wid-wrap-out #card-inner-2-comp,
body.alignleft #card-inner-2-comp{
    margin-left: 14px;
}
#wid-wrap-text{
    font-weight: bold;
    font-size: 16px;
    margin: 4px auto 14px;
    color: inherit;
}

#wid-wrap-out.nolinks #wid-wrap-text{
    text-align: left;
    margin: 4px auto 13px;
}
#wid-wrap-desc{
    font-size: 12px;
    margin: 0 0 2px 0;
}
#owneredit{
    cursor: pointer;
    padding: 0 9px;
    margin-left: -10px;
}
#bio_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    color: #a0a0a0;
    font-style: italic;
}
#bio{
    width: 350px;
    max-width: 86%;
    min-height: 100px;
    background: none;
    text-align: center;
    line-height: 1.6em;
}
#bio:focus{
    outline: none;
}
.flex{
    display: flex;
}
.flex-center-all{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-column{
    flex-direction: column;
}
.pointer{
    cursor: pointer;
}
#form_website{
    display: block;
    text-decoration: none;
    font-size: 13px;
    margin: 12px auto 5px;
    color: #9c9c9c;
    font-weight: bold;
}
#form_website.noimg{
    margin-bottom: 0;
}
.editablefocus{
    outline: auto 5px royalblue;
    outline: auto 5px -webkit-focus-ring-color;
}
#wid-wrap.comp{
    height: 100px;
}
#wid-wrap.wnone{
    height: 0;
}
#wid-wrap.subscribed{
    max-height: 392px;
}
#wid-wrap.subscribed #wid{
    max-height: 392px;
    margin-top: 20px;
}
#wid.nonembed{
    height: 440px;
    margin-top: 5vh;
}
#body_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin: 0 0 30px 0;
    justify-content: flex-start;
    position: relative;
    align-items: center;
}
/*#body_inner.bodyowner{*/
/*margin-bottom: 50px;*/
/*}*/
.privacy_comp_nonembed{

}
#sub_d{
    font-size: 14px;
}

#settings{
    text-align: right;
    margin-top: -40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 99;
}

#settings svg{
    fill: #afafaf;
}

#subscribed2.is_embed{
    background: none;
    margin: 0;
    padding: 0;
    height: 113vh;
}

#wid-inner{
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}
body.nonembed #card-inner-2-comp #card_t_rel,
body.alignleft #card-inner-2-comp #card_t_rel{
    text-align: left;
    margin-top: 12px;
}
#subscribed,
#subscribed2{
    padding: 40px 20px;
    border-radius: 50px;
    background: #f3f3f3;
    margin-top: -37px;
    width: 90vw;
    height: 64vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);*/
    margin-left: auto;
    margin-right: auto;
}
#subscribed.nonembedw3,
#subscribed2.nonembedw3{
    width: 65vw;
    max-width: 450px;
    height: 61vh;
}
#subscribed.nonembedw3{
    max-height: 270px;
}
#subscribed2.nonembed{
    justify-content: flex-start;
    margin-left: -7px;
}
#subscribed2.nonembed #p_2{
    display: none;
}
#subscribed{
    margin-top: 17px;
}

#subscribed_inner{
    margin-top: -9px;
}

#sub_t{
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

#sub_m{
    margin: 41px 0 0;
    font-size: 12px;
}

#sub_m span{
    /*background: #000; */
    padding: 10px 0;
    border-radius: 4px;
    /* background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%); */
}

#sub_m a{
    text-decoration: none;
    color: #909090;
}
#myimage{
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    max-height: 95vw;
    user-select: none;
}
#imageformremove{
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 3px 10px;
    font-size: 14px;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 2px 0 #00000073;
}

#formimage{
    display: none;
}

#formimageform{
    position: relative;
    z-index: 3;
    margin: 0 auto 40px;
}
#formimageform.hasimg{
    margin: 0 auto;
}

#formimg{
    width: 130px;
    height: 130px;
    max-width: 90vw;
    max-height: 90vw;
    border: 8px solid #efecec;
    border-radius: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 7px -2px #9e9e9e;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.custom-file-upload{
    background: #f6f2f2;
    width: 167px;
    height: 167px;
    max-width: 95vw;
    max-height: 95vw;
    border-radius: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3aeae;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto;
}


.custom-file-upload:hover,
.custom-file-upload.hasimg:hover,
.custom-file-upload.loading,
.custom-file-upload.hasimg.loading{
    background: #000000c4;
    color: #fff;
    width: 168px;
    height: 168px;
    font-size: 18px;
}

.custom-file-upload:hover{
    width: 167px;
    height: 167px;
}

.custom-file-upload.hasimg{
    background: none;
    color: transparent;
}

#subs_count{
    font-size: 15px;
    margin: -2px auto 50px;
    background: #000;
    color: #fff;
    padding: 7px 10px;
    font-weight: bold;
    border-radius: 11px;
}
#subs_count.noimg{
    margin-top: 19px;
}

@media (max-width: 390px) {
    #i_email,
    #i_email_comp{
        max-width: 79%;
        font-size: 16px;
    }
    body.alignleft #i_email,
    body.alignleft #i_email_comp{
        max-width: 85%;
    }
    #comp #card_t{
        margin-left: 13px;
    }
    body.alignleft #comp #card_t{
        margin-left: 4px;
    }
    #i_email::placeholder{
        /*top: 1px;*/
    }
}

.large.squircle.one#bg.step2{
    background-color: #f2cf07;
    background-image: linear-gradient(315deg, #f2cf07 0%, #55d284 74%);
}

.large.squircle.one#bg.step3{
    background-color: #05e8ba;
    background-image: linear-gradient(315deg, #05e8ba 0%, #087ee1 74%);
}

.flip {
    -webkit-animation: rotate-90-cw 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-90-cw 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.flip2{
    -webkit-animation: rotate-360-cw 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-360-cw 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

#card_2,
#card_3{
    /*transform: rotate(-180deg);*/
    opacity: 0;
    height: 0;
    margin-top: 0;
    overflow: hidden;
}

#card_2.translate{
    /*transform: translateY(-2vh);*/
}



#card_3 .card-inner.isembed{
    transform: translateY(-4vh);
}

.collapsed{
    opacity: 0;
    transition: opacity 0.3s ease-out 0.3s;
    height: 0;
}

#card_2.fade{
    transition: opacity 0.3s ease-out 3s;
    opacity: 1;
    height: auto;
}
.mb3{
    margin-bottom: 3em;
}

#card_2.opacity{
    transition: all 0.3s ease-out 0.3s;
    opacity: 1;
    height: auto;
    overflow: visible;
    /*margin-bottom: 20px;*/
}

#card_3.opacity{
    transition: opacity 0.3s ease-out 0.3s;
    opacity: 1;
    display: flex;
    overflow: visible;
    flex-direction: column;
    height: 80%;
    justify-content: center;

}

#wid #card_3.opacity{
    margin-top: 80px;
}

#comp #card_3.opacity{
    margin-top: -11px;
}

#card_t3{
    margin-top: 4px;
    margin-bottom: 20px;
}

#card_2.hidden{
    display: none;
}

#card_2.c2s3{
    margin: 0 0 34px;
}

#wid-inner.widi-s3{
    justify-content: flex-end;
}

#top{
    position: absolute;
    right: 30px;
    top: 23px;
    display: flex;
    align-items: center;
    z-index: 999;
}

#top.t2{
    bottom: 23px;
    left: 30px;
}

#log, #prev-a{
    cursor: pointer;
    background: #e4e4e4;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}

#options_inner .prev-unav{
    color: #a2a2a2;
    pointer-events: none;
}

#prev_reset{
    position: absolute;
    background: #000000cf;
    padding: 2.5vh;
    font-size: 14px;
    color: #fff;
    bottom: 12vh;
    border-radius: 14px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 4px 1px #272727;
    left: 50%;
    transform: translateX(-50%);
}

#options_inner .prev-unav svg{
    fill: #bbb;
}

#top-o{
    display: flex;
    margin-left: 2px;
}

#top-o.hidden{
    display: none;
}
#top-m{
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    justify-content: center;
    height: 35px;
    width: 35px;
    top: -8px;
    position: relative;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#top-m.hidden{
    display: none;
}
#top-m svg{
    fill: #808080;
    width: 13px;
    top: 0;
    left: 1px;
}

#top svg{
    fill: #808080;
}

#top{
    display: flex;
}

#prev-a svg{
    width: 12px;
    top: 0;
}

#log svg{
    width: 13px;
    height: 11px;
    top: 1px;
}

#c_1{
    margin-top: 44px;
}
#comp #c_1.hidden{
    display: none;
}

@-webkit-keyframes rotate-90-cw {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes rotate-90-cw {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@-webkit-keyframes rotate-360-cw {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes rotate-360-cw {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}



@media (max-width: 500px) {
    #sh{
        width: 120px;
        height: 120px;
        position: absolute;
    }
    .large.squircle{
        width: 82vw;
        /*height: 65vw;*/
    }
    .large.squircle.nonembed{
        width: 82vw;
    }
    /*#top-m .close_btn{*/
    /*    top: -1px;*/
    /*    left: 0;*/
    /*}*/
    #card_t3 {
        margin-top: 45px;
    }
    #card_3.opacity{
        /*height: 65%;*/
        /*justify-content: flex-start;*/
    }
    /*.content{*/
    /*    min-height: 64%;*/
    /*}*/
    /*.two{*/
    /*    margin-top: -65vw;*/
    /*}*/
    /*.content h1{*/
    /*    font-size: 14px;*/
    /*}*/
    /*.content p{*/
    /*    font-size: 11px;*/
    /*}*/
    /*#htxt{*/
    /*    margin-left: 4px;*/
    /*}*/
}

@media (max-width: 400px) {
    #wid-wrap-out{
        height: 197px;
    }
    #body_inner{
        /*margin-bottom: 95px;*/
    }
    .large.squircle{
        width: 87vw;
        height: 76vh;
        /*width: 84%;*/
        /*height: 89.5%;*/
        /*margin-left: auto;*/
        /*margin-right: auto;*/
    }
    .two{
        margin-top: -76vh;
    }
    #track_comp #htxt{
        font-size: 4.6vw;
        margin-left: 16vh;
        top: 51%;
    }
}


/*envelope*/

.container, .envelope, .flip, .letter, .text, .text:before, .text:after {
    position: absolute;
}

.card_container_inner {
    position: relative;
    margin: auto;
    height: 82px;
    width: 128px;
    background: #ddd;
    border-radius: 6px;
    box-shadow: 0px 0px 3px #000;
}

.card_container{
    position: relative;
    margin-bottom: 15%;
}

.envelope {
    border-top: 34px solid transparent;
    border-left: 64px solid #fa565a;
    border-bottom: 48px solid #fa565a;
    border-right: 64px solid #ed4c50;
    border-radius: 6px;
    z-index: 9;
}

.flip {
    top: 0;
    left: 0;
    border-top: 35px solid #c94548;
    border-left: 64px solid transparent;
    border-bottom: 46px solid transparent;
    border-right: 62px solid transparent;
    border-radius: 6px;
    z-index: 6;
}

.letter {
    top: 0;
    left: 4px;
    height: 80px;
    width: 120px;
    background: #ddd;
    border-radius: 6px;
    z-index: 5;
}

.text {
    top: 10px;
    left: 12px;
    height: 6px;
    width: 100px;
    background: #b0b0b0;
}

.text:before, .text:after {
    content: '';
    height: 100%;
    background: #b0b0b0;
    left: 0;
}

.text:before {
    top: 10px;
    width: 50px;
}

.text:after {
    top: 20px;
    width: 65px;
}

/*Classes to be Added and removed*/
.open {
    animation: flipOpen 0.4s ease-in forwards;
}

.close {
    animation: flipClose .4s ease-in forwards;
}

.letterOpen {
    transform: translateY(-40px);
    transition: .3s ease-in;
}

.letterClose {
    transform: translateY(0px);
    transition: .3s ease-in;
}

@keyframes flipOpen {
    0% {
        transform: rotateX(0deg);
        transform-origin: center top;
    }
    100% {
        transform: rotateX(180deg);
        transform-origin: center top;
    }
}
@keyframes flipClose {
    0% {
        transform: rotateX(180deg);
        transform-origin: center top;
    }
    100% {
        transform: rotateX(0deg);
        transform-origin: center top;
    }
}
button {
    color: #ddd;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100px;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    border: none;
    letter-spacing: 1px;
    background: #ed4c50;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: none;
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

#open {
    margin-top: -10px;
    margin-bottom: 8px;
}

#close {
    outline: none;
    background: #ccc;
    color: #ddd;
    cursor: not-allowed;
}

#open:focus ~ #close {
    cursor: pointer;
    background: #ed4c50;
}


b:first-child {
    color: #E31B23;
    text-shadow: 0 0 3px #000;
}

b:last-child {
    color: blue;
    text-shadow: 0 0 2px #000;
}

hr {
    width: 300px;
    margin: 100px auto;
    height: 4px;
    background-color: #666;
    border: 0px;
}

#card_options{
    opacity: 0;
    height: 0;
    pointer-events: none;
    overflow: hidden;
}

#card_options.opacity{
    pointer-events: all;
    transition: all 0.3s ease-out;
    opacity: 1;
    height: auto;
    overflow: visible;
    transform: translateY(20px);
}

#options_inner svg{
    fill: #1e242b;
    width: 3em;
    height: 3em;
    top: 0.7em;
}

body.forceblack #options_inner svg{
    fill: #adadad;
    width: 3em;
    height: 3em;
    top: 0.7em;
}

#login svg{
    fill: #333;
}

#logout{
    display: block;
    text-decoration: none;
}
#logout .icon{
    fill: #00000047;
}
body.forceblack #logout .icon{
    fill: #6969698f;
}

#card_options .icon-exit{
    top: 3px;
}

#options_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.card_opt{
    font-size: 14px;
    cursor: pointer;
    padding: 14px;
    width: 37%;
    color: #4c4c4c;
    max-width: 37%;
    height: 9.6em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: box-shadow 0.25s linear;
    flex-basis: 77px;
    min-width: 95px;
    flex-grow: 1;
    margin: 5px 0;
}

body.forceblack .card_opt{
    color: #909090;
}

@media (max-width: 446px) {

    #options_inner,
    #stats_cont{
        flex-direction: column;
    }

    #options_inner #prev{
        border:none;
        padding: 14px;
    }
    #options_inner #stats{
        padding: 14px;
    }
    #card_options{
        margin-top: -30px;
    }
    #options_inner .card_opt{
        display: flex;
        justify-content: center;
    }

    #stats_cont{
        margin-top: 30px;
    }

    .card_opt,
    .stats_card{
        display: flex;
        flex-direction: row;
        min-width: 85%;
        align-items: center;
        justify-content: flex-start;
        max-height: 4.5em;
        padding: 2px 8px 0 9%;
    }

    .stats_card .stats_desc{
        margin: 0 0 10px;
        height: auto;
    }

    .subsection_wrapper{
        flex-direction: column;
    }

    .stats_right{
        justify-content: flex-start;
        align-items: flex-start;
        top: -5px;
        position: relative;
        height: auto;
        margin-left: 7px;
    }

    .stats_data .stats_data_inner{
        font-size: 11px;
        padding: 7px 8px;
    }

    #stats_cont .stats_data{
        margin: 0;
        top: 5px;
        position: relative;
    }

    #stats_cont .stats_card{
        padding-left: 0;
        width: 94%;
        margin: 7px 0px;
    }

    body #options_inner svg.icon{
        top: auto!important;
        width: 1.8em!important;
        height: 1.8em!important;
        margin-right: 13px;
    }

    #stats_unsubscriptions .stats_desc{
        text-align: left;
    }

    .stats_card .stats_image{
        width: 3.5em;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #login_qr #login_qr_img #login_img{
        width: 135px;
        height: 135px;
    }

    #login{
        margin-top: 0;
    }

    #prev svg{
        top: 2px;
    }
}

.card_opt:hover{
    /*box-shadow: 0 0 7px 2px rgba(0, 0, 0, 1);*/
}

#login{
    transition: box-shadow 0.25s linear;
}

/*#login:hover{*/
/*    box-shadow: 0 1px 3px rgba(47, 47, 47, 0.26);*/
/*}*/

.card_opt_sec {
    margin: 14px 0 0;
    border-radius: 18px;
    top: 2em;
    position: relative;
    padding: 15px;
    font-size: 14px;
    cursor: pointer;
    color: #808080;
}

body.forceblack .card_opt_sec{
    margin: 14px 0 0;
    border-radius: 18px;
    top: 2em;
    position: relative;
    padding: 15px;
    font-size: 14px;
    cursor: pointer;
    color: #7b7b7b8c;
    /*background: #000000;*/
    /*background-image: linear-gradient(147deg, #151515 0%, #0e0e0e 74%);*/
    /*box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.65);*/
}

/*#prev{*/
/*    color: #fff;*/
/*    background: linear-gradient(87deg, #f5365c 0, #f56036 100%) !important;*/
/*}*/

#prev{
    border-right: 1px solid #00000005;
    padding: 14px 30px 14px 10px;
}
/*#stats{*/
/*    color: #fff;*/
/*    background: linear-gradient(87deg, #11cdef 0, #1171ef 100%) !important;*/
/*}*/

#stats{
    padding: 14px 10px 14px 30px;
}

#comp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    overflow: visible;
    max-height: 100vh;
    color: #000;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    transition: opacity 800ms ease-out;
}


#comp.hidden,
#wid.hidden{
    display: inherit;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
}

#subscribed.hidden,
#subscribed2.hidden{
    display: inherit;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
}

#track_comp{
    margin: 0 auto;
}

#h1_comp{
    font-weight: bold;
    font-size: 0.9em;
    text-align: left;
    margin: 0 auto 1em;
}

.subsection_wrapper{
    display: flex;
    justify-content: space-evenly;
}

.subsection_txt{
    font-size: 19px;
    margin: 1.4em 0 1.5em;
    font-weight: bold;
    color: #4c4c4c;
}

body.forceblack .subsection_txt{
    font-size: 19px;
    /*margin: 1em 0 3em;*/
    margin: 1.4em 0 1.5em;
    font-weight: bold;
    color: #bfbfbf;
}

.close_btn{
    font-size: 18px;
    color: #4a4a4a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#stats_cont{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    opacity: 1;
    height: initial;
    width: initial;
    overflow: initial;
    transform: translateY(0);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#stats_cont.hidden{
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    transform: translateY(-20px);
}

#stats_cont img{
    width: 100%;
}

.stats_image{
    height: 81px;
    width: auto;
}

.stats_card{
    padding: 14px;
    border-radius: 0;
    width: 37%;
    /*box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.65);*/
    /*background: #000000;*/
    /*background-image: linear-gradient(147deg, #1f1f1f 0%, #101010 74%);*/
}
#stats_subscribers{
    border-right: 1px solid #00000005;
    padding: 14px 30px 14px 10px;
}

#stats_unsubscriptions{
    padding: 14px 10px 14px 30px;
}

body.forceblack .stats_card{
    padding: 14px;
    border-radius: 20px;
    width: 37%;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.27);
    color: #909090;
    background: #000000;
    background-image: linear-gradient(147deg, #1f1f1f 0%, #1c1d23 74%);
}

.stats_desc{
    font-size: 13px;
    margin: 2px auto 0;
    font-weight: bold;
    color: #4c4c4c;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats_data{
    margin: 0.5em 0 0.7em;
}

.stats_data_inner{
    font-size: 14px;
    color: #909090;
    padding: 9px 13px;
    border-radius: 6px;
    font-weight: bold;
    background: none;
    box-shadow: inset 0 0 4px 0 #4444441c;
}
body.forceblack .stats_data_inner{
    font-size: 14px;
    color: #fff;
    padding: 9px 13px;
    border-radius: 6px;
    font-weight: bold;
}

/*#stats_subscribers .stats_data_inner{*/
/*    background: #131313;*/
/*}*/

/*#stats_subscribers .stats_desc{*/
/*    color: #909090;*/
/*}*/

/*#stats_unsubscriptions .stats_desc{*/
/*    color: #909090;*/
/*}*/

/*#stats_unsubscriptions .stats_data_inner{*/
/*    background: #131313;*/
/*}*/

#login_qr_img{
    border-radius: 40px;
    display: inline-block;
    padding: 14px 17px;
    background-color: #000000;
    box-shadow: inset 0 0 7px 0 rgba(0, 0, 0, 0.65);
    background-image: linear-gradient(147deg, #1f1f1f 0%, #101010 74%);
}

#login_qr_img #login_img{
    display: block;
    height: 165px;
    width: 165px;
    background-repeat: no-repeat;
    background-size: contain;
}

.stats_right{
    display: flex;
    flex-direction: column;
}
#wid-inner.overflow{
    overflow-y: scroll;
}

#comp .card-inner #card_d{
    display: none;
}

#comp #wid-inner{
    position: relative;
    background: none;
    width: 100%;
    height: 100%;
}
body.nonembed #comp #wid-inner{
    width: 100%;
}
body.nonembed #comp #wid-inner.flip{
    justify-content: flex-start;
}
body.forceblack #wid-inner{
    background-color: #000000;
    background-image: linear-gradient(147deg, #252525 0%, #080808 74%);
}

#wid-inner.white{
    background-color: #c7c7c7;
    background-image: linear-gradient(315deg, #c7c7c7 0%, #ffffff 74%);

}



#comp #wid-inner.flip{
    animation: none;
    -webkit-animation: none;
    position: relative;
    top: 0;
    left: auto;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#comp #card_t{
    margin-bottom: 2px;
}

#comp #card_2.opacity{
    margin-bottom: 0;
    margin-top: 0;
    max-width: 99%;
}

#comp #p{
    /*margin-top: 4px;*/
    top: 3px;
    font-size: 8px;
    display: flex;
    margin: 0 auto;
    align-items: flex-end;
}
body.nonembed #comp #p{
    top: 6px;
}
#p_publicversion{
    position: relative;
    margin-top: 35px;
    bottom: 0;
    color: #dadada;
    text-decoration: none;
    font-size: 12px;
    background: #151414;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 999;
}

#comp #card_3{
    display: none;
}

#comp #card_3.opacity{
    display: flex;
}

#comp #card_options{
    display: none;
}

#comp #card_3.opacity{
    display: flex;
}

#comp #card_3.opacity .card-inner{
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    overflow: hidden;
}

#comp #card_3.opacity .card-inner.isembed{
    margin-top: 8px;
    padding-left: 16%;
}
body.alignleft #comp #card_3.opacity .card-inner.isembed{
    margin-top: 6px;
    padding-left: 4px;
}
.card_cont_column{
    display: flex;
    flex-direction: column;
    margin-left: -6px;
}
#comp .card_container{
    transform: scale(0.2);
    margin-bottom: -6px;
    margin-left: -10%;
}

#comp #card_t3{
    margin-bottom: 0;
    margin-left: 2px;
}
#comp #track{
    margin: 0 auto;
}
#comp #handle{
    width: 56vh;
    height: 56vh;
    min-width: 30px;
    min-height: 30px;
}
#handle{
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
#comp #h1{
    font-size: 16px;
    margin-bottom: 10px;
}
#comp .t{
    margin: 0 0 10px 4px;
    font-size: 12px;
}
#comp #c_1{
    margin-top: 5px;
    display: flex;
    flex-direction: column;
}

#subscribed2.nonembed{
    height: 45px;
    background: none;
}
#subscribed2 #sub_m{
    margin-top: 0;
}
#comp #i_email_comp{
    margin-top: 2px;
    height: 31px;
}
#comp #go{
    height: 13px;
    width: 11px;
    margin-left: 8px;
}
#comp #p a{
    color: inherit;
    text-decoration: none;
    /*border-bottom: 1px solid #dadada;*/
}
#links{
    margin: 20px auto 44px;
    font-size: 17px;
    width: 350px;
    max-width: 86%;
}
#links.filteropacity{
    filter: opacity(0.5);
}
#links.compact{
    /*margin-top: -30px;*/
    margin-top: 0;
}

#links_list{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 22;
}
.link{
    border: 2px solid #000;
    text-decoration: none;
    border-radius: 19px;
    position: relative;
    z-index: 10;
    flex-grow: 1;
    user-select: none;
    width: 100%;
    margin: 21px auto 0;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.link_wrap.is-being-dragged .link{
    opacity: 0.2;
}
.link_wrap.is-being-dragged .remove_link{
    opacity: 0.2;
}
.link_form_wrap{
    display: flex;
    width: 92%;
    height: 100%;
    align-items: center;
}
.link_form_wrap input{
    border-radius: 12px;
    flex-grow: 1;
    height: 65%;
    box-shadow: none;
    padding-left: 14px;
    border: none;
    font-size: 16px;
}
.link_form_wrap input.hidden{
    display: none;
}
.link_form_wrap input:focus{
    outline: none;
}
.link_form_wrap span{
    width: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    left: 4px;
}
.link_form_wrap span.expand{
    flex-grow: 1;
}
#header_wrap{
    display: flex;
    flex-direction: column;
    margin-bottom: 17px;
    width: 550px;
    max-width: 82%;
    margin-top: -41px;
}
#header_wrap.own{
    margin-top: -8px;
}
#header_wrap.noimg{
    /*margin-top: 61px;*/
}
#header{
    width: 100%;
    height: 48px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
#home{
    color: #dadada;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    padding: 0;
    width: auto;
}
#logo-image{
    background-image: url('https://subscribe.to/assets/img/brand/logo.png');
    height: 30px;
    width: 30px;
    background-size: cover;
    display: inline-block;
    margin-right: 8px;
    top: 8px;
    position: relative;
}
#page_header{
    /*margin: 0 0 -2px;*/
    margin: 67px 0 40px;
    text-align: center;
}
#page_header.headerhasimg{
    margin: 0;
}
#page_title{
    font-size: 24px;
    margin: -9px 0 10px;
}
#page_description{
    font-size: 13px;
    margin: 0 auto;
    width: 420px;
    max-width: 75%;
}
#cta_header{
    font-size: 15px;
    position: relative;
    font-weight: bold;
    color: #d2d2d2;
    padding: 12px;
    margin: -27px 0 4px;
    /* top: 8px; */
    /* left: 11px; */
}

#p.hosted_powered{
    margin: 82px 0 50px;
    font-size: 13px;
}
#p.hosted_preview{
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    margin: 50px 0;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 23px;
    background: #000000;
    background-image: linear-gradient(315deg, #000000 0%, #171717 74%);
}
#links_cta{
    text-align: center;
    margin: 23px 0 40px;
    font-weight: bold;
}
.link_wrap{
    display: flex;
    align-items: center;
}
#tabs_wrap,
#tabs_wrap2{
    display: flex;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    margin: 35px 0 0;
}
#tabs_wrap2{
    justify-content: center;
    margin-top: 24px;
    position: relative;
    z-index: 9;
}
#tabs,
#tabs2{
    display: flex;
    justify-content: space-evenly;
    border-radius: 17px;
    font-size: 12px;
    padding: 7px 6px;
    max-width: 310px;
}
.wid_mode,
.links_mode{
    padding: 4px 10px;
    border-radius: 17px;
    cursor: pointer;
    user-select: none;
}
.wid_mode.selected,
.links_mode.selected{
    background: #000000;
    background-image: linear-gradient(315deg, #000000 0%, #232323 74%);
    color: #fff;
}
#yoursubscriptions{
    text-align: left;
    font-size: 12px;
    margin: -15px 0 26px;
}
#yoursubscriptions a{
    color: inherit;
}
#my_link{
    margin: 0 auto 50px;
    position: relative;
    z-index: 30;
    font-size: 13px;
    max-width: 90%;
}
#my_link_inner{
    display: flex;
    align-items: center;
    border-radius: 28px;
}
#my_link_href{
    flex-grow: 1;
    padding: 10px 11px;
    background: #f6f2f2;
    border: none;
    outline: none;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}
a#subscribed2_a{
    display: block;
    height: 28px;
    top: -2px;
    position: relative;
    color: #909090;
    font-weight: bold;
}
@media (pointer:coarse) {
    #my_link_href{
        font-size: 16px;
    }
}
#my_link_desc{
    margin-top: 7px;
    padding: 3px 11px;
}
#copy_link{
    cursor: pointer;
    user-select: none;
    padding: 6px 11px;
    color: #fff;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    background: #000000;
    background-image: linear-gradient(315deg, #000000 0%, #232323 74%);
    display: flex;
    align-items: center;
    padding-bottom: 7px;
    padding-right: 14px;
}
#my_link_icon{
    position: relative;
    top: 1px;
}
.visible_you{
    text-align: right;
    font-size: 10px;
    margin: 0 5px 5px 0;
    color: #b7b7b7;
}
#welcome_back{
    background: #f6f2f2;
    font-size: 11px;
    width: 100%;
    text-align: center;
    padding: 0 0 0 9px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}
#wlc_txt{
    padding: 12px 10px;
}
#prev_cont img{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
#privacy,
#privacy_comp{
    font-size: 10px;
    text-align: left;
    margin-top: 23px;
    color: #6d6d6d;
    opacity: 0.7;
}
#privacy a{
    text-decoration: none;
    border-bottom: 1px solid #dadada;
    color: #989898;
    position: relative;
    z-index: 99;
}
#tempwarning{
    z-index: 999;
    position: absolute;
    top: 63px;
    font-size: 13px;
    margin: 0 auto;
    width: 100%;
}
#tempwarning.tempwarning_comp{
    top: 0;
    font-size: 11px;
    width: 107%;
}

#tempwarning_inner{
    width: 80%;
    margin: 0 auto 0 0;
    background: #040709;
    color: #fff;
    padding: 9px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-image: linear-gradient(315deg, #263749 0%, #000000 74%);
}

#tempwarning.tempwarning_comp #tempwarning_inner{
    margin: 0 auto;
    border-radius: 8px;
}

#tempwarning .icon{
    animation: wobble 4s infinite ease-in-out;
}
@keyframes wobble {
    0%,
    100% {
        transform: scale(1);
        transform-origin: 50% 50%;
    }
    6% {
        transform: scale(1.15) rotate(-9deg);
    }
    12% {
        transform: scale(1.20) rotate(9deg);
    }
    18% {
        transform: scale(0.95) rotate(-1.9deg);
    }

}

#tempwarning a{
    color: #fff;
    font-weight: bold;
}
#openinapp{
    text-align: left;
    font-size: 14px;
    position: relative;
    top: 23px;
}
#openinapp a{
    color: #5d5d5d;
    text-decoration: none;
    position: relative;
    z-index: 999;
}
#openinapp_comp{
    font-weight: normal;
    margin-left: 6px;
    color: #505050;
    font-size: 11px;
}
#openinapp_comp a{
    text-decoration: none;
    color: #505050;
}
#hidden_widget_msg{
    font-size: 14px;
    margin: -18px 0 68px;
    color: #b7b7b7;
}
#hidden_widget_msg.hidden{
    display: none;
}
.dots-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    margin: 0 -5%;
    overflow: hidden;
    width: 30px;
}
.dots-anim{
    position: relative;
    left: -9999px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #7c7c7c;
    color: #7c7c7c;
    box-shadow: 9991px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;

}
.dots-anim.animated{
    animation: dotsanim 1.5s infinite linear;
}
.owner{
    font-size: 16px;
    position: absolute;
    top: -10%;
    left: -19px;
}
#backtodash{
    position: relative;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
}
#backtodash a{
    font-size: 13px;
    padding: 16px 19px;
    text-decoration: none;
    color: #000;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 6px;
    position: relative;
}

#imgformresp.show{
    font-size: 13px;
    margin: -12px auto 63px;
}
@keyframes dotsanim {
    0% {
        box-shadow: 9991px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;
    }
    16.667% {
        box-shadow: 9991px -10px 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;
    }
    33.333% {
        box-shadow: 9991px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;
    }
    50% {
        box-shadow: 9991px 0 0 0 #7c7c7c, 9999px -10px 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;
    }
    66.667% {
        box-shadow: 9991px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;
    }
    83.333% {
        box-shadow: 9991px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px -10px 0 0 #7c7c7c;
    }
    100% {
        box-shadow: 9991px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10007px 0 0 0 #7c7c7c;
    }
}
.s2s_pulse{
    animation: s2s_pulse_main 2.6s ease-out infinite;
}
.s2s_pulse_comp{
    animation: s2s_pulse_comp_main 2.6s ease-out infinite;
}
.s2s_pulse::after {
    display: inline-flex;
    content: '';
    animation: s2s_pulse 2.6s ease-out infinite;
    /*will-change: transform;*/
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.5);
}

@keyframes s2s_pulse_2 {
    0% {
        transform: scale3d(0.65, 0.65, 0.65);
        opacity: 0;
    }

    20% {
        /*transform: scale3d(0.85, 0.85, 0.85);*/
        opacity: 1;
    }

    60% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }

    100% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
}
.s2s_pulse_comp::after {
    content: '';
    animation: s2s_pulse 2.6s infinite ease-out;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.5);
}
#awards{
    position: absolute;
    top: 20px;
    left: 30px;
    display: flex;
}
#awards img{
    width: 12px;
    padding: 5px;
    background: #f1ebeb;
    border-radius: 23px;
    margin: 0 1px;
}
#awards_comp{
    display: flex;
    margin-right: 3px;
    position: relative;
    top: -2px;
    /*position: absolute;*/
    /*top: 20px;*/
    /*left: 32px;*/
}
#awards_comp img{
    width: 10px;
    padding: 0 1px;
    border-radius: 23px;
    position: relative;
    top: 2px;
}
#award_category img{
    left: -12px;
    position: relative;
}
#awards.hidden{
    display: none;
}
#changetheme[data-theme="white"] svg#changetheme-dark{
    fill: #ebebeb;
}
#changetheme[data-theme="black"] svg#changetheme-dark{
    fill: #36373b;
}
.powered{
    top: 0;
    font-size: 8px;
    display: flex;
    margin: 0 auto;
    align-items: flex-end;
    position: relative;
    text-decoration: none;
    color: #b7b7b7;
}
#card_t.card_t_rel{
    font-weight: bold;
    font-size: 1em;
    text-align: left;
    margin: 11vh auto 1em;
}

#card_d.card_d_rel{
    font-size: 12px;
    text-align: left;
    color: #000;
}
#wid #go span{
    display: none;
}
#card_lay{
    background: #e8e8e8;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    opacity: 0.98;
    border-radius: 50px;
    display: flex;
    color: #656464;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}
#card_lay.card_lay_comp{
    position: relative;
    font-size: 16px;
    width: 100vw;
    height: 81vh;
    background: none;
}
#card_lay.hidden{
    display: none;
}
#changetheme{
    position: absolute;
    user-select: none;
    right: 10px;
    padding: 20px 0 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#changetheme svg{
    padding: 12px;
    height: 24px;
    width: auto;
    position: relative;
    top: -1px;
    fill: #ebebeb;
    cursor: pointer;
}
body.nonembed #body_inner.bodyowner #changetheme svg{
    opacity: 0.4;
    height: 21px;
    top: -2px;
    fill: #b5b5b5;
}
#wid.nonembed #card_3.opacity{
    margin-top: -260px;
}
#footer{
    font-size: 13px;
    color: #757575;
    position: absolute;
    bottom: 0;
    padding: 31px 0 41px;
    text-align: center;
}
#footer a{
    text-decoration: none;
    color: inherit;
}

@keyframes s2s_pulse_main {
    0% {
        transform: scale3d(1, 1, 1);
    }

    20% {
        transform: scale3d(1.07, 1.07, 1.07);
    }

    60% {
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}
@-webkit-keyframes s2s_pulse {
    0% {
        -webkit-transform: scale3d(0.65, 0.65, 0.65);
        transform: scale3d(0.65, 0.65, 0.65);
        opacity: 0;
    }

    20% {
        /*transform: scale3d(0.85, 0.85, 0.85);*/
        opacity: 1;
    }

    60% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
}
@keyframes s2s_pulse {
    0% {
        -webkit-transform: scale3d(0.65, 0.65, 0.65);
        transform: scale3d(0.65, 0.65, 0.65);
        opacity: 0;
    }

    20% {
        /*transform: scale3d(0.85, 0.85, 0.85);*/
        opacity: 1;
    }

    60% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
}
@keyframes s2s_pulse_comp_main {
    0% {
        transform: scale3d(1, 1, 1);
    }

    20% {
        transform: scale3d(1.02, 1.02, 1.02);
    }

    60% {
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}
@keyframes s2s_pulse_comp {
    0% {
        transform: scale3d(0.95, 0.95, 0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale3d(1, 1, 1);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale3d(0.95, 0.95, 0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
@media (max-width: 300px) {
    #welcome{
        display: none;
    }
}
@media (max-width: 400px) {
    #welcome{
        font-size: 11px;
    }
}
@media (max-height: 480px){
    .content p{
        display: none;
    }
}
@media (max-height: 350px) {
    #wid #c_1{
        margin-top: 5vh;
        font-size: 6.8vh;
    }
    #track{
        margin-top: 7vh;
        width: 175px;
    }
    #handle{
        height: 32px;
        width: 32px;
    }
    #htxt{
        font-size: 11px;
        margin-left: 11px;
    }
}
@media (max-width: 300px) {
    #wid .content{
        width: 77%;
    }
    #wid .content h1, #wid #card_t, #wid #card_t_rel, #wid #comp #h1{
        font-size: 0.8em;
    }
    #wid #handle{
        width: 35px;
        height: 35px;
    }
    #wid #sh{
        width: 50px;
        height: 50px;
    }
    #wid #htxt{
        font-size: 4vw;
        margin-left: 9px;
    }
    body.forceblack #stats_subscribers{
        width: 90%;
    }
    .stats_card .stats_image{
        width: 2em;
    }
    body.forceblack #stats_subscribers,
    body.forceblack #stats_unsubscriptions{
        padding: 14px 10px;
        margin: 7px auto;
        width: 80%;
    }
    #wid .stats_desc{
        font-size: 12px;
    }
    #privacy{
        font-size: 9px;
        margin-top: 5vh;
    }
    .subsection_txt{
        font-size: 14px;
    }
    #login_qr #login_qr_img #login_img{
        width: 109px;
        height: 109px;
    }
    #login_qr_img{
        border-radius: 44px;
        padding: 11px 12px;
    }
    #awards img{
        width: 9px;
    }
    #options_inner .card_opt{
        font-size: 13px;
        justify-content: flex-start;
        margin: 0 auto;
        padding: 10px 0!important;
    }
    .card_opt_sec{
        font-size: 11px;
    }
    #track{
        max-width: 100%;
        margin-top: 5vh;
    }
    .dots-cont{
        padding: 1rem 0;
        width: 24px;
    }
    .dots-anim{
        width: 2px;
        height: 2px;
        box-shadow: 9994px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10004px 0 0 0 #7c7c7c;
    }
    body #options_inner svg.icon{
        margin-right: 12px;
    }
    #options_inner .card_opt span{
        text-align: left;
    }
    #wid #em-c{
        flex-direction: column;
        align-items: flex-start;
    }
    #wid #i_email{
        max-width: 100%;
        border-radius: 4px;
        padding: 0 5px;
    }
    #wid #go{
        width: 62px;
        max-width: 90%;
        border-radius: 4px;
        margin: 9px 0 0;
        padding: 5px 0;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #wid #go span{
        display: flex;
        margin-right: 2px;
    }
    #wid #go svg{
        position: relative;
        top: 1px;
    }
    #wid #card_t3{
        margin-top: 23px;
    }
    #wid #card_3 .card_container{
        transform: scale(0.7);
    }
    .spin-reverse {
        -webkit-animation: spinless 10s ease-in-out infinite;
        animation: spinless 10s ease-in-out infinite;
    }
    .large.squircle{
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    }
    .large.squircle{
        height: 79vh;
    }
    #prev_reset{
        font-size: 8px;
    }
    .two{
        margin-top: -79vh;
    }
    #wid #p{
        top: -3px;
    }
    #c_1{
        margin-top: 8vh;
    }
    #awards{
        display: none;
    }
    .subsection_wrapper{
        position: relative;
        top: 6vh;
    }
}
@media (max-width: 400px) and (max-height: 400px) {
    .content p{
        display: none;
    }
    #wid{
        height: 90vh;
    }
    #wid .content h1{
        font-size: 0.7em;
    }
    .card_opt_sec{
        margin-top: 0;
    }
    #options_inner{
        top: 23px;
        position: relative;
    }
    #options_inner .card_opt{
        font-size: 13px;
        justify-content: flex-start;
        margin: 0 auto;
        padding: 10px 0!important;
    }
    .card_opt_sec{
        top: 1.4em;
        font-size: 11px;
    }
    .subsection_txt{
        display: none;
    }
    .subsection_wrapper{
        position: relative;
        top: 27px;
    }
    .large.squircle{
        height: 80vh;
    }
    .two {
        margin-top: -80vh;
    }
    #wid #p a{
        position: relative;
        top: -14px;
    }
}

@media (max-width: 200px) {
    #wid .content{
        width: 77%;
    }
    #wid .content h1, #wid #card_t, #wid #card_t_rel, #wid #comp #h1{
        font-size: 0.6em;
    }
    #wid #handle{
        width: 30px;
        height: 30px;
    }
    #wid #sh{
        width: 40px;
        height: 40px;
    }
    #wid #htxt{
        font-size: 9px;
        margin-left: 13px;
    }
    body.forceblack #stats_subscribers{
        width: 90%;
    }
    .stats_card .stats_image{
        width: 2em;
    }
    body.forceblack #stats_subscribers,
    body.forceblack #stats_unsubscriptions{
        padding: 14px 10px;
        margin: 7px auto;
        width: 80%;
    }
    #wid .stats_desc{
        font-size: 11px;
    }
    #privacy{
        font-size: 9px;
    }
    .subsection_txt{
        display: none;
    }
    #login_qr #login_qr_img #login_img{
        width: 109px;
        height: 109px;
    }
    #login_qr_img{
        border-radius: 44px;
        padding: 11px 12px;
    }
    #awards img{
        width: 9px;
    }
    .card_opt_sec{
        font-size: 11px;
    }
    .content p{
        display: none;
    }
    .card_opt{
        font-size: 12px;
    }
    .spin-reverse {
        -webkit-animation: spinminimal 8s ease-in-out infinite;
        animation: spinminimal 8s ease-in-out infinite;
    }
}
@media (max-width: 200px) and (max-height: 300px) {
    #privacy {
        font-size: 8px;
    }
    #c_1 {
        margin-top: 3vh;
    }
}

@media(max-width: 170px){
    #wid #handle {
        width: 25px;
        height: 25px;
    }
    #wid #htxt{
        font-size: 8px;
        margin-left: 12px;
    }
}
@media(prefers-color-scheme: dark) {
    body:not(.forcewhite).nonembed{
        background: #1e1f23;
        color: #c4c5c9;
    }
    body:not(.forcewhite).nonembed #home{
        color: inherit;
    }
    body:not(.forcewhite).nonembed #username{
        color: inherit;
    }
    body:not(.forcewhite).nonembed #changetheme-dark{
        display: initial;
    }
    body:not(.forcewhite) #logo-image{
        background-image: url('https://subscribe.to/assets/img/brand/logo-white.png');
    }
    body:not(.forcewhite).nonembed .s2s_pulse_comp::after{
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
    }
    body:not(.forcewhite).nonembed #welcome_back{
        background: #212121;
    }
    body:not(.forcewhite).nonembed #backtodash a{
        color: #c4c5c9;
    }
    body:not(.forcewhite).nonembed .link,
    body:not(.forcewhite).nonembed #wid-wrap-out{
        color: #c4c5c9;
        background: #161515;
    }
    body:not(.forcewhite).nonembed .link{
        box-shadow: 0 -3px 7px #252525, 0 2px 7px rgb(0 0 0 / 85%);
    }
    body:not(.forcewhite).nonembed #add_link{
        border: 1px solid #26282d;
        background: #27292d;
        color: #c4c5c9;
    }
    body:not(.forcewhite).nonembed #p.hosted_preview{
        color: #c4c5c9;
    }
    body:not(.forcewhite).nonembed #formimg{
        border-color: #27282d;
    }
    body:not(.forcewhite).nonembed #imageformremove{
        background: #27282d;
        color: #c4c5c9;
    }
    body:not(.forcewhite).nonembed .large.squircle.one,
    body.modeauto .large.squircle.one{
        background-image: linear-gradient(147deg, #17181d 0%, #161719 74%);
    }
    body:not(.forcewhite).nonembed #wid-inner,
    body.modeauto #wid-inner{
        background: #1d1e23;
        color: #c7c7c7;
    }
    body:not(.forcewhite).nonembed #subscribed,
    body.modeauto #subscribed{
        /*background: #1d1e23;*/
        color: #c7c7c7;
    }
    /*body:not(.forcewhite).nonembed #sub_m span,*/
    /*body.modeauto #sub_m span{*/
    /*    background: #2a2b33;*/
    /*    background-image: none;*/
    /*}*/
    body:not(.forcewhite).nonembed #awards img,
    body.modeauto #awards img{
        background: #141519;
    }
    body:not(.forcewhite).nonembed #my_link_href,
    body.modeauto #my_link_href{
        background: #171616;
        color: #c4c5c9;
    }
    body:not(.forcewhite).nonembed #subs_count{
        color: #c4c5c9;
        background: #171616;
    }
    body:not(.forcewhite).nonembed #privacy,
    body:not(.forcewhite).nonembed #privacy a,
    body.modeauto #privacy,
    body.modeauto #privacy a{
        color: #70727b;
    }
    body:not(.forcewhite).nonembed #privacy a,
    body.modeauto #privacy a{
        border-color: #2e3038;
    }
    body:not(.forcewhite).nonembed #handle,
    body:not(.forcewhite).nonembed #handle_comp,
    body.modeauto #handle,
    body.modeauto #handle_comp{
        background-image: url('https://subscribe.to/assets/img/brand/logo-white.png');
    }
    body.modeauto .s2s_pulse_comp::after{
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
    }
    body:not(.forcewhite).nonembed #options_inner svg,
    body.modeauto #options_inner svg{
        fill: #adadad;
        width: 3em;
        height: 3em;
        top: 0.7em;
    }
    body:not(.forcewhite).nonembed .card_opt,
    body.modeauto .card_opt{
        color: #909090;
    }
    body:not(.forcewhite).nonembed #suggestions_container .rel,
    body.modeauto #suggestions_container .rel{
        background-image: linear-gradient(147deg, #1e1f25 0%, #1c1d23 74%);
        color: #c4c5c9;
        box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.39);
    }
    body:not(.forcewhite).nonembed #track,
    body:not(.forcewhite).nonembed #track_comp,
    body.modeauto #track,
    body.modeauto #track_comp{
        box-shadow: inset 0 0 20px 10px #191a1f;
        box-shadow: inset 0 0 6px 5px #50505008;
    }
    body:not(.forcewhite).nonembed .card_opt_sec,
    body.modeauto .card_opt_sec{
        margin: 14px 0 0;
        border-radius: 18px;
        top: 2em;
        position: relative;
        padding: 15px;
        font-size: 14px;
        cursor: pointer;
        color: #7b7b7b8c;
    }
    body:not(.forcewhite).nonembed .stats_card,
    body.modeauto .stats_card{
        padding: 14px;
        border-radius: 20px;
        width: 37%;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.27);
        color: #909090;
        background: #000000;
        background-image: linear-gradient(147deg, #1f1f1f 0%, #1c1d23 74%);
    }
    body:not(.forcewhite).nonembed #stats_subscribers,
    body.modeauto #stats_subscribers{
        border-right: none;
        padding: 14px;
    }

    body:not(.forcewhite).nonembed #stats_unsubscriptions,
    body.modeauto #stats_unsubscriptions{
        padding: 14px;
    }

    body:not(.forcewhite).nonembed .subsection_wrapper,
    body.modeauto .subsection_wrapper{
        justify-content: space-between;
    }
    body:not(.forcewhite).nonembed #prev,
    body.modeauto #prev{
        border-right: 1px solid #13131347
    }
    body:not(.forcewhite).nonembed #i_email,
    body:not(.forcewhite).nonembed #i_email_comp,
    body.modeauto #i_email,
    body.modeauto #i_email_comp{
        border-color: #3a3a3a;
        color: #fff;
    }
    body:not(.forcewhite).nonembed #go,
    body.modeauto #go{
        background: #27282f;
        background-image: linear-gradient(147deg, #2a2c35 0%, #27282f 74%);
    }
    body:not(.forcewhite).nonembed #comp #p a,
    body.modeauto #comp #p a{
        /*border-bottom: 1px solid #24252b;*/
    }
    body:not(.forcewhite) #changetheme svg#changetheme-dark{
        fill: #36373b;
    }
    body:not(.forcewhite).nonembed #p_publicversion{
        color: #bdbdbd;
        background: #151414;
    }
    body:not(.forcewhite).nonembed #bio_wrap{
        color: #656565;
    }

}

body.nonembed.forceblack{
    background: #1e1f23;
}
body.nonembed.forceblack #home{
    color: inherit;
}
body.nonembed.forceblack #username{
    color: inherit;
}
body.nonembed.forceblack #p_publicversion{
    color: #bdbdbd;
    background: #151414;
}
body.forceblack{
    color: #c4c5c9;
}
body.forceblack #logo-image{
    background-image: url('https://subscribe.to/assets/img/brand/logo-white.png');
}
body.forceblack .s2s_pulse_comp::after{
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}
body.forceblack #welcome_back{
    background: #212121;
}
body.forceblack #backtodash a{
    color: #c4c5c9;
}
body.forceblack .link,
body.forceblack #wid-wrap-out{
    color: #c4c5c9;
    background: #161515;
}
body.forceblack #add_link{
    border: 1px solid #26282d;
    background: #27292d;
    color: #c4c5c9;
}
body.forceblack #p.hosted_preview{
    color: #c4c5c9;
}
body.forceblack #formimg{
    border-color: #27282d;
}
body.forceblack #imageformremove{
    background: #27282d;
    color: #c4c5c9;
}
body.forceblack .large.squircle.one{
    background-image: linear-gradient(147deg, #17181d 0%, #161719 74%);
}
body.forceblack #wid-inner{
    background: #1d1e23;
    color: #c7c7c7;
}
body.forceblack #subscribed{
    background: #1d1e23;
    color: #c7c7c7;
}
/*body.forceblack #sub_m span{*/
/*    background: #2a2b33;*/
/*    background-image: none;*/
/*}*/
body.forceblack #awards img{
    background: #141519;
}
body.forceblack #my_link_href{
    background: #171616;
    color: #c4c5c9;
}
body.forceblack #subs_count{
    color: #c4c5c9;
    background: #171616;
}
body.forceblack #privacy,
body.forceblack #privacy a{
    color: #70727b;
}
body.forceblack #privacy a{
    border-color: #2e3038;
}
body.forceblack #handle,
body.forceblack #handle_comp{
    background-image: url('https://subscribe.to/assets/img/brand/logo-white.png');
}
body.forceblack #track,
body.forceblack #track_comp{
    box-shadow: inset 0 0 20px 10px #191a1f;
    box-shadow: inset 0 0 6px 5px #50505008;
}
body.forceblack #suggestions_container .rel{
    background-image: linear-gradient(147deg, #1e1f25 0%, #1c1d23 74%);
    color: #c4c5c9;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.39);
}
body.forceblack #stats_subscribers{
    border-right: none;
    padding: 14px;
}

body.forceblack #stats_unsubscriptions{
    padding: 14px;
}
body.forceblack .subsection_wrapper{
    justify-content: space-between;
}
body.forceblack #prev{
    border-right: 1px solid #13131347
}

body.forceblack #i_email,
body.forceblack #i_email_comp{
    border-color: #3a3a3a;
    color: #fff;
}
body.forceblack #go{
    background: #27282f;
    background-image: linear-gradient(147deg, #2a2c35 0%, #27282f 74%);
}
body.forceblack #comp #p a{
    /*border-bottom: 1px solid #24252b;*/
}
body.forceblack #bio_wrap{
    color: #656565;
}

body.tmppulse{
    animation: tmppulse 3s infinite ease-in;
}
body.previewmode{
    opacity: 0.2;
}
body.forceblack #changetheme svg#changetheme-dark{
    fill: #36373b;
}

@keyframes tmppulse {
    0%{
        opacity: 1;
    }
    30%{
        opacity: 0.4;
    }
    60%{
        opacity: 1;
    }
}