﻿.d-none {
    display: none !important;
}
.cbBotIconDiv {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    z-index: 9999;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: element;
}
.cbBotIconImg {
    border-radius: 50%;
    width: 65px;
    height: 65px;
    box-shadow: 1px 3px 4px 2px #cccccc;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: element;
    -ms-user-select: none;
    cursor: pointer;
}

.aaGreenBtn {
    font-size: 1rem;
    color: #FFF;
    letter-spacing: 1px;
    padding: 13px;
    background: #11BFC2;
    display: inline-block;
    border-radius: 5px;
    border: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

    .aaGreenBtn.disable {
        background: #CCC;
    }

    .aaGreenBtn.hide {
        visibility: hidden;
    }

.qaBox .resTypeBtn {
    /*display: flex;*/
    display: none;
}

    .qaBox .resTypeBtn div {
        font-size: 12px;
    }

    .qaBox .resTypeBtn .type {
        text-align: center;
        width: 60px;
        height: 60px;
        border: 1px solid #E2E2E2;
        border-radius: 5px;
        margin: 5px;
        background-color: #11BFC2;
        color: white;
        cursor: pointer;
    }

        .qaBox .resTypeBtn .type:active {
            background-color: #0E9C9E;
        }

        .qaBox .resTypeBtn .type:first-child {
            margin-left: 0;
        }

.resTypeBtn .type i {
    font-size: 20px;
    line-height: 35px;
    color: white;
}

.qaBox .resBox {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.resBox .cardContainer {
    display: flex;
    align-items: center;
    width: 25%;
}

.resBox .slideWindow {
    width: 380px;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    left: -8px;
}

.resBox .cardContainer[data-group-type='Carousel'] {
    overflow: hidden;
    display: block;
    width: 270px;
}

    .resBox .cardContainer[data-group-type='Carousel'] .card {
        width: 270px;
        position: relative;
    }

.resBox .cardContainer .card {
    display: flex;
    flex-direction: column;
    width: 270px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #E2E2E2;    
    margin: 7px 0;
    border-radius: 15px;
    position: relative;
}

.resBox .cardHandler {
    width: 12px;
    height: 150px;
    cursor: grab;
}

.resBox .slideWindow .cardHandler {
    width: 20px;
}

.resBox .cardHandler:hover {
    background-color: lemonchiffon;
}

.resBox .card[data-type='Img'] {
    /* height: 20vh; */
}

.resBox .card[data-type='Text'] {
    height: 20vh;
}

.resBox .countBox {
    font-size: 10px;
    text-align: right;
    margin-bottom: 3px;
    width: 90%
}

.resBox .card[data-type='Map'] {
    height: 422px;
}

.resBox .card[data-type='Carousel'] {
    height: 422px;
}

    .resBox .card[data-type='Carousel'] textarea {
        min-height: 15%;
    }

.resBox .card .fa-times-circle {
    position: absolute;
    font-size: 20px;
    top: -5px;
    right: -5px;
    color: red;
    opacity: 0;
}

    .resBox .card .fa-times-circle:hover {
        opacity: 1;
    }

.resBox .card .desc {
    border: 1px solid #E2E2E2;
    border-radius: 15px;
    padding: 8px;
    max-width: 90%;
    min-width: 90%;
    overflow-x: visible;
    overflow-y: visible;
    min-height: 30%;
    margin-top:10px;
}

.resBox .card[data-type='Text'] textarea {
    height: 80%;    
}

.resBox .card input[type="text"] {
    border: 1px solid #E2E2E2;
    border-radius: 15px;
    padding: 5px;
    width: 90%;
    margin-top: 10px;
}

    .resBox .card input[type="text"]:focus {
        border: 1px solid #31C3FF;
    }

.resBox .card input[type="file"] {
    background: none;
    outline: none;
    border: 0px;
    width: 100%;
    opacity: 0;
}

.resBox .card button {
    width: 90%;
    border-radius: 15px;
    outline: none;
    margin: 5px 0;
    border: 2px solid #31c3FF;
}

    .resBox .card button:last-child {
        margin-bottom: 10px;
    }

    .resBox .card button:active {
        background-color: Highlight;
    }

.resBox .searchPosition {
    background-color: #11BFC2;
    color: white;
    margin: 5px 0;
}

.resBox .card .cardSrc {
    text-align: center;
    border: 1px solid #E2E2E2;
    width: 270px;
    height: 180px;
    background-size: cover;
    background-color: lightgray;
    border-radius: 15px;
}

.resBox .card[data-type='Img'] .cardSrc {
    text-align: center;
    border: 1px solid #E2E2E2;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-color: lightgray;
    background-position: top center;
}

.resBox .card .cardSrc label {
    display: block;
}

.resBox .card .cardSrc i {
    font-size: 80px;
    color: grey;
    line-height: 180px;
}

    .resBox .card .cardSrc i:hover {
        color: #11BFC2;
    }

.resBox .card .changePic {
    z-index: 100;
    background-color: white;
    opacity: 0.8;
    display: none;
    top: 0;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .resBox .card .changePic span {
        padding: 10px;
        text-align: center;
        cursor: pointer;
    }

.resBox .card .mapZone {
    flex-basis: 50%;
    background-repeat: no-repeat;
    background-size: 200px 100px;
    background-position-x: center;
    background-position-y: center;
}

.resBox .addNewCardBtn,
.resBox .deleteCarouselBtn {
    margin-left: 30px;
}

.buttonContainer {
    position: absolute;
    z-index: 100;
    flex-direction: column;
    display: none;
    background-color: white;
    height: 50vh;
    width: 20%;    
    padding: 20px;
    border-radius: 15px;
    box-shadow: 5px 5px 10px 1px #9B9B9B;
}

    .buttonContainer .selectType{
        display:flex;
        align-items:center;
        width:100%;
        margin:30px 0;
    }
    .buttonContainer input,
    .buttonContainer textarea,
    .buttonContainer select {
        border-radius: 15px;        
        border: 1px solid #E2E2E2;
    }

    .buttonContainer input,
    .buttonContainer textarea {
        padding: 8px;
    }
    .buttonContainer input{
        margin-top:10px;
        width:100%;
    }
    .buttonContainer select {
        padding: 3px;
    }
    .buttonContainer textarea {
        margin-top: 5px;
        width: 100%;
        height: 80%;
        resize: none;
    }
    .buttonContainer .textCountBox{
        text-align:right;
        font-size:10px;
        margin-top:5px;
    }
    .buttonContainer button {
        padding: 5px;
        color: white;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .buttonContainer .saveCarouselBtn {
        background: #11BFC2;        
    }
    .buttonContainer .editBtn {
        background: #11BFC2;
        display: none;
    }

    .buttonContainer .deleteBtn {
        background: orangered;
    }

    .buttonContainer .closeIcon {
        font-size: 20px;
        position: absolute;
        right: -5px;
        top: -5px;
        color: red;
    }

    .buttonContainer .URLboard  {
        height:50%;
        display: none;
    }
    .buttonContainer .sendTextBoard {
        height: 50%;
    }

.previewWindow {
    height: 70vh;
    width: 25%;
    background-color: white;
}

.aaGreenBtn:hover {
    color: #EFEFEF;
    background: #3C3C3C
}

.aaGreenBtn i,
.aaGreenBtn span {
    display: inline-block;
}

.aaGreenBtn i {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 5px;
}

    .aaGreenBtn i:after,
    .aaGreenBtn i:before {
        content: '';
        display: block;
        position: absolute;
        background: #FFF
    }

    .aaGreenBtn i:before {
        width: 100%;
        height: 2px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .aaGreenBtn i:after {
        width: 2px;
        height: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

.aaGreenBtn span {
    vertical-align: top
}

@media screen and (max-width:640px) {
    .aaGreenBtn {
        font-size: .875rem;
        padding: 10px
    }

        .aaGreenBtn i {
            width: 10px;
            height: 10px;
        }
}

.skillBtn i {
    width: 18px;
    height: 18px;
    background: url("../../images/edit_white.png")
}

    .skillBtn i:after,
    .skillBtn i:before {
        display: none
    }

.submitBtn {
    font-weight: bold;
    padding: 7px 13px;
    border: none
}

.switchBtn {
    width: 40px;
    height: 16px;
    border-radius: 8px;
    background: #DEDEDE;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

    .switchBtn:after {
        content: '';
        width: 20px;
        height: 20px;
        background: #EFEFEF;
        border-radius: 50%;
        position: absolute;
        display: block;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    }

    .switchBtn.on {
        background: #11BFC2
    }

        .switchBtn.on:after {
            background: #93EDEF;
            left: 20px
        }

    .switchBtn:active:after {
        -webkit-transform: translateY(-50%) scale(1.15, 0.85);
        -ms-transform: translateY(-50%) scale(1.15, 0.85);
        transform: translateY(-50%) scale(1.15, 0.85)
    }


.intentSwitchBtn {
    position: absolute;
    right: 0;
    top: 10px;
    display: none;
}

#map {
    width: 100%;
    height: 100%;
}

.mapZone {
    width: 100%;
    height: 100%;
}
/* ////////////////////////////////////////////// */
.dashboardSide .saveBtn {
    font-size: 1rem;
    color: #FFF;
    margin-bottom: 20px;
    padding: 13px;
    background: #11BFC2;
    display: inline-block;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.saveBtn {
    font-size: 1rem;
    color: #FFF;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 13px;
    background: #11BFC2;
    display: inline-block;
    border-radius: 5px;
    letter-spacing: 1px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media screen and (max-width:640px) {
    .saveBtn {
        font-size: .875rem;
    }
}

.saveBtn:hover {
    background: #3C3C3C
}

.saveBtn.disabled {
    color: #AAA;
    background: #EFEFEF;
    cursor: default;
}

.saveBtn.weakened {
    color: #AAA;
    background: #EFEFEF;
    cursor: default;
}

.saveBtn.saveing {
    color: #FFF;
    background: #9E9E9E;
    cursor: default;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.saveBtn.saveing {
    color: #FFF;
    background: #9E9E9E;
    cursor: default;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

    .saveBtn.saveing .loadIcon, .noticeBox .loadIcon {
        width: 15px;
        height: 15px;
        opacity: 1;
        border: 2px solid #e5e6e2;
        margin-left: 10px;
        vertical-align: middle
    }

        .saveBtn.saveing .loadIcon:after {
            width: 12px;
            height: 12px;
            display: inline-block;
            vertical-align: top
        }

.loadIcon {
    width: 0;
    height: 0;
    display: inline-block;
    opacity: 0;
    border: 0px solid #e5e6e2;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    margin-left: 0px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

    .loadIcon:after {
        content: '';
        width: 100%;
        height: 100%;
        display: inline-block;
        border-top: 2px solid transparent;
        border-right: 2px solid skyblue;
        border-bottom: 2px solid transparent;
        border-left: 2px solid transparent;
        border-radius: 50%;
        position: absolute;
        top: -2px;
        left: -2px;
        -webkit-animation: circle-rotate .75s both linear infinite;
        animation: circle-rotate .75s both linear infinite
    }
/* ////////////////////////////////////////////// */
.synonymName.change.double::after {
    content: '!';
    color: red;
}


.scBtn a {
    color: #9B9B9B;
    display: inline-block;
    padding: 13px;
    border: 1px solid #cbcbcb;
    border-radius: 5px
}

    .scBtn a:not(:last-child) {
        margin-right: 4px
    }

    .scBtn a.on,
    .scBtn a:hover {
        color: #FFF;
        background: #11BFC2;
        border-color: transparent
    }
/* ////////////////////////////////////////////// */
.dcBtn a {
    color: #9B9B9B;
    display: inline-block;
    padding: 13px;
    border: 1px solid #cbcbcb;
    border-radius: 5px
}

    .dcBtn a:not(:last-child) {
        margin-right: 4px
    }

    .dcBtn a.red {
        background: #EA0058;
        color: #FFF
    }
/* ////////////////////////////////////////////// */
.sideMask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 13
}

.mask {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 20;
}
/* ////////////////////////////////////////////// */
.botBox {
    color: #3C3C3C;
    display: inline-block;
    max-width: 370px;
    width: 95%;
    padding: 30px 20px 24px;
    background: #FFF;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

    .botBox.on {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    .botBox .clearX {
        width: 20px;
        height: 20px;
        text-align: center;
        position: absolute;
        right: -10px;
        top: -35px;
        border: 2px solid #3C3C3C;
        background: #FFF;
        border-radius: 50%;
        z-index: 11;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        cursor: pointer;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

        .botBox .clearX i {
            width: 10px;
            height: 10px;
            position: absolute;
            display: block;
            left: 0;
            right: 0;
            margin: auto;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%)
        }

            .botBox .clearX i:after,
            .botBox .clearX i:before {
                content: '';
                display: block;
                position: absolute;
                background: #3C3C3C;
                -webkit-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease
            }

            .botBox .clearX i:before {
                width: 2px;
                height: 100%;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%)
            }

            .botBox .clearX i:after {
                width: 100%;
                height: 2px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%)
            }

        .botBox .clearX:hover {
            background: #3C3C3C
        }

            .botBox .clearX:hover i:after,
            .botBox .clearX:hover i:before {
                background: #FFF
            }

    .botBox h3 {
        font-size: 1.125rem;
        font-weight: bold;
        margin-bottom: 35px
    }

    .botBox .txt,
    .botBox .txt1 {
        font-size: 0;
    }

    .botBox .txt {
        margin: 0;
    }

        .botBox .txt1 .newBotName,
        .botBox .txt label {
            font-size: 0;
            display: inline-block
        }

        .botBox .txt1 label,
        .botBox .txt label {
            font-size: 14px;
            width: 35%
        }

        .botBox .txt .newBotName,
        .botBox .txt input[type=text] {
            font-size: 1rem;
            border: 1px solid #D8D8D8;
            border-radius: 2px;
            padding: 8px 5px;
            width: 65%
        }

        .botBox .txt .categoryTit {
            width: 20%
        }

        .botBox .txt1 .categoryInput,
        .botBox .txt .categoryInput {
            width: 80%
        }

        .botBox .txt1 small,
        .botBox .txt small {
            visibility: hidden;
            font-size: .75rem;
            font-weight: 600;
            color: #EA0058;
            display: block;
            text-align: right;
            margin-top: 4px
        }

            .botBox .txt1 small:before,
            .botBox .txt small:before {
                content: '*';
                display: inline-block;
                font-size: 1.125rem;
                vertical-align: middle
            }

    .botBox .txt1 {
        margin-bottom: 5px
    }

    .botBox h2 {
        font-size: 1.5rem
    }

    .botBox hr {
        width: 100%;
        height: 1px;
        background: #3C3C3C;
        display: block;
        margin: 20px auto 10px
    }

    .botBox input[type=password],
    .botBox input[type=text] {
        font-size: 1rem;
        width: 100%;
        padding: 8px;
        border: 1px solid #D8D8D8
    }

        .botBox input[type=password]:not(:last-of-type),
        .botBox input[type=text]:not(:last-of-type) {
            margin-bottom: 10px
        }

        .botBox input[type=password].error,
        .botBox input[type=text].error {
            border: 1px solid red
        }

        .botBox input[type=password]:disabled,
        .botBox input[type=text]:disabled {
            background: #FFF
        }

    .botBox > div {
        margin-top: 25px;
    }

        .botBox > div i,
        .botBox > div span {
            display: inline-block;
            vertical-align: top
        }

        .botBox > div .check {
            width: 16px;
            height: 16px;
            background: #FFF;
            line-height: 16px;
            border: 1px solid #D8D8D8;
            position: relative
        }

            .botBox > div .check:after {
                content: '';
                width: 4px;
                height: 9px;
                position: absolute;
                top: 1px;
                left: 5px;
                opacity: 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                border-right: 2px solid #535353;
                border-bottom: 2px solid #535353;
                -webkit-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease
            }

            .botBox > div .check.on:after {
                opacity: 1
            }

    .botBox .selectivity-multiple-selected-item {
        color: #3C3C3C;
        font-weight: bold;
    }

        .botBox .selectivity-multiple-selected-item a {
            color: #11bfc2;
            text-decoration: underline
        }

    .botBox .companyName {
        width: 100%;
        display: block;
    }

    .botBox > div.step1,
    .botBox > div.step2 {
        margin-bottom: 0
    }

        .botBox > div.step1 input[type=text] {
            margin: 10px 0
        }

    .botBox > div.step2 {
        display: none
    }

        .botBox > div.step2 p {
            line-height: 150%
        }

            .botBox > div.step2 p:not(:last-child) {
                margin-bottom: 15px
            }

    .botBox small {
        font-size: .75rem;
        color: #EA0058;
        display: block;
        margin-bottom: 10px;
        height: 16px
    }
/* ////////////////////////////////////////////// */
.members:not(:last-child) {
    margin-bottom: 20px
}

.members .title h4,
.members .title i {
    display: inline-block;
    vertical-align: top
}

.members .title i {
    width: 14px;
    height: 14px;
    background: #11BFC2;
    position: relative;
    cursor: pointer;
    margin-left: 8px;
}

    .members .title i:after,
    .members .title i:before {
        content: '';
        position: absolute;
        background: #FFF
    }

    .members .title i:before {
        width: 1px;
        height: 70%;
        top: 0;
        bottom: 0;
        margin: auto;
        ;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .members .title i:after {
        width: 70%;
        height: 1px;
        left: 0;
        right: 0;
        margin: auto;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
/* ////////////////////////////////////////////// */
.qaBox {
    position: relative
}

    .qaBox:not(:last-child) {
        margin-bottom: 22px
    }

    .qaBox .userStatus {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .qaBox > h4 {
        color: #31C3FF;
        margin-bottom: 8px;
        font-weight: normal;
    }

        .qaBox > h4 > div {
            display: inline-block
        }

        .qaBox > h4 small {
            font-size: 0.8rem;
            color: #9E9E9E;
            display: inline-block;
            margin-left: 5px
        }

        .qaBox > h4 i {
            font-style: normal;
            color: #FFF;
            background: #11BFC2;
            border-radius: 2px;
            display: inline-block;
            padding: 1px 2px;
            margin-left: 5px
        }

            .qaBox > h4 i.skillSlideBtn {
                width: 14px;
                height: 14px;
                border: 1px solid #31C3FF;
                display: inline-block;
                vertical-align: top;
                margin-left: 5px;
                position: relative;
                background: none;
                cursor: pointer
            }

                .qaBox > h4 i.skillSlideBtn:after {
                    content: '';
                    display: block;
                    position: absolute;
                    width: 5px;
                    height: 5px;
                    border-bottom: 1px solid #31C3FF;
                    border-right: 1px solid #31C3FF;
                    -webkit-transform: rotate(45deg);
                    -ms-transform: rotate(45deg);
                    transform: rotate(45deg);
                    margin: auto;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0
                }

    .qaBox .btn {
        position: absolute;
        right: 0;
        top: 0
    }

    .qaBox .txt {
        border: 1px solid #E2E2E2;
        position: relative;
        border-radius: 2px;
        margin-bottom: 8px;
        background: #FFF;
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease
    }

        .qaBox .txt:after {
            content: '';
            display: block;
            clear: both
        }

        .qaBox .txt textarea {
            font-size: .8rem;
            color: #3C3C3C;
            width: 100%;
            height: 200px;
            border: 0;
            padding: 8px;
        }

        .qaBox .txt.getHeight {
            margin-bottom: 50px
        }

        .qaBox .txt > span {
            font-size: .8rem;
            display: block;
            padding: 8px
        }

            .qaBox .txt > span.qaNameEdit {
                font-size: 0.8rem;
                color: #9E9E9E;
                padding: 8px;
                letter-spacing: .8px;
                display: block;
                background: #FAFAFA
            }

        .qaBox .txt .example {
            font-size: 0.8rem;
            color: #9E9E9E;
            padding: 8px;
            letter-spacing: .8px;
            display: block;
            background: #FAFAFA;
            white-space: nowrap;
            overflow: hidden;
            height: 38px
        }

        .qaBox .txt > div,
        .qaBox .txt > input {
            font-size: 0.8rem;
            color: #3C3C3C;
            width: 95%;
            padding: 8px;
            border: none;
            /*max-height: 32px;*/
            white-space: nowrap;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            overflow: hidden;
            background: #FFF;
        }
            .qaBox .txt > input[disabled] {
                cursor: default;
                background: #FAFAFA;
                font-size: 0.8rem;
                color: #9E9E9E;
                display: inline-block;
                margin-left: 5px;
            }

        .qaBox .txt i {
            width: 15px;
            height: 15px;
            display: block;
            position: absolute;
            right: 10px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            cursor: pointer;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

            .qaBox .txt i:after,
            .qaBox .txt i:before {
                content: '';
                display: block;
                background: #D8D8D8;
                position: absolute;
                -webkit-transition: all .5s ease;
                -o-transition: all .5s ease;
                transition: all .5s ease
            }

            .qaBox .txt i:before {
                width: 15px;
                height: 2px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%)
            }

            .qaBox .txt i:after {
                width: 2px;
                height: 100%
            }

            .qaBox .txt i:hover:after,
            .qaBox .txt i:hover:before {
                background: #3C3C3C
            }

    .qaBox .list li {
        border: 1px solid #E2E2E2;
        background: #FFF;
        position: relative;
        margin-top: -1px;
        cursor: default;
        display: block;
    }

        .qaBox .list li:after {
            content: '';
            display: block;
            clear: both
        }

    .qaBox .qaListQuick li span,
    /*  .qaBox .qaListUser li span,*/
    .qaBox .qaListBot li span {
        display: none;
        /*display: inline-block;*/
        cursor: grab !important;
    }

    .qaBox .list li.new {
        -webkit-animation: fadeIn 1s ease both;
        animation: fadeIn 1s ease both
    }

    .qaBox .list li.to-remove {
        display: none
    }

    .qaBox .list li > span {
        font-size: 0.8rem;
        color: #3C3C3C;
        font-family: Arial;
        letter-spacing: .8px;
        width: 90%;
        padding: 8px;
        float: left;
        display: inline-block;
        cursor: default;
    }

    .qaBox .list li i {
        color: #D8D8D8;
        display: block;
        position: absolute;
        right: 11px;
        cursor: pointer;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease
    }

        .qaBox .list li i:hover {
            color: #000
        }

    .qaBox .intentListQuick li span {
        cursor: grab;
    }

    .qaBox .tagList li {
        color: #11BFC2;
        display: inline-block;
        border: 1px solid #11BFC2;
        padding: 6px;
        border-radius: 5px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

        .qaBox .tagList li span {
            display: inline-block;
            margin-right: 5px;
        }

        .qaBox .tagList li i {
            cursor: pointer;
        }

    .qaBox .txt i:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.synonymBoard {
    display: none;
    background-color: white;
    border: 1px solid #e2e2e2;
    position: absolute;
    flex-direction: column;
    width: 20vw;
    top: 50vh;
    left: 50vw;
    margin-top: -10vw;
    margin-left: -10vh;
    z-index: 20;
    box-shadow: 0 1px 3px 0 rgba(136,136,136,.2);
    padding: 20px;
}

    .synonymBoard .title {
        margin: 30px 0 20px;
        color: #11BFC2;
        font-size: 28px;
    }

    .synonymBoard .addSynonym {
        border-radius: 5px;
        border: 1px solid #E2E2E2;
        margin: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2px 5px;
    }

    .synonymBoard .synonymVal {
        border: 1px solid transparent;
    }

    .synonymBoard .btnBox {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    .synonymBoard button {
        width: 20%;
        color: white;
        background-color: #11BFC2;
        border-radius: 5px;
        border: 1px solid transparent;
        padding: 5px;
    }

    .synonymBoard .addSynonymBtn {
        cursor: pointer;
    }

.synonymItem {
    margin-top: 8px;
    position: relative
}

    .synonymItem li {
        padding: 5px;
        margin: 5px;
        color: #3C3C3C;
        background: #FFF;
        border: 1px solid #E2E2E2;
        border-radius: 5px;
    }

        .synonymItem li.new {
            -webkit-animation: fadeIn 1s ease both;
            animation: fadeIn 1s ease both
        }

        .synonymItem li span {
            font-size: 0.8rem;
            color: #3C3C3C;
            display: inline-block;
            padding: 8px;
            vertical-align: top;
            width: 90%
        }

        .synonymItem li i {
            font-size: 1rem;
            color: #9E9E9E;
            width: 10%;
            display: inline-block;
            text-align: right;
            padding: 8px;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
            cursor: pointer
        }

            .synonymItem li i:hover {
                color: #000
            }

.wrongBoard {
    display: none;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    flex-direction: column;
    z-index: 20;
}
/* ////////////////////////////////////////////// */
.botList {
    transition: all .3s ease;
    text-align: left;
}

    /*.botList.toggle {
      height: 150px;
      overflow: auto;
  }*/

    .botList li {
        font-size: 0;
        border-radius: 5px;
        padding: 15px;
        position: relative;
        text-align: left;
        display: inline-block !important;
        width: 19%;
        margin-right: .9%;
        vertical-align: top;
        background-color: #FFF;
        background-repeat: no-repeat;
        background-position: center center;
        box-shadow: 0 1px 3px 0 rgba(136,136,136,.2), 0 1px 1px 0 rgba(136,136,136,.14), 0 2px 1px -1px rgba(136,136,136,.12);
        transition: all .3s ease;
    }

        .botList li:hover {
            background: #EEE;
        }

        .botList li:not(:last-child) {
            margin-bottom: 12px
        }

        .botList li:after {
            content: '';
            display: block;
            clear: both
        }

        .botList li img {
            position: absolute;
            width: 8%;
            z-index: 15;
            top: -30px;
            left: 5px;
            -webkit-animation: fadeInUp .5s;
            animation: fadeInUp .5s;
        }

        .botList li i {
            font-size: 1rem;
            cursor: pointer;
        }

            .botList li i.fa-trash-o {
                color: #CCC;
                position: absolute;
                right: 0px;
                top: 5px;
                padding: 10px;
                transition: all .3s ease;
            }

                .botList li i.fa-trash-o:hover {
                    color: #3C3C3C;
                }

            .botList li i.editBotName {
                display: inline-block
            }

                .botList li i.editBotName.off {
                    display: none
                }

            .botList li i.saveBotName {
                display: none
            }

                .botList li i.saveBotName.on {
                    display: inline-block
                }

            .botList li i.i-edit {
                position: absolute;
                z-index: 5;
                padding: 10px;
                top: 5px;
                left: 0;
                color: #666;
            }


        .botList li .btn {
            position: absolute;
            right: 16px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%)
        }

        .botList li b {
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .botList li .edit {
            font-size: 1rem;
            display: inline-block;
            vertical-align: middle;
            text-align: right;
            width: 15%
        }

@media screen and (max-width:1440px) {
    .botList li {
        width: 24%;
    }

    .newBox {
        height: 450px;
    }
}

@media screen and (max-width:1280px) {
    .botList li {
        width: 32%;
    }

    .newBox {
        height: 400px;
    }
}

@media screen and (max-width:1000px) {
    .botList li {
        width: 49%;
    }
}

@media screen and (max-width:640px) {
    .botList li {
        width: 100%;
    }
}

/* ////////////////////////////////////////////// */
.searchBox {
    font-size: 0;
    width: 100%;
    background: #FFF;
    border: 1px solid #D8D8D8;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-top: 15px
}

    .searchBox i.searchBtn {
        font-size: 1rem;
        width: 14px;
        display: inline-block;
        margin-right: 10px;
        cursor: pointer;
        vertical-align: middle;
    }

    .searchBox i.clearX {
        font-size: 1rem;
        color: #D8D8D8;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

        .searchBox i.clearX:hover {
            color: #3C3C3C
        }

        .searchBox i.clearX.on {
            opacity: 1;
            visibility: visible
        }

    .searchBox input {
        font-size: 1rem;
        width: 95%;
        display: inline-block;
        border: 0;
        background: transparent;
        vertical-align: middle
    }

@media screen and (max-width:1024px) {
    .searchBox input {
        width: 80%
    }
}

/* ////////////////////////////////////////////// */
.skillBox {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 12px
}

    .skillBox i.star {
        color: #11BFC2;
        width: 16px;
        opacity: 0;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        margin-left: 2px
    }

        .skillBox i.star.on {
            opacity: 1
        }

    .skillBox i.check {
        width: 16px;
        height: 16px;
        margin: auto;
        text-align: center;
        background: #FFF;
        border-radius: 50%;
        line-height: 16px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px
    }

        .skillBox i.check:after {
            content: '';
            width: 4px;
            height: 9px;
            position: absolute;
            top: 1px;
            left: 5px;
            opacity: 0;
            -webkit-transform: rotate(45deg) scale(0);
            -ms-transform: rotate(45deg) scale(0);
            transform: rotate(45deg) scale(0);
            border-right: 2px solid #535353;
            border-bottom: 2px solid #535353;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            -webkit-transition-delay: 0.15s;
            -o-transition-delay: 0.15s;
            transition-delay: 0.15s
        }

        .skillBox i.check.on {
            -webkit-animation: jelly 0.6s ease;
            animation: jelly 0.6s ease
        }

            .skillBox i.check.on:after {
                opacity: 1;
                -webkit-transform: rotate(45deg) scale(1);
                -ms-transform: rotate(45deg) scale(1);
                transform: rotate(45deg) scale(1)
            }

    .skillBox i.identify {
        display: inline-block;
        margin-right: 5px;
        position: relative;
    }


@media screen and (max-width:640px) {
    .skillBox {
        width: 100%;
        display: block
    }
}
/* ////////////////////////////////////////////// */
.skillBubble,
.skillDescrip {
    display: inline-block
}

.skillBubble {
    border-radius: 20px;
    background: #EFEFEF;
    position: relative;
    line-height: 150%
}

    .skillBubble a {
        display: block;
        padding: 8px 50px 8px 12px;
        color: #3C3C3C;
        cursor: default
    }

    .skillBubble.outSide a {
        color: #AAA
    }

    .skillBubble.edit a {
        cursor: pointer;
        color: #3C3C3C
    }

@media screen and (max-width:640px) {
    .skillBubble {
        width: 100%;
        display: block
    }
}
/* ////////////////////////////////////////////// */
.skillDescrip {
    display: none;
    padding: 10px;
    border-radius: 5px;
    background: #FFF;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-48.5%);
    -ms-transform: translateX(-48.5%);
    transform: translateX(-48.5%);
    top: 55px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    width: 220px;
    margin: 0 15px;
    z-index: 1
}

    .skillDescrip:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 5px 7px 5px;
        border-color: transparent transparent #FFF transparent;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: -7px
    }

    .skillDescrip p {
        font-size: .8rem;
        color: #9B9B9B;
        line-height: 18px;
        margin-bottom: 6px;
        letter-spacing: 1px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical
    }

    .skillDescrip small {
        font-size: 10px;
        color: #9B9B9B;
        display: block;
        margin-bottom: 5px
    }

    .skillDescrip span {
        font-size: 0.8rem;
        color: #3C3C3C
    }

    .skillDescrip hr {
        width: 100%;
        height: 1px;
        background: #D8D8D8;
        margin: 10px 0 5px
    }

    .skillDescrip a {
        font-size: 0.8rem;
        color: #D8D8D8;
        text-align: center;
        display: block
    }

        .skillDescrip a:hover {
            color: #9B9B9B
        }

        .skillDescrip a.on {
            color: #11BFC2
        }

        .skillDescrip a i {
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px
        }

@media screen and (max-width:640px) {
    .skillDescrip {
        width: 90%;
        position: relative;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: auto;
        margin: 7px auto 12px
    }

        .skillDescrip:before {
            display: none
        }
}

/* ////////////////////////////////////////////// */
.skillList {
    margin-top: 16px
}

    .skillList h4 {
        font-size: 0.8rem;
        color: #31C3FF;
        margin-bottom: 9px;
        font-weight: normal;
    }
/* ////////////////////////////////////////////// */
.langNexit {
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    text-align: center;
    z-index: 10;
}

    .langNexit a {
        font-size: 0.8rem;
        color: #3C3C3C;
        display: inline-block;
        margin-right: 18px;
    }


        .langNexit a:last-child {
            margin-right: 0;
        }

        .langNexit a i {
            font-size: 1rem;
            width: 14px;
            height: 14px;
            margin-right: 4px
        }

        .langNexit a i,
        .langNexit a span {
            display: inline-block;
            vertical-align: middle
        }

        .langNexit a span {
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

        .langNexit a:hover span {
            color: #11BFC2
        }

    .langNexit.side {
        position: absolute;
        left: 7%;
        right: auto;
        text-align: left
    }

        .langNexit.side a {
            display: block;
            margin-bottom: 18px
        }

            .langNexit.side a:last-child {
                margin-bottom: 0;
            }

            .langNexit.side a.lang {
                margin-right: 0;
            }

            .langNexit.side a i {
                font-size: 1rem;
            }
/* ////////////////////////////////////////////// */
/*.langList {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 0px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  padding: 7px 10px
}

  .langList.on {
      display: block
  }

  .langList li {
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease
  }

      .langList li.on,
      .langList li:hover {
          color: #11BFC2
      }

      .langList li:not(:last-child) {
          margin-bottom: 16px
      }*/
/* ////////////////////////////////////////////// */
.phoneHeader {
    display: none;
    text-align: center;
    padding: 6px 5%;
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    background: #FFF;
    border-bottom: 1px solid #979797;
    z-index: 11
}

    .phoneHeader img {
        max-width: 200px
    }

@media screen and (max-width:640px) {
    .phoneHeader img {
        max-width: 152px;
        height: 30px;
    }
}

@media screen and (max-width:1024px) {
    .phoneHeader {
        display: block
    }
}

/* ////////////////////////////////////////////// */
.hambugerBtn {
    width: 24px;
    height: 22px;
    display: none;
    position: fixed;
    z-index: 15;
    left: 5%;
    top: 18px;
    cursor: pointer
}

    .hambugerBtn span {
        width: 100%;
        height: 2px;
        display: block;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background: #3C3C3C;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

        .hambugerBtn span:before {
            content: '';
            width: 100%;
            height: 2px;
            display: block;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            background: #3C3C3C;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

    .hambugerBtn:after,
    .hambugerBtn:before {
        content: '';
        width: 100%;
        height: 2px;
        display: block;
        position: absolute;
        background: #3C3C3C;
        left: 0;
        right: 0;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

    .hambugerBtn:before {
        top: 0
    }

    .hambugerBtn:after {
        bottom: 0
    }

    .hambugerBtn.on:before {
        left: 100%;
        width: 0
    }

    .hambugerBtn.on:after {
        right: 100%;
        width: 0
    }

    .hambugerBtn.on span {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }

        .hambugerBtn.on span:before {
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg)
        }

@media screen and (max-width:1024px) {
    .hambugerBtn {
        display: block
    }
}

@media screen and (max-width:640px) {
    .hambugerBtn {
        top: 12px
    }
}
/* ////////////////////////////////////////////// */
.dashboardSide {
    width: 100%
}

    .dashboardSide:after {
        content: '';
        display: block;
        clear: both
    }

    .dashboardSide .right {
        width: 100%;
        position: relative;
    }
/* ////////////////////////////////////////////// */
.qaItem li,
.synonymIist li {
    font-size: 0;
    color: #3C3C3C;
    padding: 16px 2px;
    border-bottom: 1px solid #EFEFEF;
    position: relative
}

    .qaItem li:after {
        content: '';
        display: block;
        clear: both
    }

    .synonymIist li:after {
        content: '';
        display: block;
        clear: both
    }

    .qaItem li .del,
    .synonymIist li .del {
        float: right
    }

    .qaItem li > div,
    .synonymIist li > div {
        font-size: 1rem;
        display: inline-block;
        vertical-align: middle
    }

        .qaItem li > div a,
        .synonymIist li > div a {
            font-size: 1rem
        }

            .qaItem li > div a:hover,
            .synonymIist li > div a:hover {
                color: #FFF
            }

        .qaItem li > div:first-child,
        .synonymIist li > div:first-child {
            width: 85%
        }

        .qaItem li > div:last-child,
        .synonymIist li > div:last-child {
            width: 15%;
            text-align: right
        }

            .qaItem li > div:last-child .switchBtn,
            .synonymIist li > div:last-child .switchBtn {
                float: right
            }

        .qaItem li > div > i,
        .synonymIist li > div > i {
            color: #D8D8D8;
            display: inline-block;
            margin-left: 6px;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
            cursor: pointer
        }

            .qaItem li > div > i:hover,
            .synonymIist li > div > i:hover {
                color: #000
            }

        .qaItem li > div h5,
        .qaItem li > div p,
        .synonymIist li > div h5,
        .synonymIist li > div p {
            display: inline-block
        }

        .qaItem li > div h5,
        .synonymIist li > div h5 {
            font-size: 1rem;
            color: #3C3C3C;
            font-weight: bold
        }

        .qaItem li > div p,
        .synonymIist li > div p {
            font-size: 0.8rem;
            color: #D8D8D8
        }

@media screen and (max-width:640px) {
    .hambugerBtn {
        width: 18px;
        height: 18px;
    }

    .qaItem li div:first-child {
        width: 75%
    }

    .qaItem li div:last-child {
        width: 25%
    }
}

.qaItem li div i.status {
    margin: 0 5px 0 0;
    vertical-align: middle;
    cursor: default
}

    .qaItem li div i.status.statusOn {
        color: #11BFC2
    }

    .qaItem li div i.status.statusOff {
        color: #CCC
    }
/* ////////////////////////////////////////////// */
/*#qaItem {
  height: 380px
}*/
/* ////////////////////////////////////////////// */
/*.synonymSide {
  margin-top: 16px
}

  .synonymSide h4 {
      font-size: 0.8rem;
      color: #31C3FF
  }*/
/* ////////////////////////////////////////////// */
.synonymList {
    margin-top: 18px
}

    .synonymList li a,
    .synonymList li i {
        display: inline-block
    }

    .synonymList li a {
        width: 90%
    }

        .synonymList li a h5,
        .synonymList li a p {
            display: inline-block
        }

        .synonymList li a h5 {
            font-size: 1rem;
            color: #3C3C3C;
            margin-right: 8px
        }

        .synonymList li a p {
            font-size: 1rem;
            color: #D8D8D8
        }

    .synonymList li i {
        color: #dbdbdb;
        width: 10%;
        text-align: right;
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease;
        cursor: pointer
    }

        .synonymList li i:hover {
            color: #000
        }
/* ////////////////////////////////////////////// */
/*.startUp {
  display: inline-block
}

  .startUp:not(:last-child) {
      margin-right: 65px
  }

  .startUp > div,
  .startUp h5 {
      display: inline-block;
      vertical-align: middle
  }

  .startUp h5 {
      font-size: 0.8rem;
      color: #9E9E9E;
      margin-right: 10px
  }*/
/* ////////////////////////////////////////////// */
.synonymInput {
    font-size: 0;
    width: 100%;
    border: 1px solid #E2E2E2;
    position: relative;
    background: #FFF;
}

    .synonymInput input {
        font-size: 0.8rem;
        color: #3C3C3C;
        display: inline-block;
        border: 0;
        padding: 8px;
        width: 95%;
        background: #FFF;
    }

    .synonymInput .add {
        width: 15px;
        height: 15px;
        display: block;
        position: absolute;
        right: 8px;
        cursor: pointer
    }

        .synonymInput .add:after,
        .synonymInput .add:before {
            content: '';
            display: block;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            background: #D8D8D8;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

        .synonymInput .add:before {
            width: 2px;
            height: 100%;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%)
        }

        .synonymInput .add:after {
            width: 100%;
            height: 2px
        }

        .synonymInput .add:hover:after,
        .synonymInput .add:hover:before {
            background: #000
        }
/* ////////////////////////////////////////////// */

/* ////////////////////////////////////////////// */
.greenColor {
    color: #FFF;
    padding: 2px 5px;
    background: #58e0e3;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    font-weight: normal
}
/* ////////////////////////////////////////////// */
.skillSelect:after {
    content: '';
    display: block;
    clear: both
}

.skillSelect {
    width: 100%;
    position: relative
}

    .skillSelect .big,
    .skillSelect .small {
        width: 49.5%;
        float: left;
        vertical-align: top;
        background: #FFF;
        margin-bottom: 0
    }

        .skillSelect .big span,
        .skillSelect .small span {
            border-radius: 5px
        }

    .skillSelect .big {
        margin-right: 1%
    }
/* ////////////////////////////////////////////// */
/*.status {
  margin-bottom: 30px
}

  .status:after {
      content: '';
      display: block;
      clear: both
  }

  .status span {
      font-size: 1rem;
      color: #3C3C3C;
      float: left
  }

  .status div {
      float: right
  }*/
/* ////////////////////////////////////////////// */
.sideBar {
    height: 100%;
    width: 250px;
    float: left;
    position: relative;
    padding-top: 20px;
    letter-spacing: 1px;
    background: #FFF;
    -webkit-box-shadow: 5px 0 15px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 5px 0 15px 0 rgba(0, 0, 0, 0.08);
    z-index: 8
}

    .sideBar .inn {
        width: 86%;
        margin: auto
    }

    .sideBar .logo {
        margin-bottom: 18%;
        text-align: center;
    }

        .sideBar .logo a {
            display: block
        }

        .sideBar .logo img {
            width: 80%;
            height: 100%
        }

        .sideBar .logo span {
            font-size: 13px;
            display: block;
            margin-top: 10px;
            letter-spacing: 1px;
        }

    .sideBar .member {
        font-size: 0.8rem;
        color: #3C3C3C;
        margin-bottom: 8px;
        position: relative
    }

        .sideBar .member a {
            position: absolute;
            right: 0;
            width: 100%;
            cursor: default;
        }

            .sideBar .member a > i {
                font-size: 1rem;
                color: #EA0058;
                display: inline-block;
                margin-left: 5px;
                float: right;
            }

@media screen and (max-width:1330px) {
    .sideBar {
        width: 22%
    }
}

@media screen and (max-width:1024px) {
    .sideBar {
        width: 70%;
        position: fixed;
        left: -100%;
        z-index: 14;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

        .sideBar.on {
            left: 0
        }

        .sideBar .logo img {
            display: none
        }

        .sideBar .inn {
            width: 90%
        }
}

@media screen and (max-width:640px) {
    .sideBar .logo span {
        display: none;
    }
}

/* ////////////////////////////////////////////// */
.bellBtn {
    cursor: pointer;
}

.noticeBox {
    width: 100%;
    box-shadow: 2px 2px 12px #ccc;
    background: #FFF;
    position: absolute;
    z-index: 5;
    left: 45%;
    top: 30px;
    display: none;
}

    .noticeBox:after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background: #FFF;
        transform: rotate(135deg);
        top: -4px;
        left: 50%;
        position: absolute;
        z-index: 2;
        border: 1px solid;
        border-color: transparent transparent #CCC #CCC;
    }

    .noticeBox > span {
        display: block;
        background: #EFEFEF;
        color: #AAA;
        padding: 8px 0;
        text-align: center;
        cursor: pointer;
        transition: all .3s ease;
    }

        .noticeBox > span:hover {
            color: #3C3C3C;
        }
/* ////////////////////////////////////////////// */
.noticList {
    max-height: 335px;
    overflow-y: auto;
}

    .noticList li {
        padding: 8px;
        position: relative;
    }

        .noticList li:not(:last-child) {
            border-bottom: 1px solid #CCC;
        }

        .noticList li span {
            font-size: 10px;
            color: #9B9B9B;
            border: 1px solid #9B9B9B;
            border-radius: 5px;
            padding: 2px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .noticList li b, .noticList li p {
            font-size: .8rem;
            display: inline-block;
            vertical-align: middle;
        }

        .noticList li b {
            color: #3C3C3C;
            max-width: 100%;
            overflow: hidden;
            display: inline-block;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;
        }

        .noticList li p {
            color: #CCC;
            display: inline-block;
        }

        .noticList li .time {
            font-size: 10px;
            color: #CCC;
            position: absolute;
            right: 8px;
            top: 8px;
        }

            .noticList li .time i {
                display: inline-block;
                margin-right: 5px;
            }
/* ////////////////////////////////////////////// */
.loadingText {
    font-size: 1rem;
    color: #3C3C3C;
    height: 100px;
    line-height: 100px;
    text-align: center;
}
/* ////////////////////////////////////////////// */
.dropDown {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 10px
}

    .dropDown > span {
        display: block;
        padding: 10px;
        border: 1px solid #D8D8D8;
        border-radius: 5px 5px 0 0;
        position: relative;
        cursor: pointer;
        height: 38px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap
    }

@media screen and (max-width:640px) {
    .dropDown > span {
        font-size: .875rem;
    }
}

.dropDown > span:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #9B9B9B #9B9B9B transparent transparent;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.dropDown.on > span:after {
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg)
}

.dropDown > span.timeFilterName {
    border-radius: 5px;
}

.dropDown .selectBox {
    display: none;
    background: #FFF;
    border-radius: 0 0 5px 5px;
    border-top: 0;
    position: absolute;
    width: 100%;
    z-index: 3
}

    .dropDown .selectBox ul {
        padding: 10px 0;
        border: 1px solid #D8D8D8;
        border-top: 0;
        max-height: 200px;
        overflow-y: auto
    }

        .dropDown .selectBox ul li {
            padding: 0 10px;
            cursor: pointer;
            overflow: hidden;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            white-space: nowrap;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

            .dropDown .selectBox ul li:hover {
                color: #11BFC2
            }

            .dropDown .selectBox ul li:not(:last-child) {
                padding-bottom: 13px
            }

    .dropDown .selectBox > div {
        font-size: 1.25rem;
        color: #11BFC2;
        text-align: center;
        padding: 10px 0;
        border: 1px solid #D8D8D8;
        border-top: 0;
        /*border-radius: 0 0 5px 5px;*/
        cursor: pointer;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

        .dropDown .selectBox > div i {
            font-size: 1.56rem;
            font-style: normal;
            font-weight: bold;
            display: inline-block;
            -webkit-transform-origin: center center;
            -ms-transform-origin: center center;
            transform-origin: center center;
            vertical-align: top;
            margin-right: 5px;
        }

            .dropDown .selectBox > div i.light {
                display: inline-block;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: red;
                vertical-align: middle;
            }

            .dropDown .selectBox > div i.botOn {
                background: #11BFC2;
            }

            .dropDown .selectBox > div i.botOff {
                background: #CCC;
            }

    .dropDown .selectBox > .creatBtn {
        border-radius: 0 0 5px 5px;
    }

        .dropDown .selectBox > .creatBtn:hover {
            color: #FFF;
            background: #11BFC2
        }

    .dropDown .selectBox .drop {
        position: relative;
    }

        .dropDown .selectBox .drop:not(:last-child) {
            margin-bottom: 10px;
        }

        .dropDown .selectBox .drop h4 {
            font-size: .8rem;
            color: #31C3FF;
            padding: 2px 10px;
            text-align: left !important;
            position: relative;
            z-index: 5;
        }

    .dropDown .selectBox > div.drop:hover {
        color: #FFF;
        background: #11BFC2
    }
/* ////////////////////////////////////////////// */
.botDrop {
    font-size: 1rem;
    color: #3C3C3C;
    font-weight: normal;
    border: 0 !important;
    max-height: 300px !important;
    text-align: left !important;
    border-bottom: 1px solid #CCC;
    display: none;
}
/* ////////////////////////////////////////////// */
.dropBorderRadius {
    font-size: 1rem;
    float: right;
    width: 165px;
}

    .dropBorderRadius > span {
        border-radius: 5px;
        padding: 13px;
        height: auto;
    }

@media screen and (max-width:640px) {
    .dropBorderRadius > span {
        font-size: .875rem;
        padding: 10px;
    }
}
/* ////////////////////////////////////////////// */
.sideMenu li {
    margin-top: 20px
}

    .sideMenu li ul {
        margin-left: 15px
    }

    .sideMenu li a {
        color: #3C3C3C
    }

        .sideMenu li a.on,
        .sideMenu li a:hover {
            color: #11BFC2
        }
/* ////////////////////////////////////////////// */
.skillWithoutData {
    color:lightcoral;
    display: none;
    font-size: medium;
    font-family: '微軟正黑體', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}
/* ////////////////////////////////////////////// */
.botContent {
    width: calc(100% - 250px);
    padding: 84px 5% 100px;
    float: right;
    background: #FAFAFA;
    height: 100%;
    overflow-y: scroll;
}

@media screen and (max-width:1330px) {
    .botContent {
        width: 78%;
        padding: 84px 5% 100px;
    }
}

@media screen and (max-width:1280px) {
    .botContent {
        padding: 84px 5% 100px
    }
}

@media screen and (max-width:1024px) {
    .botContent {
        width: 100%
    }
}

.botContent h3 {
    font-size: 1.5rem;
    color: #3C3C3C;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 18px;
    border-bottom: 2px solid #3C3C3C;
    position: relative;
    z-index: 10
}

@media screen and (max-width:640px) {
    .botContent h3 {
        font-size: 1rem;
    }
}

.botContent h3 button {
    font-size: 1rem;
    color: #FFF;
    border: 0;
    background: #11BFC2;
    padding: 5px 10px;
    margin: 0;
    border-radius: 5px;
    left: auto;
    bottom: 5px;
    float: right;
    transform: none;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

@media screen and (max-width:640px) {
    .botContent h3 button {
        font-size: .875rem;
    }
}

.botContent h3 button:hover {
    background: #3C3C3C
}

.botContent .skillPath .rightSide {
    float: right;
    display: inline-block;
}

@media screen and (max-width:640px) {
    .botContent .skillPath > span {
        display: inline-block;
        width: 80%;
        line-height: 150%;
    }
}

.botContent .skillPath .rightSide .updateTip {
    margin-right: 10px;
    font-size: .875rem;
    display: inline-block;
    vertical-align: top;
}

    .botContent .skillPath .rightSide .updateTip i {
        color: #EA0058;
        margin-right: 5px;
    }

.botContent .skillPath span a,
.botContent .skillPath span b {
    color: #3C3C3C;
    transition: all .3s ease;
}

    .botContent .skillPath span b:hover,
    .botContent .skillPath span a:hover {
        color: #11BFC2
    }

.botContent .skillPath span b {
    cursor: pointer;
}

    .botContent .skillPath span b:after {
        content: '>';
        color: #3C3C3C;
        display: inline-block;
        margin: 0 8px 0 10px;
    }

.botContent .innerPager {
    height: 100%;
}

.botContent h4 {
    font-size: 0.8rem;
    color: #31C3FF;
    display: block;
    margin-bottom: 17px;
    font-weight: normal;
}

    .botContent h4:after {
        content: '';
        display: block;
        clear: both
    }

    .botContent h4 button, .botContent h4 .rightBtn {
        float: right;
        border: 0;
        margin: 0;
        left: auto;
        transform: none;
    }

.skillSettingIcon {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
}

/* ////////////////////////////////////////////// */
.loginBox {
    max-width: 400px;
    width: 90%;
    display: inline-block;
    padding: 33px 28px 17px;
    border: 1px solid #D8D8D8;
    background: #FAFAFA
}

    .loginBox .logo {
        width: 210px;
        margin: 0 auto 20px;
        overflow: hidden;
    }

    .loginBox a {
        margin: auto
    }

    .loginBox hr {
        width: 100%;
        height: 1px;
        background: #E2E2E2;
        margin: 20px 0 25px
    }

@media screen and (max-width:640px) {
    .loginBox {
        border: 0
    }
}
/* ////////////////////////////////////////////// */
.loginSide {
    margin-bottom: 20px
}

    .loginSide li {
        font-size: 0;
        margin-bottom: 20px
    }

        .loginSide li input,
        .loginSide li label {
            font-size: 1rem;
            display: inline-block;
            vertical-align: middle
        }

        .loginSide li label {
            font-weight: 600;
            letter-spacing: .8px;
            margin-right: 6px;
            text-align: left
        }

        .loginSide li input {
            border: 1px solid #E2E2E2;
            background: #FFF;
            padding: 5px;
            width: 70%
        }
/* ////////////////////////////////////////////// */
/*.otherLogin p {
  font-size: 0.8rem;
  color: #D8D8D8;
  letter-spacing: .65px;
  margin-bottom: 7px
}

.otherLogin ul li {
  font-size: 0.8rem;
  color: #FFF;
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer
}

  .otherLogin ul li:not(:last-child) {
      margin-right: 4px
  }

  .otherLogin ul li:first-child {
      background: #01b901
  }

      .otherLogin ul li:first-child img {
          width: 100%;
          height: 100%
      }

  .otherLogin ul li:nth-child(2) {
      background: #3c66c4
  }

  .otherLogin ul li:nth-child(3) {
      background: #cf4332
  }

  .otherLogin ul li:nth-child(4) {
      background: #24c300
  }

  .otherLogin ul li:nth-child(5) {
      background: #24c300
  }*/
/* ////////////////////////////////////////////// */
.loginBtn {
    font-size: 0;
    margin-top: 16px
}

    .loginBtn li {
        display: inline-block
    }

        .loginBtn li:not(:last-child):after {
            content: '';
            display: inline-block;
            width: 1px;
            height: 13px;
            background: #9B9B9B;
            vertical-align: top;
            margin: 2px 8px 0
        }

        .loginBtn li a {
            font-size: 0.8rem;
            color: #9B9B9B;
            letter-spacing: .8px
        }

            .loginBtn li a:hover {
                color: #11BFC2
            }
/* ////////////////////////////////////////////// */

.copyRight {
    font-size: 0.8rem;
    color: #3C3C3C;
    letter-spacing: 1px;
    width: 100%;
    position: fixed;
    bottom: 7px;
    text-align: center;
    padding: 0 5%
}
/* ////////////////////////////////////////////// */
.loginfailed {
    font-size: .85rem;
    color: red;
    margin-top: 10px
}
/* ////////////////////////////////////////////// */
.resetPassword {
    width: 400px;
    margin: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    border: 1px solid #CCC;
    padding: 33px 28px 17px;
    background: #FAFAFA
}

    .resetPassword label {
        font-weight: 600;
        margin-right: 6px;
        letter-spacing: .8px
    }

    .resetPassword input {
        margin: 10px 0;
        padding: 5px;
        border: 1px solid #E2E2E2;
        background: #FFF
    }
/* ////////////////////////////////////////////// */
/*.searchBtn1 {
  float: left;
  width: 4%;
  border: 1px solid #D8D8D8;
  vertical-align: top;
  text-align: center;
  background: #FFF;
  cursor: pointer;
  padding: 10px
}*/
/* ////////////////////////////////////////////// */
.grayHolder::-webkit-input-placeholder {
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.grayHolder:-moz-placeholder {
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.grayHolder::-moz-placeholder {
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.grayHolder:-ms-input-placeholder {
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}
/* ////////////////////////////////////////////// */
.inputHolder::-webkit-input-placeholder {
    font-size: 1rem;
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.inputHolder:-moz-placeholder {
    font-size: 1rem;
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.inputHolder::-moz-placeholder {
    font-size: 1rem;
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.inputHolder:-ms-input-placeholder {
    font-size: 1rem;
    color: #D8D8D8;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}
/* ////////////////////////////////////////////// */
.botNameVal:-moz-placeholder {
    color: #000;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.botNameVal:-ms-input-placeholder {
    color: #000;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.botNameVal::-moz-placeholder {
    color: #000;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}

.botNameVal::-webkit-input-placeholder {
    color: #000;
    font-family: 'Noto Sans TC','微軟正黑體', Arial, sans-serif
}
/* ////////////////////////////////////////////// */
.searchResult {
    color: #9B9B9B;
    font-weight: bold;
    padding: 25px 0 16px;
    letter-spacing: 1px;
    display: none
}

    .searchResult i {
        font-style: normal
    }

    .searchResult span {
        color: #11BFC2
    }

    .searchResult.on {
        display: block
    }
/* ////////////////////////////////////////////// */
.toggleBox {
    display: none
}
/* ////////////////////////////////////////////// */
.toggleBtn {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 5px;
    top: 0
}

    .toggleBtn:before, .toggle:after {
        content: '';
        position: absolute;
        display: block;
        background: #31C3FF
    }

    .toggleBtn:before {
        width: 100%;
        height: 2px;
        top: 50%;
        transform: translateY(-50%)
    }

    .toggleBtn:after {
        content: '';
        position: absolute;
        display: block;
        background: #31C3FF;
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%)
    }

    .toggleBtn.on:after {
        display: none;
    }
/* ////////////////////////////////////////////// */
.skillSetBox {
    font-size: 0.8rem;
    color: #3C3C3C;
    position: relative;
    margin-bottom: 20px
}

    .skillSetBox h4 {
        font-size: 0.8rem;
        color: #31C3FF;
        font-weight: normal;
        margin-bottom: 10px;
    }

        .skillSetBox h4 span {
            font-size: 11px;
            color: #D8D8D8;
            font-weight: normal;
            display: inline-block;
            margin-left: 5px;
            letter-spacing: 0.85px
        }

        .skillSetBox h4 .skillSlideBtn {
            width: 14px;
            height: 14px;
            border: 1px solid #31C3FF;
            display: inline-block;
            vertical-align: top;
            margin-left: 5px;
            position: relative;
            cursor: pointer
        }

            .skillSetBox h4 .skillSlideBtn:after {
                content: '';
                display: block;
                position: absolute;
                width: 5px;
                height: 5px;
                border-bottom: 1px solid #31C3FF;
                border-right: 1px solid #31C3FF;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                margin: auto;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                -webkit-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease
            }

    .skillSetBox p {
        line-height: 24px;
    }

    .skillSetBox .box {
        display: flex;
        align-items: center;
        flex-wrap: wrap
    }

    .skillSetBox a.deleteBtn {
        font-size: 14px;
        color: #9B9B9B;
        border: 1px solid #9B9B9B;
        display: inline-block;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        right: 0;
    }


    .skillSetBox .inputTxt,
    .skillSetBox .skillDiv,
    .skillSetBox input[type=text] {
        width: 100%;
        border: 1px solid #E2E2E2;
        padding: 8px;
        background: #FFF;
        height: 34px
    }

    .skillSetBox .file-select {
        width: 100%;
        border: 1px solid #E2E2E2;
        height: 33px;
        background: #FFF;
        position: relative;
        padding: 8px;
        padding-top: 5px
    }

        .skillSetBox .file-select .addBtn,
        .skillSetBox .file-select .txt {
            font-size: 0;
            display: inline-block;
            vertical-align: middle
        }

        .skillSetBox .file-select .txt {
            font-size: .8rem;
            color: #CCC;
            width: calc(100% - 20px);
            height: 100%
        }

            .skillSetBox .file-select .txt.active {
                color: #3C3C3C
            }

        .skillSetBox .file-select .addBtn {
            font-size: .8rem;
            width: 15px;
            height: 15px;
            position: relative;
            cursor: pointer
        }

            .skillSetBox .file-select .addBtn:after,
            .skillSetBox .file-select .addBtn:before {
                content: '';
                display: block;
                background: #D8D8D8;
                position: absolute
            }

            .skillSetBox .file-select .addBtn:before {
                width: 100%;
                height: 2px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%)
            }

            .skillSetBox .file-select .addBtn:after {
                width: 2px;
                height: 100%;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%)
            }

            .skillSetBox .file-select .addBtn.off {
                display: none
            }

        .skillSetBox .file-select input[type=file] {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 10;
            top: 0;
            right: 5px;
            opacity: 0;
            cursor: pointer
        }

        .skillSetBox .file-select .fileDeleteBtn {
            width: 100%;
            height: 100%;
            z-index: 11;
            top: 0;
            left: 0;
            position: absolute;
            opacity: 0;
            display: none
        }

            .skillSetBox .file-select .fileDeleteBtn.on {
                display: block
            }

        .skillSetBox .file-select .deleteBtn {
            font-size: 1rem;
            color: #D8D8D8;
            position: absolute;
            right: 14px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            z-index: 12;
            cursor: pointer;
            display: none;
            -webkit-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease
        }

            .skillSetBox .file-select .deleteBtn:hover {
                color: #000
            }

            .skillSetBox .file-select .deleteBtn.on {
                display: block
            }

    .skillSetBox .list {
        margin-top: 10px;
        overflow: hidden;
        position: relative;
    }

        .skillSetBox .list li {
            padding: 8px;
            background: #FFF;
            border: 1px solid #E2E2E2
        }

            .skillSetBox .list li:not(:first-child) {
                border-top: none
            }
    /* /////////////////////////////////////////////////////////// */
    .skillSetBox .csSurveyOptionList .checkBoxEx {
        display: block;
        position: relative;
        padding-left: 28px;
        margin-bottom: 8px;
        padding-top:5px;
        cursor: pointer;
        font-size: 14px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background: #EFEFEF;
        border-radius: 20px;
        width:110px;
        height:27px;
    }
        .skillSetBox .csSurveyOptionList .checkBoxEx input[type="checkbox"] {
            position: absolute !important;
            opacity: 0 !important;
            cursor: pointer !important;
            height: 0 !important;
            width: 0 !important;
        }
        .skillSetBox .csSurveyOptionList .checkBoxEx .checkmark {
            position: absolute;
            left: 8px;
            height: 15px;
            width: 15px;
            background-color: #FFF;
            top:6px;
        }
            .checkmark:after {
                content: "";
                position: absolute;
                display: none;
            }

            .skillSetBox .csSurveyOptionList .checkBoxEx .checkmark:after {
                left: 3px;
                top: 0px;
                width: 5px;
                height: 10px;
                border: solid white;
                border-width: 0 3px 3px 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }

    .skillSetBox .csSurveyOptionList .checkBoxEx:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .skillSetBox .csSurveyOptionList .checkBoxEx input:checked ~ .checkmark {
        background-color: rgb(0, 0, 0);
    }

        .skillSetBox .csSurveyOptionList .checkBoxEx input:checked ~ .checkmark:after {
            display: block;
        }
      
    /* /////////////////////////////////////////////////////////// */
    .skillSetBox .checkBox li {
        display: inline-block;
        background: #EFEFEF;
        border-radius: 20px;
        padding: 8px;
        margin-bottom: 10px;
    }

        .skillSetBox .checkBox li span {
            width: 16px;
            height: 16px;
            background: #FFF;
            border-radius: 50%;
            display: inline-block;
            margin-left: 42px;
            cursor: pointer;
            position: relative
        }

            .skillSetBox .checkBox li span:after {
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                position: absolute;
                background: #000;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%) scale(0);
                -ms-transform: translate(-50%, -50%) scale(0);
                transform: translate(-50%, -50%) scale(0);
                border-radius: 50%;
                opacity: 0;
                -webkit-transition: all .5s ease;
                -o-transition: all .5s ease;
                transition: all .5s ease
            }

            .skillSetBox .checkBox li span.engineOption {
                cursor: default
            }

                .skillSetBox .checkBox li span.engineOption:after {
                    background: #CCC
                }

            .skillSetBox .checkBox li span.on:after {
                opacity: 1;
                -webkit-transform: translate(-50%, -50%) scale(1);
                -ms-transform: translate(-50%, -50%) scale(1);
                transform: translate(-50%, -50%) scale(1)
            }

        .skillSetBox .checkBox li:not(:last-child) {
            margin-right: 40px
        }

    .skillSetBox .inline {
        font-size: 0;
        margin-top: 8px
    }

        .skillSetBox .inline > div,
        .skillSetBox .inline > label {
            font-size: .8rem;
            display: inline-block;
            vertical-align: middle
        }

        .skillSetBox .inline > label {
            width: 90px
        }

        .skillSetBox .inline > div {
            width: calc(100% - 90px)
        }

    .skillSetBox .valBox {
        margin-top: -1px
    }

        .skillSetBox .valBox label {
            color: #11BFC2;
            border: 1px solid #E2E2E2;
            border-right: none;
            background: #FFF;
            padding: 8px;
            width: 40%
        }

        .skillSetBox .valBox .selectDrop {
            width: 60%
        }
/* ////////////////////////////////////////////// */
.botOptionSetBox {
    font-size: 0.8rem;
    color: #3C3C3C;
    position: relative;
    margin-bottom: 20px
}

    .botOptionSetBox h4 {
        font-size: 0.8rem;
        color: #31C3FF;
        font-weight: normal;
        margin-bottom: 10px;
    }

        .botOptionSetBox h4 span {
            font-size: 11px;
            color: #D8D8D8;
            font-weight: normal;
            display: inline-block;
            margin-left: 5px;
            letter-spacing: 0.85px
        }

    .botOptionSetBox p {
        line-height: 24px;
    }

    .botOptionSetBox .box {
        display: flex;
        align-items: center;
        flex-wrap: wrap
    }

    .botOptionSetBox .engineCheckBox li {
        display: inline-block;
        background: #EFEFEF;
        border-radius: 20px;
        padding: 8px;
        margin-bottom: 10px;
    }

    .botOptionSetBox .engineCheckBox .Top1 {
        margin-left: 10px;
        font-size: 14px;
        cursor: pointer;
    }

        .botOptionSetBox .engineCheckBox .Top1 .sDTop1 {
            display: none;
            top: 75px !important;
            left: 50px !important;
        }
    
        .botOptionSetBox .engineCheckBox .Top1 label {
            margin-left: 5px;
            cursor: pointer;
        }

    .botOptionSetBox .engineCheckBox .Top1toTop6 {
        margin-left: 10px;
        font-size: 14px;
        cursor: pointer;
    }
        .botOptionSetBox .engineCheckBox .Top1toTop6 .sDTop1toTop6 {
            top: 75px !important;
            left: 270px !important;
            display: none;
        }

        .botOptionSetBox .engineCheckBox .Top1toTop6 label {
            margin-left: 5px;
            cursor: pointer;
        }

    .botOptionSetBox .engineCheckBox .Top1toTop5 {
        margin-left: 10px;
        font-size: 14px;
        cursor: pointer;
    }
        .botOptionSetBox .engineCheckBox .Top1toTop5 .sDTop1toTop5 {
            display: none;
            top: 75px !important;
            left: 480px !important;
        }

        .botOptionSetBox .engineCheckBox .Top1toTop5 label {
            margin-left: 5px;
            cursor: pointer;
        }

        .botOptionSetBox .engineCheckBox li span {
            height: 16px;
            width: 16px;
            background: #FFF;
            border-radius: 50%;
            display: inline-block;
            margin-left: 20px;
            cursor: pointer;
            position: relative
        }

            .botOptionSetBox .engineCheckBox li span:after {
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                position: absolute;
                background: #000;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%) scale(0);
                -ms-transform: translate(-50%, -50%) scale(0);
                transform: translate(-50%, -50%) scale(0);
                border-radius: 50%;
                opacity: 0;
                -webkit-transition: all .5s ease;
                -o-transition: all .5s ease;
                transition: all .5s ease
            }

            .botOptionSetBox .engineCheckBox li span.botOption {
                cursor: default
            }

                .botOptionSetBox .engineCheckBox li span.botOption:after {
                    background: #000
                }

            .botOptionSetBox .engineCheckBox li span.on:after {
                opacity: 1;
                -webkit-transform: translate(-50%, -50%) scale(1);
                -ms-transform: translate(-50%, -50%) scale(1);
                transform: translate(-50%, -50%) scale(1)
            }

        .botOptionSetBox .engineCheckBox li:not(:last-child) {
            margin-right: 25px
        }
/* ////////////////////////////////////////////// */
.botModuleSetBox {
    font-size: 0.8rem;
    color: #3C3C3C;
    position: relative;
    margin-bottom: 20px
}

    .botModuleSetBox h4 {
        font-size: 0.8rem;
        color: #31C3FF;
        font-weight: normal;
        margin-bottom: 10px;
    }

    .botModuleSetBox ul li {
        display: inline-block;
        background: #EFEFEF;
        border-radius: 20px;
        padding: 8px;
        margin-bottom: 10px;
    }

    .botModuleSetBox ul .Time {
        margin-left: 10px;
        font-size: 14px;
        cursor: pointer;
    }

        .botModuleSetBox ul .Time label {
            margin-left: 5px;
            cursor: pointer;
        }

    .botModuleSetBox ul li span {
        height: 16px;
        width: 16px;
        background: #FFF;
        border-radius: 50%;
        display: inline-block;
        margin-left: 20px;
        cursor: pointer;
        position: relative
    }

        .botModuleSetBox ul li span:after {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            position: absolute;
            background: #000;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%) scale(0);
            -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            opacity: 0;
            -webkit-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease
        }

        .botModuleSetBox ul li span.on:after {
            opacity: 1;
            -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1)
        }
/* ////////////////////////////////////////////// */
.infoTipsTxt {
    text-align: right;
    margin-bottom: 20px;
}

    .infoTipsTxt i.fa-info-circle {
        font-size: 1rem;
        color: #EA0058;
        margin-right: 8px;
        display: inline-block;
    }

    .infoTipsTxt .downloadBtn {
        color: #FFF;
        background: #11BFC2;
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
        padding: 5px;
        border-radius: 5px;
        letter-spacing: 1px;
        border: 1px solid transparent;
    }

        .infoTipsTxt .downloadBtn:hover {
            background: #3C3C3C;
        }
/* ////////////////////////////////////////////// */
.selectDrop {
    width: 100%;
    position: relative
}

    .selectDrop span {
        border: 1px solid #E2E2E2;
        width: 100%;
        padding: 8px;
        display: block;
        background: #FFF;
        position: relative;
        cursor: pointer
    }

        .selectDrop span:after {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border-bottom: 1px solid #D8D8D8;
            border-right: 1px solid #D8D8D8;
            position: absolute;
            right: 15px;
            top: 50%;
            -webkit-transform: translateY(-50%) rotate(45deg);
            -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg)
        }

    .selectDrop ul {
        background: #f4f4f4;
        width: 100%;
        position: absolute;
        z-index: 5;
        max-height: 200px;
        overflow-y: auto;
        display: none
    }

        .selectDrop ul li {
            padding: 8px;
            cursor: pointer;
            -webkit-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease
        }

            .selectDrop ul li:hover {
                color: #11BFC2
            }
/* ////////////////////////////////////////////// */
.categoryDrop {
    font-size: .8rem;
    background: #FFF;
}

    .categoryDrop span {
        border-radius: 0
    }
/* ////////////////////////////////////////////// */
.dropDown .categoryBoxUl {
    background: #EFEFEF
}

.dropDown .selectBox > div.addNewCategoryBtn {
    font-size: .9rem;
}
/* ////////////////////////////////////////////// */
.companyDrop {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

    .companyDrop > span {
        border-radius: 0;
        height: 42px;
    }
/* ////////////////////////////////////////////// */
.intentIist li {
    width: 100%;
    padding: 16px 0;
    position: relative;
    letter-spacing: 1px;
}

    .intentIist li.lock:after {
        content: '';
        display: block;
        background: rgba(0,0,0,0);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .intentIist li a {
        color: #3C3C3C
    }

    .intentIist li span.status {
        font-size: 10px;
        color: #11BFC2;
        display: inline-block;
        border: 1px solid #11BFC2;
        border-radius: 3px;
        padding: 0 2px;
        margin-left: 10px;
        margin-bottom: 0;
        letter-spacing: 1px;
    }

    .intentIist li .preview,
    .intentIist li h5 {
        display: inline-block;
        vertical-align: middle
    }

    .intentIist li h5 {
        font-size: 1rem;
        color: #3C3C3C;
        font-weight: normal;
        cursor: pointer;
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease
    }

        .intentIist li h5:hover {
            color: #11BFC2
        }

    .intentIist li .preview {
        font-size: .85rem;
        color: #CCC;
        margin-left: 10px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 50%
    }

        .intentIist li .preview span {
            display: inline-block;
            margin-right: 5px
        }

            .intentIist li .preview span:not(:last-child):after {
                content: '、'
            }

    .intentIist li:not(:last-child) {
        border-bottom: 1px solid #EFEFEF
    }

    .intentIist li i {
        color: #D8D8D8;
        position: absolute;
        right: 16px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease
    }

        .intentIist li i:hover {
            color: #000
        }
/* ////////////////////////////////////////////// */
.managerTab {
    border-bottom: 1px solid #D8D8D8;
    margin-top: 50px;
    font-size: 0
}

    .managerTab li {
        font-size: 1rem;
        width: 50%;
        display: inline-block;
        text-align: center;
        position: relative
    }

        .managerTab li a {
            color: #3C3C3C;
            padding-bottom: 10px;
            padding-top: 10px;
            display: block
        }

        .managerTab li:after {
            content: '';
            width: 0;
            height: 4px;
            display: block;
            background: #31C3FF;
            bottom: -2px;
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

        .managerTab li.on:after {
            content: '';
            width: 100%
        }
/* ////////////////////////////////////////////// */
.managerWord > div {
    display: none
}
/* ////////////////////////////////////////////// */
.dashBoardBox {
    display: flex;
    margin-bottom: 18px;
}

    .dashboardBox:not(:last-child) {
        margin-bottom: 25px
    }

    .dashboardBox > h4 {
        margin-bottom: 20px;
        font-weight: bold
    }

    .dashboardBox > div {
        position: relative
    }

        .dashboardBox > div canvas {
            margin-top: 10px;
            width: 100vw;
            height: 15vh;
        }

        .dashboardBox > div span {
            font-size: .8rem
        }

/* ////////////////////////////////////////////// */
.dashBoard {
    font-size: 1rem;
    display: inline-block;
    width: 32%;
    height: 180px;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(136,136,136,.2), 0 1px 1px 0 rgba(136,136,136,.14), 0 2px 1px -1px rgba(136,136,136,.12);
    padding: 10px;
    position: relative;
    z-index: 11;
    vertical-align: top;
}

    .dashBoard label {
        font-size: 1rem;
        font-weight: bold;
        color: #3C3C3C;
        display: block;
        width: 100%;
        letter-spacing: 1px;
        position: relative;
        height: 20%
    }

    .dashBoard:not(:last-child) {
        margin-right: 2%;
    }

    .dashBoard div.outBox {
        height: 80%;
        position: relative;
        width: 100%;
        text-align: center
    }

    .dashBoard div.inBox {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .dashBoard span {
        font-size: 3.5rem;
        font-weight: bold;
        color: #3C3C3C;
    }

        .dashBoard span.unit {
            font-size: .8rem;
            font-weight: normal;
        }

    .dashBoard hr {
        width: 35%;
        height: 1px;
        background: #AAA;
        margin: 10px auto;
    }

    .dashBoard b {
        color: #D8D8D8;
        text-align: center;
        display: block;
        width: 100%;
    }

    .dashBoard a {
        font-size: .8rem;
        color: #11BFC2;
        letter-spacing: 1px;
        cursor: pointer;
        height: 15%;
        display: inline-block;
        position: absolute;
        right: 0;
    }

        .dashBoard a i {
            display: inline-block;
            margin-right: 5px;
        }

.mainBox {
    display: flex;
}

    .mainBox .logBoard {
        margin-right: 1%;
        flex-basis: 66%;
    }

    .mainBox .leftBox {
        flex-basis: 32%;
        margin-left: 20px;
    }



    .mainBox .skillCountBox {
        width: 100%;
        position: relative;
        background-color: white;
        padding: 10px;
        box-shadow: 0 1px 3px 0 rgba(136,136,136,.2);
    }

        .mainBox .skillCountBox .emptyBox {
            text-align: center;
            padding: 100px;
        }

        .mainBox .skillCountBox .reportLinkBtn {
            font-size: .8rem;
            color: #11BFC2;
            letter-spacing: 1px;
            font-weight: bold;
            cursor: pointer;
            height: 15%;
            display: inline-block;
            position: absolute;
            right: 10px;
        }

        .mainBox .skillCountBox .text {
            margin: 5px 0;
            font-size: 14px;
            text-align: right;
        }

        .mainBox .skillCountBox #skillCount {
            margin-top: 20px;
        }

    .mainBox .textBox {
        margin-top: 50px;
    }

@media screen and (max-width:1650px) {
    .dashBoard a {
        position: relative;
        right: auto;
        height: auto;
        display: block;
        margin-top: 10px;
    }
}

@media screen and (max-width:1024px) {
    .dashBoard {
        width: 100%;
        display: block;
    }

        .dashBoard:not(:last-child) {
            margin-bottom: 10px;
        }
}

@media screen and (max-width:640px) {
    .dashBoard a {
        height: 15%;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        margin-top: 0;
    }
}
/* ////////////////////////////////////////////// */
/*.dialogSource div,
.dialogSource ul {
  vertical-align: top
}

.dialogSource ul {
  width: 55%;
  float: left;
  margin-right: 5%
}

.dialogSource div {
  width: 40%;
  float: right
}*/
/* ////////////////////////////////////////////// */
/*.chart-legend {
  float: right
}

  .chart-legend li {
      font-size: 0.8rem;
      color: #FFF;
      display: inline;
      vertical-align: middle;
      background: #DDD;
      padding: 3px 5px;
      border-radius: 15px
  }*/
/* ////////////////////////////////////////////// */
.moreBtn {
    font-size: .9rem;
    color: #FFF;
    border-radius: 5px;
    width: 120px;
    padding: 5px;
    background: #11BFC2;
    display: block;
    margin: 10px auto;
    text-align: center;
    cursor: pointer
}
/* ////////////////////////////////////////////// */
.mainBox .recordTable {
    display: none;
}

.recordTable {
    font-size: .875rem;
    border: 1px solid #D8D8D8;
    width: 100%;
    text-align: center;
}

    .recordTable thead td {
        background: #EEE;
    }

    .recordTable td {
        padding: 16px 10px;
        border-bottom: 1px solid #D8D8D8;
        letter-spacing: 1px;
    }

        .recordTable td:first-child,
        .recordTable td:last-child {
            width: 15%;
        }

        .recordTable td:nth-child(2) {
            width: 60%;
        }

        .recordTable td:nth-child(3) {
            width: 10%;
        }

/* ///////////////MobileLogTable///////////////////////// */
.mobileLogTable {
    padding: 10px;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(136,136,136,.2), 0 1px 1px 0 rgba(136,136,136,.14), 0 2px 1px -1px rgba(136,136,136,.12);
}

    .mobileLogTable .list {
        display: flex;
        background-color: white;
        border-bottom: 1px solid #D8D8D8;
    }

        .mobileLogTable .list:last-child {
            border-bottom: 0;
        }

        .mobileLogTable .list .detail {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-basis: 10%;
            padding: 5px;
        }

            .mobileLogTable .list .detail .user {
                display: flex;
                align-items: center;
            }

            .mobileLogTable .list .detail .platform {
                font-size: 14px;
            }

            .mobileLogTable .list .detail .user .userName {
                font-weight: bolder;
                padding: 5px;
            }

        .mobileLogTable .list .dateTime {
            text-align: center;
            font-size: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-basis: 12%;
        }

        .mobileLogTable .list .content {
            flex-basis: 70%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding: 5px 0;
            font-size: 14px;
        }

            .mobileLogTable .list .content .userSay,
            .mobileLogTable .list .content .botSay {
                display: flex;
                align-items: center;
                margin: 5px 0;
            }

                .mobileLogTable .list .content .userSay i {
                    color: darkblue;
                    font-size: 20px;
                    padding-right: 5px;
                }

                .mobileLogTable .list .content .botSay i {
                    color: darkorange;
                    font-size: 16px;
                    padding-right: 5px;
                }

            .mobileLogTable .list .content p {
                line-height: 1.2;
            }

@media (max-width:480px) {
    .recordTable {
        display: none;
    }

    .mobileLogTable {
        display: block;
    }
}

/* ////////////////////////////////////////////// */

/* ///////////////dialogueList///////////////////////// */
#dialogueList textarea {
    border: 1px solid #E2E2E2;
    padding: 8px;
    max-width: 90%;
    min-width: 90%;
    overflow-x: visible;
    overflow-y: visible;
    min-height: 30%;
    border-radius: 5px;
    resize: none;
    font-size: 100% !important;
}

#dialogueList .content .userSay,
#dialogueList .content .botSay,
#dialogueList .content .multiSay {
    display: flex;
    align-items: stretch;
    margin: 5px 0;
}

    #dialogueList .content .userSay i {
        color: darkblue;
        font-size: 20px;
        padding-right: 5px;
    }

    #dialogueList .content .botSay i {
        color: darkorange;
        font-size: 16px;
        padding-right: 5px;
    }
    #dialogueList .content .multiSay i {
        font-size: 17px;
        padding-right: 5px;
        padding-left: 3px;
    }

#dialogueList .content p {
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    text-align: left;
    cursor: default;
}
#dialogueList .content .botAnswers {
    color: #b36200;
    font-weight: bolder;
    cursor: pointer;
}


#dialogueList .dropDown {
    margin-bottom: 0px;
    width: 130px;
}

#dialogueList .dropDown > span {
    margin-bottom: 0px;
    width: 130px;
}

#dialogueList .content .multiLine {
    overflow: hidden;
    word-break: keep-all;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 85px;
    background-color: #d9d9d9;
    color: #000;
    font-size: 10px;
    border-radius: 20px;
    margin: 0 5px;
}
#dialogueList .content .multiLineText {
    padding: 0px 10px;
    cursor: default;
}
#DvAnswerModel {
        overflow: auto;
    }
    #DvAnswerModel .botBox {
        max-width: fit-content;
        font-size: 20px;
    }
    #DvAnswerModel .bubble {
        max-width: 400px;
        cursor: default;
        height: fit-content;
        padding: 10px;
        line-height: 1.3;
    }
    #DvAnswerModel .carouselType {
        background-color: #FFFFFF
    }
    #DvAnswerModel .answerImageUri {
        max-width: 180px;
        height: auto;
    }
    #DvAnswerModel .content {
        display: flex;
        flex-direction: column;
    }

        #DvAnswerModel .content .ImgType {
            width: 200px;
            max-width: 300px;
            height: 150px;
            background-size: cover;
            background-repeat: no-repeat;
        }

        #DvAnswerModel .content .card {
            width: 265px;
            display: flex;
            flex-basis: 100%;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            border-radius: 15px;
            position: relative;
            border: 1px solid #DBDBDB;
        }

            #DvAnswerModel .content .card .picTitle,
            #DvAnswerModel .content .card .desc {
                width: 90%;
                vertical-align: middle;
                line-height: normal !important;
                margin: 5px;
            }

            #DvAnswerModel .content .card .picTitle {
                font-weight: bold !important;
                font-size: 22px;
            }

                #DvAnswerModel .content.card .picTitle p {
                    text-overflow: ellipsis;
                    overflow: hidden;
                    white-space: nowrap;
                }

            #DvAnswerModel .content .card .desc {
                font-size: 16px;
            }

                #DvAnswerModel .content .card .desc p {
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 5;
                    overflow: hidden;
                }

            #DvAnswerModel .content .card .btnBox {
                display: flex;
                justify-content: space-evenly;
                flex-direction: column;
                width: 100%;
                padding: 10px;
                -webkit-box-flex: 0;
                flex: none;
                flex-basis: auto;
                overflow: hidden;
                position: relative;
            }

            #DvAnswerModel .content .card button {
                display: inherit;
                -webkit-box-align: center;
                align-items: center;
                -webkit-box-pack: center;
                justify-content: center;
                width: 100%;
                height: 40px;
                font-size: 16px;
                padding: 0 16px;
                margin-top: 4px;
                border-radius: 8px;
                outline: none;
                border: 0px solid #31c3FF;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
            }

                #DvAnswerModel .content .card button:active {
                    background-color: #9b9b9b;
                }

        #DvAnswerModel .content .slick-track {
            /*display: flex;*/
        }

        #DvAnswerModel .content .cardSrc {
            width: 100%;
            max-width: 100%;
            display: flex;
            flex: 1 0 0;
            flex-direction: column;
            -webkit-box-flex: 1;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-box-align: center;
            overflow: hidden;
            align-items: center;
            position: relative;
            border-top-left-radius: inherit;
            border-top-right-radius: inherit;
            flex-basis: auto;
            max-width: 100%;
        }

            #DvAnswerModel .content .cardSrc a {
                display: block;
                position: relative;
                width: 100%;
                padding-bottom: 65%;
            }

                #DvAnswerModel .content .cardSrc a span {
                    background-size: cover;
                    display: block;
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    overflow: hidden;
                    background-position: center center;
                    background-repeat: no-repeat;
                }

