@charset "utf-8";
/* CSS Document */

.chiama-box {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10013; /* Sit on top */
  right: 20px;
  bottom: 20px;
	border-radius: 10px;
	width: 400px;
	padding:0px;
  animation: 1s ease-out 0s 1 slideInFromLeft;
  overflow: auto; /* Enable scroll if needed */
	background-color: #fefefe;
  -webkit-box-shadow: 0px 0px 15px -1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 15px -1px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 15px -1px rgba(0,0,0,0.5);
	max-width: 100%;
}

.plugin-paragraph {
	margin-bottom: 15px !important;
}

.text-message {
	max-height: 100px;
	min-height: 60px;
}

.botton-footer {
  position: fixed; /* Stay in place */
  z-index: 10012; /* Sit on top */
  right: 0;
  bottom: 0;
}

/* Modal Content */
.chiama-box-head {
	background: #8f5922;
	padding:10px 20px;
}

.chiama-box-content {
  background-color: #fefefe;
  margin: auto;
	padding: 20px 20px 0px 20px;
}

.chiama-box-content p {
	margin:0px;
}

.chiama-box-content span.wpcf7-list-item {
    margin: 0px;
}

.p-box-head {
	margin:0px;
	color: #fff;
}

/* The Close Button */
.close-box {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -3px;
}

.close-box:hover,
.close-box:focus {
  color: #fcfcfc;
  text-decoration: none;
  cursor: pointer;
}

.botton-footer {
	padding:10px 20px 20px 40px;
	font-family: 'Open Sans';
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    border-width: 0px;
    border-style: solid;
    border-radius: 0px;
    text-transform: uppercase;
    color: #ffffff;
	cursor: pointer;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
