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

/*** CHATBOT ***/
.grecaptcha-badge { visibility: hidden; }

section.chatbot {
	padding: 0;
}

.chatbot-actions {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index:100;
}

.open-chatbot {
	display: block;
	width: 60px;
	height: 60px;
	background:#fff url(../images/chat_icon.svg) no-repeat center center;
	background-size: 60%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	-moz-box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	cursor: pointer;
}

.prompt-chatbot.loaded {
	position: absolute;
    -webkit-transform: translateY(-100%) scale(0, 0);
	-moz-transform: translateY(-100%) scale(0, 0);
	transform: translateY(-100%) scale(0, 0);
    top: 0;
    right: 0;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-top: -20px;
    font-size: 1.6em;
    line-height: 1.4em;
    -webkit-box-shadow: 0 0 10px rgba(136, 136, 136, .8);
    -moz-box-shadow: 0 0 10px rgba(136, 136, 136, .8);
    box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	transform-origin: bottom right;
	color: #4a4a4a;
}

.prompt-chatbot.loaded .prompt-wrap {
    padding: 25px 25px 25px 60px;
    width: 200px;
	cursor: pointer;
}

.prompt-chatbot:after {
	content: '';
    position: absolute;
    right: 30px;
    bottom: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #FFF;
    border-right: 0;
    border-bottom: 0;
}

.prompt-chatbot.active {
	-webkit-transform: translateY(-100%) scale(1, 1);
	-moz-transform: translateY(-100%) scale(1, 1);
	transform: translateY(-100%) scale(1, 1);
}
	

.prompt-chatbot .decline {
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.4em;
	color: #9AC03F;
	cursor: pointer;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	transition: color .2s ease;
}

.prompt-chatbot .icon {
	display: block;
    border-radius: 50%;
    padding: 10px;
    width: 35px;
    height: 37px;
    background-size: 35px 37px;
    position: absolute;
    z-index: 1;
    transform: translateY(-50%);
    top: 50%;
    left: 0px;
}

.prompt-chatbot .icon:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background-image: url(../images/penny.svg);
	width: 35px;
	height: 37px;
	background-size: 35px 37px;
	position: relative;
}

.chatbot.loaded {
	position: fixed;
	opacity: 0;
	bottom: 115px;
	right: 20px;
	z-index: 9999;
	-webkit-transform: scale(0, 0);
	-moz-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-webkit-transform-origin: bottom right;
	-moz-transform-origin: bottom right;
	transform-origin: bottom right;
}

.chatbot a {
	color: #150C38;
}

.chatbot.open {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	transform: scale(1, 1);
	
}

.chatbot-wrap {
    position: relative;
	height: 520px;
	overflow: auto;
	padding: 25px 15px 0 15px;
	background: #fff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	-moz-box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	box-shadow: 0 0 10px rgba(136, 136, 136, .8);
	display: flex;
	flex-direction: column;
	color: #4a4a4a;
}

.chatbot-header {
	flex: 0;
    text-align: center;
    border-bottom: 1px solid #DEE2F1;
    padding-bottom: 15px;
}

.chatbot-header span {
	display: block;
}

.chatbot-header .close {
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 2.4em;
	color: #9AC03F;
	cursor: pointer;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	transition: color .2s ease;
}

.chatbot-header .close:hover {
	color: #4A4A4A;
}

.chatbot-header .name {
	font-size: 1.8em;
	font-weight: bold;
	padding-bottom: 5px;
}

.chatbot-header .desc {
	font-size: 1.4em;
}

