
#chat_head,
#promo_message_container,
#embedded_messenger,
#mobile_indicator,
#chat_head > *,
#promo_message_container > * ,
#embedded_messenger > * , 
#mobile_indicator > *  , 
.chatbot_webview > * { 
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-text-size-adjust: none;
    /* -webkit-appearance: none; */
    letter-spacing: inherit;
    font-family: inherit;
}

@font-face {
    font-family: Inter-Regular;
    src: url(/css/fonts/Inter-Regular.woff2) format('woff2');
}
@font-face {
    font-family: Inter-Medium;
    src: url(/css/fonts/Inter-Medium.woff2) format('woff2');
}

#mobile_indicator {
    display: none;
} 
@media (max-width: 768px) {
    #mobile_indicator {
        display: block;
    }
}
 
.hyped_mind.hidden {
    display: none;
}

#chat_head {
    pointer-events: none; /* initial hide */
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    /* box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16), 0 6px 20px 0 rgba(0, 0, 0, 0.12); */
    /* overflow: hidden; */
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: transform .2s ease;
    transform: scale(0);
}
@media only screen and (max-width: 768px) {
    #chat_head {
        right: 10px;
        bottom: 10px;
    } 
}
#chat_head:hover {
    transform: scale(1.016) translate(0px, -2px);
}
#chat_head.visible {
    pointer-events: auto;
    transform: scale(1);
}
#chat_head .chat_head-shadow {
    width: 60px;
    height: 60px;
    position: absolute;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16), 0 6px 20px 0 rgba(0, 0, 0, 0.12);
    border-radius: 31px;
    top: 0px;
    left: 0px;
    background: #ffffff00;
}
#chat_head .close_container,
#chat_head img.bot_avatar { 
    width: 60px;
    height: 60px;
    object-fit: cover;
    position: absolute;
    overflow: hidden; 
    top: 0px;
    left: 0px;
    border-radius: 30px;
    /* background: white; */
    transition: 0.1s ease-in-out bottom, visibility 0s, 0.1s ease-in-out opacity;  
} 
#chat_head .close_container {   
}
#chat_head .close_container img { 
    width: 14px;
    height: 14px;
    position: absolute;
    top: 8px;
    left: 0px;
    right: 0px;
    bottom: -8px;
    margin: auto;
    opacity: 0;
    transition: 0.15s ease-in-out bottom, visibility 0s, 0.1s ease-in-out opacity;  
}
#chat_head.active .close_container img {
    opacity: 1;
    transition: 0.15s ease-in-out bottom, visibility 0s, 0.1s ease-in-out opacity;  
    top: 0px;
    bottom: 0px;
}
#chat_head.active img.bot_avatar {
    opacity: 0;
    transition: 0.1s ease-in-out bottom, visibility 0s, 0.1s ease-in-out opacity;  
}

#promo_message_container {
    position: fixed;
    z-index: 1000;  
    right: 20px;
    bottom: 94px;
    display: inline-block;
    width: 220px;
    height: auto;
    cursor: pointer;
    /* border-radius: 20px 20px 0px 20px; */
    /* overflow: hidden; */
    /* background-color: white; */
    /* box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.08), 0 12px 40px 0 rgba(0, 0, 0, 0.06); */
    /* transition: 0.2s ease-in-out bottom, visibility 0s, 0.2s ease-in-out opacity;   */
    transition: 0.2s ease-in-out bottom, 0.2s ease-in-out opacity; 
    /* opacity: 0; */
    -webkit-transition: all .25s ease;
    transition: transform .25s ease;
}
#promo_message_container:hover {
    transform: scale(1.016) translate(0px, -2px);
}
@media only screen and (max-width: 768px) {
    #promo_message_container {
        right: 10px;
        bottom: 88px;
    } 
}
/* chat bubble */ 

/* html,body{  */ 
    /* -webkit-overflow-scrolling : touch !important;  */ 
    /* overflow: hidden !important;  */
    /* height: 100% !important;  */ 
/* } */ 


.chat_bubble {
    display: inline-block;
    padding: 12px 16px;
    font-family: Inter-Medium;
    font-size: 14px;
    border-radius: 1.3em 1.3em 1.3em 1.3em;
    max-width: 80%;
    line-height: 20px;
}

.chat_bubble_row.promo { 
    background: none; 
}
.chat_bubble_row.promo .chat_bubble {
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.08), 0 12px 40px 0 rgba(0, 0, 0, 0.06);
    float: right; 
}
.chat_bubble_row.promo .chat_bubble p {
    margin: 0px;
    padding: 0px;
    line-height: inherit;
    text-align: left;
    color: white;
    background: none;
}

#embedded_messenger {
    position: fixed;
    z-index: 10000;  
    right: 20px;
    bottom: 72px;
    width: 370px;
    height: 632px;
    -webkit-overflow-scrolling: touch; 
    transition: 0.15s ease-in-out bottom, visibility 0s, 0.15s ease-in-out opacity;  
    opacity: 0;
    /* visibility: hidden; */
    pointer-events: none;
}
@media only screen and (max-width: 768px) {
    #embedded_messenger { 
        right: 0px;
        width: 100%;
        height: 100%;
        bottom: 54px;
    } 
}