#DvMultiLineModel .title {
    border-bottom: solid;
    padding-bottom: 10px;
}

#DvMultiLineModel p {
    text-align: left;
    font-size: 20px;
    margin-bottom: 8px;
}
/* ////////////////////////////////////////////// */
.dialogueList .date span {
    display: block;
}

    .dialogueList .date span:first-of-type {
        margin-bottom: 8px;
    }

.dialogueList .dialog {
    text-align: left;
}

    .dialogueList .dialog span {
        display: block;
    }

        .dialogueList .dialog span.height50 {
            max-height: 50px;
            overflow: auto;
            position: relative;
        }

        .dialogueList .dialog span label,
        .dialogueList .dialog span p {
            display: inline-block;
            vertical-align: top;
        }

        .dialogueList .dialog span:first-of-type {
            margin-bottom: 8px;
        }

        .dialogueList .dialog span label {
            font-size: 10px;
            width: 40px;
            height: 18px;
            line-height: normal;
            text-align: center;
            border-radius: 3px;
            border: 1px solid #3C3C3C;
            margin-right: 8px;
        }

        .dialogueList .dialog span:nth-of-type(2) label {
            color: #11BFC2;
            border: 1px solid #11BFC2;
        }

        .dialogueList .dialog span:nth-of-type(2) div.temLog {
            display: inline-block;
            width: 70%
        }

            .dialogueList .dialog span:nth-of-type(2) div.temLog p {
                display: block;
                margin-bottom: 5px;
                word-break: break-all;
            }

            .dialogueList .dialog span:nth-of-type(2) div.temLog i {
                font-style: normal;
                line-height: 180%;
            }

                .dialogueList .dialog span:nth-of-type(2) div.temLog i:not(:last-child):after {
                    content: '、';
                    display: inline-block;
                }

        .dialogueList .dialog span > p {
            width: 70%;
            line-height: 180%;
            margin-top: -4px;
        }

