/* https://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@font-face {font-family: "Quicksand"; src: url("./fonts/Quicksand/quicksand.ttf"); src: url("./fonts/Quicksand/static/Quicksand-Bold.ttf") format("embedded-opentype") }


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	 margin: 0;
	 padding: 0;
	 border: 0;
	 font-size: 100%;
	 font: inherit;
	 vertical-align: baseline;
		font-family: "Quicksand";
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	 display: block;
}

body {
	 line-height: 1;
}

ol, ul {
	 list-style: none;
}

blockquote, q {
	 quotes: none;
}

a {
    text-decoration:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	 content: '';
	 content: none;
}

table {
	 border-collapse: collapse;
	 border-spacing: 0;
}

*, *:before, *:after {
	 box-sizing: border-box;
}

body {
	 overflow-x: hidden;
	 font-family: "Quicksand";
	 font-weight: 400;
	 font-size: 14px;
	 /*font-size: 1em;*/
	 -moz-osx-font-smoothing: grayscale;
	 -webkit-font-smoothing: antialiased;
	 line-height: 1.45;
	 background-image: url("img/background.jpg");
   background-color: #cccccc;
}
.header-area {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 60px;
	 background:#005e54 ;
	 z-index: 9;
}
.myLogo {
	 /*margin-top: -10px;*/
	 padding: 15px;
	 max-width: 100%;
	 height: 75px;
}
.btn-success, .accept-link{
	background-color:#075E54;
	border-color:#075E54;
	color: #FFF;
}
.header-area.stick {
	 background-color:#075E54;
	 height: 65px;
	 position: fixed;
	 top: 0;
	 width: 100%;
	 z-index: 999999;
	 /*border-bottom: 1px solid #ce1a1a;*/
	 box-shadow: 0 -1px 10px rgba(0,0,0,.12),0 1px 10px rgba(0,0,0,.24);
	 -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.12),0 1px 10px rgba(0,0,0,.24);
	 -moz-box-shadow: 0 -1px 10px rgba(0,0,0,.12),0 1px 10px rgba(0,0,0,.24);
}

.chatbot__overview {
	 background-image: url("img/background.jpg");
   background-color: #cccccc;
	 display: flex;
	 flex-flow: row nowrap;
	 align-content: space-between;
	 min-height: 80vh;
	 max-height: 80vh;
	 margin: 0 auto;
	 padding: 1em;
	 padding-bottom: 0;
}

.chatlist {
font-family: "Quicksand";
	 font-size: 1em;
	 display: flex;
	 flex-flow: column nowrap;
	 align-items: flex-end;
	 overflow-x: hidden;
	 width: 100%;
	 max-width: 80em;
	 max-height: 75vh;
	 margin: 0 auto;
}
.chatlist .userInput, .chatlist .bot__output {
	 padding: 0.85em;
	 margin: 0.5em;
	 max-width: 100%;
	 background-color: #fff;
	 border-radius: 5px;
	 border-bottom: 1px solid #777;
}
.chatlist .userInput {
	 text-transform: lowercase;
	 box-shadow: 1px 1px 2px #666;
	 border-radius: 0px 10px 0px 0px;
	 /*border-top: 4px solid #CC8914;*/
	 opacity: 0;
	 animation-name: animateBubble;
	 animation-duration: 400ms;
	 animation-iteration-count: 1;
	 animation-play-state: running;
	 animation-fill-mode: forwards;
	 background:#e1ffc7;
}
.chatlist .bot__output {
	 align-self: flex-start;
	 box-shadow: -1px 1px 2px #666;
	 border-radius: 0px 0px 0px 10px;
	 /*border-top: 4px solid #27ae60;*/
	 will-change: auto;
	 height: auto;
	 opacity: 0;
	 animation-name: animateBubble;
	 animation-duration: 400ms;
	 animation-iteration-count: 1;
	 animation-play-state: paused;
	 animation-fill-mode: forwards;
}
.chatlist .bot__output:last-child {
	 display: none;
}
.chatlist .bot__command {
	 color: #f5f5f5;
	 color: #27ae60;
	 font-weight: 600;
	 padding: 0.1em;
}
.chatlist .bot__output:nth-child(1) {
	 animation-delay: 600ms;
	 animation-play-state: running;
}
.chatlist .bot__output:nth-child(2) {
	 animation-delay: 1200ms;
	 animation-play-state: running;
}
.chatlist .bot__output:nth-child(3) {
	 animation-delay: 1800ms;
	 animation-play-state: running;
}
.chatlist .bot__output--standard:last-child {
		font-family: "Quicksand";
	 display: block;
}
.chatlist .bot__output--failed {
	 display: block !important;
}
.chatlist .bot__output--second-sentence {
	 display: block;
}
.chatlist .bot__outputImage {
	 max-width: 16em;
	 height: 12em;
}

