/*************************************** SIDEBAR FORM CSS ************************************/
.enquireNowSideFormBtn {
	position: fixed;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(-90deg);
    background-color: #C5A47E;
    padding: 8px 20px;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.2);
}

.enquireNowSideFormBtn p {
	color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.enquireNowSideFormCloseBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #000;
	font-size: 30px;
	cursor: pointer;
}

.sidebar-contact {
	position: fixed;
	top: 50%;
	right: -350px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 350px;
	height: auto;
	padding: 65px 30px;
	background: #fff;
	/*    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .5);*/
	/*    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);*/
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .5s;
	transition: .5s;
	z-index: 99
}

.sidebar-contact.active {
	right: 0;
	-webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
	box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
}

.sidebar-contact input::placeholder {
	color: #58595B;
}

.sidebar-contact input.form-control:focus {
	background-color: transparent;
	box-shadow: none;
	border-color: #58595B;
	color: #58595B;
}

.sidebar-contact input,
.sidebar-contact textarea,
.contactUs input,
.contactUs textarea {
	font-family: 'Gotham-medium';
	width: 100%;
	height: 36px;
	padding: 0px;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
	margin-bottom: 0px;
	border: 0;
	border-bottom: 1px solid #58595B;
	color: #58595B;
}

.sidebar-contact h2 {
	margin: 0 0 20px;
    padding: 0;
    color: #58595B;
    text-transform: uppercase;
    text-align: center;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

textarea {
	height: 60px;
	resize: none;
	width: 100%;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

.sidebar-contact textarea,
#popup-modalForm textarea {
	margin-bottom: 0;
}

.sidebar-contact buuto[type=submit] {
	background: #ca9d75;
	border: 1px solid #ca9d75;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	height: auto;
	padding: 10px;
	-webkit-transition: all .2s linear;
	transition: all .2s linear
}

.sidebar-contact input[type=submit]:focus,
.sidebar-contact input[type=submit]:hover {
	background-color: transparent;
	color: #fff;
	-webkit-box-shadow: none;
	box-shadow: none
}

.form-check .form-check-input {
	width: 15px;
	height: 15px;
}

.toggle.active {
	height: 35px;
	width: 35px;
	line-height: 35px;
	top: 0;
	left: -35px;
}

.toggle {
	background: #63401a;
}

.toggle {
	position: absolute;
	height: 35px;
	width: 160px;
	text-align: center;
	cursor: pointer;
	background: #C69651;
	top: 58px;
	left: -98px;
	line-height: 36px;
	-webkit-transition: all .2s;
	transition: all .2s;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
	color: #000;
}

.toggle.active:before {
	position: absolute;
	content: 'X';
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	/* top: -2px; */
	left: 37%;
}

.toggle.active:before {
	content: 'X';
}

.toggle:before {
	content: 'Enquire Now';
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
}

.toggle:hover {
	background-color: #000;
}


@media(max-width:320px) {
	.sidebar-contact {
		right: -300px;
		width: 300px;
		padding: 50px 30px;
	}
}

/*************************************** SIDEBAR FORM CSS ************************************/