#app {
    font-family: Roboto, \\5FAE\8EDF\96C5\9ED1\9AD4, Microsoft JhengHei, \\5FAE\8EDF\6B63\9ED1\9AD4, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50
}

#app .sm-icon {
    width: 15%;
    height: auto;
    margin-left: 5%;
    display: -ms-flexbox;
    display: flex
}

#app a.linkified {
    color: #6495ed !important
}

#app .sc-open {
    width: 100%;
    height: 100%;
    position: relative;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

#app .sc-launcher-container {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0%;
    top: 260px;
    z-index: 10000;
    width: 32px;
    height: 140px
}

#app .sc-launcher-text {
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
    color: #ff8200
}

#app .sc-launcher:before {
    content: "";
    position: relative;
    display: block;
    border-radius: 50%;
    transition: box-shadow .2s ease-in-out
}

#app .sc-launcher .sc-closed-icon,
#app .sc-launcher .sc-open-icon {
    position: relative
}

#app .sc-launcher .sc-closed-icon {
    border-radius: 50%
}

#app .sc-launcher .sc-open-icon {
    padding: 20px;
    box-sizing: border-box;
    opacity: 0
}

#app .sc-icon-container {
    width: auto;
    height: auto
}

#app .sc-launcher.opened .sc-open {
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1
}

#app .sc-launcher.opened .sc-closed-icon {
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
}

#app .sc-closed-icon {
    width: 100%;
    height: 100%
}

#app .sc-new-messsages-count {
    position: absolute;
    top: -3px;
    left: 41px;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    background: #ff4646;
    color: #fff;
    text-align: center;
    margin: auto;
    font-size: 12px;
    font-weight: 500
}

#app .sc-chat-window,
#app .sc-new-messsages-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

#app .sc-chat-window {
    width: 30%;
    max-width: 150px;
    min-width: 400px;
    max-height: 590px;
    height: 80vh;
    position: fixed;
    bottom: 1em;
    box-sizing: border-box;
    box-shadow: 0 7px 40px 2px hsla(210, 1%, 58%, .3);
    background: #fff;
    border-radius: 10px;
    z-index: 10000;
    right: -50%;
    transition: .3s ease-in-out
}

#app .sc-message-list {
    min-width: 33%;
    scroll-behavior: smooth
}

#app .sc-message--me {
    text-align: right
}

#app .sc-message--them {
    text-align: left
}

#app .sc-header {
    background: #ff8200;
    min-height: 40px;
    max-height: 40px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    color: #fff;
    padding: 0 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    position: relative;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    z-index: 10000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: auto
}

#app .sc-rainbow-banner {
    height: 3px
}

#app .sc-header-image-container {
    padding: 0 5px
}

#app .sc-header-image {
    height: 30px;
    width: auto;
    margin-top: 3px
}

#app .sc-header--img {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 15px;
    padding: 5px 0;
    cursor: pointer
}

#app .sc-translate-icon {
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px
}

#app .sc-header-name {
    display: -ms-flexbox;
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#app .sc-header--close-button,
#app .sc-header-name {
    -ms-flex-item-align: center;
    align-self: center;
    cursor: pointer;
    border-radius: 5px
}

#app .sc-header--close-button {
    width: 40px;
    -ms-grid-row-align: center;
    height: 40px;
    margin-right: 10px;
    box-sizing: border-box
}

#app .sc-header--close-button:hover {
    background: #4882ed
}

#app .sc-header--close-button img {
    width: 100%;
    height: 100%;
    padding: 13px;
    box-sizing: border-box
}

#app .banner-image-wrapper {
    width: 100%;
    overflow: hidden;
    height: auto
}

#app .banner-image {
    width: 100%
}

@media screen and (max-width:450px) {
    #app .sc-header {
        border-radius: 0;
        min-height: 45px
    }
}

@media screen and (max-width:780px) {
    #app .sc-header {
        border-radius: 0;
        min-height: 45px
    }
}

#app .sc-message {
    width: 90%;
    margin: auto;
    padding-bottom: 10px;
    display: -ms-flexbox;
    display: flex
}

@keyframes slidein {

    0%,
    to {
        transform: translateX(20%)
    }

    to {
        transform: translateX(0)
    }
}

