.hc-modal {
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 1;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	transition: opacity .15s linear;
	box-sizing: border-box;
	background:rgba(0,0,0,0.5);
}

.hc-modal__logo {
	position: absolute;
	float: left;
	width: 95px;
	height: 40px;
	box-sizing: border-box;
}

.hc-modal__header {
	padding: 10px 20px;
	height: 60px;
	text-align: center;
	box-sizing: border-box;
	background-color: #ffffff;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.hc-modal__title {
	margin-top: 14px;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #404040;
	width: 33%;
	margin-left: 33%
}

.hc-modal__body{
	background-color: #f0f4f5;
	width: auto;
	padding: 0;
	border-radius: 6px;
	position: relative;
}

.hc-modal__close {
	float: right;
	margin-top: 12px;
	width: 16px;
	height: 16px;
	opacity: 0.8;
	overflow: visible;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	border: 0;
	position: relative;
}
.hc-modal__close:before,
.hc-modal__close:after{
	position: absolute;
	top: 0;
	left: 7px;
	content: '';
	height: 16px;
	width: 2px;
	background-color: #333;
}
.hc-modal__close:before{
	transform: rotate(45deg);
}
.hc-modal__close:after{
	transform: rotate(-45deg);
}
.hc-modal__close:hover {
  	opacity: 1
}

.hc-modal__dialog {
	border-radius: 6px;
	transition: transform .3s ease-out;
	box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

#hc-calc-iframe {
	width: 1px;
	min-width: 100%;
	display: block;
}

@media (max-width: 500px) {
  	.hc-modal__title {
    	display: none;
  	}
}

@media (min-width: 768px) {
	.hc-modal__dialog {
		width: 760px;
		margin: 30px auto;
	}
}
