@charset "UTF-8";

html,
body {
    height: 100%;
    max-height: 100%;
    /* min-height: 100%; */
    overflow: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    touch-action: manipulation;
    font-size: 16px;
    color: #000;
}

body {
    font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
    /* line-height: 30px; */
    background-color: #F4F5F6;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#lhc_livechat {
    height: 100%;
    overflow: hidden;
    /* height: 100%; */
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    /* height: calc(100% - 40px); */
}

.chat-wrapper {
    flex-grow: 1;
    overflow: hidden;
    border-right: 1px solid #D9D9D9;
    position: relative;
    background-color: #f0f4f7;
    display: flex;
    flex-direction: column;
}

.chat-message-container {
    flex-grow: 1;
    width: 100%;
    padding: 0 40px;
    overflow-y: auto;
    overflow-y: overlay;
    -ms-overflow-y: auto;
}

.chat-messages {
    margin-top: 40px;
}

.chat-input-container {
    background: #FFFFFF;
    width: 100%;
    padding: 14px 40px 28px 40px;
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    position: relative;
}

.chat-input-buttons {
    display: flex;
    /* display: none; */
    flex-shrink: 0;
    margin-right: 8px;
}

.chat-input-buttons button {
    border: none;
    background-color: #f0f4f7;
    color: #04327a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    outline: none;
    margin: 5px 2.5px;
    padding: 0;
}

.chat-input-buttons button:first-child{
    margin-left: 0;
}
.chat-input-buttons button:last-child{
    margin-right: 0;
}

.chat-input-buttons button.chat-word-size-btn{
    margin: 0;
}
.chat-input-buttons button.word-size-focus{
    color: #fff;
    background-color: #04327a;
    border-color: unset;
}

.mobile-menu-btn {
    background: url('../img/mobile-menu.svg') 50% 50% no-repeat;
    display: none;
}

.mobile-menu-opened .mobile-menu-btn {
    background: url('../img/mobile-menu-active.svg') 50% 50% no-repeat;
}

.chat-word-size-buttons{
    margin: 5px 2.5px;
}

button.btn_lan-en, button.btn_lan-cn {
    width: 32px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 80px;
    margin: auto;
    background-color: transparent;
    border: 2px solid #000;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    background-position: 50% 50%;
    background-size: 110px 110px;
}
button.btn_lan-en {
    background: url(../img/lan-en.svg) 0 0 no-repeat;
    background-size: 28px;
    display: none;
}
button.btn_lan-cn {
    background: url(../img/lan-cn.svg) 0 0 no-repeat;
    background-size: 28px;
    display: none;
}

body:not(.mobile) .voice-input-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 360px;
    height: 360px;
    background-color: white;
    z-index: 100;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

body:not(.mobile).voice-input-opened .voice-input-panel {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
    padding-top: 60px;
}