#app .sc-message--content {
    width: 100%;
    display: -ms-flexbox;
    display: flex
}

#app .sc-message--content.sent {
    -ms-flex-pack: end;
    justify-content: flex-end;
    animation-duration: .3s;
    animation-name: slidein
}

#app .sc-message--content.sent .sc-message--avatar {
    display: none
}

#app .sc-message--avatar {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50%;
    min-width: 40px;
    min-height: 40px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 10px;
    margin-left: -5px;
    animation-duration: .3s;
    animation-name: slideout
}

#app .sc-message--text {
    padding: 15px;
    border-radius: 5px;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.4;
    white-space: pre-wrap;
    -webkit-font-smoothing: subpixel-antialiased;
    word-break: break-word
}

#app .sc-message--content.sent .sc-message--text {
    color: #222;
    background-color: rgba(234, 120, 24, .3);
    max-width: 60%;
    word-wrap: break-word;
    text-align: left;
    border-radius: 20px 20px 0 20px
}

#app .sc-message--content.received .sc-message--text {
    color: #222;
    background-color: #f1f0f0;
    text-align: left;
    border-radius: 20px 20px 20px 0
}

@keyframes slideout {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(0)
    }
}

#app .sc-message--emoji {
    font-size: 40px
}

#app .sc-typing-indicator {
    background-color: #f1f0f0;
    will-change: transform;
    width: auto;
    border-radius: 50px;
    padding: 15px;
    display: table;
    margin: 0 auto;
    position: relative
}

#app .sc-typing-indicator span {
    float: left;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #9e9ea1;
    display: block;
    border-radius: 50%;
    opacity: .4
}

#app .sc-typing-indicator span:first-of-type {
    animation: 1s blink infinite .3333s
}

#app .sc-typing-indicator span:nth-of-type(2) {
    animation: 1s blink infinite .6666s
}

#app .sc-typing-indicator span:nth-of-type(3) {
    animation: 1s blink infinite .9999s
}

@keyframes blink {
    50% {
        opacity: 1
    }
}

#app .sc-user-input {
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    background-color: #f4f7f9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: background-color .2s ease, box-shadow .2s ease;
    font-size: 13px;
    z-index: 10000;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#app .sc-user-input--text {
    width: 75%;
    resize: none;
    border: none;
    outline: none;
    left: 0;
    border-bottom-left-radius: 10px;
    box-sizing: border-box;
    padding: 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.33;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #565867;
    -webkit-font-smoothing: antialiased;
    max-height: 200px;
    overflow: scroll;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left
}

#app .sc-user-input--text:empty:before {
    content: attr(placeholder);
    display: block;
    color: rgba(86, 88, 103, .3);
    outline: none
}

#app .sc-user-input--buttons {
    position: absolute;
    right: 10px;
    height: 100%;
    display: -ms-flexbox;
    display: flex
}

#app .sc-user-input--button:first-of-type {
    width: 40px
}

#app .sc-user-input--button {
    width: 30px;
    height: 55px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 10px
}

#app .sc-user-input.active {
    box-shadow: none;
    background-color: #fff;
    box-shadow: 0 -5px 20px 0 rgba(150, 165, 190, .2)
}

#app .sc-user-input--send-icon {
    height: 20px;
    width: 20px;
    cursor: pointer;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    outline: none
}

#app .sc-user-input--send-icon path {
    fill: rgba(86, 88, 103, .3)
}

#app .sc-user-input--send-icon:hover path {
    fill: #565867
}

#app .sc-user-input--send-icon-wrapper {
    background: none;
    border: none;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#app .sc-send-icon {
    height: 1.7em
}

@media screen and (max-width:450px) {
    #app .sc-user-input {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    #app .sc-user-input--text {
        font-size: 18px
    }
}

@media screen and (max-width:680px) {
    #app .sc-user-input {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }
}

#app .card-title {
    font-weight: 600;
    color: #222;
    padding: .6em .6em .6em 1em;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center
}

#app .card-title-border-top {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

#app .card-subtitle {
    padding-top: 5px;
    font-weight: 300;
    color: #8b8b8b
}

#app .card-button,
.card-subtitle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px
}

#app .card-button {
    font-weight: 500;
    color: #222;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: .5em;
    text-align: center;
    cursor: pointer
}