@media screen and (max-width:640px) {
    .dialogueList .dialog span > p {
        width: 100%;
        line-height: 120%;
        margin-top: 0px;
    }
}

.dialogueList .dialog span button {
    border: 0;
    background: none;
    position: absolute;
    bottom: 10px;
    right: 0;
}
/* ////////////////////////////////////////////// */
.autoDataSyncRecord .recordTable {
    font-size: .875rem;
    border: 1px solid #D8D8D8;
    width: 100%;
    text-align: center;
}

    .autoDataSyncRecord .recordTable thead td {
        background: #EEE;
    }

    .autoDataSyncRecord .recordTable td {
        padding: 16px 10px;
        border-bottom: 1px solid #D8D8D8;
        letter-spacing: 1px;
    }

        .autoDataSyncRecord .recordTable td:first-child,
        .autoDataSyncRecord .recordTable td:nth-child(3) {
            width: 5%;
        }

            .autoDataSyncRecord .recordTable td:nth-child(6),
            .autoDataSyncRecord .recordTable td:nth-child(7) {
                width: 10%;
            }

        .autoDataSyncRecord .recordTable td:nth-child(2){
            width: 15%;
        }

        .autoDataSyncRecord .recordTable td:nth-child(4),
        .autoDataSyncRecord .recordTable td:nth-child(5) {
            width: 25%;
        }
