.little-tools {
	position: fixed;
	top: 30px;
	left: 0px;
}

.little-tools-box {
	width: 80px;
	height: 70px;
	background: #FFFFFF;
	-webkit-border-bottom-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-moz-border-radius-bottomleft: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	box-shadow: 2px 2px 6px #111111;
	display: inline-table;
	padding: 3px 0px 0px 0px;
}

.little-tools-box:hover {
	opacity: 0.7;
	cursor: pointer;
}

.md-trigger {
	width: 80px;
	height: 70px;
	background: #FFFFFF;
	margin: 3px 0px;
	-webkit-border-top-right-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-moz-border-radius-topright: 8px;
	-moz-border-radius-bottomright: 8px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 2px 2px 6px #111111;
	padding: 3px 0px 0px 0px;
	-o-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-khtml-transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.md-trigger:hover {
	opacity: 0.7;
	cursor: pointer;
}

.endereco-mapa-modal {
	width: 100%;
	height: 350px;
}

.phone-call {
	width: 150px;
	display: inline-table;
	background: url('../images/phone-call.png') #EEEEEE;
	background-repeat: no-repeat;
	padding: 90px 0px 5px 0px;
	border: 1px solid #CCCCCC;
	-o-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-khtml-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.phone-call:hover {
	width: 150px;
	display: inline-table;
	background: url('../images/phone-call-hover.png') #019c59;
	background-repeat: no-repeat;
	padding: 90px 0px 5px 0px;
	border: 1px solid #CCCCCC;
}

.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}

.md-perspective body  {
	background: #222;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.container {
	background: #e74c3c;
	min-height: 100%;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	max-width: 700px;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(0,0,0,0.9);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.md-content {
	color: #000000;
	background: #e6e6e6;
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
	padding: 10px;
	font: normal 14pt Calibri;
	overflow: hidden;
}

.md-content a {
	color: #000000;
	text-decoration: none;
}

.md-content a:hover {
	color: #FFFFFF;
	text-decoration: none;
}

.md-close {
	float: right;
	cursor: pointer;
	width: 85px;
	text-align: center;
	margin-top: 5px;
	background: #000000;
	color: #FFFFFF;
}

/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

