body {
    margin-top: 70px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}
header {
    height: 70px;
}
/* Mobile */
@media (max-width: 1000px) {
    #desktopTopNav {
        display: none;
    }
}
.userLogout {
    display: none;
}
.mainTitle {
    font-weight: bold;
}
button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}
.chatKind {
    cursor: pointer;
}
.chatResponse {
    margin-top: 50px;
    border:0px solid #ccc;
    width:650px;
    max-width: 100%;
    background-color: var(--geeks-card-bg);
    margin: auto;
    border-radius: 0;
    overflow: scroll;
    height: calc(100vh - 70px);
}
.chatResponse .chat {
    overflow: scroll;
    height: calc(100% - 85px);
    padding:10px;
}
.chatResponse .control {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:10px;
}
.chatItemConatiner {
    margin: 18px 0;
    display: flex;
    flex-direction: row;
}
.chatItemConatiner .chatUser,
.chatItemConatiner .chatLoadingUser {
    background-color: #527a71;
    color: white;
    border-radius: 3px;
    padding: 10px;
    font-size: 16px;
    display: table;
}
.chatItemConatiner .chatBot,
.chatItemConatiner .chatLoadingBot {
    background-color: #464f5b;
    color: white;
    border-radius: 3px;
    padding: 10px;
    font-size: 16px;
}
.chatItemConatiner .chatImage img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin: 0 7px;
    object-fit: cover;
}
.chatItemConatiner .hotTopic {
    background-color: #000000;
    border-radius: 3px;
    padding: 10px;
    font-size: 16px;
}
.chatContainer {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cardMainImage {
    max-height: 165px;
    object-fit: cover;
}
/* Mobile */
@media (max-width: 767px) {
    .cardMainImage {
        max-height: 100px;
        object-fit: cover;
    }
}
.cardMainTitle {
    height: 60px;
}


.scoreContainer {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.scoreContainer .scoreNumber {
    text-align: center;
}
.scoreContainer .scoreExplain {
    text-align: start;
}



.chatCircleButtons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.chatCircleButtons .box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.chatInputCircle {
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #555;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    border-radius: 100%;
}
.chatInputCircle:hover {
    opacity: 0.7;
}
.chatInputCircle.small {
    width: 30px;
    height: 30px;
    font-size: 17px;
}
.mic-container {
}
.mic-volume {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: #4CAF50;
    border-radius: 0;
}



#chatTreadMenu {
    position: absolute;
    right:0;
    top:0;
    background-color: #eee;
    padding: 0;
    margin: 0;
    z-index: 999;
}
#chatResponse .chat .chatText {
    position: relative;
    white-space: pre-line;
}
#chatResponse .chat .chatText #chatTreadMenu > div {
    cursor: pointer;
}



.historyItemList {
    position: relative;
}
.deleteChatHistory {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 1;
}




#languageFilters .item {
    cursor: pointer;
}
#ageFilters .item {
    cursor: pointer;
}
#catFilters .item {
    cursor: pointer;
}



.clean_text.charByChar {
    display: none;
}