/* ////////////////////////////////////////////// */
.tagInfoList td {
    line-height: 150%;
}

.tagInfoList tr td img {
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.tagInfoList tr td span, .noAnswerTable2 tr td span {
    margin: 2px 0;
    display: block;
}
/* ////////////////////////////////////////////// */
.tagItem {
    margin-bottom: 10px;
}

    .tagItem li {
        font-size: .85rem;
        color: #FFF;
        display: inline-block;
        padding: 5px 8px;
        background: #11BFC2;
        border-radius: 3px;
        margin-right: 5px;
        cursor: pointer;
        margin-bottom: 10px;
    }

        .tagItem li.on {
            background: #EA0058
        }
/* ////////////////////////////////////////////// */
/*.checkCircle {
  width: 16px;
  height: 16px;
  border: 1px solid #D8D8D8;
  margin-right: 8px;
  text-align: center;
  background: #FFF;
  border-radius: 50%;
  line-height: 16px;
  position: relative;
  cursor: pointer
}

  .checkCircle:after {
      content: '';
      width: 4px;
      height: 9px;
      position: absolute;
      top: 1px;
      left: 5px;
      opacity: 1;
      -webkit-transform: rotate(45deg) scale(0);
      -ms-transform: rotate(45deg) scale(0);
      transform: rotate(45deg) scale(0);
      border-right: 2px solid #535353;
      border-bottom: 2px solid #535353;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-transition-delay: 0.15s;
      -o-transition-delay: 0.15s;
      transition-delay: 0.15s
  }

  .checkCircle.on {
      -webkit-animation: jelly_s 0.6s ease;
      animation: jelly_s 0.6s ease
  }

      .checkCircle.on:after {
          opacity: 1;
          -webkit-transform: rotate(45deg) scale(1);
          -ms-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1)
      }*/
/* ////////////////////////////////////////////// */
.settingTab {
    margin-bottom: 15px;
    position: relative
}

    .settingTab .tabSpan {
        display: none
    }

    .settingTab ul {
        font-size: 0;
    }

    .settingTab.mt20 {
        margin-top: 20px;
    }

    .settingTab > ul li {
        width: 100%;
    }

    .settingTab.w-1 > ul li {
        width: 100%
    }

    .settingTab.w-2 > ul li {
        width: 50%
    }

    .settingTab.w-3 > ul li {
        width: 33.3%
    }

    .settingTab.w-4 > ul li {
        width: 25%
    }

    .settingTab.w-5 > ul li {
        width: 20%
    }

    .settingTab.w-6 > ul li {
        width: 16.6%
    }

    .settingTab.w-7 > ul li {
        width: 14.2%
    }

    .settingTab > ul li {
        font-size: 1rem;
        display: inline-block;
        border-bottom: 1px solid #D8D8D8;
        position: relative
    }

        .settingTab > ul li:after {
            content: '';
            display: block;
            width: 0%;
            height: 2px;
            background: #31C3FF;
            position: absolute;
            bottom: 0;
            opacity: 0;
            left: 0;
            right: 0;
            margin: auto;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

        .settingTab > ul li.active:after {
            width: 100%;
            opacity: 1
        }

        .settingTab > ul li a {
            color: #3C3C3C;
            display: block;
            text-align: center;
            padding-bottom: 18px
        }

.settingTab2 {
    position: relative;
}

    .settingTab2 > ul {
        width: 100%;
        text-align: left;
        /*margin-bottom:15px;*/
    }

        .settingTab2 > ul li {
            display: inline-block;
            position: relative;
            margin-bottom: 10px;
        }

            .settingTab2 > ul li:not(:last-child) {
                margin-right: 20px;
            }

            .settingTab2 > ul li:after {
                content: '';
                display: block;
                width: 0%;
                height: 2px;
                background: #31C3FF;
                position: absolute;
                bottom: -8px;
                opacity: 0;
                left: 0;
                right: 0;
                margin: auto;
                -webkit-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease
            }

            .settingTab2 > ul li.active:after {
                width: 100%;
                opacity: 1;
            }

            .settingTab2 > ul li a {
                font-weight: bold;
                color: #3C3C3C
            }

.SettingTable {
    font-size: .875rem;
    border: 1px solid #D8D8D8;
    width: 100%;
    text-align: center;
}

    .SettingTable thead td {
        background: #EEE;
    }

    .SettingTable td {
        padding: 16px 10px;
        border-bottom: 1px solid #D8D8D8;
        letter-spacing: 1px;
    }

        .SettingTable td:first-child,
        .SettingTable td:last-child {
            width: 20%;
        }

        .SettingTable td:nth-child(2) {
            width: 40%;
        }

        .SettingTable td:nth-child(3) {
            width: 40%;
        }

.smiSkillSelect {
    width: 49.5%;
    float: left;
    vertical-align: top;
    background: #FFF;
    margin-bottom: 0
}

.saveSmiBtn {
    font-size: 1rem;
    color: #FFF;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: #11BFC2;
    padding: 10px;
    height: 100%;
    border: 1px solid #D8D8D8;
    cursor: pointer;
    z-index: 1;
}

.editSmiBtn {
    font-size: 1rem;
    color: #FFF;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: #b3b3b3;
    padding: 10px;
    height: 100%;
    border: 1px solid #a6a6a6;
    cursor: pointer;
    z-index: 1;
}
/* ////////////////////////////////////////////// */
.autoDataSyncTab {
    margin-bottom: 15px;
    position: relative
}

    .autoDataSyncTab .tabSpan {
        display: none
    }

    .autoDataSyncTab ul {
        font-size: 0;
    }

    .autoDataSyncTab.mt20 {
        margin-top: 20px;
    }

    .autoDataSyncTab > ul li {
        width: 100%;
    }

    .autoDataSyncTab.w-1 > ul li {
        width: 100%
    }

    .autoDataSyncTab.w-2 > ul li {
        width: 50%
    }

    .autoDataSyncTab.w-3 > ul li {
        width: 33.3%
    }

    .autoDataSyncTab.w-4 > ul li {
        width: 25%
    }

    .autoDataSyncTab.w-5 > ul li {
        width: 20%
    }

    .autoDataSyncTab.w-6 > ul li {
        width: 16.6%
    }

    .autoDataSyncTab.w-7 > ul li {
        width: 14.2%
    }

    .autoDataSyncTab > ul li {
        font-size: 1rem;
        display: inline-block;
        border-bottom: 1px solid #D8D8D8;
        position: relative
    }

        .autoDataSyncTab > ul li:after {
            content: '';
            display: block;
            width: 0%;
            height: 2px;
            background: #31C3FF;
            position: absolute;
            bottom: 0;
            opacity: 0;
            left: 0;
            right: 0;
            margin: auto;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease
        }

        .autoDataSyncTab > ul li.active:after {
            width: 100%;
            opacity: 1
        }

        .autoDataSyncTab > ul li a {
            color: #3C3C3C;
            display: block;
            text-align: center;
            padding-bottom: 18px
        }
/* ////////////////////////////////////////////// */

@media screen and (max-width:640px) {
    .settingTab {
        margin-top: -10px
    }

        .settingTab .tabSpan, .settingTab2 .tabSpan {
            display: block;
            width: 100%;
            padding-bottom: 8px;
            text-align: center;
            border-bottom: 1px solid #3C3C3C;
            position: relative;
            cursor: pointer
        }

    .settingTab2 .tabSpan {
        margin-top: 30px;
    }

        .settingTab .tabSpan:after, .settingTab2 .tabSpan:after {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            border-bottom: 1px solid #3C3C3C;
            border-right: 1px solid #3C3C3C;
            position: absolute;
            right: 10px;
            top: 10%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg)
        }

    .settingTab > ul, .settingTab2 > ul {
        display: none;
        background: #FFF;
        position: absolute;
        width: 100%;
        z-index: 10;
        left: 0;
        text-align: center;
    }

    .settingTab2 > ul {
        top: 20px;
        padding: 0;
    }

        .settingTab > ul li, .settingTab2 > ul li {
            width: 100% !important;
            display: block
        }

            .settingTab > ul li:after, .settingTab2 > ul li:after {
                display: none
            }

            .settingTab > ul li a, .settingTab2 > ul li a {
                padding: 8px 0;
                display: block;
                border-bottom: 1px solid #3C3C3C;
            }

    .settingTab.w-RWD > ul li {
        width: 100%;
    }
}
/* ////////////////////////////////////////////// */
.tabBox {
    height: 350px
}
/* ////////////////////////////////////////////// */
.tabContent {
    display: none
}

    .tabContent .box {
        position: relative
    }

        .tabContent .box:not(:last-child) {
            margin-bottom: 34px
        }

        .tabContent .box ul > li {
            font-size: 0;
            position: relative;
        }

            .tabContent .box ul > li:not(:last-child) {
                margin-bottom: 16px
            }

            .tabContent .box ul > li input,
            .tabContent .box ul > li label {
                font-size: 1rem;
                display: inline-block;
                vertical-align: middle
            }

            .tabContent .box ul > li label {
                width: 75px;
                padding-right: 10px
            }

                .tabContent .box ul > li label.longWord {
                    width: 160px
                }

            .tabContent .box ul > li input {
                width: calc(100% - 75px);
                border: 1px solid #D8D8D8;
                padding: 8px;
                background: #FFF
            }

                .tabContent .box ul > li input.error {
                    border: 1px solid red;
                }

                .tabContent .box ul > li input.longWord {
                    width: calc(100% - 160px)
                }

                    .tabContent .box ul > li input.longWord:disabled {
                        background: #FAFAFA
                    }

            .tabContent .box ul > li span.copyWebhookBtn {
                font-size: 1rem;
                color: #FFF;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                background: #11BFC2;
                padding: 10px;
                height: 100%;
                border: 1px solid #D8D8D8;
                cursor: pointer;
                z-index: 1;
            }

        .tabContent .box div {
            display: flex;
        }

            .tabContent .box div p {
                line-height: 24px;
                float: left
            }

            .tabContent .box div a {
                color: #9B9B9B;
                border: 1px solid #9B9B9B;
                display: block;
                padding: 10px;
                border-radius: 5px;
                line-height: 24px;
            }


#deleteBotBox .deleteBox {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
/* ////////////////////////////////////////////// */
.settingStatus {
    position: absolute;
    right: 0;
    top: 0
}

    .settingStatus div,
    .settingStatus span {
        display: inline-block;
        vertical-align: middle
    }

    .settingStatus span {
        font-size: .9rem;
        margin-right: 5px
    }
/* ////////////////////////////////////////////// */
.tabBox .tabContent .box .csSurveyOptionList {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    padding-top: 5px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #EFEFEF;
    border-radius: 20px;
    width: 110px;
    height: 27px;
    top: 5px;
}

    .tabBox .tabContent .box .csSurveyOptionList input[type="checkbox"] {
        position: absolute !important;
        opacity: 0 !important;
        cursor: pointer !important;
        height: 0 !important;
        width: 0 !important;
    }

    .tabBox .tabContent .box .csSurveyOptionList .checkmark {
        position: absolute;
        left: 8px;
        height: 15px;
        width: 15px;
        background-color: #FFF;
        top: 6px;
    }

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.tabBox .tabContent .box .csSurveyOptionList .checkmark:after {
    left: 3px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tabBox .tabContent .box .csSurveyOptionList:hover input ~ .checkmark {
    background-color: #ccc;
}

.tabBox .tabContent .box .csSurveyOptionList input:checked ~ .checkmark {
    background-color: rgb(0, 0, 0);
}

    .tabBox .tabContent .box .csSurveyOptionList input:checked ~ .checkmark:after {
        display: block;
    }
/* ////////////////////////////////////////////// */
.bubble {
    color: #3C3C3C;
    display: inline-block;
    background: #EFEFEF;
    padding: 10px 50px 10px 10px;
    border-radius: 20px;
    margin-right: 12px;
    margin-bottom: 12px;
    position: relative
}

    .bubble .check,
    .bubble h4 {
        display: inline-block;
        vertical-align: top
    }

    .bubble .check {
        width: 16px;
        height: 16px;
        background: #FFF;
        border-radius: 50%;
        margin-left: 18px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px
    }

        .bubble .check:after {
            content: '';
            width: 4px;
            height: 9px;
            position: absolute;
            top: 1px;
            left: 5px;
            opacity: 0;
            -webkit-transform: rotate(45deg) scale(0);
            -ms-transform: rotate(45deg) scale(0);
            transform: rotate(45deg) scale(0);
            border-right: 2px solid #535353;
            border-bottom: 2px solid #535353;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            -webkit-transition-delay: 0.15s;
            -o-transition-delay: 0.15s;
            transition-delay: 0.15s
        }

        .bubble .check.on {
            -webkit-animation: jelly 0.6s ease;
            animation: jelly 0.6s ease
        }

            .bubble .check.on:after {
                opacity: 1;
                -webkit-transform: rotate(45deg) scale(1);
                -ms-transform: rotate(45deg) scale(1);
                transform: rotate(45deg) scale(1)
            }
/* ////////////////////////////////////////////// */

.centerWrap {
    width: 100%;
    height: 100%;
    text-align: center
}

    .centerWrap.grayBg {
        background: #fafafa
    }

@media screen and (max-width:640px) {
    .centerWrap {
        background: #fafafa
    }
}

.centerWrap:after {
    content: '';
    display: inline-block;
    *zoom: 1;
    height: 100%;
    vertical-align: middle
}

.centerWrap .inn {
    display: inline-block;
    vertical-align: middle;
    width: 98%
}

.centerWrap .innTop {
    padding: 2.5% 0;
    height: 100%
}
/* ////////////////////////////////////////////// */
.lightBox,
.lightBox-B {
    width: 100%;
    height: 100%;
    text-align: center;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 15
}

    .lightBox-B:after,
    .lightBox:after {
        content: '';
        display: inline-block;
        *zoom: 1;
        height: 100%;
        vertical-align: middle
    }

    .lightBox-B .inn,
    .lightBox .inn {
        display: inline-block;
        vertical-align: middle;
        width: 98%
    }

    .lightBox-B .textBox,
    .lightBox .textBox {
        width: 100%;
        height: 100px;
        border: 1px solid #D8D8D8;
        overflow-y: auto;
        overflow-x: hidden;
        text-align: left;
        padding: 5px;
    }

.emailTagInput {
    border: none !important;
}
/* ////////////////////////////////////////////// */
/*.paging-container {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1
}*/
/* ////////////////////////////////////////////// */
/*.pagination {
  display: inline-block;
  border: 1px solid #11BFC2;
  border-radius: 5px
}

  .pagination li {
      display: inline-block;
      padding: 10px
  }

      .pagination li:first-child {
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px
      }

      .pagination li:last-child {
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px
      }

      .pagination li:not(:last-child) {
          border-right: 1px solid #11BFC2
      }

      .pagination li.active,
      .pagination li:hover {
          background: #11BFC2
      }

          .pagination li.active a,
          .pagination li:hover a {
              color: #FFF
          }

      .pagination li a {
          color: #11BFC2
      }*/
/* ////////////////////////////////////////////// */
/*.page-range {
  display: none
}*/
/* ////////////////////////////////////////////// */
/*.botSetBox:not(:last-child) {
  margin-bottom: 40px
}

.botSetBox h4 {
  font-size: 0.8rem;
  color: #31C3FF;
  letter-spacing: .8px;
  margin-bottom: 12px
}

.botSetBox ul li {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px
}

  .botSetBox ul li a {
      font-weight: bold;
      color: #3C3C3C;
      padding: 10px 14px;
      background: #EFEFEF;
      display: block;
      border-radius: 20px
  }

      .botSetBox ul li a:hover {
          color: #FFF;
          background: #11BFC2
      }*/
/* ////////////////////////////////////////////// */
/*.connectInfo {
  font-size: 12px;
  color: #31d0c6;
  cursor: pointer;
  background: #FFF;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 5px
}*/
/* ////////////////////////////////////////////// */
.greenTxt {
    font-weight: normal;
    color: #11BFC2;
    display: inline-block;
    margin: 0 2px
}

/* ////////////////////////////////////////////// */
.newBox {
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    margin-top: -1px;
    padding-top: 28px;
}

    .newBox.on {
        height: 100%
    }
/* ////////////////////////////////////////////// */
.newBot {
    width: 80%;
    margin: auto
}


    .newBot .logo {
        width: 230px;
        margin: auto
    }

@media screen and (max-width:640px) {
    .newBot .logo img {
        width: 80%
    }
}

.newBot .logo p {
    font-size: 1.25rem;
    color: #3C3C3C;
    letter-spacing: 1px;
    margin-top: 7px
}

.newBot > a {
    font-size: 1rem;
    margin: 23px 0 12px
}

.newBot > span {
    display: block;
    margin-top: 10px;
    letter-spacing: 1px;
}
/* ////////////////////////////////////////////// */
.botSide {
    margin-bottom: 20px;
    position: relative;
    display: none;
}

/*.botSide h4 {
      font-size: .8rem;
      color: #31C3FF;
      text-align: left;
      margin-bottom: 10px;
  }

  .botSide > .moreBotBtn {
      font-size: .8rem;
      position: absolute;
      right: 0;
      top: 0;
      cursor: pointer;
      transition: all .3s ease;
  }

      .botSide > .moreBotBtn:hover {
          color: #11BFC2;
      }*/
/* ////////////////////////////////////////////// */
.botName {
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    width: 85%
}

    .botName i,
    .botName input,
    .botName span {
        display: inline-block;
        vertical-align: middle
    }

    .botName span {
        font-size: .875rem;
        color: #3C3C3C;
        display: inline-block;
        word-break: break-all;
        line-height: 110%;
        width: 88%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-left: 20px;
        letter-spacing: 1px;
        vertical-align: top;
    }

    .botName.on span {
        display: none
    }

    .botName.on input {
        color: #3C3C3C;
        display: inline-block;
        font-family: '微軟正黑體', Arial, sans-serif;
        margin-left: 20px;
        background: #FFF;
        letter-spacing: 1px;
    }

    .botName span.on {
        margin-left: 0;
    }

    .botName input {
        font-size: .875rem;
        width: 95%;
        border: 0;
        word-break: break-all;
        background: #EEE;
        position: relative;
        letter-spacing: 1px;
        z-index: 5;
        display: none
    }

@media screen and (max-width:640px) {
    .botName {
        width: 75%
    }

        .botName span {
            font-size: 1rem;
            width: 70%
        }
}
/* ////////////////////////////////////////////// */
.excelTitleBubble {
    position: absolute;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    margin-top: 8px
}

    .excelTitleBubble li {
        font-size: .8rem;
        color: #FFF;
        display: inline-block !important;
        border-radius: 30px;
        background: #1ec9cc;
        padding: 5px;
        cursor: pointer
    }

        .excelTitleBubble li:not(:last-child) {
            margin-right: 5px
        }
/* ////////////////////////////////////////////// */
.qaSide {
    margin-top: 16px
}

    .qaSide h4 {
        font-size: 0.8rem;
        color: #31C3FF;
        font-weight: normal;
    }
/* ////////////////////////////////////////////// */
.testChat {
    font-size: .89rem !important;
    width: 30vw;
    min-width:666px;
    height: 75vh;
    background: #FFF;
    position: fixed;
    bottom: -658px;
    right: 5%;
    z-index: 100;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

    /*.testChat .tit {
        cursor: pointer;
    }*/

    .testChat .tit .titClose {
        position: absolute;
        color: #000000;
        right: 0;
        top: 0.2em;
        font-size: large;
        margin-right: 5px;
        cursor: pointer;
    }

.msgToggle {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
}

.testChat.on {
    bottom: 0
}

.testChat .ImgType {
    width: 200px;
    max-width: 300px;
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
}

.testChat .card {
    width: 265px;
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    position: relative;
    border: 1px solid #DBDBDB;
}

    .testChat .card .picTitle,
    .testChat .card .desc {
        width: 90%;
        vertical-align: middle;
        line-height: normal !important;
        margin: 5px;
    }

    .testChat .card .picTitle {
        font-weight:bold!important;
        font-size: 22px;
    }
        .testChat .card .picTitle p {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
    .testChat .card .desc {
        font-size: 16px;
    }
        .testChat .card .desc p {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5;
            overflow: hidden;
        }

    .testChat .card .btnBox {
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        width: 100%;
        padding: 10px;
        -webkit-box-flex: 0;
        flex: none;
        flex-basis: auto;
        overflow: hidden;
        position: relative;
    }

    .testChat .card button {
        display: inherit;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        width: 100%;
        height: 40px;
        font-size: 16px;
        padding: 0 16px;
        margin-top: 4px;
        border-radius: 8px;
        outline: none;
        border: 0px solid #31c3FF;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

        .testChat .card button:active {
            background-color: #9b9b9b;
        }

.testChat .slick-track {
    /*display: flex;*/
}

.testChat .cardSrc {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    overflow: hidden;
    align-items: center;
    position: relative;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    flex-basis: auto;
    max-width: 100%;
}

    .testChat .cardSrc a {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 65%;
    }

        .testChat .cardSrc a span {
            background-size: cover;
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            overflow: hidden;
            background-position: center center;
            background-repeat: no-repeat;
        }

.testChat .mapContainer {
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 260px;
}

.testChat .mapZone {
    width: 100%;
    height: 80%;
}

.testChat .mapContainer .mapTitle {
    font-size: 20px;
    font-weight: bolder;
}

.testChat .mapContainer .address,
.testChat .mapContainer .mapTitle {
    margin-top: 5px;
}

.testChat .tit {
    color: #9B9B9B !important;
    height: 30px;
    border-bottom: 1px solid #D8D8D8 !important;
    padding: 7px;
    position: relative
}
    .testChat .tit h3 {
        font-weight: 600 !important;
        font-size: 16px !important;
        color: #9B9B9B !important;
        border-bottom: none !important;
        margin-top:-3px !important;
    }

    .testChat .tit i,
    .testChat .tit .chatBotName {
        display: inline-block;
        vertical-align: middle
    }

    .testChat .tit .chatBotName {
        font-weight: 600 !important;
        width: 300px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: left;
    }

    .testChat .tit i {
        margin-right: 5px
    }

        .testChat .tit i.on {
            color: #11BFC2
        }

        .testChat .tit i.ForceDisplayTop1PlusTop5 {
            color: #f88d8d
        }

        .testChat .tit i.ForceDisplayTop5 {
            color: #f7d509
        }


.testChat .titBtn {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none
}

/*Mobile L*/
@media only screen and (max-device-width: 320px){

    .testChat .tit {
        padding: 5px !important;
    }

    .testChat .tit {
        overflow: hidden;
        border-bottom: none
    }

    .testChat.on {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}

/*Mobile M*/
@media only screen and (max-device-width: 375px) {

    .testChat .tit {
        padding: 5px !important;
    }

    .testChat .tit {
        overflow: hidden;
        border-bottom: none
    }

    .testChat.on {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}

/*Mobile L*/
@media only screen and (max-device-width: 425px) {

    .testChat .tit {
        padding: 5px !important;
    }

    .testChat .tit {
        overflow: hidden;
        border-bottom: none
    }

    .testChat.on {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}

@media only screen and (max-device-width: 640px) {

    .testChat .tit {
       overflow: hidden;
        border-bottom: none
    }

    .testChat.on {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}


/*Moto G4*/
@media only screen and (max-device-width: 360px) {

    .testChat .tit {
        padding: 5px !important;
        overflow: hidden;
        border-bottom: none
    }

    .message {
        height: calc(85%) !important;
    }

    .testChat.on {
        width: 90%;
        height: calc(90%);
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}

/*Galaxy Fold*/
@media only screen and (max-device-width: 280px) {

    .testChat .tit {
        padding: 5px !important;
        overflow: hidden;
        border-bottom: none;
        height:auto;
    }

    .message {
        height: calc(85%) !important;
    }

    .testChat.on {
        width: 90%;
        height: calc(90%);
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}

/*Apple iPhone SE (2020) Min-Width Media Queries*/
@media only screen and (min-width: 375px) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }
}

/*Apple iPhone SE (2020) Retina Media Queries*/
@media
  only screen and (-webkit-min-device-pixel-ratio: 2.0),
  only screen and (   min--moz-device-pixel-ratio: 2.0),
  only screen and (     -o-min-device-pixel-ratio: 2.0/1),
  only screen and (        min-device-pixel-ratio: 2.0),
  only screen and (                min-resolution: 326dpi),
  only screen and (                min-resolution: 2.0dppx) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }
}
      
/*Apple iPhone SE (2020) Media Queries (In terms of Mobile only)*/
@media only screen and (min-width: 375px) and (max-width: 767px) { 
}

/*iPhone 5 Media Queries*/
@media screen and (min-width: 320px) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
    }
}

/*iPhone 5 Media Queries*/
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) {

    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
    }
}

/*iPhone 5 橫屏*/
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
    }
}
/*iPhone 5 豎屏*/
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
    }
}

