/*Appointment Box*/

.appointment-box{
	position: fixed;
    right: -400px;
    top: 0px;
    width: 400px;
    max-width: 100%;
	height:100%;
	overflow-y:auto;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.appointment-form-visible .appointment-box{
	right:0px;
	opacity:1;
	visibility:visible;
}

.appointment-box .inner-box{
	position:relative;
	padding:80px 30px 30px;
}

.appointment-box .inner-box .cross-icon{
	position:absolute;
	right:20px;
	top:20px;
	cursor:pointer;
	color:#ffffff;
	font-size:20px;
}

.appointment-box .inner-box h2{
	position:relative;
	font-size:28px;
	font-weight:600;
	line-height:1.2em;
	color:#ffffff;
	margin-bottom:20px;
	font-family: 'Poppins', sans-serif;
}

/*Appointment Form*/

.appointment-form{
	position:relative;
}

.appointment-form .form-group{
	position:relative;
	margin-bottom:15px;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:23px;
	padding:10px 25px;
	height:45px;
	color:#ffffff;
	font-size:16px;
	border:1px solid rgba(255,255,255,0.40);
	background:none;
	transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder{
	color:#ffffff;
}

.contact-form.alternate input::placeholder,
.contact-form.alternate textarea::placeholder{
	color:#ffffff !important;
}

.appointment-form textarea{
	height:135px;
	resize:none;
}

.appointment-form .form-group button{
	margin-top:15px;
}

.appointment-box .inner-box{
	background-color: #222;
}

.appointment-form input[type="text"]:focus, 
.appointment-form input[type="email"]:focus, 
.appointment-form textarea:focus{
	border-color: #05e249;
}

.appointment-form .form-group button{
	transition: all 500ms ease;
}

.appointment-form .form-group button:before{
	background: #ffffff;
}

.appointment-form .form-group button:hover{
	color: #05e249 !important;
}

.appointment-box .inner-box{
	background-color: #222;
}

.appointment-form input[type="text"]:focus, 
.appointment-form input[type="email"]:focus, 
.appointment-form textarea:focus{
	border-color: #ff5863;
}

.appointment-form .form-group button{
	transition: all 500ms ease;
}

.appointment-form .form-group button:before{
	background: #ffffff;
}

.appointment-form .form-group button:hover{
	color: #ff5863 !important;
}