@font-face {
	src:url(../fonts/Roboto-Regular.ttf);
	font-family: robot;
}


body{
	margin: 0;
	padding: 0;
	border: none;
	background-color: rgba(208, 185, 46, 0.2);
	font-family: Robot;
	overflow-x: hidden;
}

#content{
	width: 100%;
	display: flex;
	justify-content: center;
}


.nav{
	width: 100%;
	text-align: center;
	background-color: rgba(64, 64, 64, 1);
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
}

.nav_title{
	width: calc(100% - 120px);
	font-size: 16pt;
	color: white;
	cursor: default;
}

.nav_img{
	width: 69px;
	height: 69px;
	position: absolute;
	left: 0;
	cursor: pointer;
}

.animatelogo{
	animation: 8s infinite alternate animatelogo;

}

@keyframes animatelogo{
	from {
		left: 0;
	}
	to {
		left: 100%;
		transform: translateX(-100%) rotate(360deg);
	}
}

.nav_icon{
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
	margin-right: 15px;
	align-self: flex-end;
	cursor: pointer;
	transition: 0.5s;
}

.animate_nav_profile{
	transform: scale(0.8,0.8);
}

.animate_nav_settings{
	transform: rotate(45deg);
}

.bar{
	opacity: 0;
	transition: opacity 0.5s;
}

.bar_active{
	opacity: 1;
	transition: opacity 0.5s;
}

.bar_active select {
	border: none;
	outline: none;
	cursor: pointer;
	background-color: #FFF;
	font-size: 16px;
}

.bar_active select:hover {
	color: #d9801f;
}

.profile{
	display: none;
}

.settings{
	display: none;
}

.profile_active {
	right: 120px;
}

.settings_active {
	right: 5px;
}

.profile_active, 
.settings_active {
	background-color:white;
    border-radius: 3px;
	position: absolute;
	top: 65px;
}

.profile_active p, 
.settings_active p {
	cursor: pointer;
	padding: 0 10px;
}

.profile_active p:hover, 
.settings_active p:hover {
	color: #d9801f;
	font-weight: bold;
}

.tap-el{
	cursor: pointer;
	width: 20%;
	height: 40vh;
	margin-top: 20vh;
	border-radius: 5px;
	background-color: #FFF;
	box-shadow: inset 7px -5px 25px grey;
	display: flex;
	align-items: center;
}

.tap-el:nth-child(1){
	margin-right: 5%;
}

.tap-el p{
	text-align: center;
	text-decoration: none;
	color: #d9801f;
	font-weight: bolder;
}

.landingpage_img_parrent{
	display: flex;
	justify-content: center;
}

.landingpage_img{
	width: 70%;
}

.vertical-center {
	display: grid;
  	height: 60vh;
  	place-items: center;
}

#signup_form, #login_form {
	background-color: #FFF;
	padding: 30px 75px;
	border-radius: 5px;
}

#form_options button {
	border:none;
	color: rgba(64, 64, 64, 1);
	font-size: 11pt;
	cursor: pointer;
	padding-bottom: 5px;
	background-color: transparent;
	border-bottom: 2px solid transparent;
}

#form_options button:hover {
	color: #d9801f;
	border-bottom-color: #d9801f;
}

#form_options button.active {
	border-bottom-color: #d9801f;
}

.btn {
	cursor: pointer;
	text-align: center;
	padding: 10px 20px;
	border-radius: 5px;
}

/* .tap-el p:hover, .btn:hover
#signup_form:hover, #login_form:hover {
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	perspective: 1000px;
} */
  
@keyframes shake {
	10%, 90% {
	  transform: translate3d(-1px, 0, 0);
	}
	20%, 80% {
	  transform: translate3d(2px, 0, 0);
	}
	
	30%, 50%, 70% {
	  transform: translate3d(-2px, 0, 0);
	}
	40%, 60% {
	  transform: translate3d(2px, 0, 0);
	}
}

.btn-orange {
	color: #FFF;
	background-color: #d9801f;
	border: 1px solid #d9801f;
}

.btn-orange:hover {
	color: #d9801f;
	background-color: transparent;
	border: 1px solid #d9801f;
}

.btn-dark {
	color: #FFF;
	background-color: #000;
	border: 1px solid #000;
}

.btn-dark:hover {
	color: #000;
	background-color: transparent;
	border: 1px solid #000;
}

.pt-15 {
	padding-top: 15px !important;
}

.pt-35 {
	margin-top: 35px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.ml-15 {
	margin-left: 15px !important;
}

.text-center {
	text-align: center !important;
}

.btn-lifted:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.25), 0 4px 4px rgba(0,0,0,0.22);
}

.card-lifted {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

input {
	padding: 8px;
	border-radius: 3px;
	border: 1px solid #999;
	display: block;
	margin: 15px auto;
}

input:focus {
	font-size: 14.33333px;
}

input, button {
	outline: none;
}

.error_signup{
	color: red; 
	opacity: 0.6; 
	margin-bottom:30px; 
	margin-top:10px; 
	font-size: 15px; 
	text-align: center;
	display:none;
}

.error_signin{
	color: red; 
	opacity: 0.6; 
	margin-bottom:30px; 
	margin-top:10px; 
	font-size: 15px; 
	text-align: center;
	display:none;
}

.feedback_error{
	color: red; 
	opacity: 0.6; 
	margin-top:35px; 
	font-size: 20px; 
	text-align: center;
	text-transform: capitalize;
	display:none;
}

@media only screen and (max-width: 750px) {

	#content{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.tap-el{
		width: 40%;
		height: 30vh;
		border-radius: 25px;
		box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	}

	.tap-el:nth-child(1){
		margin-top: 10vh;
		margin-right: 0;
	}

	.tap-el:nth-child(2){
		margin-top: 5vh;
	}

	.bar_active select {
		border: none;
		background-color: #d9801f;
	}

	.bar_active select:hover {
		color: #FFF;
	}

	.profile_active, .settings_active {
		top: 0;
		left: 0;
		position: absolute;
		width: 75%;
		height: 300px;
		border-radius: unset;
		border-bottom-right-radius: 50%;
		background-color: rgba(148, 147, 141, 0.23);
	}

	.profile_active .bar_active, .settings_active .bar_active {
		margin-top: 50px;
	}

	.profile_active .bar_active p, .settings_active .bar_active p {
		background-color: #d9801f;
	}

	.profile_active p, .settings_active p {
		cursor: pointer;
		padding: 15px;
		margin-right: 85px;
		border-radius: 0px 25px 25px 0px
	}

	.profile_active p:hover, .settings_active p:hover {
		color: #FFF;
		font-weight: bold;
		margin-right: 65px;
		transition: all 0.5s ease-in-out;
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	}
}

