body {
    background-color: #333;
    color: white;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.excel-image-contatiner {
    display: none;
    justify-content: center;
    margin: 50px;
}

.img-opacity {
    opacity: 0.3;
}

#ExSheet {
    height: 200px;
}

.row {
    text-align: center;
    font-family: 'Exo';
    display: flex;
    justify-content: center;
    flex: 1 0 12%;
    align-items: stretch;
}

.digit,
.dig {
    /* padding: 10px 30px; */
    cursor: pointer;
    /* border: 1px solid; */
    /* background-color: #333; */
    flex: 1 1 33.3%;
    align-items: center;
    justify-content: center;
    display: flex;
    /* border-radius: 500px; */
    /* margin: 20px auto; */
}

.sub {
    color: grey;
}

.container {
    background-color: #222;
    padding: 20px;
    margin: 0px;
    /* display: flex;
    flex-direction: column; */
    height: 98vh;
    direction: rtl;
    text-align: right;
}
.question, .asr-container {
    text-align: center;
}

#output {
    font-family: "Exo";
    height: 55vh;
    font-weight: bold;
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
}

#call {
    border-radius: 500px;
    font-size: 100px;
    padding: 30px 60px;
}

.digit:active,
.dig:active {
    background-color: #e6e6e6;
}

.icons {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-color-green {
    background-color: #66bb6a;
}

.call-color-red {
    background-color: red;
}

.text-container {
    display: none;
}

.play {
    float: left;
}

.input-text {
    height: 2.5em;
    border-radius: 5px;
    background-color: #333;
    margin: 5px 0px;
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    color: white;
    font-size: 14px;
}

.input-row {
    margin: 10px 0px;
}

.start-form,
.intents,
.code {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90%;
    align-items: center;
}

.form-container {
    align-self: start;
}

.intents,
.code {
    height: 80%;
    margin-top: 10%;
}

.mic-icon {
    font-size: 30px;
    background-color: #66bb6a;
    border-radius: 500px;
    padding: 5px 12px;
    cursor: pointer;
}

.stop-icon {
    font-size: 50px;
    color: red;
    border-radius: 500px;
    cursor: pointer;
}

#start {
    font-size: 25px;
    padding: 5px 20px;
    border-radius: 5px;
}

.my-buttons {
    font-size: 20px;
    padding: 5px 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.buttons-containter {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.code-error {
    color: lightsalmon;
}

.dp-none {
    display: none;
}

.instructions {
    overflow: auto;
    max-height: 90%;
    font-size: 18px;
}

.ol-padding {
    padding: 0px 20px 0px 0px;
}

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

.input-title, .code-block {
    color: orange;
}

@media screen and (min-width: 981px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        height: 95vh;
        flex-direction: column;
    }

    .screens {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #ExSheet {
        height: 50px;
    }

    #call {
        font-size: 30px;
        padding: 15px 24px;
    }

    .text-container,
    .container {
        background-color: #222;
        width: calc(9px * 35);
        height: calc(18px * 35);
        padding: 20px;
        margin: 0px 20px;
        border-radius: 20px;
    }

    /* .text-container {
        display: block;
        overflow-y: auto;
    } */

    .bubble-container {
        padding: 0.5rem;
        display: flex;
        flex-direction: row;
    }

    .my-bubble {
        justify-content: flex-end;
    }

    .other-bubble {
        justify-content: flex-start;
    }

    .bg-white {
        background-color: white;
        border: 1px solid #E7E7E9;
    }

    .bg-green {
        background: #88df85;
        border: none;
    }

    .bubble {
        font-size: 24px;
        border-radius: 20px;
        padding: 0.5rem;
        font-weight: 600;
        color: #222;
    }


    .instructions {
        font-size: 12px;
    }

    /* width */
    ::-webkit-scrollbar {
        width: 5px;
        padding-top: 10px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        background: #333;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #555;
        border-radius: 5px;
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #444;
    }
}