.voice-input-close-btn {
    background: url('../img/close.svg') no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.voice-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.voice-input-txt {
    position: absolute;
    text-align: center;
    top: 54px;
    left: 0;
    color: #BFBFBF;
    font-size: 1.125rem;
    width: 100%;
    padding: 0 20px;
}

.voice-input-error {
    color: #F57F17;
}

.voice-input-panel-btn {
    background: url('../img/voice-input.svg') 50% 50% no-repeat;
}

.voice-input-opened .voice-input-panel-btn {
    background: url('../img/voice-input-active.svg') 50% 50% no-repeat;
}

.waveform-base {
    border: 0;
    background-color: rgba(34, 150, 243, 0.30);
    height: 1px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    left: 0;
}

#waveform-container {
    width: 100%;
    position: absolute;
    margin-top: 2px;
    opacity: 0.4;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.chat-input-form {
    flex-grow: 1;
}

.chat-input-form > div:first-child{
    display: flex;
    justify-content: space-between;
}

.chat-input-form>input {
    vertical-align: middle;
}

.chat-input-form .txt_input {
    height: 48px;
    width: calc(100% - 70px);
    padding: 12px 16px;
    /*font-size: 1rem;*/
    border: 1px solid #BFBFBF;
    border-radius: 4px 0 0 4px;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
}

.chat-input-form .btn_send {
    height: 48px;
    width: 70px;
    border-radius: 0 4px 4px 0;
    outline: none;
    background-color: #04327a;
    margin-left: -8px;
    border: none;
    color: white;
    letter-spacing: 3px;
    -webkit-appearance: none;
}

.top {
    position: relative;
    height: 60px;
    min-height: 60px;
    line-height: 60px;
    padding-right: 20px;
    padding-left: 40px;
    background: #fff;
    box-shadow: 0px 2px 12px 0px rgb(0 0 0 / 4%);
    z-index: 100;
}

.top-logo img {
    max-height: 35px;
}

.top-logo span {
    margin-left: 12px;
    font-size: 1.125rem;
    font-weight: normal;
    color: #000;
    vertical-align: middle;
}

.top-banner {
    position: relative;
    background-color: #68c89e;
    line-height: 1.5em;
    font-size: 0.875rem;
    color: #000;
    border-bottom: 1px solid transparent;
    padding: 0 40px;
    height: 0;
    transition: height 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.top-banner.show {
    padding: 10px 40px;
    height: auto;
    transition: height 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.top-banner a {
    font-size: 0.875rem;
    color: #04327a;
    cursor: pointer;
}
.top-banner a:hover {
    color: #04327a;
}

.top-banner img {
    height: 22px;
    margin-right: 14px;
}

/*==============================================
    MENU STYLES    
    =============================================*/

.sidebar-wrapper {
    background-color: #f0f4f7;
    overflow-y: auto;
    overflow-y: overlay;
    -ms-overflow-y: auto;
    position: inherit;
    margin: 0px;
    flex-shrink: 0;
}

.sidebar {
    margin: 20px;
    margin-left: 19px;
    width: 400px;
    box-sizing: content-box;
    background-color: white;
    border-radius: 4px;
    padding: 0 20px;
    box-sizing: border-box;
}

.sidebar .tabs {
    list-style: none;
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.sidebar .tab {
    text-align: center;
    font-size: 1.125rem;
    color: #7d7d7d;
    height: 60px;
    line-height: 60px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
}

.sidebar .tab:last-of-type {
    margin-right: 0;
}

.sidebar .tab.active {
    color: #04327a;
}

.sidebar .tab.active:after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    background-color: #04327a;
}

.sidebar .tab-content-container {
    overflow: hidden;
}

.tab-content {
    display: none;
    margin-bottom: 18px;
}

.tab-content.active {
    display: block;
}

.tab-content section {
    margin-bottom: -18px;
    position: relative;
}

.tab-content section h4 {
    font-size: 1rem;
    font-weight: 400;
    margin: 20px 0;
}

.icon-block-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon-block-container a {
    outline: none;
}

.icon-block-container a:hover,
.icon-block-container a:focus {
    text-decoration: none;
}

.icon-block {
    width: 108px;
    height: 108px;
    margin-left: 18px;
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 4px;
    text-align: center;
    line-height: 1em;
    cursor: pointer;
}

.icon-block:nth-child(3n+1) {
    margin-left: 0;
}

.icon-block img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.icon-block span {
    font-size: 0.85rem;
    color: #7F7F7F;
}

.text-link-container {
    padding-left: 26px;
}

.question-clickable {
    color: #04327a;
    /*font-size: 1rem;*/
    cursor: pointer;
}
.question-clickable:hover {
    color: #04327a;
}

.quickreplies-container{
    margin: 0;
    padding-inline-start: 0;
} 
.quickreplies-container .question-clickable{
    width: auto;
    margin-right: 5px;
}

.slide-indicator-container {
    position: absolute;
    display: none;
    height: 20px;
    width: 100%;
    text-align: center;
    /* background-color: red; */
    margin-top: -10px;
}

.slide-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 1px;
    background-color: #c0c0c0;
}

.slide-indicator.active {
    background-color: darkslategray;
}

.voice-input-btn {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    z-index: 99;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

.voice-input-btn.active {
    background-color: rgba(34, 150, 243, 0.05);
}

.voice-input-btn img {
    /* height: 50px; */
    /* width: 50px; */
    pointer-events: none;
    height: 60%;
}


/*==============================================
    DASHBOARD STYLES    
    =============================================*/

.div-square {
    padding: 5px;
    border: 3px double #e1e1e1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin: 5px;
}

.div-square>a,
.div-square>a:hover {
    color: #808080;
    text-decoration: none;
}


/*==============================================
    FOOTER STYLES     
    =============================================*/

.footer {
    background-color: #3891F9;
    width: 100%;
    color: #fff;
    padding: 20px 50px 20px 50px;
    padding-left: 20px;
}

.footer>a,
.footer>a:hover {
    color: #fff;
}

.avatar-wrapper {
    position: absolute;
}

.robot-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.avatar-name {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 0.2em;
    font-size: 0.75rem;
}

.message-datetime {
    margin-left: 86px;
    float: left;
    color: #c9c9c9;
    font-size: 0.9375rem;
    margin-top: 8px;
    line-height: 14px;
    clear: both;
}

.message-row:last-child .message-datetime{
    margin-bottom: 1rem;
}

.by-user .message-datetime {
    margin-right: 20px;
    float: right;
}

.message-row .msg {
    border-radius: 12px;
    background-color: #fff;
    color: #000;
    /*font-size: 1rem;*/
    padding: 10px 20px;
    line-height: 1.5em;
    word-break: break-word;
    word-wrap: break-word;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    margin-left: 66px;
    float: left;
    box-shadow: 0 0 30px rgba(0, 18, 40, .08);
}

.message-row.by-robot .msg.swiper-scroll-container,
.message-row.by-robot .msg.buttons-container{
    background-color: transparent;
    box-shadow: none;
    float: none !important;
    margin-right: 0;
    padding: 0;
}
.message-row.by-robot .msg.swiper-scroll-container .inline-msg,
.message-row.by-robot .msg.buttons-container .inline-msg{
    border-radius: 12px;
    background-color: #fff;
    color: #000;
    /*font-size: 1rem;*/
    padding: 10px 20px;
    line-height: 1.5em;
    word-break: break-word;
    word-wrap: break-word;
    margin-bottom: 10px;
    margin-right: 80px;
    width: fit-content;
}

.message-row.by-robot .msg.swiper-scroll-container{
    margin-left: 0;
}

.message-row.by-robot .msg.swiper-scroll-container .inline-msg{
    margin-left: 66px;
}

.swiper .buttons-message-block:first-child{
    margin-left: 66px;
}

.message-row.by-robot .msg.buttons-container .buttons-message-block{
    background-color: #04327a;
}

.message-row.by-robot .msg.medium {
    width: calc(100% - 72px);
    max-width: 328px;
}

.message-row.by-robot .msg.full {
    width: calc(100% - 72px);
}

.message-row .msg img {
    display: block;
    max-width: 100%;
}

.message-row.by-user {
    float: right;
}

.message-row.by-user .msg {
    background-color: #041c43;
    color: #fff;
    float: right;
}

.col-lg-12 {
    padding-left: 0px;
    padding-right: 0px;
}

button.btn_open {
    background: url(../img/menu-open.png) 0 0 no-repeat;
}

button.btn_close {
    background: url(../img/menu-close.png) 0 0 no-repeat;
}

button.btn_open, button.btn_close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 177px;
    margin: auto;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    background-position: 50% 50%;
    background-size: 26px;
}

button.btn_sound_off, button.btn_sound_on {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 208px;
    margin-top: -18px;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    background-position: 50% 50%;
    background-size: 28px 28px;
}

button.btn_sound_off {
    background: url(../img/sound-off.svg) 50% 50% no-repeat;
}

.speaker-mute {
	background: url(../img/sound-on.svg) 50% 50% no-repeat;
}

button.btn_sound_on {
    background: url(../img/sound-on.svg) 50% 50% no-repeat;
}

.speaker-active {
	background: url(../img/sound-off.svg) 50% 50% no-repeat;
}

button.btn_help {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 255px;
    margin-top: -18px;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    /* float: right; */
    background: url(../img/help.svg) 0 0 no-repeat;
    background-position: 50% 50%;
    background-size: 24px 24px;
}

button.btn_map {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 115px;
    margin-top: -18px;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    /* float: right; */
    background: url(../img/map.svg) 0 0 no-repeat;
    background-position: 50% 50%;
    background-size: 24px 24px;
}

button.btn_star {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 118px;
    margin-top: -18px;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    /* float: right; */
    background: url(../img/star.svg) 0 0 no-repeat;
    background-position: 50% 50%;
    background-size: 26px 26px;
}

button.btn_info {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 146px;
    margin-top: -18px;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    /* float: right; */
    background: url(../img/info.svg) 0 0 no-repeat;
    background-position: 50% 50%;
    background-size: 28px 28px;
}

button.btn_exit {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 40px;
    margin-top: -18px;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    /* float: right; */
    background: url(../img/close.svg) 0 0 no-repeat;
    background-position: 50% 50%;
    background-size: 24px 24px;
}

.tooltip-inner {
    padding: 10px;
    width: auto;
    max-width: 350px;
    text-align: left;
    background: rgba(64, 64, 64, 0.85);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #FFFFFF;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: rgba(64, 64, 64, 0.85);
}

@keyframes inputbox-anim {
    0% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(-8px);
    }
}

@keyframes inputbox-float-anim {
    100% {
        transform: translateY(-8px);
    }
}

@keyframes grid-icon-anim {
    0% {
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(-4px);
    }
    100% {
        transform: translateX(-8px);
    }
}

@keyframes grid-icon-float-anim {
    100% {
        transform: translateX(-8px);
    }
}

.tip {
    position: absolute;
    display: inline-block;
    z-index: 100;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transform: translateZ(0);
}

.tip.animated {
    animation-duration: .3s, 1.5s;
    animation-timing-function: ease-out, ease-in-out;
    animation-delay: .3s, .3s;
    animation-iteration-count: 1, infinite;
    animation-direction: normal, alternate;
    animation-fill-mode: forwards;
}

.grid-icon-tip {
    position: fixed;
    right: 423px;
}

.grid-icon-tip:after {
    bottom: calc(50% - 6px);
    right: -11px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left-color: #4C4C4C;
    /* border-left-color: red; */
    border-width: 6px;
}

.inputbox-tip {
    bottom: 84px;
    left: calc(50% - 190px);
}

.inputbox-tip:after {
    bottom: -11px;
    left: calc(50% - 6px);
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #4C4C4C;
    border-width: 6px;
}

.overlay {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.overlay.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
}

.tip-highlight {
    background: rgba(34, 150, 243, 0.20);
    border: 2px solid #FFF;
    position: absolute;
    z-index: 100;
}

.grid-icon-tip-highlight {
    width: 108px;
    height: 108px;
    border-radius: 4px;
}

.inputbox-tip-highlight {
    border-radius: 4px;
    width: calc(100% - 80px);
    height: 50px;
    left: 38px;
    bottom: 27px;
}

.tip-content {
    background-color: #4C4C4C;
    border-radius: 4px;
    color: white;
    /*font-size: 1rem;*/
    padding: 10px 20px;
    font-weight: 300;
    line-height: 1.6em;
}

.grid-icon-tip-content {
    width: 270px;
}

.inputbox-tip-content {
    width: 420px;
}

.skip-tips-btn {
    background: transparent;
    padding: 1px 20px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    font-size: 1.125rem;
    line-height: 36px;
    color: #FFFFFF;
    position: absolute;
    bottom: 90px;
    right: 20px;
    z-index: 200;
    cursor: pointer;
    pointer-events: auto;
}

.tutorial-1 {
    display: none;
    opacity: 0;
}

.tutorial-2 {
    display: none;
    opacity: 0;
}

.tutorial-1.active {
    display: inline-block;
    opacity: 1;
    transition: opacity 1s linear;
}

.tutorial-2.active {
    display: inline-block;
    opacity: 1;
    transition: opacity 1s linear;
}

.itri-tooltip {
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: #4C4C4C;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    top: 50%;
    margin-top: 24px;
    right: 230px;
    padding: 10px 15px;
    z-index: 1;
}

button.btn_help:hover+.itri-tooltip {
    display: inline-block;
}

button.btn_open:hover+.itri-tooltip-open, button.btn_close:hover+.itri-tooltip-close {
    display: inline-block;
    right: 152px;
}

.itri-tooltip-open, .itri-tooltip-close {
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: #4C4C4C;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    top: 50%;
    margin-top: 24px;
    right: 177px;
    padding: 10px 15px;
    z-index: 1;
}

.itri-tooltip:after, .itri-tooltip-open:after, .itri-tooltip-close:after {
    bottom: 100%;
    right: 38px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #4C4C4C;
    border-width: 6px;
}

button.btn_sound_off:hover+.itri-tooltip-sound_off, button.btn_sound_on:hover+.itri-tooltip-sound_on {
    display: inline-block;
    right: 168px;
}

.itri-tooltip-sound_off, .itri-tooltip-sound_on {
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: #4C4C4C;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    top: 50%;
    margin-top: 24px;
    right: 60px;
    padding: 10px 15px;
    z-index: 1;
}

.itri-tooltip-sound_off:after, .itri-tooltip-sound_on:after {
    bottom: 100%;
    right: 50px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #4C4C4C;
    border-width: 6px;
}

.itri-tooltip-info, .itri-tooltip-map, .itri-tooltip-star, 
.itri-tooltip-lan-cn, .itri-tooltip-lan-en, .itri-tooltip-exit {
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: #4C4C4C;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    top: 50%;
    margin-top: 24px;
    right: 60px;
    padding: 10px 15px;
    z-index: 999;
}

.itri-tooltip-info:after, .itri-tooltip-map:after, .itri-tooltip-star:after, 
.itri-tooltip-lan-cn:after, .itri-tooltip-lan-en:after, .itri-tooltip-exit:after {
    bottom: 100%;
    right: 50px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #4C4C4C;
    border-width: 6px;
}

button.btn_info:hover+.itri-tooltip-info {
    display: inline-block;
    right: 101px;
}
.itri-tooltip-info:after {
    right: 57px;
}

button.btn_map:hover+.itri-tooltip-map {
    display: inline-block;
    right: 92px;
}
.itri-tooltip-map:after {
    right: 35px;
}

button.btn_star:hover+.itri-tooltip-star {
    display: inline-block;
    right: 86px;
}
.itri-tooltip-star:after {
    right: 44px;
}

button.btn_lan-cn:hover+.itri-tooltip-lan-cn {
    display: inline-block;
    right: 60px;
}
.itri-tooltip-lan-cn:after {
    right: 32px;
}

button.btn_lan-en:hover+.itri-tooltip-lan-en {
    display: inline-block;
    right: 60px;
}
.itri-tooltip-lan-en:after {
    right: 32px;
}

button.btn_lan-cn:active+.itri-tooltip-lan-cn,
button.btn_lan-en:active+.itri-tooltip-lan-en{
    display: none;
}

button.btn_exit:hover+.itri-tooltip-exit {
    display: inline-block;
    right: 20px;
}
.itri-tooltip-exit:after {
    right: 32px;
}

.message-row {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    clear: both;
}

.message-row a {
    color: #04327a;
    /*font-size: 1rem;*/
    cursor: pointer;
}

.message-row a:hover {
    color: #04327a;
    text-decoration: none;
}

.message-row.by-robot {
    min-height: 92px;
}

.message-row.by-robot .msg {
    margin-right: 80px;
}

.message-row.by-robot.swiper {
    margin-right: -40px;
}

.swiper .buttons-message-container {
    /* padding-right: 84px; */
    padding-right: 316px;
}

.buttons-message-container {
    margin-left: 0 !important;
    float: left;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
}

.buttons-message-block {
    width: 232px;
    min-width: 232px;
    padding: 10px 20px;
    border-radius: 12px;
    background-color: #fff;
    color: #000;
    /*font-size: 1rem;*/
    display: inline-block;
    margin-right: 14px;
    margin-bottom: 1px;
    box-shadow: 0 0 30px rgba(0, 18, 40, .08);
}

.buttons-message-block:last-of-type {
    margin-right: 0;
}

.buttons-message-block .img-wrapper {
    position: relative;
    margin: -10px -20px;
    /* margin-bottom: 0; */
    height: 78px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background-color: #04327a;
}

.buttons-message-block .img-wrapper img {
    background-color: #04327a;
    /* width: 100%; */
    width: auto;
    height: 64px;
    /* max-height: 100%; */
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    bottom: 0;
    text-align: center;
    margin: auto;
}

.buttons-message-block .description {
    background-color: #04327a;
    color: #fff;
    /*font-size: 0.875rem;*/
    text-align: center;
    margin: 0 -20px;
    padding: 10px 20px;
    border: none;
    border-bottom: transparent;
    white-space: normal;
    text-align: left;
}

.buttons-message-block .description h4 {
    color: #fff;
    font-size: 1rem;
    line-height: 22px;
    margin: 0;
    text-align: left;
}

.buttons-message-block ul {
    list-style: none;
    padding: 0;
    background-color: white;
    margin: 0 -20px -10px -20px;
    border: 1px solid #f6f6f6;
    border-top: transparent;
    border-radius: 0 0 12px 12px;
}

.buttons-message-block ul li {
    border-top: 1px solid #f6f6f6;
    min-height: 40px;
    text-align: left;
    line-height: 1.5em;
    padding: 8px 20px;
}

.buttons-message-block ul li:hover{
    background-color: #f0f4f7;
}

.buttons-message-block ul li a{
    display: block;
}

.swiper-scroll-container {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    position: relative;
}

.swiper-scroll-container::-webkit-scrollbar {
    display: none;
}

.swiper-control-button {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: rgba(255,255,255, 1);
    position: absolute;
    top: calc(50% - 18px);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(4, 28, 67, .2);
    z-index: 1;
}

.swiper-control-button:hover{
    background-color: rgba(255,255,255, 1);
}

.swiper-control-button.prev {
    left: 14px;
    background-image: url('../img/arrow.svg');
    background-repeat: no-repeat;
    background-position: 44% 50%;
    background-size: 10px 16px;
}

.swiper-control-button.next {
    right: 40px;
    background-image: url('../img/arrow.svg');
    background-repeat: no-repeat;
    background-position: 44% 50%;
    background-size: 10px 16px;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.swiper-button-disabled{
    display: none;
}

.swiper-scroll-container {
    overflow-x: hidden;
    overflow-y: hidden;
    /*white-space: nowrap;*/
    -webkit-overflow-scrolling: touch;
    -webkit-scroll-snap-type: mandatory;
    -ms-scroll-snap-type: mandatory;
    scroll-snap-type: mandatory;
    scroll-padding-left: 86px;
}

@-moz-document url-prefix() {
    .swiper-scroll-container {
        scroll-snap-points-x: repeat(246px);
    }
}

.swiper .buttons-message-block {
    scroll-snap-align: start;
    background-color: #fff;
}

#survey-overlay {
    z-index: 102;
}

.survey-wrapper {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.survey {
    width: calc(100% - 30px);
    max-width: 400px;
    flex: 0 0 auto;
    margin: auto;
    border-radius: 0;
    background-color: white;
    padding: 30px 24px;
    box-shadow: 0 2px 8px 0 rgb(153, 153, 153);
}

.survey-header {
    font-size: 1rem;
    color: #000;
    border-bottom: none;
    position: relative;
}

.survey-header h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.survey-header .close-btn {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('../img/close.svg') 0 0 no-repeat;
    background-size: 18px 18px;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.survey-header img {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    display: block;
}

.survey-header p {
    margin-bottom: 30px;
}

.scale-label-container {
    color: #7F7F7F;
    font-size: 0.9375rem;
    position: relative;
    height: 14px;
    margin-top: 14px;
}

.scale-label-container span {
    position: absolute;
    right: 0;
}

.scale-label-container span:first-child {
    right: 210px;
}

.survey-question-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.survey-question {
    width: 45%;
    color: #4C4C4C;
    font-size: 0.9375rem;
    line-height: 1.6em;
    margin-top: 20px;
}

.survey-scale {
    display: flex;
    width: 55%;
    margin-top: 20px;
    align-items: center;
}

.survey-scale .scale-label {
    font-size: 0.9375rem;
    color: #7F7F7F;
    display: none;
}

.survey-scale .radio-button-wrapper {
    position: relative;
    padding: 1px;
    display: block;
    width: 16px;
    height: 16px;
    flex-grow: 1;
    text-align: center;
}

.survey-scale input[type="radio"] {
    position: absolute;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.survey-scale .radio-button {
    position: absolute;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 2px #D9D9D9;
    border: 3px solid white;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}

.survey-scale input[type="radio"]:checked+.radio-button {
    box-shadow: 0 0 0 2px #04327a;
    border: 3px solid white;
    background-color: #04327a;
}

.survey .submit-button-wrapper {
    width: 100%;
    text-align: center;
}

.survey input[type="submit"] {
    border: none;
    border-radius: 4px;
    background-color: #04327a;
    color: white;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
    padding: 5px 20px;
    font-weight: normal;
    letter-spacing: 0;
}

.score-rating ul {
    width: 100%;
    padding: 0;
    text-align: center;
}

.score-rating li {
    width: 5vh;
    height: 5vh;
    max-width: 35px;
    max-height: 35px;
    list-style: none;
    display: inline-block;
    background: url('../img/star_on.png') 0% 0%/contain;
    margin: 5px;
}

.score-rating li:hover {
    cursor: pointer;
}

/* 客製對話框 */
.message-row .msg .title{
    font-size: 1.125rem;
    color: #000;
    text-align: center;
    line-height: 1.5em;
    background-color: #f0f4f7;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.message-row .msg .data-list .list-item{
    display: flex;
    min-width: 150px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0.5rem 0;
}

.message-row .msg .data-list .list-item .name{
    min-width: max-content;
    margin-right: 0.5rem;
    font-weight: bold;
    text-align: left;
    min-width: max-content;
}

.message-row .msg .data-list .list-item .data{
    text-align: right;
    word-break: keep-all;
    min-width: 5rem;
}

.btns.inline{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-top: 10px; */
}

.btns.inline .btn-block+.btn-block {
    margin-top: 5px;
}

.btns.inline .btn-block:first-child {
    margin-left: 0;
}

.btns.inline .btn-block:last-child {
    margin-right: 0;
}

button.btn-primary{
    background-color: #04327a;
    color: #fff;
    border-color: transparent;
    border-radius: 4px;
    font-weight: 500;
    margin: 5px;
    transition: all .5s;
}
button.btn-primary:not(:disabled):not(.disabled):hover,
button.btn-primary:not(:disabled):not(.disabled):active,
button.btn-primary:not(:disabled):not(.disabled):visited,
button.btn-primary:not(:disabled):not(.disabled):focus{
    background-color: #041c43;
    box-shadow: none;
}

button.btn-secondary{
    background-color: transparent;
    color: #04327a;
    border: 1px solid #04327a;
    border-radius: 4px;
    font-weight: 500;
    margin: 5px;
    transition: all .5s;
}

button.btn-secondary:not(:disabled):not(.disabled):hover,
button.btn-secondary:not(:disabled):not(.disabled):active,
button.btn-secondary:not(:disabled):not(.disabled):visited,
button.btn-secondary:not(:disabled):not(.disabled):focus{
    background-color: transparent;
    color: #04327a;
}

button.btn-green{
    background-color: #68c89e;
    color: #fff;
    border-color: transparent;
    border-radius: 4px;
    font-weight: 500;
    margin: 5px;
    transition: all .5s;
}
button.btn-green:not(:disabled):not(.disabled):hover,
button.btn-green:not(:disabled):not(.disabled):active,
button.btn-green:not(:disabled):not(.disabled):visited,
button.btn-green:not(:disabled):not(.disabled):focus{
    background-color: #68c89e;
    color: #fff;
}

/* 聲明視窗 */
.overlay#info-overlay-web, .overlay#info-overlay-en {
    position: absolute;
    width: 100vw;
    height: calc(100% - 60px);
    top: 60px;
    left: 0;
    z-index: 99;
}

.info-wrapper {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info {
    width: 100%;
    height: auto;
    max-height: 50%;
    border-radius: 0;
    background-color: #f0f4f7;
    padding: 0;
    box-shadow: 0 2px 8px 0 rgb(153, 153, 153);
}

.info-content {
  margin: 0;
  padding: 0 24px;
  height: calc(100% - 60px);
  overflow-y: auto;
}

.info-content p{
    margin-bottom: 0;
}

.info-content a {
    color: #04327a;
}

.info-content .title-content{
    background: url(../img/info.svg) left center no-repeat;
    background-size: 24px;
    padding-left: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-footer{
    display: flex;
    padding: 12px 24px;
    justify-content: flex-end;
}

.info-footer .btn-submit,
.info-footer .btn-submit:hover {
  width: auto;
  background-color: #04327a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  outline: none;
}

/* 對話按讚 START */
.ChatMessageFeedback {
    font-size: 1rem;
    float: left;
    margin-left: 66px;
    margin-top: 10px;
    clear: both;
}

.helpful_font {
    display: inline-block;
    background-color: #04327a;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 4px 12px;
    margin-right: 8px;
    cursor: pointer;
}
.helpful_font:hover{
    background-color: #041c43;
}

.helpful_font + .helpful_font{
    margin-top: 4px;
    margin-right: 0;
}

.helpful_font span {
    display: inline-block;
    padding-left: 0.15rem;
    font-size: 1rem;
}

.icon-feedback {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.icon-feedback.good {
    background: url(../img/feedback-good.svg) center center no-repeat;
}

.icon-feedback.bad {
    background: url(../img/feedback-bad.svg) center center no-repeat;
}

.msg-content {
    margin-left: 20px;
}
/* 對話按讚 END */

/* Modal */

.modal{
    overflow: auto;
}

.modal-dialog{
    pointer-events: auto;
}

.modal-content {
    border-radius: 0;
}

.modal-container{
    min-width: 350px;
    background: #fff;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, .5);
    margin: 0 auto;
}

.modal-header{
    background: #fff;
    color: #04327a;
    border-bottom: none;
}

.modal-header button.close{
    opacity: .5;
}

.modal-title{
    width: 100%;
    color: #041c43;
    font-size: 1.45rem;
    font-weight: 500;
    text-align: left;
}

.modal-title.column-2 {
    width: 90%;
}

.modal-header .close {
    position: absolute;
    right: 1.5rem;
    color: #000 !important;
    opacity: 1 !important;
    outline: none;
}

.modal-body p{
    margin: 0 0 0.5rem 0;
    line-height: 1.5em;
}

.subtitle{
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.modal-body {
    padding: 0.5rem 1.5rem;
}

.modal-body label{
    font-weight: 500;
    color: #041c43;
}
.form-group.err label{
    color: #FF623E;
}

.modal-body input, .modal-body textarea, .modal-body select,
.message-row .msg input, .message-row .msg textarea, .message-row .msg select{
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 0;
    border: 1px solid #ccc;
}
.modal-body input:last-of-type, .modal-body textarea:last-of-type, .modal-body select:last-of-type,
.message-row .msg input:last-of-type, .message-row .msg textarea:last-of-type, .message-row .msg select:last-of-type{
    margin-bottom: 0px;
}
.form-group.err input, .form-group.err select{
    border: 1px solid #FF623E;
}

.modal-body input.inline, .modal-body textarea.inline, .modal-body select.inline{
    display: inline-block;
    width: auto;
}

.modal-body input:not([type="radio"]):focus, .modal-body textarea:focus, .modal-body select:focus {
    background-color: #F0F4F7;
    border-color: transparent;
    outline: 2px solid #04327a;
}

.modal-body input[type="radio"]{
    cursor: pointer;
}
.modal-body input[type="radio"] + label{
    margin-left: 5px;
    cursor: pointer;
    font-weight: 400;
}

::placeholder { /* CSS 3 標準 */
    color: #b7b7b7 !important;
}
::-webkit-input-placeholder { /* Chrome, Safari */
    color: #b7b7b7 !important;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #b7b7b7 !important;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #b7b7b7 !important;
    opacity: 1;
}

.column-2{
    display: flex;
    justify-content: space-between;
    position: relative;
}

.modal-body .captcha-block{
    display: flex;
    flex-direction: column;
}

.modal-body .captcha{
    margin: 0 5px;
    vertical-align: middle;
}

.modal-body button{
    width: auto;
    min-width: 100px;
    background-color: #04327a;
    border-color: transparent;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0;
}
.modal-body button:hover{
    color: #fff;
}

.modal-footer{
    display: flex;
    /* display: block; */
    /* text-align: center; */
    border-top: none;
    padding: 1rem 1.5rem;
    justify-content: flex-end;
}

.modal-footer button{
    background-color: #04327a;
    border-color: transparent;
    color: #fff;
    font-weight: 500;
    min-width: 7rem;
    border-radius: 6px;
    margin: 0;
    padding: 5px 10px;
    transition: all .5s;
}
.modal-footer button:hover,
.modal-footer button:active,
.modal-footer button:visited,
.modal-footer button:focus{
    background-color: #041c43;
}

.modal-footer button a,
.modal-footer button a:hover,
.modal-footer button a:active,
.modal-footer button a:visited,
.modal-footer button a:focus,
.message-row .msg button a,
.message-row .msg button a:hover,
.message-row .msg button a:active,
.message-row .msg button a:visited,
.message-row .msg button a:focus{
    color: #fff;
}

button.btn-primary{
    background-color: #04327a;
    color: #fff;
    border-color: transparent;
    font-weight: 500;
    transition: all .5s;
}
button.btn-primary:not(:disabled):not(.disabled):hover,
button.btn-primary:not(:disabled):not(.disabled):active,
button.btn-primary:not(:disabled):not(.disabled):visited,
button.btn-primary:not(:disabled):not(.disabled):focus{
    background-color: #041c43;
    box-shadow: none;
}

.btn-primary.disabled, .btn-primary:disabled,
.btn-primary.disabled:hover, .btn-primary:disabled:hover,
.btn-primary.disabled:active, .btn-primary:disabled:active,
.btn-primary.disabled:visited, .btn-primary:disabled:visited,
.btn-primary.disabled:focus, .btn-primary:disabled:focus{
    background-color: #aaa;
    color: #fff;
    border-color: #aaa;
    cursor: not-allowed;
}

button.btn-secondary{
    background-color: transparent;
    color: #04327a;
    border: 1px solid #04327a;
    font-weight: 500;
    transition: all .5s;
}

button.btn-secondary:not(:disabled):not(.disabled):hover,
button.btn-secondary:not(:disabled):not(.disabled):active,
button.btn-secondary:not(:disabled):not(.disabled):visited,
button.btn-secondary:not(:disabled):not(.disabled):focus{
    background-color: #04327a;
    color: #fff;
}

button.btn-tertiary{
    background-color: #fff;
    color: #04327a;
    border: 1px solid #fff;
    font-weight: 500;
    transition: all .5s;
}

button.btn-tertiary:not(:disabled):not(.disabled):hover,
button.btn-tertiary:not(:disabled):not(.disabled):active,
button.btn-tertiary:not(:disabled):not(.disabled):visited,
button.btn-tertiary:not(:disabled):not(.disabled):focus{
    background-color: #04327a;
    color: #fff;
}

.modal-footer button + button{
    margin: 0 5px;
}
.modal-footer button:last-child{
    margin-right: 0;
}

.modal-footer .btn-inline-group{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
    align-items: baseline;
    flex: auto;
}

.modal-footer .btn-inline-group button{
    width: calc(50% - 5px);
    
}
.modal-footer .btn-inline-group button:first-child{
    margin-left: 0;
}
.modal-footer .btn-inline-group button:last-child{
    margin-right: 0;
}

.form-group{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.form-group.inline{
    display: flex;
    align-items: center;
    flex-direction: row;
    align-content: space-between;
}

.form-group:last-child{
    margin-bottom: 0;
}

.form-group label{
    word-break: keep-all;
    margin-right: 10px;
}

.form-group .group {
    display: inline-flex;
    align-items: center;
}

.form-group .group div {
    font-weight: bold;
}

.bold{
    font-weight: 500;
    color: #04327a;
}

.highlight{
    color: #ff6231 !important;
}

.highlight.large{
    font-size: large;
}

.refresh a{
    color: #04327a;
}

.required{
    color: red;
}

.err-msg{
    color: red;
    font-size: 1rem;
    margin-top: 4px;
}

.password-input{
    padding: 10px 44px 10px 10px !important;
}

.password-icon{
    position: absolute;
    top: 44px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: url(../img/password-hide.svg) center center no-repeat;
    background-size: 24px;
    cursor: pointer;
}
.password-icon.active{
    background: url(../img/password-show.svg) center center no-repeat;
    background-size: 24px;
}

.forget-password{
    display: block;
    text-align: right;
    margin-bottom: -1rem;
}

/* 結束對話確認視窗 */
.exit-wrapper {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exit {
  width: 90%;
  max-width: 400px;
  min-height: auto;
  flex: 0 0 auto;
  margin: auto;
  border-radius: 4px;
  background-color: white;
  padding: 24px;
  box-shadow: 0 2px 8px 0 rgb(153, 153, 153);
}
.exit-content {
  display: flex;
  margin-top: 20px !important;
  padding: 0;
  justify-content: space-between;
  align-items: center;
}
.exit-header .close-btn {
  top: -10px;
}
.exit-header {
  font-size: 14px;
  color: #7F7F7F;
  border-bottom: 1px solid #CCC;
  position: relative;
}

.exit-header h4 {
  font-size: 18px;
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #444;
  padding: 0 0 20px 0;
}

.exit-header .close-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('../img/close-circle.svg') 0 0 no-repeat;
  background-size: 24px 24px;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.exit-header p {
  margin-bottom: 30px;
}

.exit-yes-btn{
    width: calc(50% - 10px);
    margin: 0 !important;
    background-color: #04327a !important;
    color: #fff !important;
    border-color: transparent !important;
}

.exit-no-btn{
    width: calc(50% - 10px);
    margin: 0 !important;
    background-color: transparent !important;
    color: #04327a !important;
    border: 1px solid #04327a !important;
}

.txt-32 {
	font-size: 32px !important;
}

.txt-18 {
	font-size: 18px !important;
}

.txt-12 {
	font-size: 12px !important;
}

/* 自動完成調整 */
.ui-menu .ui-menu-item-wrapper {
    position: relative;
    display: block;
    padding: 5px;
}

/*==============================================
    MEDIA QUERIES     
    =============================================*/

@media (min-width: 801px){
    .voice-input-panel {
        position: fixed;
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 800px) {
    .top {
        height: 40px;
        min-height: 40px;
        line-height: 40px;
        padding: 0;
    }
    .top-logo img {
        max-height: 25px;
    }
    .top .btn_help {
        display: none;
    }
    .top .btn_open {
        display: none;
    }
    .top .btn_close {
        display: none;
    }
    button.btn_info{
        right: 80px;
    }
    button.btn_map{
        right: 50px;
    }
    button.btn_star{
        right: 50px;
    }
    button.btn_lan-en, button.btn_lan-cn {
        right: 16px;
    }
    button.btn_exit{
        display: none;
        right: -40px;
    }
    button.btn_sound_off, button.btn_sound_on{
        right: 110px;
    }
    .itri-tooltip-info, .itri-tooltip-map, .itri-tooltip-star, 
    .itri-tooltip-lan-cn, .itri-tooltip-lan-en, .itri-tooltip-exit,
    .itri-tooltip-sound_off, .itri-tooltip-sound_on {
        display: none !important;
    }
    .top .top-logo {
        text-align: left;
        padding-left: 16px;
    }
    .overlay#info-overlay-web, .overlay#info-overlay-en {
        height: calc(100% - 40px);
        top: 40px;
    }
    .top-banner {
        padding: 0px 20px;
        height: 0;
    }
    .top-banner.show {
        padding: 10px 20px;
        height: auto;
    }
    .main-wrapper {
        flex-direction: column;
    }
    .chat-message-container {
        padding: 0 16px;
        width: 100vw;
        -webkit-overflow-scrolling: touch;
    }
    .chat-messages {
        margin-top: 26px;
    }
    .robot-avatar {
        width: 48px;
        height: 48px;
    }
    .message-row .msg {
        margin-left: 62px;
        padding: 5px 10px;
    }
    .message-row.by-robot .msg {
        margin-right: 62px;
    }
    .message-row.by-user .msg {
        margin-right: 10px;
    }
    .message-datetime {
        margin-left: 72px;
    }
    .ChatMessageFeedback {
        margin-left: 62px;
    }
    .buttons-message-container {
        margin-left: 62px;
    }
    .chat-input-container {
        padding: 14px 16px;
    }
    .mobile-menu-btn {
        display: inline-block;
    }
    .mobile-menu-opened .chat-input-container,
    .voice-input-opened .chat-input-container {
        z-index: 99;
    }
    .chat-input-buttons {
        display: flex;
    }
    .sidebar-wrapper {
        width: 100vw;
        height: 0;
        flex-shrink: 0;
        transition: height 0.3s;
        position: relative;
    }
    .mobile-menu-opened .sidebar-wrapper {
        height: 280px;
        transition: height 0.3s;
        background-color: white;
    }
    .sidebar {
        margin: 0;
        width: 100vw;
        padding: 0;
    }
    .sidebar .tabs {
        padding: 0 20px;
        display: block;
        margin: 0;
    }
    .sidebar .tab {
        height: 40px;
        line-height: 40px;
        display: inline-block;
        margin-right: 10px;
    }
    .tab-content {
        margin-bottom: 0;
    }
    .slide-container {
        overflow-x: hidden;
        overflow-y: hidden;
        /*white-space: nowrap;*/
        -webkit-overflow-scrolling: touch;
        -webkit-scroll-snap-type: mandatory;
        -ms-scroll-snap-type: mandatory;
        scroll-snap-type: mandatory;
        /* older spec implementation */
        -webkit-scroll-snap-destination: 0% 100%;
        -ms-scroll-snap-destination: 0% 100%;
        scroll-snap-destination: 0% 100%;
        -webkit-scroll-snap-points-x: repeat(100%);
        -ms-scroll-snap-points-x: repeat(100%);
        scroll-snap-points-x: repeat(100%);
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }
    .sidebar section {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        scroll-snap-align: start;
        padding: 20px;
        margin-bottom: 0;
    }
    .icon-block-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: row;
        grid-gap: 14px;
    }
    .icon-block {
        margin: 0;
        width: auto;
        height: 90px;
        padding: 4px;
    }
    .icon-block img {
        width: 50px;
        height: 50px;
        display: block;
        margin: 0 auto;
    }
    .slide-indicator-container {
        display: block;
    }
    .voice-input-panel {
        width: 100vw;
        height: 0;
        flex-shrink: 0;
        transition: height 0.3s;
    }
    .voice-input-opened .voice-input-panel {
        height: 330px;
        transition: height 0.3s;
        background-color: white;
    }
    .voice-input-close-btn {
        display: none;
    }
    .survey {
        /* width: calc(100vw - 64px); */
        padding: 20px 16px;
    }
    .survey-header p {
        margin-bottom: 12px;
        line-height: 1.6em;
    }
    .survey .scale-label-container {
        display: none;
    }
    .survey-question {
        width: 100%;
    }
    .survey-scale {
        width: 100%;
        margin-top: 12px;
    }
    .survey-scale .scale-label {
        display: block;
    }
    .swiper-control-button {
    /* display: none; */
    }
    .message-row.by-robot .msg.swiper-scroll-container .inline-msg{
        margin-left: 62px;
    }
    .swiper .buttons-message-block:first-child{
        margin-left: 62px;
    }
    .message-row.by-robot.swiper {
        margin-right: -16px;
    }
    .swiper .buttons-message-container {
        padding-right: 16px;
    }
    .swiper-scroll-container {
        overflow-x: auto;
    }
}