/* CHATBOX */

#chatbot {position:relative;}
.desc {margin: 0;
    text-align: right;
    position: absolute;
    left: 250px;
    z-index: 932;
    background: #fff;
    padding: 0 5px;
}

#chatbot h4 {
   color: #fff;
    background: #333;
    /* border-radius: 5px; */
    display: inline;
    padding: 4px 10px;
    font-size: 16px;
    /* font-weight: 600; */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
}
.chat-header {
    box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
    width: 100%;
    padding: 3px 0;
}


.chat-box {box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
    color: #4a4a4a;border: #333 solid 2px;}


.card-content {
    height: 300px;
    overflow: auto;
    flex-grow: 1;
    flex-shrink: 1;
    overflow-x: hidden;
}

.card-content::-webkit-scrollbar{width:5px}
.card-content::-webkit-scrollbar-track{background:rgba(0,0,0,.3);border-radius:2px}
.card-content::-webkit-scrollbar-thumb{border-radius:2px;background:#333}



.card-header:last-child, .card-content:last-child, .card-footer:last-child {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.card-header:first-child, .card-content:first-child, .card-footer:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.input, .textarea {
    box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05);
    max-width: 100%;
    width: 100%;
    font-size: 14px;
}
.input, .textarea, .select select {
    background-color: white;
    border-color: #dbdbdb;
    border-radius: 0;
    color: #363636;
}


 .notification.is-info {
    background-color: #333;
    color: #fff;
}

 .notification {
    background-color: #f5f5f5;
    border-radius: 4px;
    position: relative;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
}
 .notification.is-success {
    background-color: #efefef;
}

.gpt-container .input, .textarea {
    box-shadow: inset 0 .0625em .125em rgba(10,10,10,.05);
    max-width: 100%;
    width: 100%;
}


.gpt-container .btn.is-info {
    background-color: #3e8ed0;
    border-color: transparent;
    color: #fff;
}

.gpt-container .button {
    background-color: #fff;
    border-color: #dbdbdb;
    border-width: 1px;
    color: #363636;
    cursor: pointer;
    justify-content: center;
    padding-bottom: calc(.5em - 1px);
    padding-left: 1em;
    padding-right: 1em;
    padding-top: calc(.5em - 1px);
    text-align: center;
    white-space: nowrap;sc
}


 .notification.is-info:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 0px;
    right: auto;
    top: auto;
    bottom: -10px;
    border: 12px solid;
    border-color: transparent transparent transparent #333;
}

.notification.is-success:after {content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 0px;
    bottom: -10px;
    border: 6px solid;
    border-color: #efefef #efefef transparent transparent;}

.chatbot{
    text-align: left;
}
.align-right{
    text-align: right;
}
.card-content{
    height: 300px;
}
.gpt-message{
    width: 100%;
}
.columns{
    display: flex;
}
.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}
.column.is-narrow, .column.is-narrow-tablet {
    flex: none;
    width: unset;
}


	.column.is-one-third {
		flex: none; 
		width:3%;
	}
@media screen and (max-width: 768px) {
	.columns {display: block !important;}
    .column {
        display: block !important;
        padding: 0.5em 0.75rem;
    }
	    .card-content {
        padding: 0;
			height: 310px;
    }
	.chat-box {height: 480px;}
	
}


.gpt-message{
   padding:  5px !important;
    height: 58px !important;

}

/* Speech to Text  */




.mic-button {
    transition: background-color 0.3s ease;
    background: #69cb6a;
}



.mic-icon {
    width: 24px;
    height: 24px;
}

.hidden {
    display: none !important;
}
    #stopButton {background:red!important;} 
    
    .mic-button {
position: relative;
display: inline-block;
		height: 55px;
		padding: 10px 20px;
		float: left;
    margin: 0;
}
button.sendMessage{height: 55px;float: left;margin:0;}


.mic-hover {
position: absolute;
top: 0;
left: 0;
opacity: 0;
pointer-events: none;
}

.mic-button:hover .mic-hover {
opacity: 1;
top: 8px;
left: 15px;
}

.mic-button:hover .mic-default {
opacity: 0;
}
.mic-button:hover .mic-hover {
    opacity: 1;
    top: 17px;
    left: 22px;
}