@keyframes animateBubble {
	 0% {
			transform: translateY(-20%);
			opacity: 0;
	 }
	 100% {
			transform: translateY(0);
			opacity: 1;
	 }
}
.block--background {
	 background-image: url("img/background.jpg");
   background-color: #cccccc;
	 width: 100vw;
	 height: 10vh;
}

#chatform {
	 display: flex;
	 justify-content: center;
	 width: 80%;
	 /* max-width: 35em; */
	 margin: 0 auto;
	 padding-top: 1em;
	 font-size: 1em;
	 font-family: "Quicksand";
}
@media screen and (max-width: 29em) {
	 #chatform {
			width: 90%;
	 }
}

.chatbox-area {
	 /*margin: 0 auto;*/
	 position:fixed;
	 bottom: 0;
	 height: auto;
	 width: 100%;
	 margin-bottom:20px;
	  background-image: url("img/background.jpg");
   background-color: #cccccc;
}

textarea[name="chatbox"] {
	 resize: none;
	 border: 2px solid #fff;
	 border-right: 0;
	 box-shadow: -1px 1px 2px #666;
	 width: 100%;
	 background-color:#fff;
	 /* text-transform: capitalize; */
	 color: #000;
	 /* font-weight: 500; */
	 height: 3.3em;
	 margin: 0;
	 padding: 0.75em;
	 border-radius: 0px 0px 0px 0px;
	 font-family: "Quicksand";
	 font-size: 1em;
	 border-radius:20px;
}
textarea[name="chatbox"]:focus {
	 outline: none;
	 border: 1px solid #25D366;
}

::-webkit-input-placeholder {
	 /* WebKit, Blink, Edge */
	 color:#f9f9f9;
	  opacity: 0.7;
	  font-weight: 600;
}

:-moz-placeholder {
	 /* Mozilla Firefox 4 to 18 */
	 color: #000;
	  font-weight: 600;
	 opacity: 0.7;
}

::-moz-placeholder {
	 /* Mozilla Firefox 19+ */
	 color: #000;
	  font-weight: 600;
	  opacity: 0.7;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button[type="submit"] {
	 -webkit-appearance: none;
	 appearance: none;
	 /*border: 0;*/
	 width: 50px;
	 margin-left: 10px;
	 background-color:#075E54 ;
	 color: #fff;
	 border: 2px solid #075E54 ;
	 /*border-left: 0;*/
	 box-shadow: -1px 1px 2px #666;
	 border-radius:100px;
	 font-family: "Quicksand";
	 font-weight: 600;
	 font-size: 1em;
	 transition: 200ms all ease-in;
}
input[type="submit"]:hover {
	 background-color: #4bd786;
	 border-color: #4bd786;
	 color: #fff;
}
.time {
  float: right;
	margin-top: 20px;
	display: block;
  font-size: 11px;
  color: #949494;
}

.input__nested-list {
	 list-style: disc;
	 list-style-position: inside;
	 padding: 0.5em;
}
.input__nested-list:first-child {
	 padding-top: 1em;
}

.input__nested-link {
	 color: #2ecc71;
	 text-decoration: none;
	 border-bottom: 1px solid #2ecc71;
}

::-webkit-scrollbar {
	 width: 0.65em;
	 /* for vertical scrollbars */
	 height: 0.65em;
	 /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
	 background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
	 background: rgba(0, 0, 0, 0.3);
}

.cookie-policy {
	width: 100%;
	z-index: 7500;
	color: #fff;
	background: #000;
	background: rgba(51, 51, 51, 0.9);
	line-height: 2;
}

.cookie-policy .cookie-policy_container {
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	padding: 5px 20px;
}

.cookie-policy .cookie-policy_container h2,
.cookie-policy .cookie-policy_container p {
	margin: 0;
}

.cookie-policy .cookie-policy_container h2 {
	font-weight: 400;
	font-size: pxtopercent(14);
}

.cookie-policy .btn {
	margin-top: .5em;
	margin-bottom: 0;
}

.cookie-policy {
	position: fixed;
	left: 0;
	bottom: 0;
}

.cookie-policy .cookie-policy_container h2,
.cookie-policy .cookie-policy_container p {
	padding-right: 12em;
}

.cookie-policy .btn_wrap {
	position: absolute;
	right: 0;
	top: 1em;
}
