@charset "utf-8";
/* CSS Document */

.chat-box {
	position: fixed;
	right: 15px;
	bottom: 0;
	z-index: 999;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border:1px solid #efefef;
	background:#7dbe42;
	padding:4px;
	border-radius : 5px 5px 0px 0px !important;
	border-bottom:none;
}
.chat-box img{margin-top:3px;}
.chat-box img:hover{cursor: pointer}
hide {
	display: none;
}

 /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 13% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; 
	border:1px solid #666;
	 border-radius: 8px !important;
	 box-shadow: 7px 7px 8px #757575;
	/* Could be more or less, depending on screen size */
}
.modal-content p{margin-left:14px;}

.modal-content input{
	border: 1px solid #a8d7e2;
	display: block;
	margin: 5px 15px 15px;
	width:90%;
	padding:3px;
	border-width: 1px !important;
    border-style: solid !important;
	border-color:#a8d7e2;
 border-radius: 3px !important;
  font:inherit;
  box-shadow: 3px 4px #e7e7e7;
  font-size:12px;
}
.modal-content select.chat_sel {
	border: 1px solid #a8d7e2;
	display: block;
	margin: 5px 15px 15px;
	width:90%;
	padding:3px;
	border-width: 1px !important;
    border-style: solid !important;
	border-color:#a8d7e2;
 border-radius: 2px !important;
font:inherit;
  box-shadow: 3px 4px #e7e7e7;
  font-size:12px;
}
.modal-content select.chat_sel:focus{ background:#F8F8F8;}
.modal-content input:focus{ background:#F8F8F8;}
.modal-content input.chat-btn{
	border-radius:2px;
	padding:6px;
	background-color: #7dbe42;
border-color: transparent;
color: #ffffff; font-weight:bold;}

.modal-content input.chkbx
{
	display:inline;
	border-radius: 0px;
	width:auto;
}
.modal-content label
{
	display:inline;
}
@media only screen and (max-width: 600px) {

.modal-content {
    background-color: #fefefe;
    margin: 13% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 70%; /* Could be more or less, depending on screen size */
}
.modal-content label
{
	display: block;
	margin-bottom:0px;
	padding-bottom:0px;
}

.chat-box img{ width:80%;}
}
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
} 