/*iPhone 2G, 3G, 4, 4S Media Queries*/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
        height: auto !important;
    }
}

/*iPhone 2G-4S 橫屏*/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat .tit {
        padding: 5px !important;
    }
}

/*iPhone 6 Landscape*/
@media only screen 
    and (min-device-width : 375px) and (max-device-width : 667px)
    and (width : 667px) and (height : 375px)
    and (orientation : landscape) 
    and (color : 8)
    and (device-aspect-ratio : 375/667)
    and (aspect-ratio : 667/375)
    and (device-pixel-ratio : 2)
    and (-webkit-min-device-pixel-ratio : 2) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }
}

/*iPhone 6 Portrait*/
@media only screen and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (width : 375px) 
and (height : 559px) 
and (orientation : portrait)
and (color : 8)
and (device-aspect-ratio : 375/667)
and (aspect-ratio : 375/559)
and (device-pixel-ratio : 2) 
and (-webkit-min-device-pixel-ratio : 2) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }
}

/*iPhone 6 Plus Landscape*/
@media only screen 
    and (min-device-width : 414px) 
    and (max-device-width : 736px) 
    and (orientation : landscape) 
    and (-webkit-min-device-pixel-ratio : 3) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

}

/*iPhone 6 Plus Portrait*/
@media only screen 
    and (min-device-width : 414px) 
    and (max-device-width : 736px)
    and (device-width : 414px)
    and (device-height : 736px)
    and (orientation : portrait) 
    and (-webkit-min-device-pixel-ratio : 3) 
    and (-webkit-device-pixel-ratio : 3){
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

}

