:root{
    --color-one:#fc2e5a;
    --color-two:#f68a88;
    --color-three:#fc2e5a5c;
}
body{
    height: 100vh;
    box-sizing: border-box;
    position: relative;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
}
/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-one); 
    border-radius: 10px;
}

.container-fluid{
    overflow-x: hidden;
    overflow-y: auto;
}
.cursor-pointer{
    cursor: pointer;
}
ul,li{list-style: none;}
.text-one{color: var(--color-two);}
.bg-three{background: var(--color-three) !important;}
.btn-outline-danger:hover {
    color: #ffffff !important;
}
.heart-wrapper{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heart{
    width: 100px;
    height: 90px;
    transition: .3s;
    transform: rotateY(0deg) scale(1);
    animation: heart infinite linear 3s;
}
.heart:before,
.heart:after{
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: var(--color-one);
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
.heart:after{
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin :100% 100%;
}

@keyframes heart{
    0%{transform: rotateY(0deg) scale(1);}
    50%{transform: rotateY(180deg)  scale(1.5);}
    100%{transform: rotateY(0deg) scale(1);}
}
.loginimg{
    width: 40px;
    height: 40px;
}
input[type="checkbox"].form-control {
    padding: 8px !important;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1.5 !important;
    color: #212529;
    background-color: #fff !important;
    background-clip: padding-box;
    border: 1px solid;
    border-color: #ced4da !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control-lg {
    min-height: calc(1.5em + (1rem + 2px));
    padding: 0.5rem 1rem !important;
    font-size: 1.25rem !important;
    border-radius: 0.3rem;
}
.form-control:focus {
    border: 0;
    box-shadow: none;
}
input:focus{
    --tw-ring-color: var(--color-one)!important;
    border-color: var(--color-one)!important;
}
.checked{
    background-color: var(--color-one);
    color: #fff;
}
.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 4px 6px 0 20px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
input#phone {
    padding-left: 110px !important;
}
.iti__country-list {
    top: 42px;
}
a{
    color: var(--color-one) !important;
    text-decoration: none;
}
a:focus-visible {
    border: 0;
    outline: 0;
}
.btn-one{
    color: #fff;
    background: var(--color-one) !important;
}
.text-one{
    color: var(--color-one) !important;
}
.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
/* .continue{
    position: absolute;
    bottom: 10%;
} */


/*/////////////////////////////////////////////////*/
header{
    position: relative;
    z-index: 11;
}
.wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:450px){
    .box{
        width: 80px !important;
        height: 80px !important;
    }
}
.box {
    display: block;
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
}
.upload-options {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    transition: background-color 150ms ease-in-out 0s;
}

.upload-options input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-options label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}

.upload-options span {
    display: inline-block;
    width: 50%;
    height: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
}
.js--image-preview {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url("");
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.js--image-preview::after {
    content: "\002b";
    font-family: "Material Icons";
    position: relative;
    font-size: 4.5em;
    color: rgba(230, 230, 230, 1);
    top: calc(50% - 3.5rem);
    left: calc(50% - 1.25rem);
    z-index: 0;
}

.js--image-preview .js--no-default::after {
    display: none;
}

.js--image-preview:nth-child(2) {
    background-image: url("http://bastianandre.at/giphy.gif");
}

i.material-icons {
    transition: color 100ms ease-in-out;
    font-size: 2.25em;
    line-height: 55px;
    color: white;
    display: block;
}

.drop {
    display: block;
    position: absolute;
    border-radius: 100%;
    transform: scale(0);
}

.animate {
    animation: ripple 0.4s linear;
}

@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}


/******************************* Header ********************************/
.brand-logo img{
    width: 50px;
    height: 50px;
}
.brand-name{
    font-size: 36px;
    font-family: 'Mr Dafoe', cursive;
    text-align: center;
}
.nav-links {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links a i {
    font-size: 30px;
    color: var(--color-two);
}

/******************************* Slider ********************************/
.swiper {
    width: 90%;
    height: 80vh;
    overflow: hidden;
}

.swiper-slide {
    height: 90%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    position: relative;
}
.swiper-img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    position: absolute;
}
.super-love-focus {
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 10;
    font-size: 20px;
    transition: 0.5s;
    transform-origin: bottom;
    transform: translateY(310px);
}
.super-love-focus-active{
    animation: super 0.1s forwards;
}
@keyframes super {
    0%{transform: translateY(310px);font-size:20px;}
    100%{transform: translateY(0px);font-size:90px;}
}
.swiper-info{
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, var(--color-two), transparent);
    display: flex;
    position: absolute;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.swiper-btn{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: -40px;
    z-index: 10;
}
.swiper-btn div{
    z-index: -1;
}
.refresh,.dislike,.love,.fvrt,.profile-view{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px #000000ad;
}
.like{
    width: 80px;
    height: 80px;
}
.like i{
    font-size: 3rem !important;
}
.dislike,.love{
    width: 65px;
    height: 65px;
}

.dislike i,.love i{
    font-size: 2.5rem !important;
}


/*********************************** Footer ********************************/
.font-sans.text-gray-900.antialiased {
    padding-bottom: 125px;
}
footer{
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background: #fff;
    box-shadow: 0px -15px 20px 0px #00000029;
}
.footer-card{
    width: 20%;
    margin: auto;
    text-align: center;
}
i.fa-circle {
    font-size: 12px !important;
    top: -5px;
    right: -5px;
}


