/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea,select {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
	--main-gradient: linear-gradient(97deg, #FBAB43 -23.99%, #B634B0 92.83%);
    --bwGradualDEMO-extraBold: "BwGradualDEMO-ExtraBold";
    --bwGradualDEMO-medium: "BwGradualDEMO-Medium";
    --bwGradualDEMO-regular: "BwGradualDEMO-Regular";
    --clashDisplay-medium: "ClashDisplay-Medium";
    --clashDisplay-regular: "ClashDisplay-Regular";
    --clashDisplay-semibold: "ClashDisplay-Semibold";
    --inter-semiBold: "Inter-SemiBold";
    --inter-regular: "Inter-Regular";
    --roboto-bold: "Roboto-Bold";
    --roboto-medium: "Roboto-Medium";
    --roboto-regular: "Roboto-Regular";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "BwGradualDEMO-ExtraBold";
    src: url("../webfonts/BwGradualDEMO-ExtraBold.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "BwGradualDEMO-Medium";
    src: url("../webfonts/BwGradualDEMO-Medium.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "BwGradualDEMO-Regular";
    src: url("../webfonts/BwGradualDEMO-Regular.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "ClashDisplay-Medium";
    src: url("../webfonts/ClashDisplay-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "ClashDisplay-Regular";
    src: url("../webfonts/ClashDisplay-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "ClashDisplay-Semibold";
    src: url("../webfonts/ClashDisplay-Semibold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Inter-SemiBold";
    src: url("../webfonts/Inter-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Inter-Regular";
    src: url("../webfonts/Inter-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Bold";
    src: url("../webfonts/Roboto-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Medium";
    src: url("../webfonts/Roboto-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Regular";
    src: url("../webfonts/Roboto-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* ONCLICK-TOP */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	font-size: 16px;
	color: #FF038B;
	mix-blend-mode: difference;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	font-size: 16px;
	opacity: 0;
	background-image: linear-gradient(298deg, #FF038B, var(--black));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: #FF038B;
	stroke-width: 4;
	mix-blend-mode: difference;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
/* ONCLICK-TOP */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-track {
    background: var(--white); 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
#smooth-content {
	padding-top: 1px;
	margin-top: -10px;
}
/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* HEADER-CSS */
.header_main_wrapper{
	padding: 20px 0px;
	position: fixed;
	width: 90%;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999999;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.74);
	backdrop-filter: blur(18.799999237060547px);
}
.header_flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_logo {
    max-width: 50px;
}
.header_nav_flex,
.header_nav ul{
	display: flex;
	align-items: center;
	gap: 40px;
}
.header_nav ul li a{
	font-size: 16px;
	font-family: var(--bwGradualDEMO-medium);
	color: var(--black);
	position: relative;
}
.header_nav ul li a::before {
    content: '';
    position: absolute;
	width: 100%;
	height: 2px;
    bottom: -3px;
    left: 0;
	background: var(--main-gradient);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s ease;
}
.header_nav ul li a:hover::before{
	transform-origin: left;
	transform: scaleX(1);
}
.header_nav ul li:last-child a{
	background: var(--main-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.common_btn_dark{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 50px;
	border-radius: 15px;
	font-size: 14px !important;
	font-family: var(--bwGradualDEMO-medium) !important;
	color: var(--white) !important;
	transition: .5s ease;
	position: relative;
	z-index: 3;
	background: var(--main-gradient);
	box-shadow: 0px 0px 0px 0px #000000;
	transition: .25s ease;
	border: none;
}
.common_btn_dark:hover{
	transform: scale(1.01);
}
.common_btn_dark::before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 15.63px;
	opacity: 1;
	background: linear-gradient(96deg, rgba(251, 171, 67, 0.52) -13.25%, rgba(182, 52, 176, 0.81) 110.68%);
	filter: blur(15.630250930786133px);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: .25s ease;
}
.common_btn_dark::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	border-radius: 15px;
	background: linear-gradient(96deg, #B634B0 -23.74%, #FBAB43 161.1%);
	z-index: -1;
	transition: .5s ease;
	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
}
.common_btn_dark:hover::after{
	opacity: 1;
	visibility: visible;
}
.common_btn_dark:hover::before{
	top: 12px;
	left: 5px;
	opacity: 1;
	visibility: visible;
}
.common_btn_light{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 50px;
	border-radius: 15px;
	font-size: 14px;
	font-family: var(--bwGradualDEMO-medium);
	color: #FF038B;
	transition: .5s ease;
	position: relative;
	z-index: 3;
	background: transparent;
	box-shadow: 0px 0px 0px 0px #000000;
	border: 1.5px solid #FF038B;
	transition: .25s ease;
}
.common_btn_light:hover{
	transform: scale(1.01);
	color: var(--white);
	border: 1.5px solid transparent;
}
.common_btn_light::before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 15.63px;
	opacity: 1;
	background: linear-gradient(96deg, rgba(251, 171, 67, 0.52) -13.25%, rgba(182, 52, 176, 0.81) 110.68%);
	filter: blur(15.630250930786133px);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: .25s ease;
}
.common_btn_light::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	border-radius: 15px;
	background: linear-gradient(96deg, #B634B0 -23.74%, #FBAB43 161.1%);
	z-index: -1;
	transition: .5s ease;
	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
}
.common_btn_light:hover::after{
	opacity: 1;
	visibility: visible;
}
.common_btn_light:hover::before{
	top: 12px;
	left: 5px;
	opacity: 1;
	visibility: visible;
}
.gradient_circle_box {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(58deg, #FFCF55 13.67%, #FF67F8 91.61%);
    position: absolute;
    animation: gradientAni 2s linear infinite;
    z-index: -1;
    top: 80px;
}
.gradient_circle_box_first_1{
	width: 420px;
	height: 420px;
	top: 0px;
}
.gradient_circle_box_first_2{
	width: 400px;
	height: 400px;
	bottom: -10px;
	top: unset;
	right: 30px;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index_banner_wrapper {
    height: 85vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin: 120px 10px 0px 10px;
    background-image: url(../images/banner_bg.png);
    background-position: center;
    background-size: cover;
}
.index_banner_wrap_text h6{
	font-size: 60px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: var(--black);
	line-height: 1;
}
.index_banner_wrap_text h3{
	font-size: 60px;
	font-family: var(--bwGradualDEMO-extraBold);
	background: var(--main-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
	margin: 0px 0px 10px 0px;
}
.index_banner_wrap_text p {
    font-size: 16px;
    font-family: var(--bwGradualDEMO-regular);
    color: var(--black);
    width: 70%;
    margin: 0px 0px 10px 0px;
}
.index_banner_wrap_btn{
	display: flex;
	align-items: center;
	gap: 20px;
}
.index_banner_wrap_img{
	position: relative;
}
.index_banner_wrap_img .main_img {
    max-width: 570px;
}
.banner_float_img{
	position: absolute;
}
.banner_float_img_1 {
    top: 190px;
    left: -130px;
    animation: pulse 1s linear 2s infinite;
}
.banner_float_img_2 {
    top: 280px;
    left: -207px;
    width: 230px;
}
.banner_float_img_3 {
    bottom: -40px;
    left: -160px;
    animation: upDown 3s linear infinite;
}
.banner_float_img_4 {
    right: 30px;
    bottom: 50px;
    animation: upDown 3s linear infinite;
    animation-direction: alternate-reverse;
}
.banner_float_img_5 {
    top: 250px;
    right: 110px;
}
.banner_float_img_6 {
    top: 0;
    right: 150px;
	animation: zoomOut 1s linear infinite;
}
.index_second_wrapper{
	padding: 100px 0px;
}
.index_second_wrap_text{
	text-align: center;
}
.index_second_wrap_text .desc{
	width: 575px;
	margin: 20px auto 15px auto;
}
.main_heading{
	font-size: 55px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: var(--black);
	line-height: 1;
}
.main_heading_2 {
    font-size: 55px;
    font-family: var(--bwGradualDEMO-extraBold);
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}
.desc{
	font-size: 20px;
	font-family: var(--bwGradualDEMO-regular);
	color: var(--black);
}
.index-first-wrapper {
    background-color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 100px 0px;
    background-image: url(../images/first-wrap-bg.png);
    background-position: center;
    background-size: cover;
    margin: 0px 10px;
}
.index-first-wrap-limg {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 180px;
}
.index-first-wrap-rimg {
	position: relative;
}
.first_wrap_float_img {
    position: absolute;
}
.first_wrap_float_img_1 {
    left: -60px;
    bottom: 80px;
    animation: upDown 3s linear infinite;
}
.first_wrap_float_img_2 {
    right: 0;
    bottom: 30px;
    animation: upDown 3s linear infinite;
    animation-direction: alternate-reverse;
}
.index_second_wrap_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 0px 0px 100px 0px;
}
.index_second_wrap_box{
	position: relative;
	border-radius: 36px;
	width: 400px;
	z-index: 3;
	margin: 0 auto;
}
.index_second_wrap_box:hover .gradient_circle_box_second_1 {
    top: 320px;
}
.index_second_wrap_box:hover .gradient_circle_box_second_2 {
    top: 40px;
}
.index_second_wrap_box:hover .gradient_circle_box_second_3 {
    bottom: 330px;
}
.gradient_circle_box_second_1 {
    top: -70px;
    left: -70px;
    width: 320px;
    height: 320px;
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.gradient_circle_box_second_2 {
    top: -60px;
    width: 490px;
    height: 490px;
    left: -30px;
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.gradient_circle_box_second_3 {
    width: 290px;
    height: 290px;
    top: unset;
    right: -70px;
    bottom: -30px;
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.index_second_wrap_box::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 36px;
	background: linear-gradient(179deg, rgba(40, 40, 40, 0.00) 56.72%, #282828 115.69%);
	z-index: 1;
}
.index_second_wrap_box_img{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 36px;
}
.index_second_wrap_box_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.index_second_wrap_box:hover .index_second_wrap_box_img img{
	transform: scale(1.1);
} 
.index_second_wrap_box_text {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 2;
}
.index_second_wrap_box_text h6{
	font-size: 35px;
	font-family: var(--clashDisplay-semibold);
	color: var(--white);
}
.index_second_wrap_box_text h6 span{
	font-family: var(--clashDisplay-regular);
}
.index_second_wrap_box_text p{
	font-size: 16px;
	font-family: var(--clashDisplay-regular);
	color: var(--white);
}
.index_second_wrap_box_btns {
    position: absolute;
    bottom: -25px;
    z-index: 2;
	width: 100%;
}
.index_second_wrap_box:hover .index_second_wrap_box_btns ul{
	gap: 35px;
}
.index_second_wrap_box_btns ul{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.index_second_wrap_box_btns ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50px;
}
.index_second_wrap_box_btns ul li:nth-child(1) a{
	background-color: var(--white);
	filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.2));
}
.index_second_wrap_box_btns ul li:nth-child(1) a img{
	width: 12px;
}
.index_second_wrap_box:hover .index_second_wrap_box_btns ul li:nth-child(2) a{
	transform: scale(1.6);
}
.index_second_wrap_box_btns ul li:nth-child(2) a{
	background: linear-gradient(97deg, #FBAB43 -23.99%, #FB3BF2 92.83%);
	filter: drop-shadow(0px 32px 46.6px rgba(251, 87, 198, 0.50));
	transform: scale(1.3);
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.index_second_wrap_box_btns ul li:nth-child(2) a img{
	width: 25px;
}
.index_second_wrap_box_btns ul li:nth-child(3) a{
	background-color: #FFB431;
	filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.07));
}
.index_second_wrap_box_btns ul li:nth-child(3) a img{
	width: 25px;
}
.transform_box{
	transform: translateY(-150px);
}
.index-third-wrapper {
    padding: 150px 0px;
    position: relative;
    margin: 0px 10px;
    background: linear-gradient(97deg, #433119 -23.99%, #1F1A1F 38.52%, #2B1029 77.34%);
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}
.index_third_wrap_btn{
	display: flex;
	align-items: center;
	gap: 10px;
}
.index_third_wrap_btn a {
    border: 1.5px solid var(--white);
    color: var(--white);
}
.index_third_wrap_btn a:last-child{
	border: 0;
}
.index-third-box{
	position: relative;
	overflow: hidden;
	border-radius: 50%;
}
.third-box-circle{
	position: unset;
	width: 200px;
	height: 200px;
}
.index-third-box-img {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.index-third-box-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
.index-third-main-box {
    position: absolute;
    width: 42%;
    right: -20px;
    top: 60px;
}
.w-color{
	color: var(--white);
}
.index_fourth_wrapper {
    padding: 100px 0px;
	position: relative;
	z-index: 3;
}
.index_fourth_wrapper::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.05;
	background: linear-gradient(97deg, #FBAB43 -23.99%, #B634B0 92.83%);
	z-index: -1;
}
.index_fourth_wrap_flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 0px 0px 70px 0px;
}
.index_fourth_wrap_btn{
	display: flex;
	align-items: center;
	gap: 10px;
}
.index_fourth_wrap_slider{
	position: relative;
}
.index_fourth_wrap_slider_box{
	position: absolute;
	top: 20px;
	left: 0;
	width: 350px;
	height: 460px;
	background: var(--main-gradient);
	border-radius: 42px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 20px 30px;
	z-index: 999999;
}
.index_fourth_wrap_slider_box_text h6{
	font-size: 38px;
	font-family: var(--clashDisplay-medium);
	color: var(--white);
	text-transform: capitalize;
	margin: 0px 0px 20px 0px;
}
.index_fourth_wrap_slider_box_text p{
	font-size: 20px;
	font-family: var(--clashDisplay-regular);
	color: var(--white);
	width: 200px;
	margin: 20px 0px 0px 0px;
}
.fourth_slider_box{
	width: 350px;
	height: 460px;
	background-color: var(--white);
	border-radius: 42px;
	display: flex;
	justify-content: end;
	flex-direction: column;
	padding: 30px;
	position: relative;
	border: 3px solid var(--white);
	transition: .5s ease;
}
.fourth_slider_box::before {
    content: '';
    position: absolute;
    width: 353px;
    height: 463px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-gradient);
    border-radius: 44px;
    z-index: -1;
	opacity: 0;
	transition: .5s ease;
}
.fourth_slider_box:hover{
	border: 3px solid transparent;
}
.fourth_slider_box:hover::before{
	opacity: 1;
}
.fourth_slider_box:hover .fourth_slider_box_btn a i{
	transform: translate(10px , 0px);
}
.fourth_slider {
    margin: 0px 0px 0px 120px;
    padding: 20px 0px;
}
.fourth_slider_box_text p{
	font-size: 18px;
	font-family: var(--clashDisplay-medium);
	color: #1F1F1F;
	text-transform: capitalize;
	margin: 0px 0px 20px 0px;
}
.fourth_slider_box_flex{
	display: flex;
	align-items: end;
	justify-content: space-between;
}
.fourth_slider_box_author h6{
	font-size: 18px;
	font-family: var(--clashDisplay-medium);
	color: var(--black);
}
.fourth_slider_box_author p{
	font-size: 16px;
	font-family: var(--clashDisplay-medium);
	color: var(--black);
}
.fourth_slider_box_btn a i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #262827;
	border-radius: 50px;
	color: var(--white);
	font-size: 14px;
	transition: 0.5s ease;
}
.fourth_slider_box_review{
	display: flex;
	align-items: center;
	gap: 5px;
	position: absolute;
	top: 30px;
	left: 30px;
}
.fourth_slider_box_review_stars ul{
	display: flex;
	align-items: center;
	gap: 5px;
}
.fourth_slider_box_review_stars ul li i{
	font-size: 12px;
	color: #E94E3C;
}
.fourth_slider_box_review_text span{
	font-size: 18px;
	font-family: var(--clashDisplay-medium);
	color: var(--black);
}
/* INDEX-CSS */

/* INNER-CSS */
/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper{
	border-radius: 0px 0px 20px 20px;
	background: linear-gradient(97deg, #433119 -23.99%, #1F1A1F 38.52%, #2B1029 77.34%);
	margin: 0px 10px 10px 10px;
	padding: 150px 0px 0px 0px;
	position: relative;
}
.footer_bg img {
    position: absolute;
    bottom: 0;
    right: 0px;
    max-width: 890px;
}
.footer_wrap_logo {
    margin: 0px 0px 20px 0px;
    max-width: 80px;
}
.footer_wrap_text p {
    color: var(--white);
    width: 80%;
    margin: 0px 0px 20px 0px;
}
.footer_wrap_btn{
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0px 0px 20px 0px;
}
.footer_wrap_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer_wrap_social ul li a i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	background: transparent;
	border-radius: 16px;
	border: 1.5px solid #FF038B;
	position: relative;
	z-index: 2;
	overflow: hidden;
	font-size: 18px;
	color: var(--white);
	transition: .25s ease;
}
.footer_wrap_social ul li a i::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	transition: .25s ease;
	opacity: 0;
	visibility: hidden;
}
.footer_wrap_social ul li a i:hover{
	border: 1px solid transparent;
}
.footer_wrap_social ul li a i:hover::after{
	opacity: 1;
	visibility: visible;
}
.footer_wrap_social ul li:nth-child(1) a i:hover::after{
	background: linear-gradient(to bottom, #3A5795 0%, #2B4886 100%);
}
.footer_wrap_social ul li:nth-child(2) a i:hover::after{
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}
.footer_wrap_social ul li:nth-child(3) a i:hover::after{
	background: #14171A;
}
.footer_links h6{
	font-size: 18px;
	font-family: var(--bwGradualDEMO-medium);
	color: #988497;
	margin: 0px 0px 20px 0px;
}
.footer_links ul li a{
	font-size: 18px;
	font-family: var(--bwGradualDEMO-medium);
	color: var(--white);
	line-height: 2.2;
	position: relative;
}
.copyright {
    border-top: 1px solid #3C293B;
    padding: 30px 0px;
    margin: 100px 0px 0px 0px;
}
.copyright_flex{
	display: flex;
	align-items: center;
	gap: 60px;
}
.copyright_text p{
	font-size: 16px;
	font-family: var(--clashDisplay-regular);
	color: var(--white);
	position: relative;
}
.copyright_text p span{
	font-family: var(--clashDisplay-medium);
}
.copyright_nav ul{
	display: flex;
	align-items: center;
	gap: 15px;
}
.copyright_nav ul li a{
	font-size: 16px;
	font-family: var(--clashDisplay-regular);
	color: var(--white);
	position: relative;
}
/* FOOTER-CSS */

/* ANIMATIONS */
@keyframes gradientAni {
	0%{
		transform: rotate(0deg);
	}
	25%{
		transform: rotate(-90deg);
	}
	50%{
		transform: rotate(-180deg);
	}
	100%{
		transform: rotate(-350deg);
	}
}
@keyframes pulse {
	0%{
		transform: rotate(0) scale(1);
	}
	25%{
		transform: rotate(-45deg) scale(0.7) translate(-20px, 0px);
	}
	50%{
		transform: rotate(15deg) scale(1.05) translate(0px, 0px);
	}
	100%{
		transform: rotate(0deg) scale(1) translate(0px, 0px);
	}
}
@keyframes upDown {
	0%{
		transform: translatey(0px);
	}
	25%{
		transform: translatey(-10px);
	}
	50%{
		transform: translatey(0px);
	}
	75%{
		transform: translatey(10px);
	}
	100%{
		transform: translatey(0px);
	}
}
@keyframes upDown1 {
	0%{
		transform: translatey(0px) rotate(15deg);
	}
	25%{
		transform: translatey(-10px) rotate(15deg);
	}
	50%{
		transform: translatey(0px) rotate(15deg);
	}
	75%{
		transform: translatey(10px) rotate(15deg);
	}
	100%{
		transform: translatey(0px) rotate(15deg);
	}
}
@keyframes upDown2 {
	0%{
		transform: translatey(0px) rotate(-15deg);
	}
	25%{
		transform: translatey(-10px) rotate(-15deg);
	}
	50%{
		transform: translatey(0px) rotate(-15deg);
	}
	75%{
		transform: translatey(10px) rotate(-15deg);
	}
	100%{
		transform: translatey(0px) rotate(-15deg);
	}
}
@keyframes zoomOut {
	0%{
		transform: scale(1) rotate(0deg);
	}
	25%{
		transform: scale(1.2) rotate(-15deg);
	}
	100%{
		transform: scale(1) rotate(0deg);
	}
}
/* ANIMATIONS */

/*ADDITIONAL CSS*/
.dashboard_header {
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: #231723;
    padding: 15px 30px 10px 0px;
    gap: 40px;
    width: calc(100vw - 250px);
    margin: 0 0 0 auto;
    height: 10vh;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 99999;
}
.dashboard_header_noti_icon {
    position: relative;
}
.dashboard_header_noti_icon span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -13px;
    right: -13px;
    width: 30px;
    height: 30px;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    background-color: #D71201;
    color: var(--white);
    font-size: 12px;
}
.dashboard_header_author_pro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px 0px 10px 0px;
}
.dashboard_header_author_pro_text {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dashboard_header_author_pro_text p{
	font-size: 14px;
	font-family: var(--visbycf-medium);
	color: var(--white);
}
.dashboard_header_author_pro_text i{
	font-size: 14px;
	color: var(--white);
}
.dashboard_sidebar {
    width: 250px;
    height: 100vh;
    background-color: var(--black);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
}
.dashboard_sidebar_logo {
    text-align: center;
    padding: 40px 0px 30px 0px;
    margin: 0px 0px 50px 0px;
    max-width: 75px;
    margin: 0 auto;
    display: block;
}
.dashboard_sidebar_nav ul li a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 55px;
	gap: 10px;
	padding: 0px 20px;
	margin: 0px 0px 10px 0px;
	font-size: 14px;
	font-family: var(--clashDisplay-regular);
	color: var(--white);
	border-radius: 0px 8px 8px 0px;
	background: transparent;
	transition: .25s ease;
	position: relative;
	overflow: hidden;
	z-index: 3;
}
.dashboard_sidebar_nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
    z-index: -1;
}
.dashboard_sidebar_nav ul li a:hover::before,
.dashboard_sidebar_nav ul li a.active::before{
	opacity: 1;
	visibility: visible;
}
.dashboard_sidebar_nav ul li a img{
	max-width: 40px;
}
.dashboard_main {
    width: calc(100vw - 250px);
    margin: 10vh 0px 0px 250px;
    padding: 20px;
}
.dashboard_main_box{
	position: relative;
	width: 100%;
	z-index: 2;
	padding: 30px;
}
.dashboard_main_box::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/dashboard_main_bg.png);
	background-position: bottom;
	background-size: cover;
	z-index: -1;
	background-color: #fef9f7;
}
.dashboard_main_box_1 {
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    background: #FFF;
    box-shadow: 10px 90px 50px -32px rgba(32, 32, 32, 0.20);
    padding: 30px;
    overflow: hidden;
    height: 530px;
}
.dashboard_main_box_text h6{
	font-size: 30px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.dashboard_main_box_list {
    display: flex;
    align-items: center;
    border-radius: 20px;
    border: 2px solid #B634B0;
    background: linear-gradient(97deg, rgba(255, 239, 219, 0.63) -23.99%, rgba(255, 204, 253, 0.65) 92.83%);
    box-shadow: 0px 54px 56.5px -20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    overflow: hidden;
    padding: 20px;
    gap: 20px;
    margin: 0px 0px 20px 0px;
}
.dashboard_main_box_list:last-child {
    margin: 0;
}
.dashboard_main_box_list_img {
	max-width: 80px;
	height: 80px;
}
.dashboard_main_box_list_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transform: rotateY(180deg);
}
.dashboard_main_box_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}
.dashboard_main_box_list_text h3 {
    font-size: 28px;
    margin: 0px 0px 10px 0px;
}
.dashboard_main_box_list_text {
    width: calc(100% - 100px);
}
.dashboard_main_box_list_text ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.dashboard_main_box_list_text ul li{
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-family: var(--bwGradualDEMO-regular);
	color: var(--black);
}
.dashboard_slider_1 .index_second_wrap_box{
	max-width: 100%;
}
.dashboard_slider_1 {
    padding: 0px 30px 30px 30px;
    overflow: visible;
}
.dashboard_slider_1 .index_second_wrap_box_text {
    left: 20px;
    bottom: 60px;
}
.dashboard_slider_1 .index_second_wrap_box_text h6 {
    font-size: 26px;
    font-family: var(--clashDisplay-semibold);
    color: var(--white);
}
.dashboard_slider_1 .index_second_wrap_box_text p {
    font-size: 14px;
    font-family: var(--clashDisplay-regular);
    color: var(--white);
}
.dashboard_slider_1 .index_second_wrap_box_btns ul li a {
    width: 50px;
    height: 50px;
}
.dashboard_main_box_1_flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0px 0px 20px 0px;
}
.dashboard_main_box_btn a{
	font-size: 18px;
	font-family: var(--clashDisplay-medium);
	color: #FF038B;
	text-decoration: underline;
}
.dashboard_main_box_2 {
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    background: #FFF;
    box-shadow: 10px 90px 50px -32px rgba(32, 32, 32, 0.20);
    padding: 30px;
    overflow: hidden;
}
.dashboard_main_box_2_req {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0px 0px 20px 0px;
}
.dashboard_main_box_2_req:last-child{
	margin: 0;
}
.dashboard_main_box_2_req_author {
    display: flex;
    align-items: center;
    gap: 20px;
}
.dashboard_main_box_2_req_author_text h6{
	font-size: 22px;
	font-family: var(--clashDisplay-semibold);
	color: var(--black);
}
.dashboard_main_box_2_req_author_text p{
	font-size: 14px;
	font-family: var(--clashDisplay-regular);
	color: #000000CC;
}
.dashboard_gradient_circle{
	position: unset;
	width: 130px;
	height: 130px;
}
.dashboard_main_box_2_req_author_btn_2 a i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	background-color: #DBDBDB;
	border-radius: 50%;
	color: var(--white);
	font-size: 18px;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.dashboard_main_box_2_req_author_btn_2 a i::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--main-gradient);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.dashboard_main_box_2_req_author_btn_2 a i:hover::after{
	opacity: 1;
	visibility: visible;
}
.avatar-upload {
    position: relative;
    width: fit-content;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: -20px;
    z-index: 1;
    bottom: -2%;
}
.avatar-upload .avatar-preview {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.avatar-upload .avatar-edit input + label {
    display: flex;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    border-radius: 100%;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    align-items: center;
    justify-content: center;
    background: linear-gradient(97deg, #FBAB43 -23.99%, #FB3BF2 92.83%);
    filter: drop-shadow(0px 23.641px 34.427px rgba(251, 87, 198, 0.50));
}
.avatar-upload .avatar-edit input + label:hover {
    background: var(--black);
    border-color: var(--white);
}
.avatar-upload .avatar-edit input + label:hover::after{
    color: var(--black);
}
.avatar-upload .avatar-edit input + label::after {
    content: "";
    color: var(--white);
    background-image: url(../images/cam-img.png);
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 23px;
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 15px;
    transition: 0.5s all;
}
.profile_main-box{
	padding: 30px;
	background-color: var(--white);
	border-radius: 20px;
}
.profile_main-box_heading{
	margin: 0px 0px 30px 0px;
}
.profile_main-box_heading h6{
	font-size: 40px;
    font-family: var(--bwGradualDEMO-extraBold);
    color: var(--black);
    line-height: 1;
}
.profile_top_box{
	border-radius: 20px;
	border: 2px solid #B634B0;
	background: linear-gradient(97deg, rgba(255, 239, 219, 0.63) -23.99%, rgba(255, 204, 253, 0.65) 92.83%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0px 0px 30px 0px;
	padding: 20px;
}
.profile_top_box_text h6{
	font-size: 25px;
    font-family: var(--bwGradualDEMO-extraBold);
    color: var(--black);
    line-height: 1;
	margin: 0px 0px 5px 0px;
}
.profile_top_box_text h5{
	font-size: 20px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: var(--black);
	line-height: 1;
	margin: 0px 0px 5px 0px;
}
.profile_top_box_text p{
	font-size: 20px;
	font-family: var(--bwGradualDEMO-regular);
	color: rgba(0, 0, 0, 0.80);
	margin: 0px 0px 10px 0px;
}
.profile_top_box_text span{
	font-size: 18px;
	font-family: var(--bwGradualDEMO-regular);
	color: rgba(0, 0, 0, 0.80);
}
.profile_top_box_text ul {
    display: flex;
    align-items: center;
	margin: 0px 0px 10px 0px;
}

.profile_top_box_text ul li {
    width: 150px;
}
.profile_top_box_circle video {
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_top_box_circle {
	position: relative;
	width: 350px;
}
.profile_top_box_circle h6 {
    font-size: 50px;
    font-family: var(--bwGradualDEMO-extraBold);
    color: var(--black);
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.profile_top_box_circle h6 span{
	font-size: 30px;
}
.profile_content_box-text{
	margin: 0px 0px 30px 0px;
}
.profile_content_box-text h6 {
    font-size: 24px;
    font-family: var(--bwGradualDEMO-extraBold);
    color: var(--black);
    line-height: 1;
    margin: 0px 0px 10px 0px;
}
.profile_content_box-text p {
    font-size: 16px;
    font-family: var(--bwGradualDEMO-regular);
    color: rgba(0, 0, 0, 0.80);
	margin: 0px 0px 10px 0px;
}
.matches_box{
	border-radius: 40px;
	border: 2px solid rgba(255, 255, 255, 0.32);
	background: #FFF;
	box-shadow: 10px 90px 50px -32px rgba(32, 32, 32, 0.20);
	backdrop-filter: blur(10px);
	padding: 50px;
	position: relative;
	height: 80vh;
	overflow: hidden;
}
.matches_box_text .main_heading{
	font-size: 30px;
}
.matches_box_floating_cards .index_second_wrap_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    transition: transform 1s ease, top 1s ease, left 1s ease, opacity 1s ease;
    height: 500px;
	pointer-events: none;
}
.matches_box_floating_cards .index_second_wrap_box:first-child {
    z-index: 9999999;
    transform: translate(-50% , -50%) rotate(0deg) !important;
	pointer-events: visible;
}
.matches_box_floating_cards .index_second_wrap_box:nth-child(even) {
    transform: translate(-50% , -50%) rotate(-14deg);
}
.matches_box_floating_cards .index_second_wrap_box:nth-child(odd) {
    transform: translate(-50% , -50%) rotate(14deg);
}
.hideCard {
    top: -40% !important;
    left: -3% !important;
    opacity: 0;
	z-index: 9999999;
}
.hideCardRight {
    top: -20% !important;
    left: 103% !important;
    opacity: 0;
    z-index: 9999999;
}
.index_second_wrap_box.active {
    z-index: 999;
    transform: translate(-50% , -50%) rotate(0deg) !important;
	pointer-events: visible;
}
/*ADDITIONAL CSS*/

/*AUTH SCREENS START*/
.auth_row {
	display: flex;
	min-height: 100vh;
	padding: 25px;
	gap: 20px;
}
.auth_col_left, .auth_col_right {
	width: 50%;
	border-radius: 20px;
	overflow: hidden;
	height: 100vh;
}
.auth_col_left {
	background: url(../images/banner_bg_2.png) center /cover;
	background-repeat: no-repeat;
	padding: 40px;
	position: relative;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.auth_row .logo_box {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    max-width: 165px;
}
.check_box_item {
	width: fit-content;
	padding: 0px 40px;
	height: 70px;
	border-radius: 15px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 0px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.check_box_item label,
.check_box_item input {
	font-size: 22px;
	font-family: var(--bwGradualDEMO-regular);
	color: var(--black);
	cursor: pointer;
}
.auth_col_left .common_btn_dark {
	width: fit-content;
	height: 70px;
	padding: 0px 40px;
	font-size: 22px!important;
	margin-top: 40px;
}
.auth_col_left .index_banner_wrap_text h6,
.auth_col_left .index_banner_wrap_text h3 {
	font-size: 60px;
}
.auth_col_left .index_banner_wrap_text h3 {
	line-height: normal;
}
.auth_col_left .index_banner_wrap_text p {
	font-weight: 600;
}
.check_box_wrapper {
	margin: 40px 0px;
}
.check_box_wrapper .form-check-input:checked {
	background-color: #b634b0;
	border-color: #e88b60;
}
.auth_col_right video {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}
.gen_input {
	width: 100%;
	padding: 0px 25px;
	height: 70px;
	border-radius: 15px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 0px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: 0;
	font-size: 20px;
}
.login_form {
	margin-top: 40px;
}
.form_row {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 660px;
}
.form_group {
	position: relative;
	width: 50%;
}
.toggle_password {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: #333;
	cursor: pointer;
}
.login_form .title {
	font-size: 22px;
	font-family: var(--bwGradualDEMO-medium);
	color: var(--black);
	font-weight: 600;
	padding-bottom: 10px;
}
.login_form .common_btn_dark {
	width: 240px;
}
.route_link {
	color: #000;
	font-family: var(--bwGradualDEMO-regular);
	font-size: 16px;
	margin-top: 10px;
}
.route_link a {
	color: #000;
	font-family: var(--bwGradualDEMO-medium);
}
/*AUTH SCREENS END*/

/*CHAT SCREEN START*/
.chat_row {
	display: flex;
	background: #fff;
}
.chat_col_left {
	max-width: 500px;
	width: 100%;
	border-right: 2px solid #f3f3f3;
	padding-bottom: 30px;
}
.chat_col_right {
	width: calc(100% - 500px);
	padding-bottom: 30px;
}
.top_head_wrap {
    position: relative;
    background: #fff;
    padding: 0px 30px;
    border-bottom: 2px solid #f3f3f3;
    height: 105px;
    display: flex;
    align-items: center;
}
.chat_col_left .top_head_wrap .title {
	font-size: 36px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: #000;
	display: flex;
	align-items: center;
	gap: 20px;
}
.chat_col_left .top_head_wrap .title .dd_arrow {
    font-size: 18px;
    color: #000;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
}
.chat_counts {
    padding: 6px 12px;
    background: #edf2f7;
    border-radius: 14px;
    font-size: 12px;
    font-family: var(--inter-semiBold);
}
.add_btn {
	background: var(--main-gradient);
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	border: 0;
	font-size: 20px;
	color: #fff;
}
.chat_search_bar {
	padding: 15px 30px;
}
.chat_search_bar input {
	width: 100%;
	height: 60px;
	border-radius: 15px;
	background: #F3F3F3;
	border: 0;
	font-size: 20px;
	font-family: var(--clashDisplay-regular);
	padding: 0px 25px;
}
.user_chat_col {
	padding: 0px 30px;
}
.chat_item {
	display: flex;
	gap: 20px;
	padding: 15px;
	border-radius: 15px;
	transition: all 0.25s;
	position: relative;
}
.chat_item:hover {
	background: rgba(97, 94, 240, 0.06);
} 
.chat_item .img_box {
	width: 65px;
	height: 65px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.chat_item .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.chat_item .text_box .user_name {
	font-size: 18px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: #000;
}
.chat_item .text_box .user_desc {
	font-size: 16px;
	font-family: var(--clashDisplay-semibold);
	color: rgba(0, 0, 0, 0.40);
}
.chat_time {
    font-size: 15px;
    font-family: var(--clashDisplay-semibold);
    color: rgba(0, 0, 0, 0.40);
    position: absolute;
    top: 10px;
    right: 10px;
}
.chat_col_right .top_head_wrap {
	display: flex;
	justify-content: space-between;
	align-content: center;
}
.current_user_chat_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}
.current_user_chat_wrap .img_box {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.current_user_chat_wrap .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.current_user_chat_wrap  .text_box {
	width: calc(100% - 65px);
}
.current_user_chat_wrap  .text_box .c_user_name {
	font-size: 18px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: #000;
}
.call_btn {
	font-family: var(--bwGradualDEMO-regular);
	font-size: 25px;
	color: #000;
	width: 135px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 14px;
	border: 2px solid #B634B0;
	background: linear-gradient(97deg, #FFEFDB -23.99%, rgba(255, 204, 253, 0.79) 92.83%);
}
.current_user_chat_wrap .text_box .c_user_status {
    font-size: 16px;
    font-family: var(--clashDisplay-semibold);
    color: rgb(102 102 102);
}
.c_user_status i {
	font-size: 14px;
	color: rgb(104 211 145);
}
.chat_body {
    padding: 30px;
    width: 100%;
    height: 495px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.message_wrap {
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
}
.message_wrap .img_box {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.message_wrap .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.message_wrap .text_box {
    width: calc(100% - 45px);
    display: flex;
    flex-direction: column;
}
.messsage_right .text_box {
	align-items: flex-end;
}
.message_wrap .text_box .txt {
	padding: 10px 22px;
	border-radius: 10px;
	background: #F1F1F1;
	width: fit-content;
	font-size: 16px;
	font-family: var(--clashDisplay-regular);
}
.messsage_right .text_box .txt {
	background: var(--main-gradient);
	color: #fff;
}
.chat_textarea {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0px 45px 0px 10px;
    position: relative;
}
.attachemt_ipnut {
	display: flex;
	justify-content: center;
	align-items: center;
}
.chat_textarea .text_box {
	width: calc(100% - 65px);
}
.chat_textarea .text_box input {
	width: 100%;
	height: 65px;
	border-radius: 15px;
	border: 2px solid var(--gray-gray-300, #E2E8F0);
	background: #fff;
	padding: 30px;
	font-size: 18px;
	font-family: var(--clashDisplay-regular);
}
.send_btn {
    border: 0;
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
}
/*CHAT SCREEN END*/

/* subscription-Plan-Start */

.subscription-plan {
    padding: 50px 50px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 10px 90px 50px -32px rgba(32, 32, 32, 0.20);
    backdrop-filter: blur(10px);
}
.subscription-plan-heading h6{
    font-family: var(--bwGradualDEMO-extraBold);
    font-size: 36px;
    color: var(--black);
    text-align: center;
}
.subscription-plan-heading p {
    font-family: var(--clashDisplay-medium);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    margin: 0px 0px 30px 0px;
}
.subscription-plan-wrap {
    padding: 50px 30px;
    border-radius: 20px;
    background: linear-gradient(97deg, rgba(255, 239, 219, 0.63) -23.99%, rgba(255, 204, 253, 0.65) 92.83%);
    margin: 0px 0px 30px 0px;
    border: 2px solid rgb(245 114 37 / 81%);
    position: relative;
}
.subscription-plan-wrap h6{
    font-size: 20px;
    font-family: var(--bwGradualDEMO-extraBold);
    color: var(--black);
    line-height: 1;
    margin: 0px 0px 10px 0px;
}
.subscription-plan-wrap h5 {
    font-size: 50px;
    font-family: var(--bwGradualDEMO-extraBold);
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    margin: 0px 0px 10px 0px;
}
.subscription-plan-wrap p {
    font-size: 16px;
    font-family: var(--bwGradualDEMO-regular);
    color: #817575;
    margin: 0px 0px 20px 0px;
}
.subscription-plan-wrap ul{
    margin: 0px 0px 20px 0px;
}
.subscription-plan-wrap ul li img{
    margin: 0px 10px 0px 0px;
}
.subscription-plan-wrap ul li {
    font-size: 14px;
    font-family: var(--bwGradualDEMO-regular);
    color: var(--black);
    padding: 0px 0px 10px 0px;
}
.plan-wrap-active{
background: linear-gradient(97deg, #433119 -23.99%, #1F1A1F 38.52%, #2B1029 77.34%);
}
.plan-wrap-active h6{
    color: var(--white);
}
.plan-wrap-active p{
    color: var(--white);
}
.plan-wrap-active ul li span{
    color: var(--white);
}
.plan-wrap-active ul li img {
    filter: brightness(10);
}
/* subscription-Plan-end */

.matches_complete_box-imgf{
	display: flex;
	align-items: center;
	width: 60%;
	margin: 0 auto 60px auto;
	position: relative;
}
.tf-box-1{
	transform: rotate(15deg);
}
.tf-box-2{
	transform: rotate(-15deg);
}
.matches_complete_box_text h6{
	font-size: 50px;
	font-family: var(--bwGradualDEMO-extraBold);
	color: var(--black);
	line-height: 1;
	margin: 0px 0px 10px 0px;
}
.matches_complete_box_text h3 {
    font-size: 50px;
    font-family: var(--bwGradualDEMO-extraBold);
    background: linear-gradient(91deg, #F8CA2A -9.4%, #D630CE 68.86%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 0px 0px 20px 0px;
}
.matches_complete_box_text {
	text-align: center;
}
.matches_complete_box_btn{
	display: flex;
	align-items: center;
	justify-content: center;
}
.matches_box2 {
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    background: #FFF;
    box-shadow: 10px 90px 50px -32px rgba(32, 32, 32, 0.20);
    backdrop-filter: blur(10px);
    padding: 50px;
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.index_second_wrap_box_img1{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 25px;
}
.index_second_wrap_box_img1 img{
	width: 420px;
	height: 360px;
	object-fit: cover;
	transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
}
.index_second_wrap_box1:hover .index_second_wrap_box_img img{
	transform: scale(1.1);
} 
.index_second_wrap_box1{
	position: relative;
	border-radius: 25px;
	max-width: 80%;
	margin: 0 auto;
	z-index: 3;
	animation: upDown1 3s linear infinite;
	animation-direction: alternate-reverse;
}
.index_second_wrap_box1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 36px;
    background: linear-gradient(179deg, rgba(40, 40, 40, 0.00) 56.72%, #282828 115.69%);
    z-index: 1;
}
.index_second_wrap_box2:hover .index_second_wrap_box_img img{
	transform: scale(1.1);
} 
.index_second_wrap_box2{
	position: relative;
	border-radius: 25px;
	max-width: 80%;
	margin: 0 auto;
	z-index: 3;
	animation: upDown2 3s linear infinite;
	animation-direction: alternate;
}
.index_second_wrap_box2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 36px;
    background: linear-gradient(179deg, rgba(40, 40, 40, 0.00) 56.72%, #282828 115.69%);
    z-index: 1;
}
.index_second_wrap_box_text1 {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 2;
}
.index_second_wrap_box_text1 h6{
	font-size: 25px;
	font-family: var(--clashDisplay-semibold);
	color: var(--white);
}
.index_second_wrap_box_text1 h6 span{
	font-family: var(--clashDisplay-regular);
}
.index_second_wrap_box_text1 p{
	font-size: 14px;
	font-family: var(--clashDisplay-regular);
	color: var(--white);
}
.comp-mid-img {
    text-align: center;
    margin: 0px 0px 20px 0px;
}
.comp-emoji-img {
	position: absolute;
	top: 0;
	right: -120px;
	animation: zoomOut 1s linear infinite;
}
.comp-hi-img {
	position: absolute;
	top: 80px;
	left: -30px;
	animation: pulse 1s linear 2s infinite;
}
.matches_complete_box {
    position: relative;
}
.left-arrow-img {
    position: absolute;
    left: -1%;
    top: 40%;
    transform: translate(-50%, -50%);
}
.right-arrow-img {
    position: absolute;
    right: -30%;
    top: 40%;
    transform: translate(-50%, -50%);
}
.heart-img{
	position: absolute;
}
.heart-1{
	left: -20%;
	top: 0px;
}
.heart-2{
	left: -20%;
	top: 50%;
	transform: rotate(85deg);
}
.heart-3{
	left: 10%;
	top: 69%;
	transform: rotate(85deg) scale(0.9);
}
.heart-4{
	right: -20%;
	top: 5%;
}
.heart-5{
	right: 16%;
	top: 64%;
	transform: scale(0.9);
}
.heart-6{
	right: -14%;
	top: 74%;
}
.complete_box_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 190px;
	height: 70px;
	border-radius: 15px;
	font-size: 17px !important;
	font-family: var(--bwGradualDEMO-medium) !important;
	color: var(--white) !important;
	transition: .5s ease;
	position: relative;
	z-index: 3;
	background: var(--main-gradient);
	box-shadow: 0px 0px 0px 0px #000000;
	transition: .25s ease;
	border: none;
}
.complete_box_btn:hover{
	transform: scale(1.01);
}
.complete_box_btn::before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 15.63px;
	opacity: 1;
	background: linear-gradient(96deg, rgba(251, 171, 67, 0.52) -13.25%, rgba(182, 52, 176, 0.81) 110.68%);
	filter: blur(15.630250930786133px);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: .25s ease;
}
.complete_box_btn::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	border-radius: 15px;
	background: linear-gradient(96deg, #B634B0 -23.74%, #FBAB43 161.1%);
	z-index: -1;
	transition: .5s ease;
	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
}
.complete_box_btn:hover::after{
	opacity: 1;
	visibility: visible;
}
.complete_box_btn:hover::before{
	top: 12px;
	left: 5px;
	opacity: 1;
	visibility: visible;
}
.mid-heart {
    background: linear-gradient(97deg, #FBAB43 -23.99%, #FB3BF2 92.83%);
    filter: drop-shadow(0px 32px 46.6px rgba(251, 87, 198, 0.50));
    transform: translate(-50%, -50%) scale(1.2);
    transition: 1s cubic-bezier(0.47, 1.4, 0.401, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
}
.mid-heart1{
	position: relative;
}
.mid-heart1 {
    background: var(--white);
    opacity: 1;
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    animation: pulse1 2s ease infinite;
}
.mid-heart2 {
    background: var(--white);
    opacity: 1;
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    animation: pulse2 2s ease infinite;
}
.hotspot.animated:nth-child(2):before { animation-delay: 0.2s }
.hotspot.animated:nth-child(3):before { animation-delay: 0.4s }
.hotspot.animated:nth-child(4):before { animation-delay: 0.6s }
.hotspot.animated:nth-child(5):before { animation-delay: 0.8s }
.hotspot.animated:nth-child(6):before { animation-delay: 1.0s }

@keyframes pulse1 {
	0% {
	  opacity: 1;
	  width: 50px;
	  height: 50px;
	}
	100% {
	  width: 130px;
	  height: 130px;
	  opacity: 0.1; 
	}
  }
@keyframes pulse2 {
	0% {
	  opacity: 1;
	  width: 50px;
	  height: 50px;
	}
	100% {
	  width: 160px;
	  height: 160px;
	  opacity: 0.1; 
	}
  }
  .pre_login_wrapper {
    position: relative;
    padding: 10px 0px;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre_Login_boxi_wrap_input input {
	padding: 0px 20px;
	width: 100%;
	height: 70px;
	border-radius: 15px;
	background: #fff;
	margin: 5px 0px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	font-size: 16px;
	font-family: var(--bwGradualDEMO-regular);
	color: var(--black);
	border: none;
}
.pre_Login_boxi_wrap_input input::placeholder{
	color: var(--black);
}
.pre_Login_boxi_wrap_input select {
	padding: 0px 20px;
	width: 100%;
	height: 70px;
	border-radius: 15px;
	background-color: #fff;
	margin: 5px 0px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	font-size: 16px;
	font-family: var(--bwGradualDEMO-regular);
	color: var(--black);
	border: none;
}
.pre_Login_boxi_wrap_input textarea {
	padding: 10px 20px;
	width: 100%;
	height: 70px;
	border-radius: 15px;
	background-color: #fff;
	margin: 5px 0px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	font-size: 16px;
	font-family: var(--bwGradualDEMO-regular);
	color: var(--black);
	border: none;
}
.pre_Login_boxi_wrap_input textarea::placeholder{
	color: var(--black);
}
.check_box_item_f{
	display: flex;
	align-items: center;
	gap: 30px;
}
.check_box_item_text h6 {
    font-size: 20px !important;
    font-family: var(--bwGradualDEMO-regular);
    color: var(--black);
    font-weight: 600;
    margin: 0px 0px 5px 0px;
}
.check_box_item_text_wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 70px;
    margin: 5px 0px;
}
.pre_login_btn .common_btn_dark {
    gap: 10px;
}
.upload-files-container {
	background-color: #f7fff7;
	padding: 30px;
	border-radius: 40px;
}
.drag-file-area {
	border: 2px dashed #ff004d;
	border-radius: 20px;
	margin: 10px 0 15px;
	padding: 20px 35px;
	width: 100%;
	text-align: center;
}
.drag-file-area .upload-icon {
	font-size: 50px;
}
.drag-file-area h3 {
	font-size: 26px;
	margin: 15px 0;
}
.drag-file-area label {
	font-size: 19px;
}
.drag-file-area label .browse-files-text {
	font-weight: bolder;
	cursor: pointer;
	background: var(--main-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.browse-files span {
	position: relative;
	top: -25px;
}
.default-file-input {
	opacity: 0;
}
.upload-files-container h4{
	font-size: 20px;
	color: var(--black);
	font-family: var(--clashDisplay-medium);
	margin: 0px 0px 10px 0px;
}
.browse-files input {
    height: auto;
}
.cus_btn {
    display: flex;
    align-items: center;
    gap: 30px;
}
.pre_login_box5_wrap_texth{
	text-align: center;
	margin: 20px 0px ;
}
.pre_login_box5_wrap_texth h6{
	background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pre_login_box5_wrap_text h6{
	font-size: 20px !important;
	margin: 0px 0px 20px 0px;
	line-height: 30px;
}
.pre_login_box5_wrap {
	background-color: var(--white);
	padding: 30px 20px;
	position: relative;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 20px;
	overflow: hidden;
}
.pre_login_box5_wrap_text ul{
	padding: 0px 0px 0px 25px;
	height: 240px;
	overflow-x: hidden;
}
.pre_login_box5_wrap_text ul::-webkit-scrollbar {
    width: 5px;
}
.pre_login_box5_wrap_text ul::-webkit-scrollbar-track {
    background: var(--white); 
}
.pre_login_box5_wrap_text ul::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
.pre_login_box5_wrap_text ul li{
	font-size: 15px;
	color: var(--black);
	font-family: var(--bwGradualDEMO-regular);
	list-style: disc;
	line-height: 35px;
}
div#box_6 {
    width: 70%;
}
.pre_Login_boxi_wrap_input h5{
	font-family: var(--bwGradualDEMO-extraBold);
	font-size: 30px;
	color: var(--black);
	margin: 0px 0px 10px 0px;
}
.pre_Login_boxi_wrap.active { 
	display: block !important; 
}

.pre_login_wrap_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pre_login_wrap_video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: -1;
}
.pre_login_wrap_box {
    background: url(../images/banner_bg_2.png) #ffffffe0 center / cover;
    background-repeat: no-repeat;
    padding: 40px;
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    margin:  0 auto;
}
.logo_box {
    max-width: 80px;
    margin: 0px 0px 20px 0px;
}
.check_box_item1 {
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
}
.pre_login_btn .common_btn_dark {
    gap: 10px;
}
.pre_login_wrap_box .common_btn_dark {
    width: fit-content;
    height: 70px;
    padding: 0px 40px;
    font-size: 22px !important;
    margin-top: 40px;
}

.recommendation_dropdown{
	position: absolute;
	top: 0;
	right: 0;
}
.recommendation_dropdown {
    position: absolute;
    top: 40px;
    right: -330px;
    width: 350px;
    z-index: 99999999;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 5px 5px 8px 3px #00000030;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .25s ease, opacity .25s ease;
}
.dropdown_show{
	opacity: 1;
	transform: scaleY(1);
}
.recommendation_dropdown_input input{
	width: 100%;
	height: 40px;
	border: 0;
	border-bottom: 1px solid #eeeeee;
	font-size: 16px;
	font-family: var(--clashDisplay-regular);
	background-color: transparent;
	padding: 0px 20px;
}
.recommendation_dropdown_scroll_box{
	height: 300px;
	overflow-y: scroll;
	border-bottom: 1px solid #eeeeee;
}
.recommendation_dropdown_scroll_box::-webkit-scrollbar {
    width: 5px;
}
.recommendation_dropdown_scroll_box::-webkit-scrollbar-track {
    background: var(--white); 
}
.recommendation_dropdown_scroll_box::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
.recommendation_dropdown .chat_item {
    gap: 15px;
    align-items: center;
}
.recommendation_dropdown_btn{
	padding: 10px;
	display: flex;
	justify-content: end;
}
.rotate_btn {
    transform: translateY(-50%) rotate(45deg);
}
.dashboard_main_box_1_slider {
    overflow-x: scroll;
    width: 100%;
}
.dashboard_main_box_1_slider::-webkit-scrollbar {
    width: 2px;
	height: 5px;
}
.dashboard_main_box_1_slider::-webkit-scrollbar-track {
    background: var(--white); 
}
.dashboard_main_box_1_slider::-webkit-scrollbar-thumb {
	background-color: var(--black);
	border-radius: 10px;
}
.index_second_wrap_box_m {
    display: flex;
    gap: 20px;
}

.index_second_wrap_box_wp {
    height: 370px;
}
.dashboard_header_author_pro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard_header_author_pro_img {
    max-width: 60px;
    overflow: hidden;
    border-radius: 50%;
}
.index_second_wrap_box_wp .index_second_wrap_box {
    width: 300px;
}
.index_second_wrap_box_wp .index_second_wrap_box_text {
    bottom: 65px;
    left: 10px;
}
.index_second_wrap_box_wp .index_second_wrap_box_text h6 {
    font-size: 16px;
}
.index_second_wrap_box_wp .index_second_wrap_box_text p {
    font-size: 14px;
}
.dashboard_main_box_1new {
    height: 760px;
}
div#card-element {
    height: 56px;
    padding: 17px 15px;
    margin: 15px 0px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.love-heart:before,#switch {
	display: none;
   }
   
   .love-heart, .love-heart::after {
	border-color: hsl(231deg 28% 86%);
	border: 1px solid;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	width: 10px;
	height: 8px;
	border-bottom: 0
   }
   
   .round {
	position: absolute;
	z-index: 1;
	width: 8px;
	height: 8px;
	background: hsl(0deg 0% 100%);
	box-shadow: rgb(0 0 0 / 24%) 0px 0px 4px 0px;
	border-radius: 100%;
	left: 0px;
	bottom: -1px;
	transition: all .5s ease;
	animation: check-animation2 .5s forwards;
   }
   
   input:checked + label .round {
	transform: translate(0px, 0px);
	animation: check-animation .5s forwards;
	background-color: hsl(0deg 0% 100%);
   }
   
   @keyframes check-animation {
	0% {
	 transform: translate(0px, 0px);
	}
   
	50% {
	 transform: translate(0px, 7px);
	}
   
	100% {
	 transform: translate(7px, 7px);
	}
   }
   
   @keyframes check-animation2 {
	0% {
	 transform: translate(7px, 7px);
	}
   
	50% {
	 transform: translate(0px, 7px);
	}
   
	100% {
	 transform: translate(0px, 0px);
	}
   }
   
   .love-heart {
	box-sizing: border-box;
	position: relative;
	transform: rotate(-45deg) translate(-50%, -33px) scale(4);
	display: block;
	border-color: hsl(231deg 28% 86%);
	cursor: pointer;
	top: 0;
   }
   
   input:checked + .love-heart, input:checked + .love-heart::after, input:checked + .love-heart .bottom {
	border-color: hsl(347deg 81% 61%);
	box-shadow: inset 6px -5px 0px 2px hsl(347deg 99% 72%);
   }
   
   .love-heart::after, .love-heart .bottom {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	border-color: hsl(231deg 28% 86%);
   }
   
   .love-heart::after {
	right: -9px;
	transform: rotate(90deg);
	top: 7px;
   }
   
   .love-heart .bottom {
	width: 11px;
	height: 11px;
	border-left: 1px solid;
	border-bottom: 1px solid;
	border-color: hsl(231deg 28% 86%);
	left: -1px;
	top: 5px;
	border-radius: 0px 0px 0px 5px;
   }
   .love {
    transform: translateX(-20px) scale(0.8);
}	
.location_btn1 {
    background: transparent;
    border: none;
    font-size: 30px;
}