#app .button-after {
    margin-top: 0;
    border-top: none
}

#app .card {
    text-align: left;
    max-width: 80%;
    margin: 10px auto 1em;
    height: auto;
    border-radius: 4px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
    overflow: hidden
}

#app .text-wrapper {
    padding: 0 5px 5px
}

#app .card-image,
#app .text-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

#app .card-image {
    width: auto;
    overflow: hidden;
    min-height: 10em;
    max-height: 10em;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

#app .card-image-square {
    background-size: contain;
    min-height: 15em
}

#app .card-image img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 4px 4px 0 0
}

#app .swiper-button-disabled {
    display: none
}

#app .swiper-button-next {
    background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiB2aWV3Qm94PSIwIDAgNDUxLjg0NiA0NTEuODQ3IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NTEuODQ2IDQ1MS44NDc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMzQ1LjQ0MSwyNDguMjkyTDE1MS4xNTQsNDQyLjU3M2MtMTIuMzU5LDEyLjM2NS0zMi4zOTcsMTIuMzY1LTQ0Ljc1LDBjLTEyLjM1NC0xMi4zNTQtMTIuMzU0LTMyLjM5MSwwLTQ0Ljc0NCAgIEwyNzguMzE4LDIyNS45MkwxMDYuNDA5LDU0LjAxN2MtMTIuMzU0LTEyLjM1OS0xMi4zNTQtMzIuMzk0LDAtNDQuNzQ4YzEyLjM1NC0xMi4zNTksMzIuMzkxLTEyLjM1OSw0NC43NSwwbDE5NC4yODcsMTk0LjI4NCAgIGM2LjE3Nyw2LjE4LDkuMjYyLDE0LjI3MSw5LjI2MiwyMi4zNjZDMzU0LjcwOCwyMzQuMDE4LDM1MS42MTcsMjQyLjExNSwzNDUuNDQxLDI0OC4yOTJ6IiBmaWxsPSIjM2QzZDNkIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==")
}

#app .swiper-button-prev {
    background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0OTIgNDkyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0OTIgNDkyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMTk4LjYwOCwyNDYuMTA0TDM4Mi42NjQsNjIuMDRjNS4wNjgtNS4wNTYsNy44NTYtMTEuODE2LDcuODU2LTE5LjAyNGMwLTcuMjEyLTIuNzg4LTEzLjk2OC03Ljg1Ni0xOS4wMzJsLTE2LjEyOC0xNi4xMiAgICBDMzYxLjQ3NiwyLjc5MiwzNTQuNzEyLDAsMzQ3LjUwNCwwcy0xMy45NjQsMi43OTItMTkuMDI4LDcuODY0TDEwOS4zMjgsMjI3LjAwOGMtNS4wODQsNS4wOC03Ljg2OCwxMS44NjgtNy44NDgsMTkuMDg0ICAgIGMtMC4wMiw3LjI0OCwyLjc2LDE0LjAyOCw3Ljg0OCwxOS4xMTJsMjE4Ljk0NCwyMTguOTMyYzUuMDY0LDUuMDcyLDExLjgyLDcuODY0LDE5LjAzMiw3Ljg2NGM3LjIwOCwwLDEzLjk2NC0yLjc5MiwxOS4wMzItNy44NjQgICAgbDE2LjEyNC0xNi4xMmMxMC40OTItMTAuNDkyLDEwLjQ5Mi0yNy41NzIsMC0zOC4wNkwxOTguNjA4LDI0Ni4xMDR6IiBmaWxsPSIjM2UzZTNlIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==")
}

#app .genericSlider {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 10px 0;
    display: block;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch
}

#app .genericSlider::-webkit-scrollbar {
    display: none
}

#app .swiper-container {
    animation-duration: .5s;
    animation-name: slideout
}

#app .swiper-btn-prev-generic {
    left: 0;
    right: auto;
    border-radius: 0 3px 3px 0;
    border-left: 0 solid #fff !important
}

#app .swiper-btn-next-generic {
    right: 0;
    left: auto;
    border-radius: 3px 0 0 3px;
    border-right: 0 solid #fff !important
}

#app .swiper-btn-next-generic img,
#app .swiper-btn-prev-generic img {
    height: 60%;
    width: 70%
}