/*iPhone X*/
@media only screen 
    and (device-width : 375px) 
    and (device-height : 812px) 
    and (-webkit-device-pixel-ratio : 3) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

        .testChat.on {
            width: 100%;
        }

        .testChat.off {
            width: 100%;
        }
}

/*iPhone 8*/
@media only screen 
    and (device-width : 375px) 
    and (device-height : 667px) 
    and (-webkit-device-pixel-ratio : 2) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

        .testChat .tit {
            padding: 5px !important;
        }

        .message {
            height: calc(87%) !important;
        }

        ..botSurveyDetail {
            height: calc(55%) !important;
        }

        .testChat.on {
            width: calc(90%) !important;
            height: calc(95%);
            left: 0;
            right: 0;
            margin: auto 15px auto auto !important;
            bottom: 0;
        }

        .testChat.off {
            width: 65%;
        }
}

/*iPhone 8 Plus*/
@media only screen 
    and (device-width : 414px) 
    and (device-height : 736px) 
    and (-webkit-device-pixel-ratio : 3) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

}

/*iPhone XR*/
@media only screen 
    and (device-width : 414px) 
    and (device-height : 896px) 
    and (-webkit-device-pixel-ratio : 2) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

}

/*Phone XS*/
@media only screen 
    and (device-width : 375px) 
    and (device-height : 812px) 
    and (-webkit-device-pixel-ratio : 3) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

        .testChat.on {
            width: 100%;
        }

        .testChat.off {
            width: 100%;
        }
}

