@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

body {
    background-color: #000;
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes flipOutY {
    from {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    animation-duration: 0.75s;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        transform: translate3d(10px, 0, 0);
    }
    90% {
        transform: translate3d(-5px, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        transform: perspective(400px);
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active {
    outline: 0;
}

a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0px;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #fff;
}

a {
    color: #e77a80;
}

a:hover {
    color: #e5979b;
}

hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #e1e1e1;
}

img {
    border-style: none;
}

a {
    text-decoration: none;
}

.u-full-width {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

.hidden {
    display: none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.block-center {
    width: 100%;
    display: block;
    text-align: center;
}

.main-wrapper {
    position: relative;
    top: 90px;
}

.page-title-wrapper {
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 55px;
    z-index: 10;
    padding: 2px;
    background-color: #f7f7f7;
}

.page-title-wrapper h1 {
    font-size: 1.9rem;
    line-height: 1.9;
    font-weight: bold;
    margin-bottom: 0;
}

.inline-block {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1.35;
    letter-spacing: -0.08rem;
}

h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000;
}

p {
    margin-top: 0;
}

.text-small {
    font-size: 1.4rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 0;
    }
}

@media (min-width: 550px) {
    .container {
        width: 80%;
    }

    .column,
    .columns {
        margin-left: 4%;
    }

    .column:first-child,
    .columns:first-child {
        margin-left: 0;
    }

    .one.column,
    .one.columns {
        width: 4.66667%;
    }

    .two.columns {
        width: 13.33333%;
    }

    .three.columns {
        width: 22%;
    }

    .four.columns {
        width: 30.66667%;
    }

    .five.columns {
        width: 39.33333%;
    }

    .six.columns {
        width: 48%;
    }

    .seven.columns {
        width: 56.66667%;
    }

    .eight.columns {
        width: 65.33333%;
    }

    .nine.columns {
        width: 74%;
    }

    .ten.columns {
        width: 82.66667%;
    }

    .eleven.columns {
        width: 91.33333%;
    }

    .twelve.columns {
        width: 100%;
        margin-left: 0;
    }

    .one-third.column {
        width: 30.66667%;
    }

    .two-thirds.column {
        width: 65.33333%;
    }

    .one-half.column {
        width: 48%;
    }

    .offset-by-one.column,
    .offset-by-one.columns {
        margin-left: 8.66667%;
    }

    .offset-by-two.column,
    .offset-by-two.columns {
        margin-left: 17.33333%;
    }

    .offset-by-three.column,
    .offset-by-three.columns {
        margin-left: 26%;
    }

    .offset-by-four.column,
    .offset-by-four.columns {
        margin-left: 34.66667%;
    }

    .offset-by-five.column,
    .offset-by-five.columns {
        margin-left: 43.33333%;
    }

    .offset-by-six.column,
    .offset-by-six.columns {
        margin-left: 52%;
    }

    .offset-by-seven.column,
    .offset-by-seven.columns {
        margin-left: 60.66667%;
    }

    .offset-by-eight.column,
    .offset-by-eight.columns {
        margin-left: 69.33333%;
    }

    .offset-by-nine.column,
    .offset-by-nine.columns {
        margin-left: 78%;
    }

    .offset-by-ten.column,
    .offset-by-ten.columns {
        margin-left: 86.66667%;
    }

    .offset-by-eleven.column,
    .offset-by-eleven.columns {
        margin-left: 95.33333%;
    }

    .offset-by-one-third.column,
    .offset-by-one-third.columns {
        margin-left: 34.66667%;
    }

    .offset-by-two-thirds.column,
    .offset-by-two-thirds.columns {
        margin-left: 69.33333%;
    }

    .offset-by-one-half.column,
    .offset-by-one-half.column {
        margin-left: 52%;
    }
}

.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}

.button,
button {
    text-align: center;
    background-color: #e77a80;
    color: white;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 700;
    padding-right: 16px;
    padding-left: 16px;
    line-height: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    min-width: 180px;
    height: 50px;
    box-sizing: border-box;
    display: inline-block;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    text-align: center;
    background-color: #e77a80;
    color: white;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 700;
    padding-right: 16px;
    padding-left: 16px;
    line-height: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    min-width: 180px;
    height: 50px;
    box-sizing: border-box;
    display: inline-block;
}

.button:hover,
button:hover {
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    color: white;
    cursor: pointer;
}

.button:focus,
button:focus {
    color: #333;
    border-color: #888888;
    outline: 0;
}

input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: #333;
    border-color: #888888;
    outline: 0;
}

.button.button-primary,
button.button-primary {
    color: #fff;
    background-color: #e77a80;
    border-color: #e77a80;
}

input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #fff;
    background-color: #e77a80;
    border-color: #e77a80;
}

.button.button-primary:hover,
button.button-primary:hover {
    color: #fff;
    background-color: #e77a80;
    border-color: #e77a80;
}

