<style type="text/css">

/** {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'PT Sans', sans-serif;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'PT Sans', sans-serif !important;
}*/


.contact-panel__container {
	display: block;
	width: 100%;
	background-color: #ccc;
	min-height: 100vh;
	width: 100vw;
	left: 0;
	top: 0;
	position: relative;
}

.contact-panel {
	height: 100vh;
	width: 600px;
	position: fixed;
	top: 0;
	right: -600px;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
	padding: 25px;
	font-size: 14px;
	transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-left: 1px solid #ccc;
	z-index: 1000;
}

section.contact-panel.is-visible{
	right: 0px;
	overflow: scroll;
	z-index: 100;
}

.contact-panel__header {
	display: flex;
}

.contact-panel__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact-panel__close {
	margin-left: auto;
	width: 30px;
	height: 30px;
	background-color: #253d82;
	-webkit-mask-image: url("close.svg");
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	cursor: pointer;
	transition: all .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-panel__close:hover {
	transform: scale(1.15);
}

.contact-panel__group {
	list-style: none;
	padding: 0;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.contact-panel__item {
	margin-bottom: 20px;
	border: 1px solid #eee;
	min-height: 175px;
	max-width: 550px;

	display: flex;
}

.contact-panel__item__img {
	background-color: #eee;
	min-height: 100px;
	flex: 0 0 200px;
}

.contact-panel__item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-panel__item__info {
	background-color: white;
	flex: 1;
}

.contact-panel__item__info__group {
	list-style: none;
	padding: 10px 15px;
}

.contact-panel__item__info__title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.contact-panel__item__info__item {
	margin-bottom: 5px;
}

.contact-panel__pull {
	height: 100px;
	width: 70px;
	position: absolute;
	background-color: white;
	left: -70px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 10px 0 0 10px;
	cursor: pointer;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-panel__pull__icon {
	background-color: #253d82;
	width: 35px;
	height: 35px;
	-webkit-mask-image: url("telephone.svg");
	-webkit-mask-size: 35px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url("telephone.svg");
	transition: all .3s ease-out;
	transform: rotate(15deg);

}	

.contact-panel__pull:hover .contact-panel__pull__icon {
	transform: rotate(0deg);
}

@media all and (max-width: 768px) {

	.contact-panel {
		width: 100%;
		z-index: 10;
		right: -100%;
	}

	.contact-panel__item {
		min-height: auto;
		max-width: 100%;
		width: 100%;
	}

	.contact-panel__item__img {
		display: none;
	}

	.contact-panel__pull {
		height: 40px;
		width: 30px;
		left: -30px;
	}

	.contact-panel__pull__icon {
		width: 15px;
		height: 15px;
		-webkit-mask-size: 15px;
	}
}

</style>

