.contact-tab-container {
	position: fixed;
	right: 0px;
	top: 20%;
	transition: all 0.5s ease;
	width: 550px;
	height: 480px;
	z-index: 80;
}

.contact-tab {
	width: 400px;
	height: 350px;
	background-color: white;
	position: absolute;
	right: 0px;
	top: 50%;
	border-radius: 20px 0px 0px 20px;
	border: solid 0px #000;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.5s ease;
}

.contact-tab-container.minimized {
	transform: translateX(400px) scale(1.0);
}

.contact-tab-top {
	background: #a9216b;
	border-radius: 20px 0px 0px 0px;
	height: 45%;
	color: white;
	padding: 40px;
	font-weight: 400;
	line-height: 1.7rem;
	font-size: 1.4rem;
	text-decoration: none;
	text-align: center;
}

.contact-tab-bottom {
	padding: 20px;
}

.contact-tab-photo {
	width: 40%;
	float: left;
}

.clip-circle {
	width: 90%;
	clip-path: circle(50% at center);
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 8%;
	border: solid 1px #a9216b;
	border-radius: 50%;
}

.contact-tab-text {
	width: 60%;
	float: left;
}

.contact-tab-text,
.contact-tab-text a {
	font-family: "Roboto", sans-serif;
	color: #7e8085;
	font-weight: 300;
	line-height: 1.5rem;
	font-size: 0.8rem;
	text-decoration: none;
}

.handle {
	position: absolute;
	top: 205px;
	left: 0px;
	width: 285px;
	height: 60px;
	border: solid 1px #b6b6b6;
	border-radius: 20px;
	background: white;
	cursor: pointer;
	color: black;
	text-align: center;
}

.handle:hover {
	background: black;
	color: white;
}

.rotate {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.shadow {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-tab-text{
	padding: 18px 0px 20px 15px;
}

.fa-circle-chevron-down {
	color: #a9216b;
}

.chevron-rotate {
	transform: rotate(180deg);
	transition: transform 0.75s ease;
}