/*------------ message ------------*/

.write-question {
    width: 110px;
    height: 110px;
    position: relative;
    display: block;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    padding: 22px 0 0 3px;
    margin: 0 auto 25px;
    transition: all .2s;
}

.write-question:before {
    content: "\e1011";
    display: block;
    font-size: 32px;
    font-family: 'icon-font' !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;
    margin: 0 0 5px;
}


/*------------ message ------------*/

.message-list {
    max-width: 1000px;
}

.message-list li {
    margin: 0 0 25px;
    position: relative;
    transition: all .2s;
}

.author-box {
    text-align: right;
    font-size: 13px;
}

.author-box .date {
    font-family: 'Cabin', sans-serif;
}

.author-box:before {
    display: inline-block;
    vertical-align: middle;
    content: "\e1013";
    font-family: 'icon-font' !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;
}

.author-box .date:before,
.author-box .date:after {
    content: "/";
    display: inline-block;
    margin: 0 5px;
}

.message-question {
    cursor: pointer;
    padding: 15px 20px 0 15px;
    position: relative;
    transition: all .2s;
    box-sizing: border-box;
}

.message-question .title {
    padding: 0 0 15px 18px;
    font-size: 18px;
    line-height: 1.4;
    position: relative;
}

.message-question .title:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: block;
    position: absolute;
    position: absolute;
    top: 7px;
    left: 0px;
}

.message-question .date {
    font-size: 13px;
    line-height: 1.2;
}

.message-answer {
    display: none;
    overflow: hidden;
    padding: 20px;
}

.message-answer .editor {
    padding: 60px 20px 30px;
    position: relative;
}

.message-answer .editor:before {
    content: "A";
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 23px;
    font-weight: bold;
    line-height: 36px;
    text-align: center;
    font-family: 'Cabin', sans-serif;
}


/*------------ message-form ------------*/

#message-form {
    display: table;
    width: 100%;
    box-sizing: border-box;
}

#message-form .col {
    display: table-cell;
}

#message-form .form-title {
    vertical-align: middle;
    text-align: left;
    padding: 45px;
    line-height: 1.5;
    width: 400px;
    box-sizing: border-box;
    position: relative;
}

#message-form .form-title:after {
    content: "";
    width: 275px;
    height: 216px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
    pointer-events: none;
}

#message-form .form-title i {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    font-style: normal;
    display: block;
    padding: 35px 0 0 5px;
    box-sizing: border-box;
    margin: 0 auto 30px;
}

#message-form .form-title i:before {
    content: "\e1011";
    font-size: 45px;
    display: block;
    font-family: 'icon-font' !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;
    margin: 0 0 5px;
}

#message-form .reminder {
    margin: 0;
    line-height: 1.7;
}

#message-form .form-box {
    padding: 35px 50px 25px 55px;
    position: relative;
    background: transparent;
}

#message-form .form-box:before {
    content: "";
    width: 4px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


/*------------ rwd ------------*/

@media screen and (max-width:900px) {
    #message-form,
    #message-form .col {
        display: block;
        width: auto;
    }
}

@media screen and (max-width:600px) {
    #message-form .form-box {
        padding: 35px 20px 20px 20px;
    }
    #message-form .form-title {
        padding: 25px 15px;
    }
}

@media screen and (max-width:480px) {
    .message-answer .editor:before {
        top: -20px;
        left: 10px;
    }
    .message-answer .editor {
        padding: 20px;
    }
}
