﻿html { 
    overflow-y: scroll; 
    height: 100%;
    margin: auto; 
}

#lblError {
    opacity: 1;
    position: absolute;
    top: 8rem;
    z-index: 999999;
    width: 100%;
}

#markerLayer img {
    /*profile image width:90px;*/
    height: 20px;
    margin: 5px;
    border-radius: 20px;
}

#map {
    width: 100%;
    height: 250px;
}

.validationMessage {
    color: red;
}

.clientLogo {
    width: 90%;
    height: 100%;
    margin: 5px;
}

/*override modal z-index for google maps*/
.pac-container {
    background-color: #FFF;
    z-index: 1100;
    position: fixed;
    display: inline-block;
    float: left;
}

/* Chat styles */
.chat .img-circle {
    max-width: 50px;
}
.chat {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .chat li {
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px dotted #B3A9A9;
    }

        .chat li.left .chat-body {
            margin-left: 60px;
        }

        .chat li.right .chat-body {
            margin-right: 60px;
        }


        .chat li .chat-body p {
            margin: 0;
            color: #777777;
        }

    .panel-chat .slidedown .glyphicon, .chat .glyphicon {
        margin-right: 5px;
    }

.panel-body-chat {
    overflow-y: scroll;
    height: 450px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

/* end */

/*Overlay Styles*/

@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 1001;
}

.loading-text {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	width: 100%;
	height: 100px;
	line-height: 100px;
}

.loading-text span {
	display: inline-block;
	margin: 0 5px;
	color: #000;
	font-family: 'Quattrocento Sans', sans-serif;
    font-size:3em;
}

.loading-text span:nth-child(1) {
	filter: blur(0px);
	animation: blur-text 1.5s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
	filter: blur(0px);
	animation: blur-text 1.5s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(3) {
	filter: blur(0px);
	animation: blur-text 1.5s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(4) {
	filter: blur(0px);
	animation: blur-text 1.5s 0.6s infinite linear alternate;
}

.loading-text span:nth-child(5) {
	filter: blur(0px);
	animation: blur-text 1.5s 0.8s infinite linear alternate;
}

.loading-text span:nth-child(6) {
	filter: blur(0px);
	animation: blur-text 1.5s 1s infinite linear alternate;
}

.loading-text span:nth-child(7) {
	filter: blur(0px);
	animation: blur-text 1.5s 1.2s infinite linear alternate;
}

.loading-text span:nth-child(8) {
    filter: blur(0px);
    animation: blur-text 1.5s 1.2s infinite linear alternate;
}
.loading-text span:nth-child(9) {
    filter: blur(0px);
    animation: blur-text 1.5s 1.2s infinite linear alternate;
}

@keyframes blur-text {
	0% {
		filter: blur(0px);
	}

	100% {
		filter: blur(4px);
	}
}

/* End of Overlay*/