header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 100;
}
header h1 {
    text-align: left;
    margin: 0 auto;
    font-size: 20px;
    padding: 3px 0;
    display: flex;
    align-items: center;
}
header h1 img {
    width: auto;
    height: 40px;
    margin-right: 7px;
}
header h1 small {
    display: block;
    font-size: 10px;
    font-weight: normal;
}
footer {
    padding: 2px 10px 0 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    color: #fff;
    text-align: right;
    z-index: 100;
    font-size: 12px;
    text-align: center;}
header { background-color: #065309;
}
footer a {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #065309;
    text-decoration: none;
    color: #8b8b8b;
    font-size: 10px;
}
footer copyright {
    background-color: #065309;
    width: 100%;
    display: block;
    line-height: 1;
    padding: 7px 7px 0px;
    margin: 0;
}
form {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    padding: 70px 0 50px;
}
.inner {
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    opacity: 0;
    height: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    max-width: 800px;
}
.inner.show {
    opacity: 1;
    height: auto;
    z-index: 1;
    display: block;
}
.inner.addition { display: block;}
.img, .txt {
    opacity: 0;
    position: relative;
    left: -10px;
    transition: .3s;
}
.img {
    opacity: 0;
    position: relative;
    left: -10px;
    transition: .3s;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    position: absolute !important;
}
.img.show {
    opacity: 1;
    left: 0;
}
.img img { width: 100%;}
.txt {
    margin: 0 0 0 47px;
    padding: 10px;
    font-size: 13px;
    opacity: 0;
    position: relative;
    left: -10px;
    transition: .3s;
    border-radius: 12px;
    background-color: #e4ffe9;
    width: calc(100% - 70px);
    max-width: 400px;
}
.txt.show {
    border-bottom-left-radius: 0;
    margin-bottom: 3px;
    opacity: 1;
    left: 0;
}
p { margin: 0;
    padding: 0;
    font-size: 13px;
}
.loading {
    opacity: 0;
    height: 0;
}
.loading.show {
    width: 100px;
    opacity: 1;
    height: 60px;
    margin: 0 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9999;
    border-radius: 12px;
    background-color: #e4ffe9;
}
.typingDots {
    display: flex;
    gap: 5px;
}
.typingDots span {
    width: 10px;
    height: 10px;
    background-color: #3498db;
    border-radius: 50%;
    animation: blink 1.2s infinite;}
.typingDots span:nth-child(2) { animation-delay: 0.2s;}
.typingDots span:nth-child(3) { animation-delay: 0.4s;}
@keyframes blink {
    0%, 80%, 100% { opacity: 0.3; transform: scale(1); }
    40% { opacity: 1; transform: scale(1.4); }
}
.question {
    opacity: 0;
    height: 0;
    position: relative;
    right: 7%;
    transition: .3s;
}
.question.show {
    opacity: 1;
    height: auto;
    right: 10%;
    background-color: #e4ffe9;
    border-radius: 12px;
    padding: 10px;
    width: 50%;
    margin: 3px 0 3px auto;
}
.question div {
    background-color: #ffffff;
    color: #000000;
}
.question div label img {
    width: auto;
    height: 30px;
    margin: 0 7px;
}
.question div label,
.question div input[type="text"],
.question div textarea {
    display: table;
    display: flex;
    align-items: center;
    table-layout: fixed;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 8px 8px 8px 8px;
    text-align: left !important;
    cursor: pointer;
    border-bottom: solid 1px #e4ffe9;
    font-size: 13px;
}
.question .btn { padding: 10px 0;}
.question .btn .enabled {
    background-color: #c3efc5;
    color: #fff;
    cursor: no-drop;
    pointer-events: none;
    width: 50%;
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
    border-radius: 50px;
    padding: 10px 0;
}
.phase6 .question .btn .enabled.on,
.question .btn .enabled.click {
    background-color: #4caf50;
    cursor: pointer;
    pointer-events: auto;
}
.question input[type="text"],
.question input[type="tel"],
.question textarea {
    line-height: 1.4;
    padding: 10px;
    width: calc(100% - 24px);
    display: block;
    border: solid 2px #ccc;
    background-color: #f5fff7;
}
.tips {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px;
    font-weight: bold;
}
.submit {
    opacity: 0;
    height: 0;
}
#restore-loading {
    position:fixed;
    top:0;left:0;
    width:100%;
    height:100%;
    background:#fff;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;}