#app .swiper-btn-next-generic,
#app .swiper-btn-prev-generic {
    opacity: .7;
    top: 33%;
    width: 25px;
    height: 25px;
    z-index: 10000;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff
}

#app .sc-qr-pill {
    border-radius: 5px;
    background: #fff;
    color: #f60;
    border: 1px solid #f60;
    padding: .3em .5em;
    margin: 3px 2px;
    cursor: pointer;
    font-size: 13px;
    box-shadow: 1px 2px 2px 0 #dadada;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 20px;
    -ms-flex-align: center;
    align-items: center
}

#app .sc-qr-pill,
#app .scroll-wrapper {
    display: -ms-flexbox;
    display: flex
}

#app .scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 0 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: nowrap;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
    padding: 0 1px
}

#app .scroll-wrapper::-webkit-scrollbar {
    display: none
}

#app .swiper-container {
    padding-bottom: 5px !important
}

#app .chatbot-arrow-container {
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    -ms-flex-line-pack: center;
    align-content: center
}

#app .qr-arrow {
    width: 70%;
    height: 60%
}

#app .sc-qr-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: absolute;
    -webkit-overflow-scrolling: touch
}

#app .swiper-btn-prev {
    left: 0;
    right: auto;
    border-radius: 0 3px 3px 0;
    border-left: 0 solid #fff !important
}

#app .swiper-btn-next {
    right: 0;
    left: auto;
    border-radius: 3px 0 0 3px;
    border-right: 0 solid #fff !important
}

#app .swiper-btn-next img,
#app .swiper-btn-prev img {
    height: 60%;
    width: 70%
}

#app .swiper-btn-next,
#app .swiper-btn-prev {
    opacity: .7;
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    z-index: 10000;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 1px solid #888;
    background-color: #fff
}

#app .swiper-qr-pos {
    margin-top: -16px
}

@media only screen and (max-width:780px) {
    #app .sc-chat-window {
        max-width: 100%;
        min-width: 100vw;
        width: 100%;
        top: 75px;
        height: auto;
        max-height: 100%;
        right: 0 !important;
        border-radius: 0;
        transition: .3s ease-in-out
    }

    #app .sc-chat-window,
    #app .sc-chat-window.closed {
        bottom: 0;
        display: none
    }

    #app .sc-chat-window.opened {
        display: -ms-flexbox;
        display: flex;
        right: 0
    }

    #app .btn-container {
        margin: 0 auto;
        position: fixed;
        bottom: 3vh;
        width: 100%
    }

    #app .sc-message {
        width: 85%
    }

    #app .forward-btn,
    .forward-btn-left {
        display: none
    }

    #app .swiper-slide {
        width: 90%
    }

    #app .card-image {
        width: auto;
        overflow: hidden;
        min-height: 30vh;
        background-position: top;
        background-repeat: no-repeat
    }

    #app .card-image-square {
        background-size: contain;
        min-height: 15em
    }

    #app .swiper-btn-next,
    #app .swiper-btn-prev,
    #app .swiper-button-next,
    #app .swiper-button-prev {
        display: none
    }

    #app .card {
        position: relative;
        display: block
    }

    #app .timestamp-received {
        text-align: left;
        margin-left: 14%
    }

    #app .timestamp-sent {
        text-align: right;
        margin-right: 9%
    }

    #app .sc-send-icon {
        height: 1.5em
    }

    #app .sc-user-input--button {
        -ms-flex-align: center;
        align-items: center
    }

    #app .sc-user-input--send-icon-wrapper {
        padding: 10px
    }

    #app .sc-user-input {
        bottom: 0
    }

    #app .sc-launcher-container {
        bottom: 160px;
    }
}

