.mw-comments{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 0;
    display: none;
}

.mw-comments-off{
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    padding-bottom: 15px;
}

.mw-commentsSize{
    font-size: 25px;
    font-family: 'NunitoSans-ExtraBold';
    line-height: 29px;
}

.mw-comments-login{
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    width: 50%;
}

.mw-comments-login span, .mw-comments-assinar span{
    font-size: 18px;
    font-family: NunitoSans-Regular;
    line-height: 24px;
}

.mw-comments-assinar{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    width: 50%;
    text-align: center;
}

.mw-comments-assinar a{
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-family: NunitoSans-Bold;
}

.mw-comments-on{
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
}

.mw-comments-on form{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.mw-comments-on textarea{
    background-color: var(--headerGray);
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-family: NunitoSans-regular;
    width: 75%;
}

.mw-comments-on button {
    padding: 10px 20px;
    background: blue;
    font-size: 16px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-family: nunitoSans-bold;
}

.mw-comments-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: 100%;
    border-top: 1px solid #ccc;
    padding: 20px 0; 
}

.mw-comments-wrapper div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mw-comments-wrapper span {
    font-family: NunitoSans-Bold;
    font-size: 14px;
    line-height: 19px;
}

.mw-comments-wrapper p{
    font-family: NunitoSans-SemiBold;
    font-size: 16px;
    color: #585858;
    line-height: 21px;
}

@media (max-width: 700px){
    .mw-comments-off{
        flex-direction: column;
    }
    .mw-comments-login{
        width: 100%;
    }
    .mw-comments-assinar{
        width: 100%;
    }
}