/*iPhone XS Max*/
@media only screen 
    and (device-width : 414px) 
    and (device-height : 896px) 
    and (-webkit-device-pixel-ratio : 3) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat.on {
        height: auto !important;
    }

}

/*iPhone 11*/
@media only screen
and (device-width: 414px)
and (device-height: 896px)
and (-webkit-device-pixel-ratio: 2) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat.on {
        height: auto !important;
    }
}

/*Phone 11 Pro*/
@media only screen 
    and (device-width: 375px) 
    and (device-height: 812px) 
    and (-webkit-device-pixel-ratio: 3) {
        select:focus,
        textarea:focus,
        .messageBox textarea {
            font-size: 16px !important;
        }

        .testChat .tit {
            padding: 5px !important;
        }

        .message {
            height: calc(87%) !important;
        }

        ..botSurveyDetail {
            height: calc(55%) !important;
        }

        .testChat.on {
            width: calc(90%) !important;
            height: calc(95%);
            left: 0;
            right: 0;
            margin: auto 15px auto auto !important;
            bottom: 0;
        }

        .testChat.off {
            width: 65%;
        }
}

/*iPhone 11 Pro Max*/
@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 3) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat.on {
        height: auto !important;
    }
}

/*Phone 12 Mini*/
@media only screen 
    and (device-width: 375px) 
    and (device-height: 812px) 
    and (-webkit-device-pixel-ratio: 3) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

    .testChat.on {
        height: calc(95%) !important;
    }

    .message {
        height: calc(91%) !important;
    }
}

/*iPhone 12 and iPhone 12 Pro*/
@media only screen 
    and (device-width: 390px) 
    and (device-height: 844px) 
    and (-webkit-device-pixel-ratio: 3) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }
}

/*iPhone 12 Pro Max*/
@media only screen
and (device-width: 428px)
and (device-height: 926px)
and (-webkit-device-pixel-ratio: 3) {
    select:focus,
    textarea:focus,
    .messageBox textarea {
        font-size: 16px !important;
    }

}


/*@media screen and (max-width:380px) and (max-height:670px) {
    .testChat .tit {
        padding: 5px !important;
    }
    .message {
        height: calc(87%) !important;
    }

    ..botSurveyDetail {
        height: calc(55%) !important;
    }

    .testChat.on {
        width: calc(90%) !important;
        height: calc(95%);
        left: 0;
        right: 0;
        margin: auto 15px auto auto !important;
        bottom: 0;
    }

    .testChat.off {
        width: 65%;
    }
}


@media screen and (max-width:380px) and (max-height:815px) {
    .testChat .tit {
        padding: 5px !important;
    }

    .message {
        height: calc(87%) !important;
    }

    ..botSurveyDetail {
        height: calc(55%) !important;
    }

    .testChat.on {
        width: calc(90%) !important;
        height: calc(95%);
        left: 0;
        right: 0;
        margin: auto 15px auto auto !important;
        bottom: 0;
    }

    .testChat.off {
        width: 65%;
    }
}*/

@me/*dia screen and (max-width:375px) {
    .testChat.on {
        width: 100%;
    }

    .testChat.off {
        width: 100%;
    }
}

@media screen and (max-width:640px) {
    .testChat .tit {
        overflow: hidden;
        border-bottom: none
    }

    .testChat.on {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .testChat.off {
        width: 90%;
    }
}

@media screen and (max-height:700px) {
    .message {
        height: calc(87%) !important;
    }

    ..botSurveyDetail {
        height: calc(55%) !important;
    }

    .testChat.on {
        width: calc(50%);
        height: calc(95%);
        left: 0;
        right: 0;
        margin: auto 60px auto auto;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .testChat.off {
        width: 65%;
    }
}*/

/* ////////////////////////////////////////////// */
.imgContainer {
    /*top: 15%;
    left: 50%;*/
    margin-left: -300px;
    z-index: 1000;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    background-color: white;
    border-radius: 5px;
    border: 1px solid #E2E2E2;
    padding: 10px;

}

    .imgContainer .zoomInPic {
        border: 1px solid #E2E2E2;
        width: 100%;
        height: 100%;
		position: absolute;
    }

    .imgContainer i {
        color: red;
        font-weight: bolder;
        font-size: 20px;
        position: absolute;
		margin : 0 0 0 95%
        /*right: -5px;
        top: -5px;*/
    }

/* ////////////////////////////////////////////// */
.bubbleBotTimeText {
    color: gray;
    -webkit-animation: fadeInLeft .5s ease both;
    animation: fadeInLeft .5s ease both;
    position: absolute;
    top: 35px;
}

.bubbleUserTimeText {
    color: gray;
    -webkit-animation: fadeInLeft .5s ease both;
    animation: fadeInLeft .5s ease both;
    position: absolute;
    right: 0px;
    top: 35px;
}
/* ////////////////////////////////////////////// */
.bubbleBotIcon {
    display: inline;
    float: left;
}
.bubbleBotIconImg {
    width: 38px;
    Height: 32px;
    -webkit-animation: fadeInLeft .5s ease both;
    animation: fadeInLeft .5s ease both;
    overflow: hidden;
    display: inline;
}

.bubbleUserIcon {
    display: inline;
    float: right;
    padding-left: 3px;
}

.bubbleUserIconImg {
    width: 35px;
    Height: 35px;
    -webkit-animation: fadeInLeft .5s ease both;
    animation: fadeInLeft .5s ease both;
    overflow: hidden;
    display: inline;
}