@media only screen and (max-width:450px) {
    #app .card-image {
        max-height: 52%;
        max-width: 100%;
        overflow: hidden
    }

    #app .sc-chat-window {
        max-width: 100%;
        width: 100%;
        top: 75px;
        height: auto;
        max-height: 100%;
        right: 0;
        bottom: 0;
        border-radius: 0;
        display: none
    }

    #app .card-image-square {
        min-height: 15em
    }

    #app .sc-chat-window {
        transition: .3s ease-in-out
    }

    #app .sc-chat-window.closed {
        bottom: 0;
        display: none
    }

    #app .sc-chat-window.opened {
        display: -ms-flexbox;
        display: flex;
        right: 0
    }

    #app .btn-container {
        margin: 0 auto;
        position: fixed;
        bottom: 3vh;
        width: 100%
    }

    #app .getstarted-button {
        padding: .8em 0;
        background-color: #ff8200;
        color: #fff;
        margin: 0 auto;
        width: 90%;
        border-radius: .3em;
        font-weight: 500
    }

    #app .sm-pad {
        padding: .3em .5em
    }

    #app .welcome-text {
        font-size: 2.5em;
        color: #495f77;
        font-weight: 500
    }

    #app .sm-txt {
        font-size: 1em
    }

    #app .sc-user-input {
        bottom: 0
    }

    #app .sc-send-icon {
        height: 1.5em
    }

    #app .sc-user-input--button {
        -ms-flex-align: center;
        align-items: center
    }

    #app .sc-launcher-container {
        bottom: 160px;
    }
}

#app .sc-notification[data-v-415c9ca9] {
    box-sizing: border-box;
    position: absolute;
    z-index: 1000;
    right: 5px;
    top: -5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    min-width: 25px;
    height: 25px;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 100%;
    border: 3px solid #fff;
    background-color: #ff001f;
    color: #fff;
    background-clip: padding-box
}

#app .sc-alert-container[data-v-415c9ca9] {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 10%;
    bottom: 50px;
    padding: 7px 10px;
    border-radius: 5px;
    transition: box-shadow .6s ease-in-out
}

#chatWindow[data-v-26ec0a31] {
    overflow-y: auto;
    -ms-overflow-style: none
}

@media only screen and (min-width:720px) {
    #app .opened[data-v-26ec0a31] {
        right: 1%
    }
}

#app .sc-message-list[data-v-26ec0a31] {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #fff;
    background-size: 100%;
    position: relative
}

#app .chatbox[data-v-26ec0a31] {
    position: relative
}

#app .close-convo[data-v-26ec0a31] {
    opacity: 0;
    visibility: hidden
}

#app .open-convo[data-v-26ec0a31] {
    opacity: 1
}

#app .convo-view[data-v-26ec0a31] {
    transition-duration: .3s;
    height: auto
}

#app .welcome-text[data-v-9ff3e48e] {
    font-size: 1.5em;
    color: #495f77;
    font-weight: 500
}

#app .sm-pad[data-v-9ff3e48e] {
    padding: 1.5em 2em
}

#app .sm-txt[data-v-9ff3e48e] {
    font-size: .9em
}

#app .md-top-pad[data-v-9ff3e48e] {
    padding-top: 3em
}

#app .btn-container[data-v-9ff3e48e] {
    margin: 0 auto;
    position: relative
}

#app .minheight-15[data-v-9ff3e48e] {
    min-height: 1.5em
}

#app .getstarted-button[data-v-9ff3e48e] {
    background-color: #ff8200
}

#app .getstarted-button-not-active[data-v-9ff3e48e],
#app .getstarted-button[data-v-9ff3e48e] {
    padding: .8em 0;
    color: #fff;
    margin: 0 auto;
    width: 90%;
    border-radius: .3em;
    font-weight: 500
}

#app .getstarted-button-not-active[data-v-9ff3e48e] {
    background-color: #f1cba4
}

#app .getstarted-button[data-v-9ff3e48e]:active {
    background-color: #db7018;
    box-shadow: inset 0 -5px #b35a12;
    -ms-transform: translateY(2px);
    transform: translateY(2px)
}

#app .sc-logo[data-v-9ff3e48e] {
    width: 35%;
    padding: 30px
}

#app .image-upload[data-v-093b0186] {
    margin-left: 5px
}

#app .btn[data-v-093b0186] {
    display: inline-block;
    background: transparent;
    color: inherit;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 0;
    transition: all .2s ease-in-out;
    cursor: pointer
}

#app .btn--primary[data-v-093b0186] {
    background: #7f8ff4;
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    border-radius: 2px;
    padding: 12px 36px
}

#app .btn--primary[data-v-093b0186]:hover {
    background: #6c7ff2
}

#app .btn--primary[data-v-093b0186]:active {
    background: #7f8ff4;
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, .2)
}

