.areaDiscussions {
    width: calc(100vw - 320px);
    margin-top: 2em;
    border: 1px solid #ECECEC;
    border-radius: 3px;

    position: relative;
    left: 43px;
    right: 45px;
}

.discussionsHeader {
    width: 100%;
    height: 45px;
    background: #FDF1EB;
    border: 1px solid #ECECEC;
    position: relative;
}

.discussionsHeader span {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;

    display: flex;
    align-items: center;
    color: #4E4E4E;

    position: absolute;
    left: 16px;
    top: 10px;
    bottom: 10px;
}

.areaPreNewTopic {
    /* AREA DE MUDANÇA DE ESTADO DE NOVO TÓPICO */
    display: flex; /*flex || none*/

    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;

    border-bottom: 1px solid #ECECEC;
    position: relative;
    right: 0%;
    left: 0%;
}

.titlePNT {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;

    color: #ED7839;

    position: absolute;
    top: 15px;
}

.iconsPNT {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    width: 260px;
}

.subtitlePNT {
    margin-top: 3rem;
    width: 626px;
    height: 39px;
}

.subtitlePNT {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;

    color: #595959;
}

.areaBtnPNT{
    margin-top: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
}

.btnPNT {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 133px;
    height: 32px;

    border: none;
    background: linear-gradient(180deg, #FEB254 0%, #F0813D 100%);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 2px 2px rgba(0, 0, 0, 0.24);
    border-radius: 4px;

    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 16px;
    /* identical to box height, or 107% */

    text-align: center;

    color: #FFFFFF;

    cursor: pointer;
    z-index: 1;
}

.btnPNT:hover{
    background: #eb8b56;
}

.btnPNT img {
    margin-right: .5rem;
}

.barDivisionPre{
    height: 0;
    width: 1000px;
    border: 1px solid #E7E7E7;
    background: #E7E7E7;

    position: absolute;
    bottom: 50%;
}