input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover {
    color: #fff;
    background-color: #e77a80;
    border-color: #e77a80;
}

.button.button-primary:focus,
button.button-primary:focus {
    color: #fff;
    background-color: #e77a80;
    border-color: #e77a80;
}

input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #fff;
    background-color: #e77a80;
    border-color: #e77a80;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus {
    border: 1px solid #e77a80;
    outline: 0;
}

textarea:focus,
select:focus {
    border: 1px solid #e77a80;
    outline: 0;
}

label,
legend {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label > .label-body {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: normal;
}

form.has-error input,
form.has-error input:focus {
    border-color: red;
}

form.has-error label {
    color: red;
}

ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
    padding-left: 0;
    margin-top: 0;
}

ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 1rem;
}

button,
.button {
    margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 2.5rem;
}

.page-layout {
    min-height: 100vh;
    overflow-x: hidden;
    height: 100%;
}
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}
.main-logo {
    display: block;
    max-width: 80px;
    width: 100%;
}
.main-logo {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin: 0;
}
.main-logo span {
    color: #087fde;
}
.header .side-pic {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.header.all-set .side-pic {
    opacity: 1;
    visibility: visible;
}
.settings-pic {
    margin-right: 12px;
}

.toggleDiv .top,
.top-text {
    width: 100%;
    color: #000;
    padding-top: 12px;
    padding-bottom: 12px;
}
.content {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    width: 100%;
}

.toggleDiv .box {
    margin: 0 auto;
    padding: 10px;
}

.toggleDiv li {
    list-style: none;
}

.toggleDiv .box .question {
    padding-bottom: 20px;
}

.tinder-page {
    background-size: cover;
    background-image: url(../images/prev-pic.png);
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-position: center top;
}

.tinder-page .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* max-width: 230px; */
    margin: 5px auto 0;
    text-align: center;
    padding: 0 20px;
}

.tinder-page .buttons .tinder-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #af87bd;
    box-sizing: border-box;
    color: #fff;
    text-transform: uppercase;
    width: 48%;
}

.tinder-page .buttons .btn-yes-no {
    height: 41px;
}
.tinder-page .buttons .btn-yes-no:first-child {
    background-color: #b71f2b;
    color: #fff;
}
.tinder-page .buttons .side-btn {
    width: 69px;
    height: 69px;
}

.tinder-page .toggleDiv {
    /* max-width: 600px; */
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px 0;
    margin-top: auto;
    width: 100%;
}
.tinder-page .toggleDiv.checking-questions {
    padding: 0;
}

.tinder-page .tinder-profile {
    text-align: center;
    position: relative;
}

.tinder-page .tinder-profile .card {
    margin-top: 0;
    text-align: left;
    /* position: relative; */
    max-width: 340px;
    width: 100%;
}

.tinder-page .tinder-profile .card .card-img {
    width: 230px;
    height: 340px;
    object-fit: cover;
    display: block;
}

@media (max-width: 320px) {
    .tinder-page .tinder-profile .card .card-img {
        width: 250px;
        height: 200px;
    }
}

.tinder-page .tinder-profile .card .card-text {
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}

.tinder-page .tinder-profile .text-area {
    position: relative;
    padding-top: 10px;
    max-width: 90%;
    margin: 0 auto;
}

.tinder-page .tinder-profile .text-area h5 {
    font-weight: 300;
}

@media (max-width: 320px) {
    .tinder-page .tinder-profile .text-area {
        padding-top: 0;
    }
    .tinder-page .tinder-profile .text-area h5 {
        font-size: 1.9rem;
    }
}

.tinder-page .tinder-profile .text-area p {
    margin-bottom: 0;
}

#tinder-00 {
    padding-top: 20px;
}

#tinder-00 .logo {
    width: 200px;
}

#tinder-00 h4 {
    max-width: 400px;
    margin: 0 auto;
}

#tinder-00 .profile-pic {
    width: 200px;
    border-radius: 150px;
    margin: 20px;
}

#tinder-0 .map {
    background: url(../images/map.png);
    position: absolute;
    top: calc(50% - 2.875rem);
    left: calc(50% - 2.875rem);
    width: 5.75rem;
    height: 5.75rem;
    z-index: 1;
    border: 0.125rem solid #fff;
    border-radius: 50%;
}

#tinder-0 .map .pin {
    position: absolute;
    top: 1.6875rem;
    left: 2.055rem;
    width: 1.64062rem;
    height: 2.09187rem;
    animation: map-pin 0.5s ease infinite;
}

#tinder-0 .map .pin-shadow {
    position: absolute;
    top: 1.9375rem;
    left: 2.4925rem;
    width: 1.635rem;
    height: 1.79rem;
    opacity: 0.8;
    animation: map-pin-shadow 0.5s ease infinite;
}

#tinder-0 .map .map-text {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    font-size: 1.125rem;
    text-align: center;
}