#app .btn--inside[data-v-093b0186] {
    margin-left: -96px
}

#app .form[data-v-093b0186]:-ms-input-placeholder {
    color: rgba(86, 88, 103, .3)
}

#app .form[data-v-093b0186]::placeholder {
    color: rgba(86, 88, 103, .3)
}

#app .form__field[data-v-093b0186] {
    width: 100%;
    background: #f4f7f9;
    color: #565867;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 12px 1em;
    border-bottom-left-radius: 10px;
    margin-bottom: 3px
}

#app .sc-menu[data-v-093b0186] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #565867;
    height: 100%;
    padding: 16px;
    cursor: pointer
}

#app .menu-active[data-v-093b0186] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

#app .sc-menu-item[data-v-093b0186] {
    padding: 3px 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #f4f7f9
}

#app .sc-menu-background[data-v-093b0186] {
    background-color: #f4f7f9;
    text-align: left;
    cursor: pointer
}

#app .sc-menu-background[data-v-093b0186]:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

@media only screen and (min-width:781px) {
    #app .fade-enter-active[data-v-093b0186] {
        animation: slideUp .3s ease-in-out
    }

    #app .fade-leave-active[data-v-093b0186] {
        animation: slideDown .3s ease-out
    }
}

#app .fade-enter-active[data-v-093b0186] {
    animation: slideUp .15s ease-in-out
}

@keyframes slideUp {
    0% {
        opacity: .5;
        max-height: 0
    }

    to {
        opacity: 1;
        max-height: 100px
    }
}

@keyframes slideDown {
    0% {
        opacity: .5;
        max-height: 90px
    }

    to {
        opacity: 0;
        max-height: 0
    }
}

#app .fade-leave-active[data-v-093b0186] {
    animation: slideDown .15s linear
}

#app .timestamp[data-v-bb42dc80] {
    font-size: 11px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#app .timestamp-received[data-v-bb42dc80] {
    text-align: left;
    margin-left: 16.2%
}

#app .timestamp-sent[data-v-bb42dc80] {
    text-align: right;
    margin-right: 6%
}

#app .slideIn[data-v-bb42dc80] {
    animation: slider2 1s linear both
}

@keyframes bounce {
    0% {
        transform: matrix(0, 0, 0, 0, 0, 0)
    }

    4.7% {
        transform: matrix(.45, 0, 0, .45, 0, 0)
    }

    9.41% {
        transform: matrix(.883, 0, 0, .883, 0, 0)
    }

    14.11% {
        transform: matrix(1.141, 0, 0, 1.141, 0, 0)
    }

    18.72% {
        transform: matrix(1.212, 0, 0, 1.212, 0, 0)
    }

    24.32% {
        transform: matrix(1.151, 0, 0, 1.151, 0, 0)
    }

    29.93% {
        transform: matrix(1.048, 0, 0, 1.048, 0, 0)
    }

    35.54% {
        transform: matrix(.979, 0, 0, .979, 0, 0)
    }

    41.04% {
        transform: matrix(.961, 0, 0, .961, 0, 0)
    }

    52.15% {
        transform: matrix(.991, 0, 0, .991, 0, 0)
    }

    63.26% {
        transform: matrix(1.007, 0, 0, 1.007, 0, 0)
    }

    85.49% {
        transform: matrix(.999, 0, 0, .999, 0, 0)
    }

    to {
        transform: matrix(1, 0, 0, 1, 0, 0)
    }
}

@keyframes slider2 {
    0% {
        transform: matrix(1, 0, 0, 1, -500, 0)
    }

    3.2% {
        transform: matrix(1, 0, .621, 1, -282.728, 0)
    }

    6.41% {
        transform: matrix(1, 0, .829, 1, -149.309, 0)
    }

    9.61% {
        transform: matrix(1, 0, .695, 1, -72.484, 0)
    }

    12.71% {
        transform: matrix(1, 0, .477, 1, -31.997, 0)
    }

    12.81% {
        transform: matrix(1, 0, .47, 1, -31.079, 0)
    }

    18.92% {
        transform: matrix(1, 0, .146, 1, -1.766, 0)
    }

    19.22% {
        transform: matrix(1, 0, .135, 1, -1.214, 0)
    }

    25.23% {
        transform: matrix(1, 0, -.003, 1, 2.88, 0)
    }

    25.63% {
        transform: matrix(1, 0, -.007, 1, 2.886, 0)
    }

    31.43% {
        transform: matrix(1, 0, -.033, 1, 1.99, 0)
    }

    56.46% {
        transform: matrix(1, 0, .002, 1, .01, 0)
    }

    65.67% {
        transform: matrix(1, 0, .001, 1, -.003, 0)
    }

    81.48% {
        transform: matrix(1, 0, 0, 1, -.001, 0)
    }

    to {
        transform: matrix(1, 0, 0, 1, 0, 0)
    }
}