/********************************** Modal *************************************/
/* .modal-bottom-center {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80vh;
    transform-origin: bottom;
}
.modal.fade .modal-bottom-center {
    transition: transform 0.3s ease-out;
    transform: scaleY(0) !important;
}
.modal.show .modal-bottom-center {
    transform: scaleY(1) !important;
}
.modal-bottom-center .modal-content {
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
} */

/******************************* avater upload ******************************************/
.avatar-upload {
    position: relative;
    max-width: 400px;
    margin: 100px auto;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 95px;
    z-index: 1;
    top: 190px;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #ffc9c8;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(211, 15, 15, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:after {
    content: "\f030";
    font-family: 'FontAwesome';
    color: var(--color-one);
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}
.avatar-upload .avatar-preview {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 100%;
    border: 6px solid var(--color-three);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    margin: auto;
}
.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/************************************ Profile **********************************/
.pro-top-wrapper {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 85vh;
    background: var(--color-three);
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
}
.setting,.addPhoto,.editprofile {
    width: 60px;
    height: 60px;
    color: var(--color-one);
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 0 10px #0000008c;
}
.setting{
    position: absolute;
    bottom: 100px;
    left: 20px;
}
.addPhoto{
    width: 90px;
    height: 90px;
    background: #ffc9c8;
    font-size: 38px;
    position: absolute;
    bottom: -40px;
    cursor: pointer;
}
.editprofile{
    position: absolute;
    bottom: 100px;
    right: 20px;
}


.gallery-wrapper,.interest-waprper{
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
}
.gallery{
    width: 150px;
    height: 150px;
}

.successMsg,.errorMsg{
    display: block;
}

.update-post-pic {
    position: absolute;
}

.post-actions {
    width: 150px;
    height: 50px;
    background-color: #fff;
    border-radius:7px;
    margin:auto;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/*****************************************************************************************************************/
.screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 95%;
    height: 70vh;
    background: rgb(255, 250, 250);
    margin: 15px auto;
    position: relative;
}

.person {
    width: 99%;
    height: 100%;
    background: #d6d5d5;
    border-radius: 10px;
    position: relative;
}

.photo {
    margin: auto;
    width: 100%;
    height: 100%;    
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    color: #eee;
    box-shadow: 0 2px 7px 0 rgba(136, 136, 136, 0.7);
    cursor: grab;
    transition: 300ms;
    position: absolute;
}

.photo.moving {
    transition: none;
    cursor: grabbing;
}

.photo.nope::after {
    content: "NOPE";
    color: #fe466d;
    border: 6px solid #fe466d;
    border-radius: 8px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 3rem;
    padding: 0.2rem 0.4rem;
    position: absolute;
    top: 8%;
    right: 8%;
    transform: rotate(15deg);
}

.photo.super_like::after {
    content: "SUPER LIKE";
    color: #08a4ef;
    border: 6px solid #08a4ef;
    border-radius: 8px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 2.8rem;
    padding: 0.2rem 0.4rem;
    position: absolute;
    width: 150px;
    bottom: 10%;
    left: 24%;
    transform: rotate(-15deg);
}

.photo.like::after {
    content: "LIKE";
    color: #1be4a1;
    border: 6px solid #1be4a1;
    border-radius: 8px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 3rem;
    padding: 0.2rem 0.4rem;
    position: absolute;
    top: 8%;
    left: 8%;
    transform: rotate(-15deg);
}

.personal {
    padding: 15px;
    width: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.41) 24%);
    border-radius: 10px;
}

.name-age {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.name {
    font-size: 2rem;
    font-weight: 500;
}

.age {
    font-size: 1.6rem;
    margin-left: 10px;
    font-weight: 400;
}

.data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about {
    display: flex;
}

.about-icon,
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.about-icon {
    align-items: center;
}

.about-text {
    align-items: flex-start;
    margin-left: 6px;
}

.about-icon i,
.about-text p {
    padding: 4px 0;
}

/* Actions */
.commands {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    position: absolute;
    bottom: -50px;
}

.command {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 2px 6px 0 rgba(112, 125, 134, 0.14);
    transition: 500ms ease;
    cursor: pointer;
}

.command i {
    transition: 500ms ease;
}

.commands .command:nth-child(2n + 1) {
    height: 48px;
    width: 48px;
    font-size: 1.5rem;
}

.command:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 2px 6px 0 rgba(112, 125, 134, 0.33);
}

.command:hover i {
    transform: scale(1.15);
}

  /* icon size and colors */
.fa-circle-user,
.fa-comment-dots {
    color: #dadfe6;
    font-size: 1.5rem;
}

.fa-fire-flame-curved {
    color: #fe466d;
    font-size: 1.7rem;
}

.fa-circle-info {
    cursor: pointer;
    transition: 500ms ease;
}

.fa-circle-info:hover {
    transform: scale(1.1);
    color: #fff;
}

.fa-arrow-rotate-left {
    color: #f7e707;
}

.fa-close {
    color: #fd5068;
}

.fa-star {
    color: #2db1ff;
}

.fa-heart {
    color: #1be4a1;
}

.fa-bolt {
    color: #e211e2;
}

/*============================ Notification Page =============================*/
.pp-wrapper {
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-three);
    border-radius: 50%;
}

.pp-name{
    color: var(--color-one);
}