.bubbleOutlay {
    clear: both;
    position: relative;
}
/* ////////////////////////////////////////////// */
.message {
    height: 610px;
    position: relative;
    overflow: hidden;
}

    .message .messageContent {
        width: 100%;
        height: 101%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 8px 8px 0;
        transition: all 1s ease;
    }

        .message .messageContent.on {
            height: 90%;
        }

    .message .surveyLike {
        border: 1px solid;
        width: 65px;
        text-align: center;
        border-radius: 5px;
        margin-bottom: 15px;
        text-justify: inter-ideographl;
        color: #a7a7a7;
        background-size: cover;
        float: left;
        /*clear: both;*/
        /*margin-top: -13px;*/
        margin-left: -10px;
    }

        .message .surveyLike.on {
            background-color: #dedddd;
            border-color: #1e1e1e;
            color: darkgray;
            cursor: pointer;
        }

        .message .surveyLike.on > p {
            color: #000;
        }

        .message .surveyLike.on .surveyLikeImg {
            background: url('../images/Like-black.png');
        }

        .message .surveyLike .surveyLikeImg {
            margin-top: 2px;
            width: 15px;
            height: 15px;
            display: inline-block;
            top: 0px;
            left: 5px;
            background: url('../images/Like-gray.png');
        }

        .message .surveyLike:hover {
            background-color: #dedddd;
            border-color: #1e1e1e;
            color: darkgray;
            cursor: pointer;
        }

    .message .surveyLike:hover > p {
        color: #000;
    }

    .message .surveyLike:hover .surveyLikeImg {
        background: url('../images/Like-black.png');
    }

    .message .surveyLike p {
        display: unset;
        word-break: break-all;
        color: #989898;
        vertical-align: text-top;
    }

    .message .surveyLike img {
        height: 16px;
        width: 16px;
        margin-top: 2px;
    }

    .message .surveyDislike {
        border: 1px solid;
        width: 65px;
        text-align: center;
        border-radius: 5px;
        margin-bottom: 15px;
        text-justify: inter-ideographl;
        color: #a7a7a7;
        background-size: cover;
        float: left;
        /*clear: both;*/
        /*margin-top: -13px;*/
        margin-left: 5px;
    }
        .message .surveyDislike.on {
            background-color: #dedddd;
            border-color: #1e1e1e;
            color: darkgray;
            cursor: pointer;
        }

        .message .surveyDislike.on > p {
            color: #000;
        }

        .message .surveyDislike.on .surveyDislikeImg {
            background: url('../images/Dislike-black.png');
        }

        .message .surveyDislike .surveyDislikeImg {
            margin-top: 2px;
            width: 15px;
            height: 15px;
            display: inline-block;
            top: 0px;
            left: 5px;
            background: url('../images/Dislike-gray.png');
        }

        .message .surveyDislike:hover {
            background-color: #dedddd;
            border-color: #1e1e1e;
            color: darkgray;
            cursor: pointer;
        }

        .message .surveyDislike:hover > p {
            color: #000;
        }

        .message .surveyDislike:hover .surveyDislikeImg {
            background: url('../images/Dislike-black.png');
        }

        .message .surveyDislike p {
            display: unset;
            word-break: break-all;
            color: #989898;
            vertical-align: text-top;
        }

        .message .surveyDislike img {
            height: 16px;
            width: 16px;
            margin-top: 2px;
        }

    .message .surveyanswer {
        border-radius: 5px;
        margin-bottom: 8px;
        text-align: right;
        text-justify: inter-ideographl;
        color: #a7a7a7;
        background-size: cover;
        float: left;
        /*clear: both;*/
        margin-top: -13px;
        margin-left: 50px;
    }

        .message .surveyanswer p {
            word-break: break-all;
            color: #989898;
        }

    .message .survey {
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 8px;
        text-align: right;
        text-justify: inter-ideographl;
        color: #a7a7a7;
        background-size: cover;
        float: left;
        clear: both;
        margin-top: -9px;
        margin-left: 16px;
    }
        .message .survey p {
            word-break: break-all;
            color: #989898;
        }

    .message .surveyForSecondLayout {
        margin-left: 18px !important;
    }

   .message .bubble {
        padding: 10px;
        max-width: 85%;
        border-radius: 5px;
        margin-bottom: 8px;
        text-align: justify;
        text-justify: inter-ideographl;
    }

        .message .bubble p {
            word-break: break-all
        }

        .message .bubble.new p {
            -webkit-animation: fadeIn .3s .1s ease both;
            animation: fadeIn .3s .1s ease both
        }

        .message .bubble.robot {
            color: #3C3C3C;
            background: #EFEFEF;
            background-size: cover;
            float: left;
            /*clear: both;*/
            margin-left: 10px;
        }

.testChat .bubble.robot.cardContainer {
    width: 265px;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: white;
}

.message .bubble.robot.new {
    -webkit-animation: fadeInLeft .5s ease both;
    animation: fadeInLeft .5s ease both
}

.message .bubble.robot.multiType {
    width: 100%;
    text-align: center;
}

    .message .bubble.robot.multiType p {
        border-bottom: 1px solid #555;
        padding-bottom: 10px;
        text-align: left;
    }

    .message .bubble.robot.multiType li {
        padding: 5px 0;
        line-height: 150%;
        cursor: pointer;
        transition: all .3s ease;
        text-align: left;
    }

        .message .bubble.robot.multiType li:hover {
            color: #11BFC2
        }

        .message .bubble.robot.multiType li:not(:last-child) {
            border-bottom: 1px dashed #CCC;
            text-align: left;
        }

.message .bubble.user {
    color: #FFF;
    background: #11BFC2;
    float: right;
    margin-right: 0;
    /*clear: both*/
}

    .message .bubble.user.new {
        -webkit-animation: fadeInRight .5s ease both;
        animation: fadeInRight .5s ease both
    }


.messageBox {
    font-size: 0;
    border-top: 1px solid #D8D8D8;
    padding: 7px;
    height: 46px
}

    .messageBox a,
    .messageBox textarea {
        font-size: .8rem;
        display: inline-block;
        vertical-align: middle
    }

    .messageBox textarea {
        padding: 4px 5px;
        width: 75%;
        border: 1px solid #D8D8D8;
        resize: none;
        border-radius: 5px;
        margin-right: 2%
    }

@-moz-document url-prefix() {
    .messageBox textarea {
        height: 31px
    }
}

.messageBox a {
    color: #FFF;
    width: 23%;
    text-align: center;
    background: #11BFC2;
    padding: 7px
}
/* ////////////////////////////////////////////// */
.botSurvey {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; /* IE 8 */
    filter: alpha(opacity=40); /* IE 5-7 */
    -moz-opacity: 0.4; /* Netscape */
    -khtml-opacity: 0.4; /* Safari 1.x */
    opacity: 0; /* Good browsers */
    background-color: black;
    z-index: 1000;
    position: absolute;
    width: 100%;
    height: 640px;
    top: 0;
    display: none;
}

.greyTextItalics {
    color: #9E9E9E;
    font-style: normal;
}

.botSurveyDetail {
    z-index: 1100;
    position: absolute;
    bottom: 0px;
    width: 90%;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    height: 45%;
    margin-left: 5%;
    margin-bottom: 12%;
    display: none;
}

    .botSurveyDetail > textarea {
        resize: none !important;
        background-color: #f5f5f5;
        border:0px;
        border-radius:5px;
        padding: 5px 5px 5px 9px;
        margin-top:0px;
    }

    .botSurveyDetail > p {
        margin-top: 15px;
        color: #828282;
    }
.botSurveytitClose {
    position: absolute;
    color: #000000;
    right: 0;
    top: 10px;
    font-size: large;
    margin-right: 15px;
    cursor: pointer;
}

.survey_overall_input {
    width: 90%;
    height: 35%;
}

.survey_overall_input_send {
    margin-top: 10px;
}

    .survey_overall_input_send[disabled] {
        background: #bfbfbf !important;
    }

.botSurveyRating {
    display: inline-block;
    padding:10px 0px 5px 0px;
}

.botSurveyRating:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

    .botSurveyRating:not(:checked) > label {
        float: right;
        width: 1em;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 25px;
        height: 30px;
        color: #ccc;
        line-height: 1;
    }

.botSurveyRating:not(:checked) > label:before {
    content: '★ ';
}

.botSurveyRating > input:checked ~ label {
    color: #f8db2b;
}

    .botSurveyRating:not(:checked) > label:hover,
    .botSurveyRating:not(:checked) > label:hover ~ label {
        color: #f8db2b;
    }

.botSurveyRating > input:checked + label:hover,
.botSurveyRating > input:checked + label:hover ~ label,
.botSurveyRating > input:checked ~ label:hover,
.botSurveyRating > input:checked ~ label:hover ~ label,
.botSurveyRating > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
/* ////////////////////////////////////////////// */
.AsyncRecordList .autoSyncRecordMark {
    display: inline-block;
    padding: 10px 0px 5px 0px;
}

    .AsyncRecordList .autoSyncRecordMark:not(:checked) > input {
        position: absolute;
        top: -9999px;
    }

    .AsyncRecordList .autoSyncRecordMark:not(:checked) > label {
        float: right;
        width: 1em;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 25px;
        height: 30px;
        color: #ccc;
        line-height: 1;
    }

        .AsyncRecordList .autoSyncRecordMark:not(:checked) > label:before {
            content: '★ ';
        }

    .AsyncRecordList .autoSyncRecordMark > input:checked ~ label {
        color: #EA0058;
    }

    .AsyncRecordList .autoSyncRecordMark:not(:checked) > label:hover,
    .AsyncRecordList .autoSyncRecordMark:not(:checked) > label:hover ~ label {
        color: #EA0058;
    }

    .AsyncRecordList .autoSyncRecordMark > input:checked + label:hover,
    .AsyncRecordList .autoSyncRecordMark > input:checked + label:hover ~ label,
    .AsyncRecordList .autoSyncRecordMark > input:checked ~ label:hover,
    .AsyncRecordList .autoSyncRecordMark > input:checked ~ label:hover ~ label,
    .AsyncRecordList .autoSyncRecordMark > label:hover ~ input:checked ~ label {
        color: #7d0331;
    }

/* ////////////////////////////////////////////// */
#iscroll {
    position: absolute;
    z-index: 10;
    padding: 10px;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    cursor: -o-grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    cursor: grab;
    animation: fadeInUp .3s .8s ease-out both;
    -webkit-overflow-scrolling: touch;
}
/* ////////////////////////////////////////////// */
.opctionBox {
    float: left;
    list-style-type: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    cursor: -webkit-grab;
    cursor: grab;
    width: 160%;
}

.opctionList {
    font-size: 0;
}

.opctionList li {
    font-size: .8rem;
    display: inline-block;
    vertical-align: top;
}

.opctionList li a {
    color: #11BFC2;
    margin-right: 8px;
    border: 1px solid #11BFC2;
    display: block;
    border-radius: 20px;
    padding: 5px 10px;
    text-decoration: none
}

.opctionList li a:hover {
    color: #FFF;
    background: #11BFC2;
}
/* ////////////////////////////////////////////// */
.documentList li {
    font-size: 0;
}

    .documentList li:not(:last-child) {
        margin-bottom: 20px
    }

    .documentList li label, .documentList li span {
        font-size: 1rem;
        display: inline-block;
        vertical-align: middle;
    }

    .documentList li label {
        width: 100px;
    }

    .documentList li span {
        width: calc(100% - 100px);
        border: 1px solid #D8D8D8;
        display: inline-block;
        padding: 12px 8px;
        word-break: break-all;
    }
/* ////////////////////////////////////////////// */
.documentBtn {
    margin-top: 50px;
}

    .documentBtn a {
        color: #FFF;
        display: inline-block;
        background: #11BFC2;
        padding: 8px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

        .documentBtn a:hover {
            background: #3C3C3C;
        }

        .documentBtn a:not(:last-child) {
            margin-right: 8px;
        }

/* ////////////////////////////////////////////// */
/*.circle-rotate {
  -webkit-animation-name: jelly;
  animation-name: jelly
}*/
/* ////////////////////////////////////////////// */
.loading {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0
}

.white {
    background: rgba(0, 0, 0, 0);
}

.loading > span {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 50px;
    color: #11BFC2;
    font-size: 15px;
    text-align: center
}

.loading > div {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

    .loading > div > div {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: #11BFC2;
        top: 10px;
        left: 10px;
        -webkit-transform-origin: 20px 20px;
        -ms-transform-origin: 20px 20px;
        transform-origin: 20px 20px;
        border-radius: 8px;
        -webkit-animation: spin-a 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
        animation: spin-a 2s infinite cubic-bezier(0.5, 0, 0.5, 1)
    }

    .loading > div > .c2 {
        top: 10px;
        left: auto;
        right: 10px;
        -webkit-transform-origin: -4px 20px;
        -ms-transform-origin: -4px 20px;
        transform-origin: -4px 20px;
        -webkit-animation: spin-b 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
        animation: spin-b 2s infinite cubic-bezier(0.5, 0, 0.5, 1)
    }

    .loading > div > .c3 {
        top: auto;
        left: auto;
        right: 10px;
        bottom: 10px;
        -webkit-transform-origin: -4px -4px;
        -ms-transform-origin: -4px -4px;
        transform-origin: -4px -4px;
        -webkit-animation: spin-c 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
        animation: spin-c 2s infinite cubic-bezier(0.5, 0, 0.5, 1)
    }

    .loading > div > .c4 {
        top: auto;
        bottom: 10px;
        -webkit-transform-origin: 20px -4px;
        -ms-transform-origin: 20px -4px;
        transform-origin: 20px -4px;
        -webkit-animation: spin-d 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
        animation: spin-d 2s infinite cubic-bezier(0.5, 0, 0.5, 1)
    }
/* ////////////////////////////////////////////// */
.pageNumBox {
    margin-top: 15px;
    text-align: center
}

    .pageNumBox a,
    .pageNumBox li,
    .pageNumBox span {
        color: #D8D8D8;
        display: inline-block;
        padding: 5px 8px;
        border: 1px solid #D8D8D8;
        cursor: pointer
    }

        .pageNumBox a:not(:last-child),
        .pageNumBox li:not(:last-child),
        .pageNumBox span:not(:last-child) {
            border-right: 0
        }

        .pageNumBox a.active,
        .pageNumBox a.current,
        .pageNumBox a:hover,
        .pageNumBox li.active,
        .pageNumBox li.current,
        .pageNumBox li:hover,
        .pageNumBox span.active,
        .pageNumBox span.current,
        .pageNumBox span:hover {
            color: #FFF;
            background: #D8D8D8
        }
/* ////////////////////////////////////////////// */
.reportPage {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}


    .reportPage li {
        color: #CCC;
        display: inline-block;
        padding: 5px 8px;
        border: 1px solid #CCC;
        cursor: pointer;
        margin-right: -1px;
    }

        .reportPage li.active {
            color: #FFF;
            background: #CCC;
        }

    .reportPage.skillAmountList {
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .reportPage .list {
        color: #555555;
        padding: 5px;
        display: flex;
        justify-content: space-between;
    }

    .reportPage .detailBox .titleBar {
        display: flex;
    }
/* ////////////////////////////////////////////// */
.warning {
    color: #EA0058;
    margin-top: 10px;
}

    .warning i {
        margin-right: 5px;
    }
/* ////////////////////////////////////////////// */
.exportIntentBtn i {
    font-size: 1rem;
}
/* ////////////////////////////////////////////// */
#emailTags {
    font-size: .9rem;
}

    #emailTags > span {
        display: inline-block;
        float: left;
        color: #FFF;
        background: #11BFC2;
        padding: 5px;
        padding-right: 25px;
        margin-bottom: 5px;
        border-radius: 3px;
        transition: all .3s ease;
    }

        #emailTags > span:not(:last-child) {
            margin-right: 5px;
        }

        #emailTags > span:hover {
            background: #f2dfdf;
            color: #3C3C3C;
        }

        #emailTags > span:focus {
            border: darkslateblue;
        }

        #emailTags > span:after {
            position: absolute;
            cursor: pointer;
            content: "✕";
            color: #fff;
            margin-left: 5px;
            font-size: 12px;
            font-weight: bolder;
            transition: all .3s ease;
        }

        #emailTags > span:hover:after {
            color: red;
        }

    #emailTags > input {
        font-size: .875rem;
        border: 0;
        width: auto;
        padding: 0;
    }

.focusTag {
    border: solid 2px cornflowerblue;
}

.emailtag {
    margin: auto;
    width: 60%;
}

/* ////////////////////////////////////////////// */
.animated-slow {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.wp1 {
    visibility: hidden
}

.fadeIn,
.fadeInLeft,
.fadeInRight {
    visibility: visible !important
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(30%, 0, 0);
        transform: translate3d(30%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0.5;
        -webkit-transform: translate3d(30%, 0, 0);
        transform: translate3d(30%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpSoon {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpSoon {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUpSoon {
    -webkit-animation-name: fadeInUpSoon;
    animation-name: fadeInUpSoon
}


@-webkit-keyframes jelly {
    0% {
        -webkit-transform: translateY(-50%) scale(1, 1);
        transform: translateY(-50%) scale(1, 1)
    }

    30% {
        -webkit-transform: translateY(-50%) scale(1.25, 0.75);
        transform: translateY(-50%) scale(1.25, 0.75)
    }

    40% {
        -webkit-transform: translateY(-50%) scale(0.75, 1.25);
        transform: translateY(-50%) scale(0.75, 1.25)
    }

    50% {
        -webkit-transform: translateY(-50%) scale(1.15, 0.85);
        transform: translateY(-50%) scale(1.15, 0.85)
    }

    65% {
        -webkit-transform: translateY(-50%) scale(0.95, 1.05);
        transform: translateY(-50%) scale(0.95, 1.05)
    }

    75% {
        -webkit-transform: translateY(-50%) scale(1.05, 0.95);
        transform: translateY(-50%) scale(1.05, 0.95)
    }

    to {
        -webkit-transform: translateY(-50%) scale(1, 1);
        transform: translateY(-50%) scale(1, 1)
    }
}

@keyframes jelly {
    0% {
        -webkit-transform: translateY(-50%) scale(1, 1);
        transform: translateY(-50%) scale(1, 1)
    }

    30% {
        -webkit-transform: translateY(-50%) scale(1.25, 0.75);
        transform: translateY(-50%) scale(1.25, 0.75)
    }

    40% {
        -webkit-transform: translateY(-50%) scale(0.75, 1.25);
        transform: translateY(-50%) scale(0.75, 1.25)
    }

    50% {
        -webkit-transform: translateY(-50%) scale(1.15, 0.85);
        transform: translateY(-50%) scale(1.15, 0.85)
    }

    65% {
        -webkit-transform: translateY(-50%) scale(0.95, 1.05);
        transform: translateY(-50%) scale(0.95, 1.05)
    }

    75% {
        -webkit-transform: translateY(-50%) scale(1.05, 0.95);
        transform: translateY(-50%) scale(1.05, 0.95)
    }

    to {
        -webkit-transform: translateY(-50%) scale(1, 1);
        transform: translateY(-50%) scale(1, 1)
    }
}

.fadeInUp {
    -webkit-animation-name: jelly;
    animation-name: jelly
}

@-webkit-keyframes circle-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes circle-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin-a {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin-a {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin-b {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin-b {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin-c {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    50% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin-c {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    50% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin-d {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin-d {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