@keyframes slidein {

    0%,
    to {
        transform: translateX(-20%);
        -webkit-transform: translateX(-20%);
        -moz-transform: translateX(-20%);
        -o-transform: translateX(-20%);
        -ms-transform: translateX(-20%)
    }

    to {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0)
    }
}

@media only screen and (max-width:780px) {
    #app .timestamp-received[data-v-bb42dc80] {
        text-align: left;
        margin-left: 14%
    }

    #app .timestamp-sent[data-v-bb42dc80] {
        text-align: right;
        margin-right: 7.5%
    }
}

@media only screen and (max-width:450px) {
    #app .timestamp-received[data-v-bb42dc80] {
        text-align: left;
        margin-left: 20%
    }

    #app .timestamp-sent[data-v-bb42dc80] {
        text-align: right;
        margin-right: 8%
    }
}

#app a.sc-hyperlink[data-v-bb42dc80] {
    font-size: 13px !important;
    color: blue !important
}

#app a.sc-hyperlink[data-v-bb42dc80]:visited {
    color: blue !important
}

#app .survey-group[data-v-2d392624] {
    margin: 10px 0
}

#app .survey-title[data-v-2d392624] {
    font-size: 12px;
    text-align: left;
    margin-left: 20px
}

#app .survey-ratings-wrapper[data-v-2d392624] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 20px;
    font-size: 20px !important
}

#app .survey-rating[data-v-2d392624] {
    cursor: pointer
}

#app .survey-rating[data-v-2d392624]:not(:first-child) {
    margin-left: 10px
}

#app .share-icon[data-v-041b2d20] {
    height: 18px;
    margin-right: 5px
}

#app .center[data-v-041b2d20] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    align-self: center
}

#app .border-bottom[data-v-63283497] {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

#app .wrapper[data-v-63283497] {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#app .swiper-container[data-v-63283497] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#app .card-button[data-v-22bfa996] {
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
    animation-duration: .3s;
    animation-name: slideout
}

@keyframes slideout {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(0)
    }
}

#app .last-button[data-v-22bfa996] {
    border-radius: 0 0 10px 10px
}

#app .wrapper[data-v-22bfa996] {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#app .image[data-v-20088af6] {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .1);
    object-position: center;
    object-fit: cover
}

#app .full-height[data-v-20088af6] {
    height: 100%;
    width: 100%
}

#app .image-wrapper[data-v-20088af6] {
    max-width: 80%;
    width: 50%;
    max-height: 80%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    filter: saturate(70%);
    -webkit-filter: saturate(70%);
    -moz-filter: saturate(70%);
    -o-filter: saturate(70%);
    -ms-filter: saturate(70%);
    position: relative
}

#app .timestamp[data-v-20088af6] {
    font-size: 11px;
    margin-bottom: 3px
}

#app .timestamp-received[data-v-20088af6] {
    text-align: left;
    margin-left: 16.2%;
    animation-duration: .3s;
    animation-name: slideout
}

#app .timestamp-sent[data-v-20088af6] {
    text-align: right;
    margin-right: 6%;
    animation-duration: .3s;
    animation-name: slidein
}

@keyframes slidein {

    0%,
    to {
        transform: translateX(20%);
        -webkit-transform: translateX(20%);
        -moz-transform: translateX(20%);
        -o-transform: translateX(20%);
        -ms-transform: translateX(20%)
    }

    to {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0)
    }
}

@keyframes slideout {
    0% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        -ms-transform: translateX(-100%)
    }

    to {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0)
    }
}

