/* apply a natural box layout model to all elements, but allowing components to change */

.message-rec {
    display: none;
}

.hamburger-slim {
    background: transparent;
    position: relative;
    height: 20px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 12px;
}

.hamburger-slim:before,
.hamburger-slim:after {
    background: #fff;
    backface-visibility: hidden;
    content: "";
    height: 2px;
    left: 0;
    transition: 0.75s;
    width: 20px;
}

.hamburger-slim:before {
    box-shadow: #fff 0 9px 0 0;
    position: absolute;
    top: 0;
}

.hamburger-slim:after {
    position: absolute;
    top: calc(100% - 2px);
}

.hamburger-slim.active:before {
    box-shadow: transparent 0 0 0 0;
    top: 50%;
    transform: rotate(225deg);
}

.hamburger-slim.active:after {
    top: 50%;
    transform: rotate(315deg);
}

.hamburger-slim.active+.menu-burger {
    transform: translateX(0);
}

.menu-burger {
    transition: all 750ms ease-out 0s;
    list-style: none;
    position: absolute;
    right: 0;
    background-color: rgba(0, 0, 0, .2);
    padding: 10px 20px;
    top: 35px;
    text-align: right;
    transform: translateX(100%);
    border-bottom-left-radius: 20px;
    font-size: 10px;
}

.menu-burger li {
    line-height: 2;
    cursor: pointer;
}

.menu-burger li a {
    color: #ffffff;
    text-decoration: none;
}

.options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.options li {
    line-height: 2;
    text-align: center;
    padding: 4px 10px;
    cursor: pointer;
}

.options li+li {
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.messages .message.disabled {
    user-select: none;
}

.messages .message.hide {
    display: none;
}

.chat-modal__inner {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px;
}

.chat-modal__inner .logo-big {
    max-width: 140px;
    margin: 10px auto 0;
    display: block;
}

.chat-modal__inner .description-title {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .2em;
    font-size: 15px;
    color: #0AD5C1;
    font-weight: 700;
}

.chat-modal__inner .description-chat {
    margin: 20px auto;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 100;
}

.chat-modal__inner .description-chat strong {
    font-weight: 700;
}

.chat-modal__inner .button {
    color: #fff;
    border: none;
    background: #0AD5C1;
    background: -webkit-linear-gradient(330deg, #248A52, #257287);
    background: linear-gradient(120deg, #248A52, #257287);
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 1;
    padding: 10px 16px;
    border-radius: 10px;
    outline: none !important;
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
    text-decoration: none;
    display: block;
    margin: 0 20px;
}

.chat-modal__inner .button+.button {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}


/*

html {
    box-sizing: border-box;
}

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

html,
body {
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    font-family: sans-serif;
    font-size: 16px;
}

section {
    background: #fff;
    height: 70%;
    height: calc(100% - 180px);
    overflow: auto;
}

.chat {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.chat__msg {
    background-color: #eef2f2;
    border-radius: 10px;
    margin: 20px 10%;
    padding: 10px;
    width: 80%;
    font-size: .8rem;
}

.chat__msg--ia {
    background-color: #fec9c9;
    color: #3e3e3e;
    margin-left: 5%;
}

.chat__msg--user {
    margin-left: 15%;
}

.chat__msg>span {
    font-weight: 700;
}

.chat__msg p:first-child {
    margin-top: 0;
}

.chat__msg p:last-child {
    margin-bottom: 0;
}

footer {
    position: absolute;
    bottom: 0;
    border-top: 1px solid #eee;
    padding: 20px 10%;
    left: 0;
    width: 100%;
}

#speech {
    width: 70%;
    height: 50px;
    border: 1px solid #eee;
    padding: 4px;
}

#rec {
    width: 25%;
    height: 50px;
    background-color: #fff;
    border: 1px solid #eee;
}

#response {
    font-size: 10px;
    position: absolute;
    background: rgba(51, 51, 51, 0.5);
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: #fff;
    padding: 10px;
    white-space: pre-line;
}

.options {
    list-style: none;
}

.options.hide {
    display: none;
}

.options.disabled,
.options.disabled li {
    user-select: none;
}

.options li {
    display: inline-block;
}

.button {
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    border: 2px solid #fec9c9;
}

.button:hover {
    border-color: #ff0000;
    background-color: #fec9c9;
}

.button.selected {
    background-color: #fec9c9;
}

*/