html, body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    min-height: 100vh;
}

body {
    background-color: #f5c245;
}

#app {
    width: 100%;
    min-height: 100vh;
}

#input_wrapper {
    background: #F9F8F9;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.19);
    border-radius: 30px;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 570px;

}

#user_input {
    background-color: transparent;
    border: 0px;
    min-height: 41px;
    flex-grow: 1;
}

#user_input:focus-visible {
    border: 0px;
    border-color: transparent;
    outline: none;
}

#user_input::placeholder {
    /* Edge 12-18 */
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #9FA7C0;
    letter-spacing: -0.09px;
}


#send_button {
    background: transparent;
    border: 0px;
}

.user_message {
    background: #F9F8F9;
    box-shadow: 0 1px 8px -2px rgba(0, 0, 0, 0.05);
    border-radius: 9px;
    min-height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #414042;

    padding: 11px 17px;
    margin-bottom: 20px;
}

.assistant_message {
    background: rgba(249, 248, 249, 0.76);
    border-radius: 9px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #414042;

    padding: 11px 17px;
    margin-bottom: 20px;


}

.assistant_concepts {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 34px;
    color: #0D0C0B;
    letter-spacing: -0.31px;
    margin-right: 14px;
}

.assistant_small_intro {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #A0A8C0;
    letter-spacing: -0.07px;
}

.empty-logo, .chat-logo {
    width: 70px;
    margin-right: 14px;
    margin-bottom: 14px;
}

html {
    scroll-behavior: smooth;
}

.typing-indicator {
    font-style: italic;
    display: inline-block;
    font-style: italic;
    display: flex;
    flex-wrap: nowrap;
    /* align-content: center; */
    align-items: center;
    justify-content: center;
}

.dots {
    display: inline-block;
    animation: typingDots 1.5s steps(7, end) infinite;
}

#input_selects {
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

#input_selects div {
    display: inline-block
}

#input_selects label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    /*color: #7a7c87;*/
    color: #fff;

    text-transform: uppercase;
}

#input_selects select {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: #0D0C0B;
    letter-spacing: -0.07px;
    text-transform: uppercase;
    background: transparent;
    border: 0px;
    margin-right: 20px;
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

#input_selects select:focus-visible {
    border: 0px;
    outline: none
}

@keyframes typingDots {
    0%, 20% {
        color: rgba(255, 255, 255, 0);
        text-shadow: .25em 0 0 rgba(255, 255, 255, 0), .5em 0 0 rgba(255, 255, 255, 0);
    }

    40% {
        color: white;
        text-shadow: .25em 0 0 rgba(255, 255, 255, 0), .5em 0 0 rgba(255, 255, 255, 0);
    }

    60% {
        text-shadow: .25em 0 0 white, .5em 0 0 rgba(255, 255, 255, 0);
    }

    80%, 100% {
        text-shadow: .25em 0 0 white, .5em 0 0 white;
    }
}


@keyframes typingBlink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.2;
    }
}

.typing_wrapper {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

select {
    transition: width 0.2s ease;
}

#main_wrapper {
    width: 100%;
    max-width: 580px;
    margin: auto;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.bigguru {
    text-align: center;
}

.bigguru img {
    max-width: 100%;
}

#input_floater {
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
    width: 80%
}

#side_logo {
    display: none;
}


.hasResults #input_floater {
    margin-top: 30px;
    width: auto;
}

.hasResults #side_logo {
    display: block;
}

.hasResults#main_wrapper {
    max-width: 700px;
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 21px;
}

.hasResults #content_body {
    padding-left: 20px;
}

@media(max-width:540px) {
    .hasResults#main_wrapper {
        max-width: 700px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hasResults #content_body {
        padding-right: 20px;
    }

    .hasResults #side_logo {
        text-align: center;
        margin-top: 14px;
    }

    .hasResults #input_floater {
        margin-top: 14px;
        margin-bottom: 14px;
    }

    .typing-indicator {
        flex-direction: column;
        text-align: center;
        padding: 14px;
    }
}