#embedded_messenger.active {
    bottom: 94px;
    /* visibility: visible; */
    pointer-events: all;
    opacity: 1;
    transition: 0.15s ease-in-out bottom, 0.15s ease-in-out opacity;  
}
@media only screen and (max-width: 768px) {
    #embedded_messenger.active {  
        bottom: 88px;
    } 
}

#embedded_messenger #container {
    background-color: white;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.08), 0 12px 40px 0 rgba(0, 0, 0, 0.06);
    border-radius: 12px 12px 6px 12px;
    overflow: hidden;
    height: 632px;
    position: relative;
}
@media only screen and (max-width: 768px) {
    #embedded_messenger #container {
        overflow: visible;
    } 
}

#embedded_messenger iframe {
    height: 572px;
    width: 100%;
    border: 0;
} 

#embedded_messenger #messenger_header {   
    height: 60px;
    display: block;
    position: relative; 
    /* box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.2); */
}
 

.chatbot_imageview {
    position: fixed;
    z-index: 10001;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #0000003d;
     
    display:flex;
    align-items: center;
    justify-content: center;
}
.chatbot_imageview .container {
    width: 88%;
    max-width: 95%;
    height: 92%;
    background-color: white;
    border-radius: 10px;
    display: block;
    padding: 0px;
    overflow: hidden;
    box-shadow: 0 6px 56px 4px rgba(0, 0, 0, 0.09), 0px 28px 100px 0px rgba(0, 0, 0, 0.08);
    /* overflow-y: scroll; */
    transform: scale(0.92);
    opacity: 0.6;
    transition: transform 0.2s, opacity 0.2s; 
}
.chatbot_imageview .container.before_animate {  
    transform: scale(1);
    opacity: 1;
    /* transition: transform 0.2s, opacity 0.2s;  */
} 
.chatbot_imageview .header { 
    width: 100%;
    height: 46px;
    position: relative; 
} 
.chatbot_imageview .header .image { 
    width: 45px;
    height: 45px;
    padding: 16px;
    margin: 0px;
    position: absolute;
    top: 0px;
}
.chatbot_imageview .header .image.left { 
    left: 2px;
}
.chatbot_imageview .header .image.right { 
    right: 2px;
}
.chatbot_imageview .header .image.close { 
    cursor: pointer;
}
.chatbot_imageview .imageview { 
    width: 100%;
    height: calc(100% - 46px);
    object-fit: contain;
    padding: 18px;
} 
 

.chatbot_webview {
    position: fixed;
    z-index: 10001;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #0000003d;
     
    display:flex;
    align-items: center;
    justify-content: center;
}
.chatbot_webview .container {
    width: 88%;
    max-width: 95%;
    height: 92%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 56px 4px rgba(0, 0, 0, 0.09), 0px 28px 100px 0px rgba(0, 0, 0, 0.08);
    /* overflow-y: scroll; */
    transform: scale(0.92);
    opacity: 0.6;
    transition: transform 0.2s, opacity 0.2s; 
}
.chatbot_webview .container.before_animate {  
    transform: scale(1);
    opacity: 1;
    /* transition: transform 0.2s, opacity 0.2s;  */
} 
.chatbot_webview .header { 
    width: 100%;
    height: 46px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}
.chatbot_webview .header .title { 
    /* width: calc(100% - 50px * 2); */
    height: 100%;
    line-height: 46px;
    text-align: center;
    font-family: Inter-Bold;
    /* font-weight: bold; */
    font-size: 16px;
    padding: 0px 50px;
    margin: 0px;
}
.chatbot_webview .header .image { 
    width: 45px;
    height: 45px;
    padding: 16px;
    margin: 0px;
    position: absolute;
    top: 5px;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.chatbot_webview .header .image.left { 
    left: 2px;
}
.chatbot_webview .header .image.right { 
    right: 8px;
}
.chatbot_webview .header .image.close { 
    cursor: pointer;
}
.chatbot_webview .webview { 
    width: 100%;
    height: calc(100% - 46px);
    border: none;
}
.chatbot_webview .iframe_container {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    height: 100%;
}


.cover_view.hypedmind,
#container > .cover_view {
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.07);  */
    position: fixed;
    z-index: 2300;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
#container > .cover_view.dark {
    background-color: rgba(0, 0, 0, 0.1);
}

.settings_menu_container {
    width: auto;
    max-width: 90%;
    z-index: 2147483003;
    position: absolute;
    display: inline-block; 
    left: 10px;
    top: 44px; 
    margin-top: -10px;
    box-shadow: 0 2px 14px 4px rgba(0, 0, 0, .09);
    background-color: #fff;
    border-radius: 10px;
    padding: 8px 0px;
    transition-duration: 200ms;
    transition-delay: 0ms;
    transform-style: flat;
    transform-origin: 50% 50% 0;
    opacity: 0;
    transition: all 0.1s linear;
}
.settings_menu_container .pop_up_caret {
    position: absolute; 
    top: -7px;
    left: 11px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}
.settings_menu_container.active {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
}
.settings_menu_container .content .cell { 
    padding: 10px 20px;
    font-family: Inter-Medium;
    font-size: 15px; 
    cursor: pointer;
    color: #424242;
    padding: 10px 28px;
}
.settings_menu_container .content .cell:hover { 
    background-color: #f7f7f7;
}

.close_icon {
    width: 16px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2000;
    background-color: white;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .close_icon {
        width: 24px;
        border-radius: 12px;
        right: -4px;
        top: -4px;
    }
}
