.go-msg-box {
    text-align: center;
}
.go-msg {
    position: relative;
    font-size: 18px;
    padding: 0px 30px 0px 65px;
    box-sizing: border-box;
    line-height: 50px;
    border-radius: 80px;
    height: 50px;
    transition: all .3s ease;
    width: 192px;
    text-align: center;
    margin: auto;
}
.go-msg .ic {
    width: 51px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: -1.5px;
    top: -1px;
}
.message-item {
    margin: 60px 11px 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 10;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.message-item.active {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.message-item .ic {
    font-size: 30px;
    vertical-align: middle;
    position: absolute;
    left: 10px;
}
.message-item .message-question .message-from {
    font-size: 13px;
    margin-top: 6px;
    position: absolute;
    right: 27px;
    top: -37px;
    height: 30px;
    z-index: 1;
    line-height: 30px;
    background-size: 100% auto;
    text-align: center;
    padding: 0 10px;
    display: inline-block;
}
.message-item .message-from .date {
    display: inline-block;
}
.message-question {
    padding: 15px 10px 15px 50px;
    position: relative;
    display: block;
}
.message-question:before {
    content: "\e917";
    display: inline-block;
    font-family: 'icon-font-3' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 25px;
    position: absolute;
    left: 12px;
}
.message-question {
    cursor: pointer;
}
.message-question .title {
    font-size: 16px;
}
.message-item.active .message-question .title {}
.message-question .txt {
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.message-item.active .message-question .txt {
    height: auto;
    visibility: visible;
    padding: 10px 0;
}
.message-answer .message-from {
    font-weight: bold;
}
.message-answer {
    padding: 20px 40px;
    position: relative;
    display: none;
    border-top: none;
    font-size: 14px;
}
.message-answer b {
    font-weight: bold;
    font-size: 18px;
}
.message-answer .editor {
    padding: 10px 0;
    min-height: 20px;
}
#message-sect .go-msg {
    position: relative;
    top: 25px;
}
#message-sect .form-wrap {
    padding: 50px 6%;
    border-radius: 40px;
    margin: 0 10px;
}
#message-sect .form-wrap .btn-box {
    max-width: none;
}
#message-sect .col {
    width: 50%;
    float: left;
    padding: 0 30px;
}
#message-sect .col1 {
    min-height: 450px;
}
@media screen and (max-width: 1000px) {
    .message-item {
        margin: 60px 0px 20px;
        position: relative;
        z-index: 10;
    }
    #message-sect .form-wrap {
        margin: 0 auto;
    }
    #message-sect .col {
        width: 100%;
        float: none;
    }
}
@media screen and (max-width: 600px) {
    .message-answer {
        display: none;
        border-width: 5px;
        border-top: none;
        padding: 10px 20px;
    }
    #message-sect .col {
        padding: 0 0px;
    }
    #message-sect .form-wrap {
        padding: 50px 6% 20px;
    }
}