.chatbot-container {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.chatbot-step {
	max-width: 460px;
	margin: 15px auto 20px auto;
	position: relative;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	transition: all .4s ease;
}

.chatbot-step:after {
	content: "";
	display: table;
	clear: both;
}

.chatbot-step .question {
	text-align: left;
	margin-bottom: 30px;
	position: relative;
	min-width: 400px;
}

.chatbot-step .question .anchor {
	position: absolute;
	top: -20px;
}

.chatbot-step .question:before {
	content: "";
	display: inline-block;
	vertical-align: bottom;
	background-image: url(../images/penny.svg);
	width: 45px;
	height: 47px;
	background-size: 45px 47px;
	position: relative;
	z-index: 1;
}

.chatbot-step .question .bubble {
	display: inline-block;
	font-size: 1.8em;
	background:#F3F4F8;
	border-radius: 20px;
	padding: 15px;
	position: relative;
	margin-left: 15px;
	max-width: 250px;
	line-height: 1.3em;
	z-index: 0;
	animation: 1s ease 0s normal forwards 1 question;
}

.chatbot-step .question .bubble:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-right-color: #F3F4F8;
	border-left: 0;
	border-bottom: 0;
	margin-top: -6px;
	margin-left: -12px;
}

@keyframes question {
	0%   {
		opacity: 0;
		transform: translateX(-50px);
	}
	
	50%   {
		opacity: 0;
		transform: translateX(-50px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.chatbot-step .options {
	text-align: center;
	max-width: 280px;
	margin: 0 auto;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 1;
	animation: 2s ease 0s options;
}

@keyframes options {
	0%   {
		opacity: 0;
		transform: translateX(-50px);
	}
	
	75%   {
		opacity: 0;
		transform: translateX(-50px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.chatbot-step .options.hide {
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.chatbot-step .options .button {
	margin-top: 0;
	background: none;
	border: 2px solid #9AC03F;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #150C39;
	font-weight: bold;
	border-radius: 5px;
	font-size: 1.4em;
	padding: 10px;
	width: 100%;
	margin-bottom: 10px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-transform: none;
}

.chatbot-step .options .button:hover {
	background: #9AC03F;
	color: #FFF;
}

.chatbot-step .options form button[data-type="submit"]:hover {
	border: 1px solid #ececec;
	background: #ececec;
	color: #000;
}

.chatbot-step .options form button[data-type="submit"]:disabled {
	background: #F3F4F8;
    border: 1px solid #F3F4F8;
    color: #B0B0B0;
}

.chatbot-step .options form button[data-type="submit"] {
	background: #9AC03F;
	border: 1px solid #9AC03F;
	color: #fff;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
	cursor: pointer;
	padding: 10px;
	margin-top: 15px;
    -webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
    width: auto;
	vertical-align: top;
}

.chatbot-step .options form button[data-action="Counseling_2"] {
	margin-top: 0;
}

.chatbot-step .options input {
    margin-bottom: 10px;
    width: 100%;
    font-size: 1.4em;
    border-radius: 0;
    padding: 10px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.chatbot-step .options input[name="Name"], .chatbot-step .options input[type="checkbox"] {
	width: auto;
}

.chatbot-step .options label.container {
	display: block;
    position: relative;
    padding-left: 25px;
    margin-top: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.chatbot-step .options label.container label.error {
	margin-top: 5px;
}

.chatbot-step .options label.container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.chatbot-step .options label.container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background: #fff;
    border: 1px solid #B0B0B0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.chatbot-step .options label.container .checkmark.error {
	border-color: #cc0000;
}

.chatbot-step .options label.container:hover input ~ .checkmark:after {
  	left: 6px;
    top: -3px;
    width: 5px;
    height: 12px;
    border: solid #B0B0B0;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
	display: block;
}

.chatbot-step .options label.container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.chatbot-step .options label.container input:checked ~ .checkmark:after {
	display: block;
}

.chatbot-step .options label.container .checkmark:after, .chatbot-step .options label.container:hover input:checked ~ .checkmark:after {
	left: 6px;
    top: -3px;
    width: 5px;
    height: 12px;
    border: solid #4B81C3;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*.chatbot-step .options input[type="checkbox"] {
	line-height:normal;
	margin-bottom: 0;
	font-size: 1.2em;
	float: left;
	clear: left;
}*/

.chatbot-step .options .select-container {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	margin-bottom: 10px;
}

.chatbot-step .options .select-container select {
	padding: 10px;
}

.chatbot-step .options .opt-in-label {
	text-align: left;
	display: block;
	padding-top: 1px;
}

.chatbot-step .options .opt-in-label.online {
	font-size: 1.2em;
	font-family: 'Avenir LT W01_85 Heavy1475544', Helvetica, Arial, sans-serif;
}

.chatbot-step .response {
	text-align:right;
	position: relative;
	min-width: 400px;
}

.chatbot-step .response .bubble {
	display: inline-block;
	font-size: 1.8em;
	background:#9AC03F;
	color: #fff;
	border-radius: 20px;
	padding: 15px;
	position: relative;
	margin-right: 15px;
	line-height: 1.3em;
	animation: response .4s;
}

.chatbot-step .response .bubble:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 10px;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-left-color: #9AC03F;
	border-right: 0;
	border-bottom: 0;
	margin-top: -6px;
	margin-right: -12px;
}

@keyframes response {
	0%   {
		opacity: 0;
		transform: translateX(50px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.chatbot-step .response .back {
	font-size: 1.3em;
    color: #B0B0B0;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
	cursor: pointer;
}

.chatbot-step .response .back:before {
	content: '';
	background: url(../images/edit.svg) no-repeat 0 0;
	background-size: 15px 15px;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin-right: 5px;
	text-indent: -9000px;
	left: 0;
	vertical-align: middle;
	margin-top: -4px;
}

.chatbot-step form.collect-input {
	padding-top: 0;
}

.chatbot-step .collect-input label.error {
    font-size: 11px;
    margin-top: -5px;
    display: block !important;
    padding-bottom: 10px;
    color: #cc0000;
	float: none;
}

.chatbot-step .collect-input .opt-in-error label.error {
	margin-top: 8px;
}


.chatbot-step .collect-input label.error.valid {
	display: none !important;
}

.chatbot-step .collect-input input.error {
	border: 1px solid #cc0000;
}

.chatbot-step .collect-input span.required_text {
	display: block;
	color: #999;
	padding-left: 2px;
	text-align: right;
}
@media only screen and (max-width : 480px)  {
	
	.chatbot-actions {
		bottom: 20px;
		right: 20px;
	}
	
	.open-chatbot {
		width: 40px;
		height: 40px;
	}
	
	.chatbot.loaded {
		bottom: 75px;
		right: 0;
		width: 100%;
		padding: 0 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	.chatbot-step {
		max-width:none;
		width: 100%;
	}
	
	.chatbot-step .question .bubble, .chatbot-step .response .bubble {
		font-size: 1.6em;
	}
	
	.chatbot-step .response, .chatbot-step .question {
		min-width: 0;
	}
	
	.chatbot-step .options .button {
		font-size: 1.3em;
	}
	
	.chatbot-step .question .bubble {
		max-width: 230px;
	}
	
	
	.chatbot-step .question:before {
		width: 35px;
		height: 37px;
		background-size: 35px 37px;
	}
}

@media only screen and (max-height : 670px)  {
	.chatbot-wrap {height:460px;}

	.chatbot-actions {
		bottom: 20px;
		right: 20px;
	}
	
	.open-chatbot {
		width: 40px;
		height: 40px;
	}
	
	.chatbot.loaded {
		bottom: 75px;
		right: 0;
		/*width: 100%;*/
		padding: 0 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	/*.chatbot-step {
		max-width:none;
		width: 100%;
	}*/
	
	.chatbot-step .question .bubble, .chatbot-step .response .bubble {
		font-size: 1.6em;
	}
	
	.chatbot-step .response, .chatbot-step .question {
		min-width: 0;
	}
	
	.chatbot-step .options .button {
		font-size: 1.3em;
	}
	
	.chatbot-step .question .bubble {
		max-width: 230px;
	}
	
	
	.chatbot-step .question:before {
		width: 35px;
		height: 37px;
		background-size: 35px 37px;
	}
}

