.hover-input-popup {
	position: relative;
}

.input-popup {
	display: none;
}

.hover-input-popup .input-popup {
	display: block;
	position: absolute;
	bottom: 70%;
	left: 50%;
	width: 280px;
	background-color: #1a1a1a;
	color: #fff;
	padding: 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.input-popup::after {
	position: absolute;
	content: '';
	bottom: -19px;
	left: 50%;
	margin-left: -5px;
	border-width: 10px 10px 10px 10px;
	border-style: solid;
	border-color: transparent transparent #1a1a1a transparent;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.input-popup p {
	padding-left: 20px;
	position: relative;
}

.input-popup p::before {
	position: absolute;
	content: '';
	font-family: 'Line Awesome Free';
	font-weight: 900;
	left: 0;
	top: 4px;
	line-height: 1;
	font-size: 18px;
}

.input-popup p.error {
	text-decoration: line-through;
}

.input-popup p.error::before {
	content: "\f057";
	color: #ea5455;
}

.input-popup p.success::before {
	content: "\f058";
	color: #28c76f;
}

.copyInput {
	display: inline-block;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.copied::after {
	position: absolute;
	top: 8px;
	right: 12%;
	width: 100px;
	display: block;
	content: "COPIED";
	font-size: 1em;
	padding: 5px 5px;
	color: #fff;
	background-color: #FF7000;
	border-radius: 3px;
	opacity: 0;
	will-change: opacity, transform;
	animation: showcopied 1.5s ease;
}

@keyframes showcopied {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}

	50% {
		opacity: 0.7;
		transform: translateX(40%);
	}

	70% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
	}
}

/* Custom CSS */
.custom-label {
	font-weight: bold;
}

.input-group-text {
	background-color: #007bff;
	color: #fff;
}

.input-group-text:hover {
	background-color: #0056b3;
	color: #fff;
}

.form_group {
	height: 50px;
	margin-top: 10px;
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	background-color: #fff;
	border: 1px solid #000;
	box-shadow: 6px 6px 0 #a2ddfd;
	position: relative;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

#facebook .row p {
	color: #1877f2;
	font-weight: bold;
	font-size: 18px;
	display: inline-block !important;
	margin-top: 10px;
}

#facebook_group .row p {
	color: #25dce9;
	font-weight: bold;
	font-size: 18px;
	display: inline-block !important;
	margin-top: 10px;
}

#youtube .row p {
	color: #ff0000;
	font-weight: bold;
	font-size: 18px;
	display: inline-block !important;
	margin-top: 10px;
}

#instagram .row p {
	color: #c32aa3;
	font-weight: bold;
	font-size: 18px;
	display: inline-block !important;
	margin-top: 10px;
}

#tiktok .row p {
	color: #010101;
	font-weight: bold;
	font-size: 18px;
	display: inline-block !important;
	margin-top: 10px;
}

button.btn.btn-primary.btn-block {
	margin: 0 auto;
	margin-bottom: 20px;
	margin-top: 20px;
}

@media(max-width:767px) {
	form#loginForm {
		margin-top: 220px;
	}
}

.freelancer-profile {
	margin-bottom: 20px;
	text-align: center;
}

.profile-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 10px;
}