#tinder-0 .buttons {
    width: 100%;
    justify-content: center;
}
#tinder-0 .buttons .tinder-button {
    margin: 0 4px;
    width: 69px;
    height: 69px;
}

#tinder-0 #pulse1,
#tinder-0 #pulse2 {
    border-radius: 50%;
    position: absolute;
    height: 150px;
    width: 150px;
    top: 50%;
    left: 50%;
    border: 2px solid #f0f0f0;
    animation: pulsate 3s infinite;
    background-color: #e9851b;
    transform: translateX(-50%) translateY(-50%);
}

#tinder-0 #pulse2 {
    -webkit-animation: pulsate 3s -0.5s infinite;
    animation: pulsate 3s -0.5s infinite;
}

@keyframes pulsate {
    0%,
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    99.999% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes map-pin {
    50% {
        top: 1.3125rem;
    }
}

@keyframes map-pin-shadow {
    50% {
        top: 1.6875rem;
        left: 2.7425rem;
        opacity: 0.5;
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

.card {
    border: 0;
    border-radius: 0;
    margin-bottom: 4px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 8px;
    overflow: hidden;
}

.card .card-img {
    margin: 0;
    padding: 0;
}

.card .card-text {
    color: #000000;
    font-size: 1.4rem;
    /* padding: 12px; */
    font-weight: 400;
}

.card .card-heading {
    font-weight: 700;
    display: block;
    margin-bottom: 0;
    line-height: 1.6;
    letter-spacing: initial;
    text-align: center;
}

.card .card-body {
    display: block;
}

.checkmark__circle {
    stroke-dasharray: 166px;
    stroke-dashoffset: 166px;
    stroke-width: 2px;
    stroke-miterlimit: 10;
    stroke: #b71f2b;
    fill: #b71f2b;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    stroke-width: 2px;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #e77a80;
    animation: fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48px;
    stroke-dashoffset: 48px;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #e77a80;
    }
}

.checking-questions .checkmark {
    float: left;
    margin: 15px;
}

.checking-questions p {
    float: left;
    margin-top: 20px;
    color: #000;
}

.congrats-wrapper {
    /* background: url(../images/bg_2.png) 50% 50% no-repeat; */
    color: #fff;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    max-width: 600px;
}

.congrats-wrapper .congrats {
    position: absolute;
    top: 140px;
    width: 300px;
    height: 100px;
    padding: 20px 10px;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.congrats-wrapper .h1 {
    transform-origin: 50% 50%;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    text-align: center;
    width: 90%;
    position: absolute;
}

@media (max-width: 320px) {
    .congrats-wrapper .h1 {
        font-size: 20px;
    }
}

.congrats-wrapper .blob {
    height: 50px;
    width: 50px;
    color: #ffcc00;
    position: absolute;
    top: 45%;
    left: 45%;
    z-index: 1;
    font-size: 30px;
    display: none;
}
.async-hide {
    opacity: 0 !important;
}

@media (max-width: 600px) {
    .page-layout {
        padding-bottom: 0;
        box-sizing: border-box;
    }
}

.progress {
    display: none;
    justify-content: center;
    margin: 30px auto 25px;
    position: relative;
}
.progress.active {
    display: flex;
}

.progress li {
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.3);
}

.progress li.active {
    background-color: #fff;
}

.wrapper-type {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.wrapper-type .item-type {
    margin: 0 7px 15px;
}
.wrapper-type .item-type img {
    display: block;
}
.wrapper-type .item-type.selected img {
    box-shadow: 0 0 0px 3px #e9851b;

    border-radius: 20px;
}
.wrapper-type .item-type p {
    font-size: 16px;
    margin: 10px auto 0;
}

.pre-block img {
    margin: 25px auto;
    display: block;
    height: 350px;
    object-fit: cover;
    width: 100%;
    max-width: 230px;
}
.pre-block h5 {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}
.pre-block .buttons {
    justify-content: center;
}
.pre-block .buttons .btn-yes-no-ok {
    width: 100%;
    max-width: 146px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #b71f2b;
    padding: 12px;
    line-height: 1;
    color: #fff;
}
.card-pics .base-url {
    display: none;
}
.card-pics {
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.card-pics .card-img {
    display: none;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    width: 100%;
    /* max-width: 230px; */
}
.card-pics .card-img.active {
    display: block;
}

@media (min-width: 560px) {
    .card .card-heading {
        font-size: 24px;
    }

    .pre-block h5 {
        font-size: 24px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .tinder-page .tinder-profile .card {
        max-width: 470px;
    }

    .pre-block .buttons .btn-yes-no-ok {
        max-width: 195px;
        font-size: 24px;
    }

    .tinder-page .buttons .btn-yes-no {
        height: 54px;
    }

    .progress li {
        width: 17px;
        height: 17px;
        border: 2px solid #fff;
    }

    .toggleDiv .top {
        font-size: 24px;
    }

    .main-logo {
       max-width: 120px; 
    }
}