
.api-suggestion {
    margin-top: 34px;
    background: #F7F9FB;
    padding-bottom: 60px;
    width: 85%;
    margin-left: 15%;
}
#lead, #suggestion {
    background: #F7F9FB;
    max-width: 1680px;
}
#lead hr {
    background: #E1E9EB;
    border: unset;
    height: 1px;
}
.lead-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px 16px;
}
.lead-wrap a:hover {
    text-decoration: underline;
    color: #455c9d;
}
.suggestion-wrap {
    background: #fff;
    border-radius: 6px;
    padding: 20px 34px 52px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.suggestion-p{
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0;
}
.like-box {
    display: flex;
    font-size: 16px;
    line-height: 34px;
    margin: 8px 0;
}
.icon-box{
    width: 110px;
    height: 40px;
    background: #E5EAED;
    border-radius: 45px;
    padding: 0 8px;
    text-align: center;
    font-size: 13px;
    color: #b9b6b6;
    margin-left: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.iconfont {
    font-size: 20px;
    cursor: pointer;
    color: #b2b2b2;
}
.suggestion-icon {
    font-size: 18px;
    font-weight: 600;
    margin-right: 8px;
    color: black;
}
.iconfont.unchoose:hover {
    color:#455c9d;
}
.iconfont.active {
    color:#455c9d;
}
.suggestion-like {
    margin-right: 12%;
}
.suggestion-unlike {
    margin-left: 12%;
}

.suggestion-wrap textarea {
    border-radius: 8px;
    border: 1px solid #E5EAED;
    line-height: 20px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    resize: none;
}
.suggestion-wrap textarea:focus {
    border: 1px solid #d3d3d7;
    outline: none;
}
.suggestion-form {
    width: 100%;
}
textarea::-webkit-input-placeholder {
    font-size: 14px;
}
textarea::-moz-placeholder {  /* Mozilla Firefox 19+ */
    font-size: 14px;
}
textarea:-moz-placeholder {  /* Mozilla Firefox 4 to 18 */
    font-size: 14px;
}
textarea:-ms-input-placeholder {  /* Internet Explorer 10-11 */
    font-size: 14px;
}

.submit-btn {
    margin-top: 12px;
}
.submit-btn button{
    margin-top: 12px;
    width: 158px;
    height: 50px;
    background: linear-gradient(128deg, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 35px;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 50px;
}
.submit-btn button.active{
    background: linear-gradient(128deg, #A0C5E2 0%, #5B78B4 100%);
    box-shadow: 0px 6px 20px 0px #9bc0de;
    cursor: pointer;
}
.words_limit {
    color: #b2b2b2;
    font-size: 12px;
    margin-left: 8px;
}
.words_limit.active {
    color:#455c9d;
}

@-webkit-keyframes bounceIn {
    from,
    30%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    30% {
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
    }
    60% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    80% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    30%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    30% {
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
    }
    60% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    80% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.like-beat {
    animation: bounceIn 0.4s linear 1;
}

@media (max-width: 992px) {
    .api-suggestion {
        margin: auto;
    }
    .lead-wrap {
        align-items: flex-start;
        flex-direction: column;
    }
    .lead-next {
        margin-top: 14px;
    }
    .like-box {
        margin: 8px 0 26px;
        flex-direction: column;
    }
    .icon-box {
        margin-left: 0px;
    }
    .lead-wrap a {
        color: #455c9d;
        text-decoration: underline;
    }
}