@media only screen and (max-width:780px) {
    #app .timestamp-received[data-v-20088af6] {
        text-align: left;
        margin-left: 14%
    }

    #app .timestamp-sent[data-v-20088af6] {
        text-align: right;
        margin-right: 7.5%
    }
}

@media only screen and (max-width:450px) {
    #app .timestamp-received[data-v-20088af6] {
        text-align: left;
        margin-left: 20%
    }

    #app .timestamp-sent[data-v-20088af6] {
        text-align: right;
        margin-right: 8%
    }
}

#app .align-middle[data-v-3c7743fe] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

#app .sc-message--text[data-v-3c7743fe] {
    padding: 0;
    -ms-flex-pack: center;
    justify-content: center
}

#app .sc-message--content.received .sc-message--text[data-v-3c7743fe] {
    margin-right: 60%
}

#app .sm-icon[data-v-3c7743fe] {
    width: 40%;
    height: 90%
}

#app .image-wrapper[data-v-4cffbf28] {
    max-width: 80%;
    width: 50%;
    max-height: 80%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    filter: saturate(70%);
    -webkit-filter: saturate(70%);
    -moz-filter: saturate(70%);
    -o-filter: saturate(70%);
    -ms-filter: saturate(70%);
    position: relative
}

#app .full-height[data-v-4cffbf28] {
    height: 100%;
    width: 100%
}

#app .bg-overlay[data-v-4cffbf28] {
    background-color: rgba(216, 241, 248, .2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#app .photo-wrapper[data-v-4cffbf28] {
    width: 100%;
    height: 100%
}

#app .photo[data-v-4cffbf28] {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-position: center;
    object-fit: cover
}

#app .svg-overlay[data-v-4cffbf28] {
    position: absolute;
    z-index: 100
}

#app .material-button[data-v-d8673c18] {
    padding: 15px;
    border-radius: 3px;
    font-size: 1rem;
    font-family: Roboto, sans-serif;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    background: #0251ba;
    border: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .3);
    transition: all .2s ease-in-out;
    cursor: pointer;
    overflow: hidden
}

#app .modal-wrapper[data-v-d8673c18] {
    height: 100%;
    width: 100%;
    position: absolute;
    margin: 0 auto;
    z-index: 1000;
    border-radius: 8px
}

#app .modal-wrapper[data-v-d8673c18],
#app .modal[data-v-d8673c18] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center
}

#app .modal[data-v-d8673c18] {
    min-height: 250px;
    -ms-flex-direction: column;
    flex-direction: column
}

#app .modal__cta[data-v-d8673c18] {
    margin: 24px 0;
    font-size: 24px;
    color: rgba(0, 0, 0, .45)
}

#app .modal__overlay[data-v-d8673c18] {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: #000;
    transition: all .25s
}

#app .modal__dialog[data-v-d8673c18] {
    max-width: 630px;
    min-width: 320px;
    height: auto;
    z-index: 2000;
    visibility: hidden
}

#app .modal__dialog.active[data-v-d8673c18] {
    background-color: #f0f8ff;
    opacity: 1;
    border-radius: 3px;
    visibility: visible
}

#app .modal__dialog.active~.modal__overlay[data-v-d8673c18] {
    opacity: .9;
    visibility: visible
}

#app .modal__dialog.active .modal__content[data-v-d8673c18] {
    transform: rotateX(0deg);
    opacity: 1
}

#app .modal__content[data-v-d8673c18] {
    border-radius: 2px;
    padding: 24px;
    color: #333;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-60deg);
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    opacity: 0;
    transition: all .25s;
    font-weight: 600
}

#app .modal__close[data-v-d8673c18] {
    position: absolute;
    right: -16px;
    top: -16px;
    color: #fff;
    background: #673ab7;
    border: 0;
    outline: 0;
    border-radius: 50%;
    font-size: 16px;
    width: 32px;
    height: 32px;
    cursor: pointer
}

#app .modal__header[data-v-d8673c18] {
    text-align: center;
    font-weight: 300;
    font-size: 24px;
    color: rgba(0, 0, 0, .45)
}

#app .modal__body[data-v-d8673c18] {
    color: #000;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    -ms-flex-direction: column;
    flex-direction: column
}

#app .modal__footer[data-v-d8673c18] {
    margin: 24px 0 0
}

/*# sourceMappingURL=styles.e79e27be.css.map*/