*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:focus, *:hover {
    outline: none;
}

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #F8F8F8;
}

.content {
    min-height: calc(100vh - 90px);
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    transition: .4s;
}

@media (max-width: 1000px) {
    .content {
        min-height: 100vh;
        padding-top: 80px;
    }
}

.content__page {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 90px 40px 140px;
    position: relative;
}

@media (max-width: 1000px) {
    .content__page {
        padding: 20px 20px 100px;
    }
}

.notfound {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.notfound::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b4f88;
    background: linear-gradient(90deg, rgba(43, 79, 136, 0.65) 0%, rgba(202, 67, 67, 0.65) 100%);
}

.notfound__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 400px;
    width: 95%;
}

.notfound__title {
    font-size: 200px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 550px) {
    .notfound__title {
        font-size: 100px;
    }
}

.notfound__paragraph {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 24px;
    margin-bottom: 2.5rem;
}

@media (max-width: 550px) {
    .notfound__paragraph {
        font-size: 13px;
    }
}

.notfound__paragraph span {
    display: block;
}

.notfound__link {
    display: block;
    margin: 0 auto;
    padding: 11px 16px;
    background-color: #CA4343;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.notfound__link:hover {
    color: #CA4343;
    background-color: #fff;
}

@keyframes moveDown {
    0% {
        opacity: 0;
        top: -5rem;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

.ui-center {
    width: 90%;
    max-width: 1140px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.ui-center::after {
    content: '';
    display: block;
    clear: both;
}

.col-half {
    float: left;
    clear: none;
    text-align: inherit;
    width: 49.193548385%;
    margin-left: 0%;
    margin-right: 1.61290323%;
}

.col-half::after {
    content: '';
    display: block;
    clear: both;
}

.col-half:last-child {
    margin-right: 0%;
}

.no-margin {
    margin: 0 !important;
}

.page__content {
    background-color: #F8F8F8;
}

@media (max-width: 1000px) {
    [class^="col-"] {
        width: 100% !important;
    }
}

@media (max-width: 1000px) {
    .mobile-hidden {
        display: none !important;
    }
}

.ui-button {
    height: 42px;
    line-height: 42px;
    border: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    transition: .4s;
}

@media (max-width: 1000px) {
    .ui-button {
        height: 38px;
        line-height: 38px;
    }
}

.ui-button:hover {
    background-color: transparent;
}

.ui-label {
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #888888;
    cursor: pointer;
    margin-bottom: 5px;
}

@media (max-width: 1000px) {
    .ui-label {
        font-size: 13px;
    }
}

.ui-input {
    width: 100%;
    height: 40px;
    border: 1px solid #E4E4E4;
    background: #fff;
    padding: 0 15px;
    font-size: 14px;
    color: #888888;
}

@media (max-width: 1000px) {
    .ui-input {
        height: 38px;
        font-size: 13px;
    }
}

.ui-input-error {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #C92525;
    margin-top: 10px;
}

.ui-mt {
    margin-top: 40px !important;
}

.ui-widget__header {
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
    color: #454748;
}

.ui-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.ui-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.load-more {
    height: 42px;
    border-radius: 4px;
    background: #C4C4C4;
    color: #fff;
    text-align: center;
    line-height: 42px;
    border: 0;
    font-size: 16px;
    transition: .4s;
    cursor: pointer;
    display: block;
    margin: 40px auto 0;
    padding: 0 22px;
    color: #ffffff;
}

.load-more:hover {
    background: #545454;
}

.podcast {
    padding: 15px;
    border: 1px solid #E4E4E4;
    background: #FAFAFA;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1000px) {
    .podcast {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.podcast__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .podcast__info {
        width: 100%;
    }
}

.podcast__right {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.podcast__volume-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.podcast__volume-range {
    width: 100px;
    position: relative;
    height: 2px;
    background: #9B9B9B;
    border-radius: 1px;
}

.podcast__volume-range-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    z-index: 10;
}

.podcast__timer {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
    margin-bottom: 7px;
}

.podcast__bar {
    position: absolute;
    left: 0;
    top: 0;
    background: #333;
    border-radius: 1px;
    height: 100%;
}

.podcast__bar-wrap {
    position: relative;
    width: 100%;
    height: 2px;
    background: #9B9B9B;
    border-radius: 1px;
}

.podcast__thumbnail {
    max-width: 215px;
    height: auto;
    margin-right: 20px;
    width: 100%;
    vertical-align: middle;
}

@media (max-width: 1000px) {
    .podcast__thumbnail {
        max-width: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.podcast__range {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    z-index: 10;
    opacity: 0;
}

.podcast__buttons {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
}

.podcast__buttons button {
    background-color: transparent;
    border: 0;
    padding: 0;
    text-align: center;
    font-size: 18px;
    outline: none;
    color: #9B9B9B;
    position: relative;
    cursor: pointer;
    transition: .4s;
}

@media (max-width: 1000px) {
    .podcast__buttons button {
        font-size: 16px;
    }
}

.podcast__buttons button:not(:last-child) {
    margin-right: 15px;
}

.podcast__buttons button span {
    font-size: 6px;
    position: absolute;
    top: 7px;
}

@media (max-width: 1000px) {
    .podcast__buttons button span {
        font-size: 5px;
    }
}

.podcast__back, .podcast__forward {
    font-size: 20px !important;
}

@media (max-width: 1000px) {
    .podcast__back, .podcast__forward {
        font-size: 18px !important;
    }
}

.podcast__back span {
    right: 6px;
}

.podcast__forward span {
    left: 6px;
}

.podcast__player {
    margin-top: 10px;
}

.podcast__player audio {
    display: none;
}

.ui-label-check {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #888888;
    cursor: pointer;
}

.ui-label-check input {
    display: none;
}

.ui-label-check span {
    width: 16px;
    height: 16px;
    border: 1px solid #E4E4E4;
    background: #fff;
    margin-right: 8px;
    transition: .4s;
}

.ui-label-check input:checked ~ span {
    background: #FACC48;
    border: 0;
    text-align: center;
    line-height: 14px;
}

.ui-label-check input:checked ~ span::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #fff;
    font-size: 10px;
}

.em-breve {
    position: relative;
    height: 340px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 110px;
    font-size: 36px;
    line-height: 45px;
    font-weight: 500;
    color: #FACC48;
}

@media (max-width: 1000px) {
    .em-breve {
        height: auto;
        padding: 40px;
        font-size: 26px;
        line-height: 35px;
    }
}

.em-breve p {
    position: relative;
    z-index: 10;
}

.em-breve::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/bg-like.png) no-repeat right center;
    right: 0;
    top: 0;
}

@media (max-width: 1000px) {
    .em-breve::before {
        background-size: cover;
    }
}

.posts__list.ler-depois {
    max-width: 740px;
    margin: 0 auto;
}

.moderacao__button {
    background-color: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: .4s;
}

.moderacao__button:hover {
    opacity: .7;
}

.moderacao__button.green {
    color: #2FD180;
}

.moderacao__button.red {
    color: #CA4343;
}

.moderacao__button:not(:last-child) {
    margin-right: 40px;
}

.moderacao__button i {
    font-size: 16px;
    margin-right: 8px;
}

.page__button {
    text-decoration: none;
}

.lightbox__text {
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    margin-bottom: 20px;
}

.lightbox__buttons {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

.lightbox__button {
    border: 0;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    text-align: center;
    min-width: 120px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
    cursor: pointer;
}

.lightbox__button.primary-button:hover {
    background-color: transparent;
}

.lightbox__button:not(:last-child) {
    margin-right: 20px;
}

.lb-form--bigger {
    width: 590px !important;
    max-width: 100% !important;
}

a {
    text-decoration: none;
}

.unidade__thumb {
    width: 48px;
    height: 48px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.post__actions-menu button {
    width: 100%;
    background-color: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.lb-form .form__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1000px) {
    .lb-form .form__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lb-form .form__field {
    margin-bottom: 20px;
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .lb-form .form__field {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

.lb-form .form__field--smaller {
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 160px;
}

.lb-form .form__field:not(:last-child) {
    margin-right: 20px;
}

.lb-form .form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 20px;
    color: #888888;
}

.lb-form .form__label--mobile {
    display: none;
    font-size: 1.3rem;
    font-weight: 500;
    color: #43ABD4;
    margin-bottom: .5rem;
    text-align: left;
}

@media (max-width: 550px) {
    .lb-form .form__label--mobile {
        display: block;
    }
}

.lb-form .form__input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    background: #fff;
    font-size: 14px;
    color: #888888;
    padding: 0 15px;
}

.lb-form .form__table {
    width: 100%;
    margin: 1.6rem 0;
}

.lb-form .form__table--users {
    width: 100%;
    margin: 1.6rem 0;
}

.lb-form .form__table--users .form__tr {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e4e4e4;
}

.lb-form .form__table--users .form__td {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    background-color: transparent !important;
}

@media (max-width: 550px) {
    .lb-form .form__table--users .form__td {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 0.5rem !important;
    }
}

.lb-form .form__table--users .form__td:first-child {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.lb-form .form__table--users .form__td:last-child {
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
}

.lb-form .form__table--users .form__td:not(:last-child) {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .lb-form .form__table--users .form__td .usuarios__user {
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
}

@media (max-width: 550px) {
    .lb-form .form__thead {
        display: none;
    }
}

.lb-form .form__thead .form__td:not(:first-child) {
    text-align: center;
    background-color: #fafafa;
}

@media (max-width: 550px) {
    .lb-form .form__tbody .form__tr {
        background-color: #fafafa;
        border: 1px solid #e4e4e4;
        padding: 1rem;
    }

    .lb-form .form__tbody .form__tr:not(:last-child) {
        margin-bottom: 1rem;
    }
}

.lb-form .form__tbody .form__td:not(:first-child) {
    text-align: center;
    background-color: rgba(196, 196, 196, 0.1);
}

@media (max-width: 550px) {
    .lb-form .form__tbody .form__td:not(:first-child) {
        background-color: #fafafa;
        text-align: left;
    }
}

.lb-form .form__tbody .form__td:first-child {
    background-color: #fafafa;
    padding-left: 1rem;
}

@media (max-width: 550px) {
    .lb-form .form__tbody .form__td:first-child {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding-left: 0;
        margin-bottom: 1rem;
        font-weight: 600;
    }
}

.lb-form .form__tr {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 550px) {
    .lb-form .form__tr {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lb-form .form__td {
    padding: .8rem .2rem;
    width: 24%;
    font-size: 1.4rem;
    font-weight: 400;
    color: #454748;
    margin-bottom: .6rem;
}

@media (max-width: 550px) {
    .lb-form .form__td {
        margin-bottom: 0;
        padding: 0;
    }
}

.lb-form .form__check {
    width: 15px;
    height: 15px;
}

.anexos__comentarios-item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    background: #FAFAFA;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 10px;
    padding: 10px 15px;
    line-height: 28px;
}

.anexos__comentarios-item input[type='file'] {
    display: none;
}

.anexos__comentarios-item button {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    color: #888;
    cursor: pointer;
}

.anexos__comentarios-title {
    font-size: 14px;
    color: #888888;
}

.anexos__comentarios-label {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

.post__actions-menu a {
    cursor: pointer;
}

.lb-form .chosen-container {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.lb-form.lb-with-chosen {
    overflow: visible;
}

.post__actions-menu {
    z-index: 1;
}

.lb-form__textarea {
    height: 115px !important;
    resize: none;
}

.lb-form__dica {
    margin: 10px 0;
    background-color: #FAFAFA;
    padding: 16px;
}

.form__box {
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
}

.tab {
    margin-bottom: 20px;
}

.w35 {
    width: 35% !important;
}

.main-header {
    position: relative;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 90px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    padding-right: 40px;
    z-index: 106;
}

@media (max-width: 1000px) {
    .main-header {
        padding-right: 20px;
        height: 80px;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
    }
}

.main-header__logo {
    width: 240px;
    height: 90px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #e4e4e4;
    background: #FFF;
    position: relative;
    box-shadow: 0 3px 6px rgb(0 0 0 / 6%);
}


.main-header__product {
    font-size: 46px;
    line-height: 50px;
    font-weight: 500;
    color: #a3a3a3
}

.main-header__product span {
    color: #454748
}

@media (max-width: 1000px) {
    .main-header__logo {
        width: 40%;
        height: 80px;
        border-right: 0
    }

    .main-header__logo img {
        max-width: 80%;
        height: auto
    }

    .main-header__product {
        font-size: 20px;
        line-height: 22px
    }
}

.main-header__user {
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    border: 0;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    outline: none;
    -ms-flex-align: center;
    align-items: center;
}

.main-header__user i {
    font-size: 14px;
    color: #9B9B9B;
}

@media (max-width: 1000px) {
    .main-header__user i {
        font-size: 12px;
    }
}

.main-header__user-profile {
    padding: 20px;
    background: #FAFAFA;
}

.main-header__user-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

@media (max-width: 1000px) {
    .main-header__user-image {
        width: 40px;
        height: 40px;
    }
}

.main-header__user-menu {
    position: absolute;
    right: -20px;
    top: 100%;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 270px;
    border-radius: 6px;
    display: none;
    z-index: 10;
}

.main-header__user-menu::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 11px 15px 11px;
    border-color: transparent transparent #fafafa transparent;
    position: absolute;
    top: -15px;
    right: 15px;
}

.main-header__user-name {
    text-align: center;
    font-size: 18px;
    line-height: 23px;
    color: #454748;
    font-weight: 700;
}

@media (max-width: 1000px) {
    .main-header__user-name {
        font-size: 16px;
        line-height: 22px;
    }
}

.main-header__user-location {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #43ABD4;
}

@media (max-width: 1000px) {
    .main-header__user-location {
        font-size: 14px;
        line-height: 18px;
    }
}

.main-header__user-code {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    color: #454748;
}

@media (max-width: 1000px) {
    .main-header__user-code {
        font-size: 12px;
        line-height: 16px;
    }
}

.main-header__user-item {
    padding: 10px 15px;
    line-height: 28px;
    display: block;
    border-top: 1px solid #E4E4E4;
    font-size: 14px;
    font-weight: 500;
    color: #454748;
    text-decoration: none;
    transition: .4s;
}

@media (max-width: 1000px) {
    .main-header__user-item {
        font-size: 13px;
        line-height: 24px;
    }
}

.main-header__user-item i {
    width: 20px;
    color: #C4C4C4;
}

.main-header__user-item:hover {
    background: #454748;
    color: #fff;
}

.main-header__user-item:last-child {
    border-radius: 0 0 6px 6px;
}

.main-header__user-picture {
    max-width: 90px;
    max-height: 90px;
    display: block;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .main-header__user-picture {
        max-width: 80px;
        max-height: 80px;
    }
}

.main-header__user-picture img {
    width: 90px;
    height: 90px;
    vertical-align: middle;
}

.main-header__user-change {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 22px;
    line-height: 20px;
    text-align: center;
    border: 0;
    padding: 0;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: .4s;
}

@media (max-width: 1000px) {
    .main-header__user-change {
        font-size: 8px;
    }
}

.main-header__user-change:hover {
    background-color: #fff;
    box-shadow: none !important;
}

.main-header__mobile-buttons {
    display: none;
}

@media (max-width: 1000px) {
    .main-header__mobile-buttons {
        display: -ms-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 60px;
        margin-left: 20px;
    }
    
    .main-header__mobile-buttons button {
        font-size: 20px;
        background-color: transparent;
        border: 0;
        color: #454748;
        outline: none;
    }
}

.main-header__search {
    margin: 0 40px;
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .main-header__search {
        position: absolute;
        display: none;
        left: 0;
        top: 100%;
        width: 100%;
        background: #fff;
        margin: 0;
        z-index: 10;
        padding: 0 20px;
        border-top: 1px solid #ccc;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .main-header__search.active {
        display: -ms-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.main-header__button {
    font-size: 16px;
    background-color: transparent;
    padding: 0;
    color: #454748;
    cursor: pointer;
    border: 0;
    margin-right: 20px;
}

@media (max-width: 1000px) {
    .main-header__button {
        font-size: 14px;
        width: 10%;
    }
}

.main-header__input {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    border: 0;
    font-size: 14px;
    line-height: 90px;
    color: #454748;
    outline: none;
}

@media (max-width: 1000px) {
    .main-header__input {
        line-height: 60px;
        font-size: 13px;
    }
}

.main-header__input:-ms-input-placeholder {
    color: #454748;
}

.main-header__input::placeholder {
    color: #454748;
}

.main-header__right {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.main-header__item {
    position: relative;
}

.main-header__item:not(:last-child) {
    margin-right: 30px;
}

.main-header__icon-wrap {
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
}

.main-header__icon-wrap i {
    font-size: 20px;
    line-height: 20px;
    color: #C4C4C4;
}

.main-header__icon-wrap span {
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    bottom: -2px;
    right: -2px;
    display: block;
}

.notifications {
    position: absolute;
    right: -25px;
    top: calc(100% + 20px);
    z-index: 10;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    width: 400px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    display: none;
}

.notifications::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 10px 7px;
    border-color: transparent transparent #e4e4e4 transparent;
    position: absolute;
    right: 25px;
    top: -10px;
}

.notifications::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 10px 7px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    right: 25px;
    top: -8px;
}

@media (max-width: 768px) {
    .notifications {
        width: 320px;
        right: -110px;
    }

    .notifications::before, .notifications::after {
        right: 110px;
    }

    .content .open-menu{
        display: none;
    }
}

.notifications__scroll {
    padding: 20px;
    overflow: auto;
    height: 260px;
}

.notifications__alert {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2B4F88;
}

.notifications__label {
    font-size: 14px;
    line-height: 20px;
    color: #454748;
    margin-bottom: 5px;
}

.notifications__date {
    font-size: 12px;
    font-weight: 500;
    color: #43ABD4;
}

.notifications__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.notifications__item {
    padding: 15px 0;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.notifications__item img {
    max-width: 70px;
    border-radius: 0;
    margin-right: 20px;
    height: auto;
}

.notifications__item:not(:last-child) {
    border-bottom: 1px solid #E4E4E4;
}

.notifications__item:first-child {
    padding-top: 0;
}

.notifications__item:last-child {
    padding-bottom: 0;
}

.notifications__header {
    border-bottom: 1px solid #E4E4E4;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    height: 42px;
}

.notifications__title {
    font-size: 14px;
    font-weight: 500;
    color: #454748;
}

.notifications__see-all {
    width: 100%;
    line-height: 40px;
    background: #FAFAFA;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    display: block;
    transition: .4s;
    border-radius: 0 0 8px 8px;
}

.notifications__button {
    background-color: transparent;
    color: #9B9B9B;
    font-size: 12px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    transition: .4s;
}

.notifications__button:hover {
    color: #2b4f88;
}

.main-menu {
    width: 240px;
    border-right: 1px solid #e4e4e4;
    background: #fff;
    padding: 35px 20px;
    position: fixed;
    left: -240px;
    top: 80px;
    transition: .4s;
    z-index: 105;
    height: calc(100vh - 80px);
    overflow: auto;
}

.main-menu::-webkit-scrollbar {
    width: 8px;
    background-color: #FFFFFF;
}

.main-menu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #e4e4e4;
}

.main-menu::-webkit-scrollbar-thumb {
    background-color: #e4e4e4;
}

.main-menu.active {
    left: 0;
}

.main-menu__section {
    font-size: 14px;
    font-weight: 500;
    color: #9B9B9B;
    line-height: 20px;
    margin-bottom: 15px;
}

.main-menu__section:not(:first-child) {
    margin-top: 50px;
}

.main-menu__comissao {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    line-height: 14px;
    color: #454748;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    transition: .4s;
}

.main-menu__comissao-add {
    font-size: 14px;
    font-weight: 500;
    color: #9B9B9B;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    line-height: 20px;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: .4s;
}

.main-menu__comissao-add i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
}

.main-menu__comissao img {
    max-width: 24px;
    max-height: 24px;
    border-radius: 50%;
    margin-right: 12px;
}

.main-menu__comissao i {
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    background: #F0F0F0;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 11px;
    transition: .4s;
}

.main-menu__comissao span {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    word-break: break-word;
}

.main-menu__item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #454748;
    text-decoration: none;
    margin-bottom: 20px;
}

.main-menu__item span {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    transition: .4;
}

.main-menu__item-tag {
    float: right;
    height: 20px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    line-height: 20px;
    width: 65px;
    background: #FEF2D0;
    border-radius: 2px;
    font-size: 10px;
    margin-left: 10px;
    font-weight: 500;
    color: #FACC48;
    text-align: center;
}

.main-menu__item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #C4C4C4;
    font-size: 16px;
    transition: .4s;
}

@media (min-width: 1000px) {

    .main-header.active .main-header__search, .main-header.active .main-header__items{
        margin: 0 40px 0 280px;
    }
    
    .open-menu {
        background: #FFF;
        border-radius: 50%;
        border: 1px solid #e4e4e4;
        padding: 4px 6px;
        position: absolute;
        left: -2px;
        z-index: 9999;
        top: 115px;
        transition: .4s;
    }

    .content.active .open-menu {
        left: 230px;
    }

    .main-header.active .main-header__logo{
        position: fixed;
    }
    
    .content.active{
        margin-left: 240px;
    }
}

.menu--active {
    color: #ca4343;
}

.menu--active i {
    color: #ca4343 !important;
}

.sub-menu {
    position: absolute;
    top: 0;
    right: -241px;
    width: 240px;
    height: calc(100vh - 90px);
    background-color: #2B4F88;
    padding: 35px 20px;
    z-index: 20;
    transition: .4s ease;
    opacity: 0;
    pointer-events: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}


    .sub-menu {
        right: 0px;
        width: 100%;
        height: calc(100vh - 80px);
    }
    
    /*.content .open-menu{*/
    /*    display: none;*/
    /*}*/


.sub-menu__icon-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    color: #fff;
    display: none;
    cursor: pointer;
}


    .sub-menu__icon-mobile {
        display: block;
    }


.sub-menu--active {
    opacity: 1;
    pointer-events: auto;
}

.sub-menu__list {
    list-style: none;
}

.sub-menu__item:not(:last-child) {
    margin-bottom: 30px;
}

.sub-menu__link {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: .3s ease;
}

.sub-menu__link:hover {
    color: #ca4343;
}

.sub-menu__link i {
    margin-right: 10px;
    transform: rotate(-45deg);
}

.sub-menu__button {
    position: absolute;
    bottom: 20px;
    background-color: transparent;
    outline: 0;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: .3s ease;
    color: #fff;
    cursor: pointer;
}

.sub-menu__button:hover {
    color: #ca4343;
}

.sub-menu__button i {
    margin-right: 10px;
}

.main-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 40px;
}

@media (max-width: 1000px) {
    .main-footer {
        padding: 0 20px;
        height: 80px;
    }
}

.main-footer img {
    max-height: 70px;
}

.main-footer--second {
    width: 100%;
    height: 90px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: -webkit-flex;
    padding: 0 40px;
}

@media (max-width: 1000px) {
    .main-footer--second {
        padding: 0 20px;
        height: 80px;
    }

    .main-footer--second img {
        max-width: 90px;
    }
}

.main-footer__content {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.main-footer__product {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: #A3A3A3;
}

@media (max-width: 1000px) {
    .main-footer__product {
        font-size: 18px;
    }
}

.main-footer__product span {
    color: #454748;
}

.calendar__group {
    margin: 20px 0;
}

.calendar__day {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #2B4F88;
    margin-bottom: 15px;
}

.calendar__row {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: #fff;
    padding: 15px 20px;
    position: relative;
}

.calendar__row:not(:last-child) {
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .calendar__row {
        padding: 15px 10px;
    }
}

.calendar__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

@media (max-width: 1000px) {
    .calendar__wrapper {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }
}

.calendar__start {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .calendar__start {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.calendar__date {
    width: 40px;
    margin-right: 20px;
    font-size: 20px;
    font-weight: 300;
    color: #454748;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1000px) {
    .calendar__date {
        width: initial;
        -ms-flex-order: 1;
        order: 1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .calendar__date {
        margin-bottom: 1rem;
    }
}

.calendar__date span {
    font-size: 32px;
    line-height: 20px;
}

@media (max-width: 1000px) {
    .calendar__date span {
        margin-right: 5px;
    }
}

.calendar__box--large {
    -ms-flex: 1;
    flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 600px) {
    .calendar__box--large {
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
}

.calendar__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #E4E4E4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .calendar__photo {
        -ms-flex: 0 0 56px;
        flex: 0 0 56px;
    }
}

.calendar__image {
    width: 100%;
    border-radius: 50%;
}

.calendar__content {
    margin-left: 16px;
}

.calendar__name {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #9B9B9B;
}

.calendar__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #454748;
    margin: 4px 0;
}

.calendar__oab {
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    color: #43ABD4;
}

.calendar__end {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 600px) {
    .calendar__end {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
    }
}

.calendar__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #454748;
}

.calendar__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .calendar__actions {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.calendar__actions .calendar__text {
    font-weight: 600;
    color: #C4C4C4;
    margin-top: 5px;
}

.calendar__hours {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 56px;
    background-color: #CA4343;
    padding: 5px 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #fff;
    text-align: center;
}

@media (max-width: 600px) {
    .calendar__history {
        position: absolute;
        top: 49%;
        right: 10px;
    }
}

.calendar__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
}

.calendar__icon {
    font-size: 14px;
    color: #C4C4C4;
}

.calendar__icon:not(:last-child) {
    margin-right: 16px;
}

.calendar__icon:first-child {
    transform: rotate(45deg);
}

.tablinks {
    outline: 0;
    padding: 8px 8px;
    background-color: transparent;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #9B9B9B;
}

.tablinks a {
    color: inherit;
}

.tablinks.active {
    border-bottom: 2px solid #CA4343;
    color: #2b4f88;
}

.card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

@media (max-width: 1000px) {
    .card:hover {
        transform: translateY(0);
    }
}

.card__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #454748;
}

.card__content {
    margin: 20px 0;
}

.card__item {
    background-color: #FAFAFA;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.card__item:not(:last-child) {
    margin-bottom: 8px;
}

.card__link, .wiki__link {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #454748;
    padding: 12px 15px;
    transition: .3s ease;
}

.card__link:hover, .wiki__link:hover {
    color: #CA4343;
}

.card__button {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    color: #CA4343;
    transition: .3s ease;
    border-radius: 4px;
    width: 70%;
    margin: 0 auto;
}

.card__button:hover {
    background-color: #CA4343;
    color: #fff;
}

.card-notification {
    background-color: #fff;
    padding: 35px;
    border-radius: 4px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.card-notification:not(:last-child) {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .card-notification {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.card-notification__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .card-notification__wrapper {
        display: block;
    }
}

.card-notification__title {
    font-size: 16px;
    font-weight: 600;
    color: #454748;
    margin-bottom: 5px;
}

.card-notification__profile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    margin-right: 10px;
    overflow: hidden;
}

.card-notification__img {
    width: 100%;
}

.card-notification__profile .main-header__user-image, .card-notification__profile .card-notification__img {
    width: auto;
    border-radius: 0;
    max-width: 70px;
    height: auto;
}

@media (max-width: 768px) {
    .card-notification__content {
        margin-bottom: 20px;
    }
}

.card-notification__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #454748;
    margin-bottom: 3px;
}

.card-notification__day {
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    color: #43ABD4;
}

.card-notification__button, .card-notification__button--not-read, .card-notification__button--read {
    font-family: inherit;
    border-radius: 4px;
    background-color: transparent;
    width: 140px;
    padding: 10px 5px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
    outline: 0;
}

.card-notification__button--not-read {
    border: 1px solid #2B4F88;
    color: #2B4F88;
}

.card-notification__button--not-read:hover {
    background-color: #2B4F88;
    color: #fff;
}

.card-notification__button--read {
    border: 1px solid #CA4343;
    color: #CA4343;
}

.card-notification__button--read:hover {
    background-color: #CA4343;
    color: #fff;
}

.galeria {
    column-count: 3;
    column-gap: 5px;
}

@media (max-width: 600px) {
    .galeria {
        column-count: 2;
    }
}

.galeria__item {
    break-inside: avoid-column;
    overflow: hidden;
}

.galeria__box {
    position: relative;
}

.galeria__img {
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: 5px;
    border-radius: 5px;
}

.notification {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 4px;
    padding: 20px 10px;
}

.notification__button {
    width: 120px;
    padding: 10px 5px;
    border: none;
    outline: 0;
    border-radius: 5px;
    margin-top: 20px;
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.notification__button:hover {
    background-color: transparent;
}

.notification .table-notification {
    width: 100%;
}

.notification .table-notification__thead {
    width: 100%;
}

@media (max-width: 768px) {
    .notification .table-notification__thead .table-notification__tr {
        display: none;
    }
}

.notification .table-notification__thead .table-notification__td {
    padding: 11px 5px;
}

.notification .table-notification__thead .table-notification__td:not(:first-child) {
    text-align: center;
    width: 110px;
    background-color: rgba(196, 196, 196, 0.1);
}

.notification .table-notification__thead .table-notification__icon, .notification .table-notification__thead .table-notification__tbody .table-notification__icon--mobile, .notification .table-notification__tbody .table-notification__thead .table-notification__icon--mobile {
    font-size: 16px;
    color: #9B9B9B;
}

@media (max-width: 768px) {
    .notification .table-notification__tbody .table-notification__tr {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.notification .table-notification__tbody .table-notification__td {
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #888888;
}

.notification .table-notification__tbody .table-notification__td:first-child {
    background-color: rgba(196, 196, 196, 0.1);
}

@media (max-width: 768px) {
    .notification .table-notification__tbody .table-notification__td:first-child {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.notification .table-notification__tbody .table-notification__td:not(:first-child) {
    text-align: center;
    width: 50px;
    background-color: rgba(196, 196, 196, 0.2);
}

@media (max-width: 768px) {
    .notification .table-notification__tbody .table-notification__td:not(:first-child) {
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
    }
}

.notification .table-notification__tbody .table-notification__icon, .notification .table-notification__tbody .table-notification__icon--mobile {
    font-size: 16px;
    color: #9B9B9B;
}

.notification .table-notification__tbody .table-notification__icon--mobile {
    display: none;
}

@media (max-width: 768px) {
    .notification .table-notification__tbody .table-notification__icon--mobile {
        display: block;
    }
}

.notification .table-notification__tbody .table-notification__check {
    cursor: pointer;
}

.inputFile {
    width: 185px;
    height: 40px;
    position: relative;
    overflow: hidden;
    background: red;
}

.inputFile span {
    display: block;
    position: absolute;
}

.inputFile input {
    position: absolute;
    right: 0;
    z-index: 2;
    font-size: 100px;
    /* Aumenta tamanho do campo */
    opacity: 0;
    filter: alpha(opacity=0);
}

.main-banner {
    width: calc(100% + 80px);
    height: 440px;
    margin: 0px -40px 0;
    position: relative;
}

@media (max-width: 1000px) {
    .main-banner {
        margin: -20px -20px 0;
        width: calc(100% + 40px);
        background: #fff;
        height: 365px;
    }

    .main-banner .slick-dots {
        display: -ms-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 15px;
        width: 100%;
    }

    .main-banner .slick-dots li {
        width: 10px;
        height: 10px;
        background: #545454;
        list-style: none;
        border-radius: 50%;
        margin: 0 3px;
    }

    .main-banner .slick-dots li.slick-active {
        background: #000;
    }

    .main-banner .slick-dots li button {
        display: none;
    }
}

.main-banner__pagination {
    position: absolute;
    bottom: 30px;
    left: 25px;
    width: calc(100% - 50px);
}

@media (max-width: 1000px) {
    .main-banner__pagination {
        display: none !important;
    }
}

.main-banner__pagination-item {
    padding: 0 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    opacity: .5;
    transition: .4s;
    outline: none;
    cursor: pointer;
}

.main-banner__pagination-item.slick-current {
    opacity: 1;
}

.main-banner__pagination-title {
    border-top: 2px solid #fff;
    padding-top: 10px;
}

.main-banner__item {
    height: 440px;
    position: relative;
    background: no-repeat center center;
    background-size: cover;
    padding: 40px 40px 100px;
    display: -ms-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .main-banner__item {
        height: 340px;
        padding: 20px;
    }
}

.main-banner__item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .5;
}

.main-banner__info {
    max-width: 330px;
    position: relative;
    z-index: 10;
    color: #fff;
}

@media (max-width: 1000px) {
    .main-banner__info {
        max-width: 100%;
    }
}

.main-banner__category {
    color: #E4E4E4;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 5px;
}

@media (max-width: 1000px) {
    .main-banner__category {
        font-size: 12px;
    }
}

.main-banner__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .main-banner__title {
        font-size: 20px;
        line-height: 26px;
    }
}

.main-banner__button {
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 4px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
}

@media (max-width: 1000px) {
    .main-banner__button {
        height: 36px;
        line-height: 36px;
        font-size: 13px;
    }
}

.main-banner__button:hover {
    background-color: #fff;
}

.comissoes {
    margin: 0 -40px;
    padding: 40px;
    background: #fff;
}

@media (max-width: 1000px) {
    .comissoes {
        padding: 40px 20px 20px;
        margin: 0 -20px;
    }
}

.comissoes__header {
    margin-bottom: 30px;
}

.comissoes__list {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    height: 160px;
}

@media (max-width: 1000px) {
    .comissoes__list {
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.comissoes__item {
    height: 180px;
    width: 10px;
    max-width: 238.83px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: no-repeat center center;
    background-size: cover;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    transition: .4s;
}

.comissoes__item:nth-child(5) {
    display: none;
}

@media (max-width: 1000px) {
    .comissoes__item {
        width: 40%;
        margin-bottom: 20px;
        margin-right: 20px !important;
        height: 180px;
    }

    .comissoes__item:nth-child(5) {
        display: flex;
    }

    .comissoes__item:nth-child(2n) {
        margin-right: 0 !important;
    }
}

.comissoes__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: .5;
    height: 100%;
}

.comissoes__item:not(:last-child) {
    margin-right: 30px;
}

.comissoes__item img {
    max-width: 44px;
    max-height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
}

.comissoes__item i {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1000px) {
    .comissoes__item i {
        font-size: 14px;
        height: 36px;
        width: 36px;
        line-height: 36px;
        margin-bottom: 8px;
    }
}

.comissoes__list:hover .comissoes__item:not(:hover) {
    opacity: .6;
    transform: scale(0.97);
}

.comissoes__all::before {
    opacity: 1;
}

.comissoes__all i {
    background-color: transparent;
    box-shadow: inset 0 0 0 3px #fff;
    font-size: 24px;
    color: #fff;
}

.comissoes__title {
    font-size: 14px;
    line-height: 20px;
    position: relative;
    z-index: 10;
    color: #fff;
    font-weight: 700;
    text-align: center;
    word-break: break-word;
}

@media (max-width: 1000px) {
    .comissoes__title {
        font-size: 14px;
    }
}

.content-wrap {
    padding: 50px 0;
}

@media (max-width: 1000px) {
    .content-wrap {
        padding: 40px 0;
    }
}

.abas {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 25px 0;
}

.abas__item {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #9B9B9B;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .abas__item {
        font-size: 14px;
    }
}

.abas__item:not(:last-child) {
    margin-right: 40px;
}

@media (max-width: 1000px) {
    .abas__item:not(:last-child) {
        margin-right: 20px;
    }
}

.content__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1000px) {
    .content__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.content__side {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .content__side {
        width: 100%;
    }
}

.sidebar {
    width: 30%;
    max-width: 350px;
    margin-left: 30px;
}

@media (max-width: 1000px) {
    .sidebar {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 60px;
    }
}

.sidebar__box {
    padding: 25px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1000px) {
    .sidebar__box {
        padding: 20px;
    }
}

.sidebar__box:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .sidebar__box:not(:last-child) {
        margin-bottom: 20px;
    }
}

.sidebar__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #454748;
    margin-bottom: 20px;
}

.sidebar__see-more {
    margin-top: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: .4s;
    cursor: pointer;
}

.sidebar__see-more i {
    margin-right: 5px;
}

.side-eventos__list {
    margin-bottom: 20px;
}

.side-eventos__item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #FAFAFA;
    transition: .4s;
}

.side-eventos__item:first-child {
    padding-top: 0;
}

.side-eventos__list:hover .side-eventos__item:not(:hover) {
    opacity: .6;
    transform: scale(0.97);
}

.side-eventos__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin: 0 10px 0 20px;
    font-size: 12px;
    line-height: 16px;
    color: #454748;
    word-break: break-word;
}

.side-eventos__title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 2px;
}

@media (max-width: 1000px) {
    .side-eventos__title {
        font-size: 13px;
    }
}

.side-eventos__date {
    text-align: center;
    line-height: 20px;
    font-weight: 300;
    color: #454748;
    text-transform: uppercase;
}

.side-eventos__day {
    font-size: 32px;
    line-height: 28px;
}

@media (max-width: 1000px) {
    .side-eventos__day {
        font-size: 26px;
        line-height: 22px;
    }
}

.side-eventos__month {
    font-size: 20px;
}

@media (max-width: 1000px) {
    .side-eventos__month {
        font-size: 16px;
    }
}

.side-eventos__year {
    font-size: 18px;
}

@media (max-width: 1000px) {
    .side-eventos__year {
        font-size: 14px;
    }
}

.side-eventos__hour {
    background: #333;
    color: #fff;
    width: 56px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .side-eventos__hour {
        font-size: 13px;
        height: 22px;
        line-height: 22px;
    }
}

.side-files {
    margin-bottom: 20px;
}

.side-files:hover .side-files__item:not(:hover) {
    opacity: .6;
    transform: scale(0.97);
}

.side-files__item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #FAFAFA;
    text-decoration: none;
    transition: .4s;
}

.side-files__item:first-child {
    padding-top: 0;
}

.side-files__item i {
    font-size: 34px;
    color: #2B4F88;
    width: 40px;
    text-align: center;
}

@media (max-width: 1000px) {
    .side-files__item i {
        font-size: 28px;
        width: 35px;
    }
}

.side-files__item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.side-files__info {
    margin: 0 15px;
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
}

@media (max-width: 1000px) {
    .side-files__info {
        font-size: 13px;
        line-height: 18px;
    }
}

.side-files__title {
    font-weight: 500;
    color: #454748;
}

.side-files__format {
    height: 24px;
    line-height: 24px;
    text-align: center;
    width: 60px;
    background: #FAFAFA;
    border-radius: 4px;
    font-size: 14px;
    color: #454748;
}

@media (max-width: 1000px) {
    .side-files__format {
        font-size: 13px;
        height: 22px;
        line-height: 22px;
    }
}

.links__list {
    margin-bottom: 20px;
}

.links__item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #FAFAFA;
    text-decoration: none;
    transition: .4s;
}

.links__item:first-child {
    padding-top: 0;
}

.links__item i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
}

.links__list:hover .links__item:not(:hover) {
    opacity: .6;
    transform: scale(0.97);
}

.links__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    font-size: 14px;
    line-height: 22px;
    color: #888888;
}

@media (max-width: 1000px) {
    .links__info {
        font-size: 13px;
        line-height: 20px;
    }
}

.links__title {
    font-weight: 500;
    color: #454748;
}

.post-search {
    position: relative;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .post-search {
        margin-bottom: 15px;
    }
}

.post-search__button {
    position: absolute;
    left: 0;
    top: 0;
    height: 46px;
    width: 70px;
    text-align: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    color: #454748;
    cursor: pointer;
    transition: .4s;
}

@media (max-width: 1000px) {
    .post-search__button {
        height: 42px;
        width: 50px;
        font-size: 14px;
    }
}

.post-search__button:hover {
    color: #000;
}

.post-search__input {
    border: 1px solid #E4E4E4;
    height: 48px;
    line-height: 46px;
    background: #fff;
    width: 100%;
    font-size: 14px;
    color: #454748;
    padding: 0 30px 0 70px;
    outline: none;
    transition: .4s;
}

@media (max-width: 1000px) {
    .post-search__input {
        height: 42px;
        line-height: 40px;
        padding: 0 20px 0 50px;
        font-size: 13px;
    }
}

.post-search__input:focus {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.post__item {
    padding: 25px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
}

@media (max-width: 1000px) {
    .post__item {
        padding: 20px;
    }
}

.post__item:not(:last-child) {
    margin-bottom: 25px;
}

.post__header {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.post__header .open-options {
    width: 15px;
    text-align: center;
}

.post__header .post__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7px;
    position: relative;
}

.post__header .post__row button {
    background-color: transparent;
    border: 0;
    color: #C4C4C4;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: .4s;
}

.post__header .post__row button:hover {
    color: #999;
}

@media (max-width: 1000px) {
    .post__header .post__row button {
        font-size: 13px;
    }
}

.post__header .post__row button:not(:last-child) {
    margin-right: 12px;
}

.post__user {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .post__user {
        width: 10px;
        -ms-flex-positive: 2;
        flex-grow: 2;
        margin-right: 15px;
    }
}

.post__user-location {
    font-weight: 700;
    font-size: 12px;
    color: #43ABD4;
}

@media (max-width: 1000px) {
    .post__user-location {
        font-size: 11px;
    }
}

.post__user-name {
    font-size: 14px;
    line-height: 18px;
    color: #454748;
    margin-bottom: 4px;
}

@media (max-width: 1000px) {
    .post__user-name {
        font-size: 12px;
        line-height: 16px;
    }
}

.post__user-name strong {
    font-weight: 700;
}

.post__user-name span {
    color: #9B9B9B;
}

.post__picture {
    width: 48px;
    position: relative;
    margin-right: 10px;
}

@media (max-width: 1000px) {
    .post__picture {
        width: 40px;
    }
}

.post__picture i {
    border: 1px solid #EFF0F5;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 14px;
    background: #fff;
    border-radius: 50%;
    font-size: 8px;
}

.post__picture img:last-child {
    max-width: 16px;
    max-height: 16px;
    border: 1px solid #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
}

.post__picture img {
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    vertical-align: middle;
}

@media (max-width: 1000px) {
    .post__picture img {
        max-width: 40px;
        max-height: 40px;
    }
}

.post__date {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #C4C4C4;
    text-align: right;
	display:none;
}

@media (max-width: 1000px) {
    .post__date {
        font-size: 11px;
    }
}

.post__actions-menu {
    position: absolute;
    right: -12px;
    top: 25px;
    background: #fff;
    border: 1px solid #E4E4E4;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    width: 110px;
    display: none;
}

.post__actions-menu::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 10px 7px;
    border-color: transparent transparent #e4e4e4 transparent;
    position: absolute;
    right: 10px;
    top: -10px;
}

.post__actions-menu::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 10px 7px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    right: 10px;
    top: -8px;
}

.post__actions-item {
    padding: 5px 15px;
    line-height: 22px;
    font-size: 12px;
    font-weight: 500;
    color: #9B9B9B;
    text-decoration: none;
    display: block;
    transition: .4s;
    position: relative;
    z-index: 10;
}

.post__actions-item:hover {
    background: #e4e4e4;
    color: #333;
}

.post__actions-item:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}

.post__thumbnail {
    width: 100%;
    vertical-align: middle;
    height: auto;
}

.post__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #454748;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
}

@media (max-width: 1000px) {
    .post__title {
        font-size: 14px;
        line-height: 18px;
    }
}

.post__category {
    font-size: 12px;
    line-height: 14px;
    color: #454748;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .post__category {
        font-size: 11px;
    }
}

.post__excerpt {
    font-size: 14px;
    line-height: 20px;
    color: #454748;
    margin-bottom: 25px;
}

@media (max-width: 1000px) {
    .post__excerpt {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 20px;
    }
}

.post__excerpt-link {
    font-weight: 700;
    text-decoration: none;
    transition: .4s;
}

.post__footer {
    margin: 25px -25px -25px;
    padding: 25px;
    border-top: 1px solid #FAFAFA;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .post__footer {
        margin: 20px -20px -20px;
        padding: 20px;
    }
}

.post__numbers {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.post__number-button {
    background-color: transparent;
    padding: 0;
    border: 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #C4C4C4;
    cursor: pointer;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    outline: none;
    -ms-flex-align: center;
    align-items: center;
    transition: .4s;
}

.post__number-button:hover {
    color: #999;
}

@media (max-width: 1000px) {
    .post__number-button {
        font-size: 12px;
    }
}

.post__number-button:not(:last-child) {
    margin-right: 25px;
}

.post__number-button i {
    font-size: 18px;
    margin-right: 8px;
}

@media (max-width: 1000px) {
    .post__number-button i {
        font-size: 16px;
    }
}

.post__event-hour {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    height: 24px;
    line-height: 24px;
    width: 56px;
    text-align: center;
    border-radius: 4px;
}

.post__event-date {
    width: 110px;
    min-height: 110px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    margin-right: 15px;
}

@media (max-width: 1000px) {
    .post__event-date {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.post__event-day {
    font-size: 32px;
    line-height: 28px;
}

.post__event-month {
    font-size: 20px;
}

.post__event-year {
    font-size: 18px;
}

.post__file {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #E4E4E4;
    background: #FAFAFA;
    padding: 15px;
}

@media (max-width: 1000px) {
    .post__file {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.post__file-icon {
    width: 110px;
    min-height: 110px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    text-align: center;
    margin-right: 15px;
    transition: .4s;
}

@media (max-width: 1000px) {
    .post__file-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.post__file-icon:hover {
    transform: scale(0.97);
}

.post__file-icon i {
    font-size: 26px;
    margin-bottom: 5px;
}

.post__file-info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .post__file-info {
        width: 100%;
        text-align: center;
    }
}

.post__file-type {
    font-size: 12px;
    font-weight: 700;
    color: #43ABD4;
    margin-bottom: 8px;
}

.post__file-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #454748;
}

.post__file-category {
    font-size: 12px;
    line-height: 16px;
    color: #454748;
    margin-bottom: 10px;
}

.post__file-name {
    font-size: 14px;
    line-height: 24px;
    color: #888888;
}

@media (max-width: 1000px) {
    .post__file-name {
        font-size: 12px;
        line-height: 20px;
    }
}

.post__file-format {
    font-size: 14px;
    line-height: 24px;
    color: #454748;
}

@media (max-width: 1000px) {
    .post__file-format {
        font-size: 12px;
        line-height: 20px;
    }
}

.login {
    background: url(../images/bg-login.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.login__center {
    max-width: 450px;
    width: 90%;
}

.login__title {
    color: #fff;
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

@media (max-width: 1000px) {
    .login__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
    }
}

.login__box {
    border-radius: 10px;
    overflow: hidden;
    background: #F7F7F7;
}

.login__text {
    text-align: center;
    font-size: 14px;
    padding: 10px 45px;
    font-weight: 500;
    color: #888888;
}

@media (max-width: 1000px) {
    .login__text {
        padding: 10px 25px;
    }
}

.login__link {
    color: #CA4343;
    text-decoration: underline;
    cursor: pointer;
}

.login__header {
    width: 100%;
    height: 180px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 1000px) {
    .login__header {
        height: 100px;
    }
}

.login__header img {
    position: relative;
    z-index: 10;
    max-width: 60%;
}

.login__header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: url(../images/bg-login-header.png) no-repeat left center;*/
    background-size: contain;
}

.login__form {
    background: #F7F7F7;
    padding: 30px 45px;
}

@media (max-width: 1000px) {
    .login__form {
        padding: 25px;
    }
}

.login__form .ui-button {
    width: 100%;
}

.login__actions {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.login__forgot {
    font-size: 14px;
    font-weight: 700;
    color: #AAAAAA;
    transition: .4s;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .login__forgot {
        font-size: 12px;
    }
}

.login__forgot:hover {
    color: #2B4F88;
}

.login__field {
    margin-bottom: 20px;
}

.login__check {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #2B4F88;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .login__check {
        font-size: 12px;
    }
}

.login__check input {
    margin-right: 5px;
}

.login__footer {
    height: 70px;
    width: 100%;
    background: #fff;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: #454748;
}

@media (max-width: 1000px) {
    .login__footer {
        height: 55px;
        font-size: 16px;
    }
}

.login__footer span {
    color: #A3A3A3;
}

.forgot__back {
    margin: 25px 25px 0;
    font-size: 20px;
    color: #000;
    transition: .4s;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .forgot__back {
        font-size: 18px;
    }
}

.forgot__back:hover {
    color: #C92525;
}

.forgot__title {
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    color: #454748;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .forgot__title {
        font-size: 18px;
        line-height: 22px;
    }
}

.forgot__text {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #888888;
    max-width: 310px;
    margin: 0 auto 30px;
}

@media (max-width: 1000px) {
    .forgot__text {
        font-size: 14px;
        line-height: 20px;
    }
}

.redefine__options {
    margin: 0 -45px 30px;
    background: #f0f0f0;
    padding: 25px 45px;
    font-size: 14px;
    line-height: 24px;
    color: #888888;
}

.redefine__options p::before {
    content: '';
    width: 4px;
    height: 4px;
    display: inline-block;
    border-radius: 50%;
    background: #CA4343;
    position: relative;
    top: -2px;
    margin-right: 10px;
}

.success__box {
    padding: 35px 60px;
}

@media (max-width: 1000px) {
    .success__box {
        padding: 30px;
    }
}

.success__box .ui-button {
    width: 100%;
}

.success__text {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
    margin-bottom: 40px;
}

.success__title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #454748;
    margin-bottom: 15px;
}

.success__icon {
    display: block;
    margin: 0 auto 25px;
    font-size: 96px;
    color: #2B4F88;
    text-align: center;
}

@media (max-width: 1000px) {
    .success__icon {
        font-size: 80px;
    }
}

.primeiro-acesso {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.primeiro-acesso.informacoes{
    padding-top: 20px;
}

.primeiro-acesso::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(./../images/bg-primeiro-acesso.png) no-repeat center left;
    background-size: contain;
}

.primeiro-acesso__box {
    width: 90%;
    max-width: 300px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.primeiro-acesso__box .primary-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    border: 1px solid #FFFFFF;
}

.primeiro-acesso__box.bigger {
    max-width: 580px;
}

.primeiro-acesso__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.primeiro-acesso__logo {
    display: block;
    margin: 0 auto 50px;
    text-align: center;
}

.primeiro-acesso.informacoes .primeiro-acesso__logo{
    width: 150px;
    margin-bottom: 30px;
}

.primeiro-acesso__button {
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 0;
    display: block;
    text-decoration: none;
    padding: 0;
    margin-top: 40px;
    transition: .4s;
    cursor: pointer;
}

.primeiro-acesso__button:hover {
    background: #fff;
}

.primeiro-acesso__step {
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #43ABD4;
    margin-bottom: 5px;
}

.primeiro-acesso__step-title {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.primeiro-acesso.informacoes .primeiro-acesso__step-title{
    margin-bottom: 0;
}

.primeiro-acesso__desc {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    width: 300px;
    margin: 0 auto 30px;
}

.primeiro-acesso__scroll {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #888888;
    height: 300px;
    margin-bottom: 30px;
}

.primeiro-acesso__scroll p:not(:last-child) {
    margin-bottom: 20px;
}

.primeiro-acesso__actions {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .primeiro-acesso__actions {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.primeiro-acesso__download {
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    box-shadow: inset 0 0 0 2px #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .4s;
    border-radius: 5px;
}

@media (max-width: 1000px) {
    .primeiro-acesso__download {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

.primeiro-acesso__download:hover {
    background: #fff;
    color: #000;
}

.primeiro-acesso__download i {
    margin-right: 5px;
}

.primeiro-acesso__check {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.primeiro-acesso__check input {
    display: none;
}

.primeiro-acesso__check span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    box-shadow: inset 0 0 0 1px #fff;
    margin-right: 10px;
    text-align: center;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    border-radius: 8px;
}

.primeiro-acesso__check input:checked ~ span::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
}

.primeiro-acesso__check p {
    font-size: 13px;
    font-weight: 700;
}

.primeiro-acesso__retry {
    width: 100%;
    max-width: 320px;
    margin: 15px auto 0;
    display: block;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px #fff;
    color: #fff;
    transition: .4s;
}

.primeiro-acesso__retry:hover {
    background: #fff;
    color: #000;
}

.primeiro-acesso__photo input {
    display: none;
}

.primeiro-acesso__photo-buttons-pular {
    margin-top: 40px;
}

.primeiro-acesso__photo-buttons {
    margin-top: 40px;
    display: none;
}

.primeiro-acesso.informacoes .primeiro-acesso__buttons{
    margin-top: 20px;
}

.primeiro-acesso__photo-preview {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    display: none;
    margin: 0 auto;
    cursor: pointer;
}

.primeiro-acesso__photo-label {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: #EBEBEB;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    color: #C6C6C7;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    margin: 0 auto;
    transition: .4s;
}

.primeiro-acesso__photo-label:hover {
    background: #C6C6C7;
    color: #eee;
}

.primeiro-acesso__photo-label .fa-user {
    font-size: 65px;
}

.primeiro-acesso__photo-label p {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 85%;
    margin: 15px auto 0;
}

.primeiro-acesso__photo-label p i {
    font-size: 24px;
}

.primeiro-acesso__photo-label p span {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-left: 10px;
    text-align: left;
}

.primeiro-acesso__form {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
}

.primeiro-acesso__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 5px;
    width: 100%;
}

.primeiro-acesso__input {
    width: 100%;
    -ms-flex-positive: 2;
    flex-grow: 2;
    height: 40px;
    line-height: 38px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #E4E4E4;
    font-size: 14px;
    color: #888888;
}

.primeiro-acesso__input:-ms-input-placeholder {
    color: #888;
}

.primeiro-acesso__input::placeholder {
    color: #888;
}

.primeiro-acesso__row {
    width: 100%;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

.primeiro-acesso__row .primeiro-acesso__field {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.primeiro-acesso__row .primeiro-acesso__field.bigger {
    -ms-flex-positive: 5;
    flex-grow: 5;
}

.primeiro-acesso__row .primeiro-acesso__field:not(:last-child) {
    margin-right: 15px;
}

.primeiro-acesso__field {
    margin-bottom: 20px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.primeiro-acesso.informacoes .primeiro-acesso__field{
    margin-bottom: 5px;
}

.success-lb {
    display: none;
    max-width: 320px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    padding: 60px 40px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.success-lb .fancybox-close-small {
    display: none !important;
}

.success-lb__icon {
    color: #fff;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 25px;
}

.success-lb__title {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

.success-lb__button {
    width: 160px;
    display: block;
    margin: 45px auto 0;
    background: #fff;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #454748;
    text-decoration: none;
    transition: .4s;
}

.success-lb__button:hover {
    background-color: transparent;
    box-shadow: inset 0 0 0 2px #fff;
    color: #fff;
}

.page__header {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 40px;
    height: 105px;
    background: #fff;
    margin: 0px -40px 35px;
}

@media (max-width: 1000px) {
    .page__header {
        margin: -20px -20px 20px;
        padding: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
    }
}

.page__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #454748;
    margin-bottom: 2px;
}

@media (max-width: 1000px) {
    .page__title {
        font-size: 20px;
        line-height: 26px;
    }
}

.page__breadcrumb {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #919191;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .page__breadcrumb {
        font-size: 12px;
    }
}

.page__back {
    width: 16px;
    height: 16px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #CA4343;
    border-radius: 5px;
    font-size: 8px;
    text-decoration: none;
    margin-right: 8px;
    transition: .4s;
}

.page__link {
    color: #616161;
    text-decoration: none;
}

.page__link::after {
    content: '.';
    margin: 0 5px;
}

.page__button {
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0 25px;
    border-radius: 4px;
    color: #fff;
    outline: none;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
}

@media (max-width: 1000px) {
    .page__button {
        width: 100%;
        margin-top: 10px;
        height: 36px;
        line-height: 36px;
        font-size: 12px;
    }
}

.page__button:hover {
    background-color: transparent !important;
}

.page__search {
    position: relative;
}

.list__header {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin: 40px 0;
}

@media (max-width: 1000px) {
    .list__header {
        margin: 20px 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.list__header .abas {
    margin: 0;
}

@media (max-width: 1000px) {
    .list__header .abas {
        width: 100%;
        margin-bottom: 15px;
    }
}

.list__total {
    font-size: 13px;
    font-weight: 500;
    color: #616161;
}

.comissoes-page__list {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -30px;
}

.comissoes-page__item {
    width: calc(16% - 24px);
    height: 180px;
    margin-bottom: 30px;
    transition: .4s;
    position: relative;
}

@media (max-width: 1024px) {
    .comissoes-page__item {
        width: calc(50% - 7.5px);
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .comissoes-page__item:nth-child(2n+1) {
        margin-right: 15px !important;
    }
}

.comissoes-page__item .post__header-actions {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 10px;
}

.usuario__content .comissoes-page__item button.open-options, .comissoes-page__item .open-options {
    font-size: 16px;
    color: #fff;
    outline: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.comissoes-page__item .post__actions-menu {
    right: -3px;
    top: 35px;
    z-index: 10;
    width: 120px;
}

.comissoes-page__item:not(:nth-child(6n)) {
    margin-right: 30px;
}

.comissoes-page__list:hover .comissoes-page__item:not(:hover) {
    opacity: .7;
    transform: scale(0.97);
}

.comissoes-page__box {
    position: relative;
    width: 100%;
    height: 180px;
    background: no-repeat center center;
    background-size: cover;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    padding: 15px;
    overflow: hidden;
    border-radius: 6px;
}

.comissoes-page__box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}

.comissoes-page__box img {
    max-width: 44px;
    max-height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.comissoes-page__box > i {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 10px;
    line-height: 40px;
    text-align: center;
    position: relative;
    z-index: 10;
    font-size: 16px;
}

.comissoes-page__users {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 10;
    margin-top: 5px;
}

.lb-form {
    padding: 30px;
    border-radius: 8px;
    width: 440px;
    display: none;
}

.lb-form__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #454748;
    margin-bottom: 20px;
}

.lb-form .fancybox-close-small {
    right: 5px;
    top: 15px;
}

.lb-form__text {
    font-size: 16px;
    line-height: 24px;
    color: #888888;
    margin-bottom: 10px;
}

.lb-form__field {
    margin-bottom: 15px;
}

.lb-form__label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #888888;
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
}

.lb-form__input, .lb-form__textarea {
    border: 1px solid #E4E4E4;
    background: #fff;
    height: 40px;
    line-height: 38px;
    padding: 0 15px;
    font-size: 14px;
    color: #888;
    width: 100%;
}

.lb-form__button {
    padding: 0 25px;
    min-width: 120px;
    height: 40px;
    line-height: 40px;
    border: 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
}

.lb-form__button:hover {
    background-color: transparent;
}

.comissao__header {
    margin: 0 -40px 0;
    height: 340px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: no-repeat center center;
    background-size: cover;
}

@media (max-width: 1000px) {
    .comissao__header {
        height: 250px;
        margin: -20px -20px 0;
    }
}

.comissao__header .post__header-actions {
    position: absolute;
    right: 40px;
    top: 20px;
}

@media (max-width: 1000px) {
    .comissao__header .post__header-actions {
        right: 20px;
    }
}

.comissao__header .post__header-actions .open-options {
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.comissao__header .post__actions-menu {
    width: 180px;
}

.comissao__header .post__actions-item {
    cursor: pointer;
}

.comissao__header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .45;
}

.comissao__featured {
    position: relative;
    z-index: 10;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.comissao__featured-button {
    font-size: 13px;
    font-weight: 700;
    width: 140px;
    height: 40px;
    line-height: 40px;
    display: block;
    margin: 10px auto 0;
    transition: .4s;
    cursor: pointer;
}

.comissao__featured-button:hover {
    background-color: transparent;
}

.comissao__featured-button input {
    display: none;
}

.comissao__featured i {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 10px;
}

.comissao__profile {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 175px;
    padding-bottom: 20px;
    margin: 0 40px;
}

@media (max-width: 1000px) {
    .comissao__profile {
        margin: 0 20px;
        padding-left: 120px;
    }
}

.comissao__logo {
    position: absolute;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E0E0E0;
    left: 0;
    bottom: -40px;
}

@media (max-width: 1000px) {
    .comissao__logo {
        width: 100px;
        height: 100px;
        bottom: 10px;
    }
}

.comissao__logo-change {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transition: .4s;
}

.comissao__logo:hover .comissao__logo-change {
    opacity: 1;
}

.comissao__logo img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.comissao__logo-empty {
    width: 100%;
    height: 100%;
    position: absolute;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 45px;
    color: #C4C4C4;
    cursor: pointer;
}

.comissao__title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1000px) {
    .comissao__title {
        font-size: 20px;
        line-height: 26px;
    }
}

.comissao__members {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #43ABD4;
}

@media (max-width: 1000px) {
    .comissao__members {
        font-size: 14px;
    }
}

.comissao__menu {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 56px;
    line-height: 56px;
    background: #fff;
    padding: 0 40px 0 215px;
    margin: 0 -40px 30px;
}

@media (max-width: 1000px) {
    .comissao__menu {
        padding: 0 20px;
        margin: 0 -20px 20px;
        overflow: auto;
    }
}

.comissao__menu-scroll {
    width: 100%;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 56px;
}

@media (max-width: 1000px) {
    .comissao__menu-scroll {
        width: auto;
    }
}

.comissao__menu a {
    font-size: 14px;
    color: #454748;
    font-weight: 500;
    text-decoration: none;
    transition: .4s;
}

@media (max-width: 1000px) {
    .comissao__menu a {
        margin-right: 20px;
    }
}

.comissao__sobre {
    padding: 25px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 30px;
}

.comissao__sobre-header {
    margin-bottom: 20px;
    position: relative;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.comissao__sobre-header .open-options {
    font-size: 16px;
    color: #9B9B9B;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
}

.comissao__sobre-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #454748;
}

.comissao__text {
    font-size: 14px;
    line-height: 18px;
    color: #9B9B9B;
}

@media (max-width: 1000px) {
    .comissao__text {
        font-size: 13px;
        line-height: 16px;
    }
}

.comissao__text p:not(:last-child) {
    margin-bottom: 18px;
}

.quote-empty-box {
    font-size: 14px;
    line-height: 20px;
    color: #888888;
    margin-bottom: 50px;
}

.quote-empty-box a {
    transition: .4s;
    cursor: pointer;
    text-decoration: none;
}

.quote-empty-box a:hover {
    color: #000;
}

.lightbox {
    padding: 30px 25px;
    background: #fff;
    border-radius: 8px;
    display: none;
    max-width: 90%;
}

@media (max-width: 1000px) {
    .lightbox {
        padding: 20px;
    }
}

.lightbox__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #454748;
    margin-bottom: 20px;
}

@media (max-width: 1000px) {
    .lightbox__title {
        font-size: 18px;
        line-height: 22px;
    }
}

.lightbox .fancybox-close-small {
    right: 10px;
    top: 20px;
}

@media (max-width: 1000px) {
    .lightbox .fancybox-close-small {
        top: 10px;
        right: 5px;
    }
}

.lb-featured {
    width: 100%;
    max-width: 900px;
}

.lb-featured__image {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.lb-featured__image img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.lb-featured__hint {
    position: absolute;
    padding: 5px 20px;
    line-height: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.lb-logo {
    width: 100%;
    max-width: 720px;
}

.lb-logo__hint {
    display: block;
    width: 100%;
    height: 32px;
    line-height: 32px;
    background: #454748;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.lb-logo__button {
    display: block;
    margin: 10px auto;
}

.lb-comissao {
    max-width: 670px;
}

.lb-comissao__desc {
    font-size: 16px;
    line-height: 24px;
    color: #888888;
    margin-bottom: 15px;
}

.lb-comissao .lb-form__input, .lb-comissao .lb-form__textarea {
    height: 150px;
    padding: 10px 15px;
    line-height: 20px;
    resize: none;
}

.lb-sobre {
    width: 740px;
    font-size: 14px;
    line-height: 18px;
    color: #9B9B9B;
}

.lb-sobre p:not(:last-child) {
    margin-bottom: 18px;
}

.eventos-page__list {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
    margin-bottom: -30px;
}

.eventos-page__list:hover .eventos-page__item:not(:hover) {
    opacity: .6;
    transform: scale(0.98);
}

.eventos-page__item {
    width: calc(33.3333% - 20px);
    margin-bottom: 30px;
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: .4s;
}

@media (max-width: 1000px) {
    .eventos-page__item {
        width: 100%;
        margin-right: 0 !important;
    }
}

.eventos-page__item:not(:nth-child(3n)) {
    margin-right: 30px;
}

.eventos-page__item-content {
    padding: 15px;
    display: block;
    text-decoration: none;
}

.eventos-page__item-header {
    width: 100%;
    position: relative;
    background: no-repeat center center;
    background-size: cover;
}

.eventos-page__item-header.empty {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.eventos-page__item-header.empty::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg-primeiro-acesso.png) no-repeat center left;
    background-size: cover;
}

.eventos-page__item-header.with-image {
    background: no-repeat center center;
    background-size: cover;
}

.eventos-page__item-header.with-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .45;
}

.eventos-page__item .post__header-actions {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px;
    z-index: 10;
}

.eventos-page__item .post__header-actions button {
    width: 15px;
    text-align: center;
}

.eventos-page__item .post__header-actions .fa-thumbtack {
    background-color: transparent;
    border: 0;
    color: #fff;
    margin-right: 10px;
}

.eventos-page__item .post__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.eventos-page__item .post__date {
    color: #fff;
}

.eventos-page__item .side-eventos__date {
    margin-right: 20px;
}

.eventos-page__item .open-options {
    font-size: 16px;
    color: #fff;
    outline: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.eventos-page__item .post__actions-menu {
    right: 4px;
    top: 35px;
    z-index: 10;
    width: 120px;
}

.eventos-page__box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.eventos-page__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    font-size: 12px;
    line-height: 20px;
    color: #454748;
}

.eventos-page__info .side-eventos__title {
    font-size: 16px;
}

.eventos-page__footer {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #E4E4E4;
}

.eventos-page__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.eventos-page__user {
    font-size: 13px;
    line-height: 20px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #888888;
}

.eventos-page__user img {
    border-radius: 50%;
    max-width: 24px;
    max-height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.eventos-page__hour {
    color: #fff;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
}

.eventos-page__file-format {
    color: #454748;
    height: 24px;
    background: #FAFAFA;
    line-height: 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
}

.eventos-page__file {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 10;
}

.eventos-page__file i {
    display: block;
    margin: 0 auto 5px;
    font-size: 50px;
    line-height: 50px;
}

.eventos-page__oabrjcast {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    position: relative;
    z-index: 10;
}

.eventos-page__oabrjcast strong {
    font-weight: 700;
}

.filter {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

@media (max-width: 1000px) {
    .filter {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.filter__field {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-right: 20px;
    position: relative;
}

@media (max-width: 1000px) {
    .filter__field {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.filter__field--bigger {
    -ms-flex-positive: 3;
    flex-grow: 3;
}

.filter__field--huge {
    -ms-flex-positive: 5;
    flex-grow: 5;
}

.filter__icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #454748;
}

.filter__input, .filter__input--date {
    width: 100%;
    height: 48px;
    line-height: 48px;
    background: #fff;
    border-radius: 4px;
    padding: 0 20px;
    font-size: 16px;
    color: #666;
    outline: none;
    border: 0;
    border: 1px solid #ccc;
}

@media (max-width: 1000px) {
    .filter__input, .filter__input--date {
        height: 42px;
        line-height: 42px;
        font-size: 13px;
    }
}

.filter__input:-ms-input-placeholder, .filter__input--date:-ms-input-placeholder {
    color: #C4C4C4;
}

.filter__input::placeholder, .filter__input--date::placeholder {
    color: #C4C4C4;
}

.filter__input--date {
    padding-right: 35px;
}

.filter__date-label {
    font-size: 16px;
    line-height: 48px;
    width: 48px;
    text-align: center;
    color: #454748;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .filter__date-label {
        line-height: 42px;
        font-size: 15px;
    }
}

.filter__button {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border: 0;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    transition: .4s;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .filter__button {
        width: 100%;
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }
}

.filter__button:hover {
    background-color: transparent;
}

.links-page__list {
    margin-bottom: -15px;
}

.links-page__list:hover .links-page__item:not(:hover) {
    opacity: .7;
    transform: scale(0.98);
}

.links-page__item {
    padding: 15px 75px 15px 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    transition: .4s;
}

.links-page__item .post__header-actions {
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px;
    z-index: 10;
}

.links-page__item .post__header-actions button {
    width: 15px;
    text-align: center;
}

.links-page__item .post__header-actions .fa-thumbtack {
    background-color: transparent;
    border: 0;
    color: #C4C4C4;
    margin-right: 10px;
}

.links-page__item .post__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.links-page__item .post__date {
    color: #C4C4C4;
}

.links-page__item .side-eventos__date {
    margin-right: 20px;
}

.links-page__item .open-options {
    font-size: 16px;
    color: #C4C4C4;
    outline: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.links-page__item .post__actions-menu {
    right: 4px;
    top: 40px;
    z-index: 10;
    width: 120px;
}

.links-page__icon {
    width: 80px;
    height: 80px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 34px;
    color: #fff;
    margin-right: 15px;
}

.links-page__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #454748;
}

.links-page__category {
    font-size: 12px;
    line-height: 20px;
    color: #454748;
}

.links-page__link {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
    margin-top: 5px;
    display: block;
    transition: .4s;
}

.links-page__link i {
    font-size: 12px;
    margin-right: 2px;
}

.usuarios__table {
    width: 100%;
    padding: 20px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
}

@media (max-width: 1000px) {
    .usuarios__table tr {
        display: block;
    }

    .usuarios__table tr:not(:first-child) {
        border-top: 1px solid #e4e4e4;
        padding: 15px 0;
    }
}

.usuarios__table th {
    padding-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: #454748;
}

@media (max-width: 1000px) {
    .usuarios__table th {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.usuarios__table td {
    border-top: 1px solid #E4E4E4;
    padding: 20px 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #454748;
}

@media (max-width: 1000px) {
    .usuarios__table td {
        display: block;
        width: 100% !important;
        border-top: 0;
        padding: 5px 0 !important;
        text-align: center;
        font-size: 13px;
    }
}

.usuarios__table td:first-child {
    width: 25%;
}

.usuarios__table td:not(:last-child) {
    padding-right: 25px;
}

.usuarios__table .post__header-actions {
    position: relative;
}

.usuarios__table .post__actions-menu {
    z-index: 15;
}

.usuarios__table .open-options {
    font-size: 16px;
    line-height: 20px;
    background-color: transparent;
    border: 0;
    color: #C4C4C4;
    width: 20px;
    outline: none;
    text-align: center;
}

.usuarios__table .post__actions-menu {
    right: -8px;
}

@media (max-width: 1000px) {
    .usuarios__table .post__actions-menu {
        right: calc(50% - 18px);
    }
}

.usuarios__blue, .usuarios__unidade {
    color: #43ABD4 !important;
}

.usuarios__user {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .usuarios__user {
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.usuarios__user img {
    border-radius: 50%;
    margin-right: 5px;
}

.usuarios__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #454748;
}

.usuarios__email {
    font-size: 12px;
    line-height: 15px;
    color: #9B9B9B;
    margin-top: 2px;
}

.usuarios__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .usuarios__info {
        width: auto;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }
}

.usuarios__papel {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    background: #43ABD4;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1000px) {
    .usuarios__papel {
        font-size: 13px;
    }
}

.configuration {
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.configuration__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

@media (max-width: 1000px) {
    .configuration__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.configuration__field {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .configuration__field {
        width: 100%;
    }
}

.configuration__field:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 1000px) {
    .configuration__field:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.configuration__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #888888;
    cursor: pointer;
    margin-bottom: 5px;
}

.configuration__input {
    border: 1px solid #E4E4E4;
    height: 48px;
    line-height: 46px;
    background: #fff;
    font-size: 14px;
    color: #888888;
    padding: 0 15px;
    width: 100%;
}

.configuration__input[disabled] {
    background: #E4E4E4;
}

.configuration__input:-ms-input-placeholder {
    color: #888888;
}

.configuration__input::placeholder {
    color: #888888;
}

.configuration__col {
    padding-top: 5px;
}

@media (max-width: 1000px) {
    .configuration__col {
        width: 100%;
    }
}

.configuration__col:not(:last-child) {
    margin-right: 60px;
}

@media (max-width: 1000px) {
    .configuration__col:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.configuration__check {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #888888;
    line-height: 24px;
    font-size: 14px;
}

.configuration__check--sub {
    margin-left: 10px;
}

.configuration__check input {
    margin-right: 5px;
}

.configuration__button {
    border: 0;
    width: 120px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    transition: .4s;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.configuration__button:hover {
    background-color: transparent;
}

.easy-autocomplete {
    width: 100% !important;
}

.floater-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    border: 0;
    padding: 0;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: .4s;
}

.floater-button:hover {
    background: #fff;
}

.conteudo-header {
    height: 72px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #E4E4E4;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
}

@media (max-width: 1000px) {
    .conteudo-header {
        margin-bottom: 30px;
        height: 60px;
    }
}

.conteudo-header__back {
    margin-left: 50px;
    font-size: 20px;
    color: #000000;
    transition: .4s;
    text-decoration: none;
    width: 20px;
    text-align: center;
    margin-right: 270px;
}

@media (max-width: 1000px) {
    .conteudo-header__back {
        margin-left: 20px;
        margin-right: 30px;
        font-size: 18px;
    }
}

.conteudo-header__back-with-text {
    margin-left: 50px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    transition: .4s;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.conteudo-header__back-with-text i {
    font-size: 18px;
    margin-right: 15px;
}

.conteudo-header__numbers {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.conteudo-header__number-button {
    background-color: transparent;
    border: 0;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #C4C4C4;
    transition: .4s;
    margin: 0 10px;
    outline: none;
    cursor: pointer;
}

.conteudo-header__number-button:hover {
    color: #999;
}

@media (max-width: 1000px) {
    .conteudo-header__number-button {
        font-size: 16px;
    }

    .conteudo-header__number-button span {
        display: none;
    }
}

.conteudo-header__number-button i {
    margin-right: 5px;
}

.conteudo-header__right {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

.conteudo-header__right .post__header-actions {
    position: relative;
}

.conteudo-header__right .post__actions-menu {
    top: calc(100% - 10px);
    right: 19px;
    z-index: 15;
}

@media (max-width: 1000px) {
    .conteudo-header__right button span {
        display: none;
    }
}

.conteudo-header__right button {
    height: 72px;
    padding: 0 20px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    border-right: 1px solid #E4E4E4;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    color: #C4C4C4;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    transition: .4s;
}

@media (max-width: 1000px) {
    .conteudo-header__right button {
        height: 60px;
        width: 55px;
        text-align: center;
    }
}

.conteudo-header__right button.fas {
    font-weight: 900;
    width: 72px;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 1000px) {
    .conteudo-header__right button.fas {
        width: 55px;
    }
}

.conteudo-header__right button:hover {
    color: #999;
}

.conteudo-header__right button i {
    margin-right: 8px;
}

@media (max-width: 1000px) {
    .conteudo-header__right button i {
        margin-right: 0;
    }
}

.conteudo-post {
    width: 90%;
    max-width: 930px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 70px;
}

.conteudo-post__title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: #454748;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .conteudo-post__title {
        font-size: 20px;
        line-height: 28px;
    }
}

.conteudo-post__category {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #888888;
    margin-bottom: 25px;
}

@media (max-width: 1000px) {
    .conteudo-post__category {
        font-size: 13px;
    }
}

.conteudo-post__archive-type {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #454748;
    text-transform: uppercase;
    margin-top: -20px;
    margin-bottom: 25px;
}

.conteudo-post__info {
    max-width: 520px;
    width: 100%;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 30px;
}

.conteudo-post__date {
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    color: #C7C7C7;
}

.conteudo-post__featured {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.conteudo-post__featured::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .45;
}

.conteudo-post__featured img {
    vertical-align: middle;
    width: 100%;
    height: auto;
}

.conteudo-post__text {
    width: 100%;
    max-width: 740px;
    display: block;
    margin: 0 auto;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #888888;
    background: #FFF;
    padding: 30px;
}

.conteudo-post__text > p:not(:last-child) {
    margin-bottom: 24px;
}

.conteudo-post__text .ui-video {
    margin-bottom: 25px;
}

.conteudo-post__text .post__file {
    margin-bottom: 25px;
}

.conteudo-post__tags {
    padding: 20px 0;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 35px;
}

.conteudo-post__tags span {
    padding: 5px 8px;
    background: #F2F2F2;
    line-height: 22px;
    font-size: 12px;
    font-weight: 500;
    color: #9B9B9B;
    border-radius: 4px;
}

.conteudo-post__tags span a{
    color: #9B9B9B;
}

.conteudo-post__tags span:not(:last-child) {
    margin-right: 15px;
}

.conteudo-post__comments-quantity {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #454748;
    margin-bottom: 25px;
}

@media (max-width: 1000px) {
    .conteudo-post__comments-quantity {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.conteudo-post__comment {
    padding: 15px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 25px;
}

.conteudo-post__comment-form {
    margin-bottom: 50px;
    width: 100%;
}

@media (max-width: 1000px) {
    .conteudo-post__comment-form {
        margin-bottom: 30px;
    }
}

.conteudo-post__comment-textarea {
    width: 100%;
    height: 90px;
    padding: 10px 15px;
    line-height: 20px;
    font-size: 12px;
    color: #9B9B9B;
    resize: none;
    border-radius: 4px;
    background-attachment: 1px solid #C4C4C4;
    margin-bottom: 15px;
    vertical-align: middle;
}

.conteudo-post__comment-button {
    width: 120px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    border: 0;
    padding: 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    transition: .4s;
    cursor: pointer;
}

.conteudo-post__comment-button:hover {
    background-color: transparent;
}

.conteudo-post__comment-header {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.conteudo-post__comment-content {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.conteudo-post__comment-heart {
    background-color: transparent;
    border: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #C4C4C4;
    cursor: pointer;
    transition: .4s;
    outline: none;
}

.conteudo-post__comment-heart:hover {
    color: #999;
}

.conteudo-post__comment-heart i {
    margin-right: 2px;
}

.conteudo-post__comment-text {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-left: 15px;
}

.conteudo-post__comment-text p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #454748;
}

@media (max-width: 1000px) {
    .conteudo-post__comment-text p {
        font-size: 13px;
        line-height: 18px;
    }
}

.conteudo-post__right {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.conteudo-post__right .open-options {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    color: #C4C4C4;
    cursor: pointer;
    width: 20px;
    text-align: center;
    margin-left: 15px;
    outline: none;
}

.conteudo-post__right .post__actions-menu {
    right: -8px;
}

.conteudo-post__arrow {
    position: absolute;
    top: 200px;
    text-decoration: none;
    max-width: 110px;
    font-size: 13px;
    line-height: 20px;
    color: #454748;
    font-weight: 400;
    transition: .4s;
}

@media (max-width: 1024px) {
    .conteudo-post__arrow {
        display: none;
    }
}

.conteudo-post__arrow:hover {
    color: #222;
}

.conteudo-post__arrow--prev {
    left: -150px;
}

.conteudo-post__arrow--prev:hover {
    left: -160px;
}

.conteudo-post__arrow--next {
    right: -150px;
}

.conteudo-post__arrow--next:hover {
    right: -160px;
}

.conteudo-post__label-arrow {
    font-weight: 500;
    color: #43ABD4 !important;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 10px;
}

.conteudo-post__event-date {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #888888;
}

.conteudo-post__event-date span {
    margin-left: 10px;
    height: 24px;
    line-height: 24px;
    display: inline-block;
    padding: 0 12px;
    border-radius: 4px;
    color: #fff;
}

.conteudo-post__location {
    border-top: 1px solid #C4C4C4;
    border-bottom: 1px solid #C4C4C4;
    padding: 15px 0;
    margin: 20px auto 30px;
    width: 100%;
    max-width: 550px;
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    text-align: center;
}

.conteudo-post__location-city {
    color: #454748;
}

.oabcast__gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: .45;
}

.oabcast__title {
    width: 100%;
    height: 130px;
    background: url(../images/bg-oabrjcast.jpg) no-repeat center center;
    background-size: cover;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
}

.oabcast__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/mask-oabrjcast.png) no-repeat left center;
    z-index: 8;
}

.oabcast__title p {
    position: relative;
    z-index: 10;
}

.oabcast__title strong {
    font-weight: 700;
}

.podcast__details {
    margin: 0 auto 30px;
    max-width: 460px;
}

.detalhes-link {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 130px;
    margin-bottom: 40px;
    position: relative;
    text-decoration: none;
    transition: .4s;
}

.detalhes-link:hover {
    opacity: .9;
}

.detalhes-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    background: url(../images/bg-detalhes-link.png) no-repeat left center;
}

.detalhes-link__info {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.detalhes-link__info i {
    font-size: 38px;
    line-height: 40px;
    margin-right: 20px;
}

@media (max-width: 1000px) {
    .detalhes-link__info i {
        font-size: 32px;
    }
}

.detalhes-link__title {
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .detalhes-link__title {
        font-size: 20px;
        line-height: 26px;
    }
}

.detalhes-link__sub {
    font-size: 14px;
    line-height: 20px;
}

@media (max-width: 1000px) {
    .detalhes-link__sub {
        font-size: 13px;
    }
}

.open-options.border-left {
    border-right: 0 !important;
    border-left: 1px solid #E4E4E4 !important;
}

.new-content-bar {
    margin-top: -60px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    height: 56px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    .new-content-bar {
        margin-top: -30px;
        height: 40px;
    }
}

.new-content-bar__itens {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

.new-content-bar__button {
    height: 56px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    border-right: 1px solid #E4E4E4;
    font-size: 14px;
    line-height: 20px;
    color: #454748;
    font-weight: 500;
    text-decoration: none;
    transition: .4s;
}

@media (max-width: 1000px) {
    .new-content-bar__button {
        height: 40px;
        width: 15%;
    }

    .new-content-bar__button span {
        display: none;
    }
}

.new-content-bar__button i {
    margin-right: 10px;
}

@media (max-width: 1000px) {
    .new-content-bar__button i {
        margin-right: 0;
    }
}

.new-content-bar__button.active, .new-content-bar__button:hover {
    background: #FAFAFA;
}

@media (max-width: 1000px) {
    .new-content-bar__button.active {
        width: 40%;
    }

    .new-content-bar__button.active span {
        display: block;
        font-size: 13px;
        margin-left: 10px;
    }
}

.new-content-bar__button:first-child {
    border-left: 1px solid #E4E4E4;
}

.new-content-featured {
    width: 100%;
    height: 250px;
    background: #E4E4E4;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #9B9B9B;
    text-align: center;
    position: relative;
}

.new-content-featured:not(:last-child) {
    border-right: 2px solid #F6F5F8;
}

@media (max-width: 1000px) {
    .new-content-featured:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid #f6f5f8;
    }
}

.new-content-featured__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1000px) {
    .new-content-featured__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.new-content-featured__label {
    width: 90%;
    max-width: 740px;
}

.new-content-featured__label.with-file span {
    color: #9b9b9b !important;
}

.new-content-featured img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
    z-index: 10;
    background-color: #E4E4E4;
    height: 100%;
}

.new-content-featured input[type='file'] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 15;
}

.new-content-featured input[type='text'] {
    display: block;
    width: 100%;
    margin: 10px auto 0;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    background: #fff;
    font-size: 14px;
    color: #9B9B9B;
    padding: 0 15px;
}

.new-content-featured input[type='text']:-ms-input-placeholder {
    color: #9b9b9b;
}

.new-content-featured input[type='text']::placeholder {
    color: #9b9b9b;
}

.new-content-featured i {
    font-size: 48px;
    line-height: 56px;
}

.new-content-featured p {
    line-height: 24px;
}

.new-content-featured__title {
    font-size: 16px;
}

.new-content-featured__desc {
    font-size: 13px;
}

.new-content-form {
    padding: 30px 0 50px;
    max-width: 740px;
    width: 90%;
    margin: 0 auto;
}

.new-content-form .configuracoes__item {
    background: #fff;
    justify-content: space-between;
    display: flex;
    border-color: #e4e4e4;
}

.new-content-form .configuracoes__item {
    color: #9B9B9B
}

.new-content-form__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.new-content-form__field {
    margin-bottom: 20px;
    width: 10px;
    -ms-flex-positive: 3;
    flex-grow: 3;
    position: relative;
}

@media (max-width: 1000px) {
    .new-content-form__field {
        width: 100%;
        margin-right: 0 !important;
    }
}

.new-content-form__field.smaller {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.new-content-form__field:not(:last-child) {
    margin-right: 20px;
}

.new-content-form__icon-label {
    position: absolute;
    right: 15px;
    top: 0;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #454748;
    cursor: pointer;
    transition: .4s;
}

.new-content-form__field .new-content-form__input {
    margin-bottom: 0;
}

.new-content-form__input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    background: #fff;
    font-size: 14px;
    color: #9B9B9B;
    padding: 0 15px;
    margin-bottom: 20px;
}

.new-content-form__input.input-validation-error{
    margin-bottom: 0;
}

.new-content-form__input.input-tag {
    padding: 4px 10px;
    height: auto;
}

.new-content-form__input.input-tag .tagify__tag, .new-content-form__input.input-tag .tagify__input {
    margin: 4px 0 4px 5px;
}

.new-content-form__input.input-tag .tagify__input {
    padding: 0 10px;
    margin: 4px 0;
    line-height: 24px;
}

.new-content-form__input.input-tag .tagify__input::before {
    line-height: 24px;
}

.new-content-form__input.input-tag .tagify__tag > div {
    padding: 0 25px 0 10px;
    background: #F2F2F2;
    line-height: 24px;
}

.new-content-form__input.input-tag .tagify__tag > div::before {
    display: none;
}

.new-content-form__input[multiple] {
    height: 90px;
    padding: 10px 15px;
}

.new-content-form__input:-ms-input-placeholder {
    color: #9b9b9b;
}

.new-content-form__input::placeholder {
    color: #9b9b9b;
}

.new-content-form__export {
    padding: 15px;
    background: #FCFCFC;
    border: 1px solid #E4E4E4;
}

.new-content-form__export-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #888888;
}

.new-content-form__export-title span {
    margin-left: 5px;
    height: 20px;
    line-height: 20px;
    border-radius: 3px;
    background: #FACC48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    padding: 0 10px;
    position: relative;
    top: -1px;
}

.new-content-form__export-desc {
    font-size: 13px;
    line-height: 20px;
    color: #888888;
    margin-bottom: 15px;
}

.new-content-form__buttons {
    padding-top: 30px;
}

.new-content-form__editor {
    height: 270px;
    margin-bottom: 20px;
}

.new-content-form .ck-editor__editable_inline {
    min-height: 270px;
    margin-bottom: 20px;
}

.new-content-form .ck.ck-toolbar, .new-content-form .ck.ck-editor__editable_inline {
    border-color: #E4E4E4 !important;
}

.new-content-form__button {
    border: 0;
    padding: 0 25px;
    min-width: 120px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
}

.new-content-form__button:not(:last-child) {
    margin-right: 20px;
}

.new-content-form__button:hover {
    background-color: transparent;
}

.ck.ck-content {
    font-size: 14px;
    line-height: 20px;
}

.sobre__header {
    height: 290px;
    margin: -40px -40px 0;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: space-evenly;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.sobre__header img {
    width: 180px;
}

@media (max-width: 1000px) {
    .sobre__header {
        margin: -20px -20px 0;
        height: 180px;
    }

    .sobre__header img {
        max-width: 60%;
    }
}

.sobre__header-logo {
    color: #ddd;
    font-size: 46px;
    line-height: 50px;
}

.sobre__header-logo strong {
    color: #fff;
}

.sobre__header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(./../images/bg-sobre-header.png) no-repeat left center;
}

@media (max-width: 1000px) {
    .sobre__header::before {
        background-size: cover;
    }
}

.sobre__header img {
    position: relative;
    z-index: 10;
}

.sobre__center {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.sobre__first {
    padding: 30px 0 70px;
}

@media (max-width: 1000px) {
    .sobre__first {
        padding: 30px 0;
    }
}

.sobre__first-title {
    font-size: 28px;
    line-height: 35px;
    color: #454748;
    font-weight: 700;
    max-width: 540px;
    margin: 0 auto 15px;
    text-align: center;
}

@media (max-width: 1000px) {
    .sobre__first-title {
        font-size: 20px;
        line-height: 26px;
    }
}

.sobre__first-desc {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #9B9B9B;
}

@media (max-width: 1000px) {
    .sobre__first-desc {
        font-size: 14px;
        line-height: 20px;
    }
}

.sobre__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
}

@media (max-width: 1000px) {
    .sobre__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.sobre__col {
    max-width: 230px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #43ABD4;
}

@media (max-width: 1000px) {
    .sobre__col {
        max-width: 100%;
        width: 100%;
        font-size: 14px;
    }

    .sobre__col:not(:last-child) {
        margin-bottom: 30px;
    }
}

.sobre__icon {
    height: 136px;
    width: 100%;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.sobre__second {
    background: url(./../images/bg-colabore.png) no-repeat center bottom -60px #ECEFF4;
    padding: 60px 0 45px;
    margin: 0 -40px;
}

@media (max-width: 1000px) {
    .sobre__second {
        padding: 40px 20px;
        background: #eceff4;
        box-sizing: border-box;
        margin: 0 -20px;
    }
}

.sobre__second-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: #454748;
    max-width: 350px;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .sobre__second-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.sobre__second-desc {
    font-size: 16px;
    line-height: 24px;
    max-width: 350px;
    color: #9B9B9B;
    margin-bottom: 25px;
}

@media (max-width: 1000px) {
    .sobre__second-desc {
        font-size: 14px;
        line-height: 20px;
    }
}

.sobre__second-list {
    list-style: none;
    font-size: 14px;
    line-height: 26px;
    color: #9B9B9B;
    max-width: 470px;
}

.sobre__second-list:not(:last-child) {
    margin-bottom: 10px;
}

.sobre__second-list li {
    padding-left: 25px;
    position: relative;
}

.sobre__second-list li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 26px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #2FD180;
}

.sobre__third {
    padding: 60px 0 80px;
}

@media (max-width: 1000px) {
    .sobre__third {
        padding: 30px 0;
    }
}

.sobre__third .sobre__center {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .sobre__third .sobre__center {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sobre__third .sobre__center img {
        max-width: 70%;
        margin-bottom: 25px;
    }
}

.sobre__third-text {
    width: 400px;
}

.sobre__fourth {
    padding: 85px 0 95px;
    margin: 0 -40px -50px;
    position: relative;
}

@media (max-width: 1000px) {
    .sobre__fourth {
        padding: 40px 0;
        margin: 0 -20px -30px;
    }
}

.sobre__fourth::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(./../images/bg-like.png) no-repeat right center;
    right: 0;
    top: 0;
}

@media (max-width: 1000px) {
    .sobre__fourth::before {
        background-size: cover;
    }
}

.sobre__fourth .sobre__center {
    max-width: 650px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (max-width: 1000px) {
    .sobre__fourth .sobre__center {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 20px;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.sobre__fourth .comissoes-page__box {
    width: 160px;
    margin-right: 35px;
}

.sobre__fourth-text {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .sobre__fourth-text {
        width: 100%;
        margin-top: 20px;
        font-size: 14px;
        line-height: 20px;
    }
}

.sobre__fourth-title {
    font-size: 26px;
    line-height: 33px;
}

@media (max-width: 1000px) {
    .sobre__fourth-title {
        font-size: 20px;
        line-height: 26px;
    }
}

.sobre__fourth-sub-title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .sobre__fourth-sub-title {
        font-size: 18px;
        line-height: 24px;
    }
}

.sobre__fourth-button {
    width: 160px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
    border: 1px solid #FFF;
}

.sobre__fourth-button:hover {
    background: #fff;
    box-shadow: none !important;
}

.list-rows__header, .list-rows__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .list-rows__header, .list-rows__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.list-rows__col {
    width: 10px;
}

@media (max-width: 1000px) {
    .list-rows__col {
        width: 100%;
        display: -ms-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.list-rows__col:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 1000px) {
    .list-rows__col:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.list-rows__col.tar {
    text-align: right;
}

@media (max-width: 1000px) {
    .list-rows__col.tar {
        text-align: left;
    }
}

.list-rows__col.four {
    -ms-flex-positive: 4;
    flex-grow: 4;
}

.list-rows__col.three {
    -ms-flex-positive: 3;
    flex-grow: 3;
}

.list-rows__col.two {
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.list-rows__col.one {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-rows__col.settings {
    width: 50px;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
    padding-right: 25px;
}

@media (max-width: 1000px) {
    .list-rows__col.settings {
        width: 100%;
        padding-right: 0;
    }
}

.list-rows__col.settings .post__row {
    position: relative;
}

.list-rows__col.settings .post__actions-menu {
    right: -6px;
}

.list-rows__col.settings .open-options {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    width: 100%;
    text-align: center;
    outline: none;
    color: #C4C4C4;
    cursor: pointer;
    line-height: 20px;
    transition: .4s;
}

.list-rows__col.settings .open-options:hover {
    color: #666;
}

.list-rows__header-label {
    font-size: 12px;
    font-weight: 700;
    color: #454748;
}

.list-rows__header-label.tar {
    text-align: right;
}

@media (max-width: 1000px) {
    .list-rows__header-label.tar {
        text-align: left;
    }
}

.list-rows__row {
    background: #fff;
    padding: 22px 0;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .list-rows__row {
        padding: 20px;
    }
}

.list-rows__user {
    padding-left: 25px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .list-rows__user {
        padding-left: 0;
    }
}

.list-rows__user img {
    max-width: 48px;
    max-height: 48px;
    width: 100%;
    border-radius: 50%;
    margin-right: 10px;
}

.list-rows__user-info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .list-rows__user-info {
        width: auto;
    }
}

.list-rows__user-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #454748;
}

.list-rows__user-unity {
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    color: #43ABD4;
}

.list-rows__label {
    font-size: 14px;
    line-height: 18px;
    color: #454748;
    cursor: pointer;
}

.list-rows__status {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #43ABD4;
    text-transform: uppercase;
}

.list-rows__code {
    font-size: 18px;
    font-weight: 700;
    color: #454748;
}

@media (max-width: 1000px) {
    .list-rows__code {
        font-size: 15px;
    }
}

.list-rows__date {
    font-size: 13px;
    line-height: 16px;
    color: #9B9B9B;
}

@media (max-width: 1000px) {
    .list-rows__date {
        font-size: 12px;
    }
}

.ouvidoria__header {
    position: relative;
    background: #fff;
    padding: 30px;
    display: -ms-flex;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 10;
    border-radius: 5px 5px 0 0;
}

@media (max-width: 1000px) {
    .ouvidoria__header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ouvidoria__header-left {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
}

@media (max-width: 1000px) {
    .ouvidoria__header-left {
        width: 100%;
    }
}

.ouvidoria__header-right {
    width: 50%;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: -30px;
}

@media (max-width: 1000px) {
    .ouvidoria__header-right {
        width: calc(100% + 60px);
        margin: 10px -30px -30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ouvidoria__header img {
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    margin-right: 10px;
}

.ouvidoria__date {
    text-align: right;
    padding-right: 25px;
    font-size: 13px;
    line-height: 18px;
    color: #9B9B9B;
}

@media (max-width: 1000px) {
    .ouvidoria__date {
        width: 100%;
        text-align: center;
        padding: 5px 10px 15px;
    }
}

.ouvidoria__code {
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    color: #454748;
}

.ouvidoria__status {
    padding: 20px 30px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

@media (max-width: 1000px) {
    .ouvidoria__status {
        width: 100%;
        text-align: center;
    }
}

.ouvidoria__status-button {
    border: 0;
    display: inline-block;
    width: 110px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: .4s;
    cursor: pointer;
    margin-top: 15px;
}

.ouvidoria__status-button:hover {
    background-color: #fff;
    box-shadow: none !important;
}

.ouvidoria__info {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.ouvidoria__name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #454748;
}

.ouvidoria__unity {
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    color: #43ABD4;
}

.ouvidoria__form {
    padding: 40px 25px;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
}

.ouvidoria__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width: 1000px) {
    .ouvidoria__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ouvidoria__row:not(:first-child) {
    padding-top: 25px;
}

.ouvidoria__row:not(:last-child) {
    padding-bottom: 25px;
    border-bottom: 1px solid #C4C4C4;
}

.ouvidoria__label {
    width: 25%;
    font-size: 16px;
    line-height: 40px;
    padding-right: 40px;
    font-weight: 500;
    color: #454748;
}

@media (max-width: 1000px) {
    .ouvidoria__label {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }
}

.ouvidoria__field {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.ouvidoria__field > p {
    padding: 5px 0;
    line-height: 24px;
    font-size: 14px;
    color: #707070;
}

.ouvidoria__field > p:not(:last-child) {
    margin-bottom: 10px;
}

.ouvidoria__input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    padding: 0 15px;
    font-size: 14px;
    color: #888888;
}

@media (max-width: 1000px) {
    .ouvidoria__input {
        height: 34px;
        line-height: 32px;
        padding: 0 10px;
        font-size: 13px;
    }
}

.ouvidoria__input--textarea {
    height: 270px;
    line-height: 28px;
    padding: 5px 15px;
    resize: none;
}

@media (max-width: 1000px) {
    .ouvidoria__input--textarea {
        padding: 5px 10px;
    }
}

.ouvidoria__obs {
    padding: 10px 15px;
    line-height: 28px;
    background: #FAFAFA;
    margin-bottom: 25px;
    font-size: 14px;
    color: #888888;
}

@media (max-width: 1000px) {
    .ouvidoria__obs {
        font-size: 12px;
        line-height: 22px;
        padding: 10px;
    }
}

.ouvidoria__button {
    border: 0;
    padding: 0;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: .4s;
}

.ouvidoria__button:hover {
    background-color: transparent;
}

.ouvidoria__atendente {
    padding: 25px;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    margin-top: 20px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .ouvidoria__atendente {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ouvidoria__atendente .ouvidoria__field {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .ouvidoria__atendente .ouvidoria__field {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 10px;
    }
}

.ouvidoria__atendente img {
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    margin-right: 10px;
}

.ouvidoria__atendente-button {
    display: block;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .4s;
}

@media (max-width: 1000px) {
    .ouvidoria__atendente-button {
        margin-top: 10px;
    }
}

.ouvidoria__atendente-button:hover {
    background-color: transparent;
}

.ouvidoria__interacoes-title {
    font-size: 16px;
    line-height: 20px;
    color: #454748;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
}

.ouvidoria__interacoes-list {
    padding: 25px;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
}

.ouvidoria__interacoes-item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1000px) {
    .ouvidoria__interacoes-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ouvidoria__interacoes-item:not(:first-child) {
    padding-top: 20px;
}

.ouvidoria__interacoes-item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #C4C4C4;
}

.ouvidoria__interacoes-item img {
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    margin-right: 10px;
}

.ouvidoria__interacoes-text {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-left: 20px;
    font-size: 14px;
    line-height: 24px;
    color: #888888;
}

@media (max-width: 1000px) {
    .ouvidoria__interacoes-text {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        font-size: 13px;
        line-height: 20px;
    }
}

.ouvidoria__interacoes-user {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 30%;
}

@media (max-width: 1000px) {
    .ouvidoria__interacoes-user {
        width: 100%;
    }
}

.ouvidoria__publish {
    font-size: 13px;
    line-height: 18px;
    color: #888888;
}

.ouvidoria__comentarios {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 25px;
}

@media (max-width: 1000px) {
    .ouvidoria__comentarios {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 0;
    }
}

.ouvidoria__comentarios .ouvidoria__input--textarea {
    height: 150px;
}

.anexos {
    margin-bottom: 18px;
}

.anexos:not(:empty) {
    margin-bottom: 30px;
}

.anexos__item {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    line-height: 28px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.anexos__item input {
    display: none;
}

.anexos__title {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

@media (max-width: 1000px) {
    .anexos__title {
        font-size: 12px;
    }
}

.anexos__title i {
    font-size: 18px;
    margin-right: 5px;
}

@media (max-width: 1000px) {
    .anexos__title i {
        font-size: 14px;
    }
}

.anexos__exclude {
    font-size: 14px;
    color: #fff;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    margin-left: 40px;
}

.anexos__link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

@media (max-width: 1000px) {
    .anexos__link {
        font-size: 12px;
    }
}

.anexos__link:hover {
    opacity: .7;
}

.anexos__label {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    cursor: pointer;
    transition: .4s;
}

.anexos__label i {
    margin-right: 6px;
}

.anexos__label input {
    display: none;
}

.configuracoes__header {
    width: 100%;
    height: 90px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    background: #fff;
    position: relative;
    z-index: 10;
}

.configuracoes__header .configuracoes__center {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    height: 90px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.configuracoes__header-title {
    font-size: 18px;
    font-weight: 500;
    color: #454748;
}

@media (max-width: 600px) {
    .configuracoes__header-title {
        margin-top: .5rem;
        font-size: 1.6rem;
        font-weight: 600;
    }
}

.configuracoes__header-back {
    font-size: 14px;
    font-weight: 700;
    color: #454748;
    transition: .4s;
}

.configuracoes__header-back:hover {
    color: #000;
}

.configuracoes__header-back i {
    margin-left: 3px;
}

.configuracoes__box {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

@media (max-width: 1000px) {
    .configuracoes__box {
        max-width: none;
        width: initial;
    }
}

@media (max-width: 600px) {
    .configuracoes__box {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.configuracoes__wrapper {
    -ms-flex: 1;
    flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 550px) {
    .configuracoes__wrapper {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.configuracoes__group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.configuracoes__group:not(:last-child) {
    margin-bottom: 2rem;
}

@media (max-width: 550px) {
    .configuracoes__group:not(:last-child) {
        margin-bottom: 0;
    }
}

@media (max-width: 550px) {
    .configuracoes__group {
        margin-bottom: 1rem !important;
    }
}

.configuracoes__check {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

@media (max-width: 1000px) {
    .configuracoes__imagem {
        margin-right: 2rem;
    }
}

.configuracoes__center {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.configuracoes__content {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: calc(100vh - 90px);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1000px) {
    .configuracoes__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.configuracoes__content .new-content-form__button {
    margin-top: 40px;
}

.configuracoes__sidebar {
    width: 190px;
    padding-right: 20px;
    padding-top: 15px;
}

@media (max-width: 1000px) {
    .configuracoes__sidebar {
        width: 100%;
        margin-bottom: 20px;
        display: -ms-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.configuracoes__input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    background: #fff;
    font-size: 14px;
    color: #888888;
    padding: 0 15px;
}

.configuracoes__menu-item {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    font-weight: 500;
    color: #454748;
    border-left: 3px solid #fafafa;
}

@media (max-width: 1000px) {
    .configuracoes__menu-item {
        width: 50%;
    }
}

.configuracoes__menu-item i {
    margin-right: 10px;
    color: #9B9B9B;
}

.configuracoes__form {
    width: 100%;
    padding: 40px 8%;
}

@media (max-width: 1000px) {
    .configuracoes__form {
        padding: 20px;
    }
}

.configuracoes__form-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #454748;
    margin-bottom: 40px;
}

@media (max-width: 1000px) {
    .configuracoes__form-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
}

.configuracoes__row, .configuracoes__row--second {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #C4C4C4;
    padding-top: 30px;
}

@media (max-width: 1000px) {
    .configuracoes__row, .configuracoes__row--second {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.configuracoes__row--second {
    -ms-flex-align: start;
    align-items: flex-start;
}

.configuracoes__label {
    width: 160px;
    margin-right: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #888888;
}

@media (max-width: 1000px) {
    .configuracoes__label {
        width: 100%;
        margin-bottom: 10px;
    }
}

.configuracoes__label--collumn {
    font-size: 14px;
    font-weight: 400;
    color: #454748;
}

.configuracoes__label--conf {
    margin-right: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #888888;
}

@media (max-width: 1000px) {
    .configuracoes__label--conf {
        width: 100%;
        margin-bottom: 10px;
    }
}

.configuracoes__field {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .configuracoes__field {
        width: 100%;
    }
}

.configuracoes__field:not(:last-child) {
    margin-right: 30px;
}

@media (max-width: 1000px) {
    .configuracoes__field:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.configuracoes__field--second {
    max-width: 560px;
    width: 100%;
}

@media (max-width: 1000px) {
    .configuracoes__field--second {
        max-width: none;
    }
}

.configuracoes__image {
    width: 100%;
    height: 80px;
    border: 1px solid #E4E4E4;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

@media (max-width: 1000px) {
    .configuracoes__image {
        margin-top: 20px;
    }
}

.configuracoes__image.negative {
    background: #e4e4e4;
}

.configuracoes__image img {
    max-width: 80%;
    max-height: 80%;
}

.configuracoes__image input {
    display: none;
}

.configuracoes__image-label {
    position: absolute;
    left: 0;
    top: -25px;
    font-size: 14px;
    line-height: 20px;
    color: #888;
}

@media (min-width: 1000px) {
    .configuracoes__image-label.hidden {
        display: none;
    }
}

.configuracoes__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #C4C4C4;
    padding: 1rem;
}

@media (max-width: 1000px) {
    .configuracoes__item {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.configuracoes__item:not(:last-child) {
    margin-bottom: 1rem;
}

.configuracoes__item .form__input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    background: #fff;
    font-size: 14px;
    color: #888888;
    padding: 0 15px;
}

.configuracoes__text {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    font-size: 14px;
    line-height: 20px;
    color: #888;
}

@media (max-width: 1000px) {
    .configuracoes__text {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: .7rem;
    }
}

.configuracoes__color {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.configuracoes__color:not(:last-child) {
    margin-bottom: 15px;
}

.configuracoes__color-input {
    position: relative;
}

.configuracoes__color-input input {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.configuracoes__color-preview {
    width: 24px;
    height: 24px;
}

.configuracoes__color span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #888888;
    margin-left: 10px;
}

.usuario__header {
    margin: -40px -40px 0;
    padding: 40px 40px 30px;
    background: url(../images/bg-usuarios.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    .usuario__header {
        margin: -20px -20px 0;
        padding: 20px;
    }
}

.usuario__header-content {
    width: 90%;
    max-width: 740px;
}

.usuario__header-card {
    text-align: center;
}

.usuario__header-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #454748;
}

@media (max-width: 1000px) {
    .usuario__header-name {
        font-size: 16px;
    }
}

.usuario__header-unity {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #43ABD4;
}

@media (max-width: 1000px) {
    .usuario__header-unity {
        font-size: 14px;
    }
}

.usuario__header-code {
    font-size: 14px;
    line-height: 18px;
    color: #454748;
}

@media (max-width: 1000px) {
    .usuario__header-code {
        font-size: 13px;
    }
}

.usuario__header-picture {
    position: relative;
    max-width: 98px;
    margin: 0 auto 10px;
}

.usuario__header-picture-edit {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 11px;
    bottom: 0;
    cursor: pointer;
    right: 5px;
    transition: .4s;
}

.usuario__header-picture-edit:hover {
    background: #fff;
}

.usuario__header-picture-edit input {
    display: none;
}

.usuario__header-picture img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    vertical-align: middle;
}

.usuario__header .post__header-actions {
    position: absolute;
    right: 30px;
    top: 30px;
}

@media (max-width: 1000px) {
    .usuario__header .post__header-actions {
        top: 20px;
        right: 20px;
    }
}

.usuario__header .post__header-actions .open-options {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    width: 16px;
    text-align: center;
    color: #9B9B9B;
    cursor: pointer;
    outline: none;
}

.usuario__header-info {
    width: 100%;
    margin: 0 auto;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #fff;
}

@media (max-width: 1000px) {
    .usuario__header-info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.usuario__header-col {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .usuario__header-col {
        width: 100%;
    }

    .usuario__header-col:not(:last-child) {
        margin-bottom: 10px;
    }
}

.usuario__header-label {
    width: 90px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.usuario__header-label i {
    font-size: 16px;
    line-height: 16px;
    margin-right: 8px;
    color: #43ABD4;
}

@media (max-width: 1000px) {
    .usuario__header-label i {
        width: 16px;
        text-align: center;
    }
}

.usuario__header-label span {
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    color: #454748;
}

.usuario__header-value {
    margin-left: 10px;
    font-size: 13px;
    line-height: 16px;
    color: #454748;
}

.usuario__header-add {
    margin-left: 10px;
    background-color: transparent;
    border: 0;
    text-decoration: underline;
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.usuario__content {
    padding-bottom: 60px;
    padding-top: 10px;
}

.usuario__content .post__header-actions {
    position: absolute;
    right: 25px;
    top: 25px;
}

@media (max-width: 1000px) {
    .usuario__content .post__header-actions {
        top: 15px;
        right: 15px;
    }
}

.usuario__content .post__header-actions .open-options {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    width: 16px;
    text-align: center;
    color: #9B9B9B;
    cursor: pointer;
    outline: none;
}

.usuario__content-primary {
    width: calc(67% - 30px);
    margin-right: 30px;
}

@media (max-width: 1000px) {
    .usuario__content-primary {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }
}

.usuario__content-sidebar {
    width: 33%;
}

@media (max-width: 1000px) {
    .usuario__content-sidebar {
        width: 100%;
    }
}

.usuario__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1000px) {
    .usuario__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.usuario__sobre {
    font-size: 14px;
    line-height: 24px;
    color: #888888;
}

@media (max-width: 1000px) {
    .usuario__sobre {
        font-size: 13px;
        line-height: 20px;
    }
}

.usuario__sobre p:not(:last-child) {
    margin-bottom: 20px;
}

.usuario__box {
    padding: 25px;
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
}

.usuario__box .form__row {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

@media (max-width: 1000px) {
    .usuario__box .form__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.usuario__box .form__field {
    width: 10px;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

@media (max-width: 1000px) {
    .usuario__box .form__field {
        width: 100%;
    }
}

.usuario__box .form__field:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 1000px) {
    .usuario__box .form__field:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.usuario__box .form__label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #888888;
    display: block;
    margin-bottom: 5px;
}

.usuario__box .form__input {
    width: 100%;
    height: 48px;
    line-height: 46px;
    border: 1px solid #E4E4E4;
    padding: 0 15px;
    font-size: 14px;
    color: #888888;
}

.usuario__box:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .usuario__box:not(:last-child) {
        margin-bottom: 20px;
    }
}

.usuario__box-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding-right: 40px;
    color: #454748;
    margin-bottom: 20px;
}

.usuario__box-title i {
    margin-right: 10px;
}

.usuario__formacao .anexos__label {
    background-color: transparent;
    border: 0;
    margin-top: 0;
    margin-bottom: 0;
    outline: none;
}

.usuario__formacao-item {
    position: relative;
    padding: 25px;
    background: #FAFAFA;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .usuario__formacao-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.usuario__formacao-item .post__header-actions {
    right: 25px;
    top: 10px;
}

.usuario__formacao-info {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width: 1000px) {
    .usuario__formacao-info {
        width: 100%;
        margin-bottom: 15px;
        padding-top: 5px;
    }
}

.usuario__formacao-info i {
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    background: #43ABD4;
    border-radius: 50%;
    margin-right: 15px;
    color: #fff;
    font-size: 12px;
}

.usuario__formacao-text {
    font-size: 13px;
    line-height: 20px;
    color: #454748;
}

@media (max-width: 1000px) {
    .usuario__formacao-text {
        width: 10px;
        -ms-flex-positive: 2;
        flex-grow: 2;
    }
}

.usuario__formacao-curso {
    font-weight: 700;
}

.usuario__formacao-date {
    font-size: 11px;
    color: #43ABD4;
}

.usuario__formacao-button {
    width: 130px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    border-radius: 4px;
    transition: .4s;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .usuario__formacao-button {
        width: 100%;
        font-size: 13px;
        height: 36px;
        line-height: 36px;
    }
}

.usuario__formacao-button i {
    margin-right: 5px;
}

.usuario__formacao-button:hover {
    background-color: transparent;
}

.usuario__info-line {
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    line-height: 16px;
}

.usuario__info-line:not(:last-child) {
    margin-bottom: 20px;
}

.usuario__info-label {
    width: 110px;
    padding-right: 10px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0 !important;
    font-weight: 700;
}

.usuario__info-label i {
    color: #43ABD4;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.usuario__info-value a {
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    transition: .4s;
}

.comissao__menu.usuarios__menu {
    padding: 0 40px;
}

.comissao__menu.usuarios__menu .comissao__menu-scroll {
    max-width: 740px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .comissao__menu.usuarios__menu a {
        min-width: 120px;
        text-align: center;
    }
}

.form__input.form__input--textarea {
    height: 150px;
    padding: 10px 15px;
    line-height: 28px;
    resize: none;
}

.form__field .form__label {
    text-transform: none;
    margin-bottom: 5px;
}

@media (max-width: 1000px) {
    .usuarios__table--header-hidden tr:nth-child(2) {
        border-top: 0;
    }

    .usuarios__table--header-hidden th {
        display: none !important;
    }
}

.post__item {
    position: relative;
}

.eventos-page__item .post__header-actions .fa-thumbtack, .eventos-page__item .open-options, .links-page__item .post__header-actions .fa-thumbtack, .links-page__item .open-options {
    cursor: pointer;
    transition: .4s;
}

.eventos-page__item .post__header-actions .fa-thumbtack:hover, .eventos-page__item .open-options:hover, .links-page__item .post__header-actions .fa-thumbtack:hover, .links-page__item .open-options:hover {
    color: #ddd;
}

.floater-button {
    z-index: 15;
}

.solicitacoes {
    margin: 6rem 0;
}

.solicitacoes__title {
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    color: #454748;
    margin-bottom: 35px;
}

.solicitacoes__group {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    padding: 24px 16px;
}

.solicitacoes__group:not(:last-child) {
    margin-bottom: 24px;
}

.solicitacoes__header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.solicitacoes__header button {
    background-color: transparent;
    border: none;
    color: #C4C4C4;
    font-size: 18px;
    outline: none;
}

.solicitacoes__header .post__actions-menu {
    top: 40px;
}

.solicitacoes__categoria {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.solicitacoes__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #2b4f88;
    background: linear-gradient(180deg, #2b4f88 0%, #ca4343 100%);
}

.solicitacoes__abreviacao {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.solicitacoes__nome {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #454748;
    margin-left: 16px;
}

.solicitacoes__table {
    width: 100%;
    margin-top: 24px;
}

.solicitacoes__table button {
    background-color: transparent;
    border: none;
    color: #C4C4C4;
    font-size: 18px;
    outline: none;
}

.solicitacoes__tr {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 14px;
    position: relative;
    border-top: 1px solid #C4C4C4;
}

.solicitacoes__tr:last-child {
    border-bottom: 1px solid #C4C4C4;
}

.solicitacoes__tr .post__actions-menu {
    top: 42px;
    right: 2px;
}

.solicitacoes__td {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #454748;
}

@media (max-width: 550px) {
    .solicitacoes__td:first-child {
        width: 85%;
    }
}

.solicitacoes__footer {
    padding: 16px 14px;
}

.solicitacoes__button {
    border: none;
    background-color: transparent;
    color: #CA4343;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    outline: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.solicitacoes__icone {
    margin-right: 5px;
    font-size: 16px;
}

.wiki__header {
    height: 288px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.wiki__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b4f88;
    background: linear-gradient(90deg, rgba(43, 79, 136, 0.5) 0%, rgba(202, 67, 67, 0.5) 100%);
}

.wiki__search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 700px;
    width: 90%;
}

.wiki__group {
    position: relative;
}

.wiki__icon--form {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #454748;
    opacity: .7;
}

.wiki__input {
    outline: 0;
    box-sizing: border-box;
    font-family: inherit;
    border: 1px solid #ccc;
    width: calc(100% - 60px);
    background-color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #C4C4C4;
}

.wiki__input:-ms-input-placeholder {
    opacity: .5;
}

.wiki__input::placeholder {
    opacity: .5;
}

.wiki__input--search {
    outline: 0;
    box-sizing: border-box;
    font-family: inherit;
    border: none;
    width: 100%;
    padding: 24px 24px;
    padding-left: 54px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #454748;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
}

.wiki__content {
    width: 90%;
    margin: -30px auto 0;
    position: relative;
}

@media (max-width: 768px) {
    .wiki__content {
        width: 94%;
    }
}

.wiki__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
}

@media (max-width: 1000px) {
    .wiki__wrapper {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wiki__wrapper {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
    }
}

.wiki__buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 600px) {
    .wiki__buttons {
        width: 100%;
        margin-top: 20px;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.wiki__button {
    display: block;
    width: 152px;
    padding: 11px 5px;
    border: none;
    outline: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s ease;
    text-align: center;
}

.wiki__button:not(:last-child) {
    margin-right: 24px;
}

@media (max-width: 600px) {
    .wiki__button:not(:last-child) {
        margin-right: 10px;
    }
}

.wiki__button:hover {
    background-color: #fff;
}

@media (max-width: 600px) {
    .wiki__button {
        width: 50%;
    }
}

.wiki__actions {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.wiki__actions .post__header-actions button {
    border: none;
    outline: 0;
    background-color: transparent;
    font-size: 16px;
    color: #c4c4c4;
    cursor: pointer;
}

.wiki__form--busca {
    margin-bottom: 45px;
}

.wiki__busca {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wiki__busca--submit {
    outline: 0;
    width: 48px;
    border: none;
    border-radius: 5px;
    transition: .3s ease;
    cursor: pointer;
}

.wiki__busca--submit:hover {
    background-color: #fff;
}

.wiki__icon {
    font-size: 18px;
}

.wiki__icon--link {
    margin-right: 5px;
}

.wiki__link--back {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #454748;
}

.wiki__itens {
    margin: 25px 0;
}

.wiki__item {
    background-color: #fafafa;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.wiki__item:not(:last-child) {
    margin-bottom: 16px;
}

.wiki__group {
    margin-right: 16px;
}

.wiki__radio {
    display: none;
}

.wiki__radio:checked ~ .wiki__label > .wiki__icon {
    color: #CA4343;
}

.wiki__label .wiki__icon {
    font-size: 14px;
    color: #C4C4C4;
    transform: rotate(45deg);
    cursor: pointer;
}

.disparo__top {
    background-color: #ccc;
}

.disparo__top .new-content-form {
    padding: 100px 0;
}

.disparo__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

@media (max-width: 1000px) {
    .disparo__list {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
    }
}

.disparo__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #fff;
    padding: 15px 10px;
    border-radius: 4px;
    border: 1px solid #F1F1F1;
}

.disparo__item.tablinks.active {
    border: 1px solid #f1f1f1;
    background-color: #CA4343;
}

.disparo__item.tablinks.active .disparo__label > .disparo__label--title,
.disparo__item.tablinks.active .disparo__label > .disparo__label--description {
    color: #fff;
}

.disparo__radio {
    margin-right: 5px;
    margin-top: 4px;
}

.disparo__label {
    cursor: pointer;
}

.disparo__label--title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.disparo__label--description {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.disparo__content {
    display: block;
    width: 100%;
    padding: 0;
}

.disparo__add {
    background-color: transparent;
    outline: 0;
    border: none;
    font-family: inherit;
    color: #CA4343;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.disparo__title {
    font-size: 18px;
    font-weight: 600;
    color: #43ABD4;
    line-height: 23px;
    display: block;
    border-bottom: 1px solid #43ABD4;
    padding-bottom: 8px;
    margin: 50px 0 24px;
}

.tagify__dropdown {
    z-index: 99999;
}

.avatar-edit {
    margin-top: 1.6rem;
}

.avatar-edit input {
    display: none;
}

.avatar-edit label {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    color: var(--color-gray-dark);
    cursor: pointer;
}

.avatar-preview div {
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-blue);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}

.avatar-preview div .imageIcon {
    position: absolute;
    bottom: .7rem;
    right: .7rem;
    width: 24px;
    height: 24px;
    background-color: var(--color-purple);
    cursor: pointer;
}

.avatar-preview div .imageIcon i {
    font-size: 1.2rem;
    color: var(--color-white);
}

.switch {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.switch + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.switch--shadow + label {
    padding: 2px;
    width: 40px;
    height: 20px;
    background-color: #dddddd;
    border-radius: 20px;
}

.switch--shadow + label:before,
.switch--shadow + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: '';
}

.switch--shadow + label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 60px;
    transition: all 0.4s;
}

.switch--shadow + label:after {
    width: 22px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}

.switch--shadow:checked + label:before {
    background-color: #8ce196;
}

.switch--shadow:checked + label:after {
    transform: translateX(16px);
}

.list-post__texto {
    text-align: center;
    font-size: 14px;
    color: #454748;
    font-weight: 500;
}

.validation-summary-errors {
    color: #b94a48;
    padding: 0 15px 15px;
    font-size: 14px;
}

.validation-summary-valid {
    display: none;
}

.swal2-modal {
    display: block;
    min-height: inherit !important;
    max-width: 320px !important;
    width: 90% !important;
    border-radius: 10px !important;
    text-align: center !important;
    padding: 60px 40px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
}

.swal2-title {
    color: inherit !important;
    text-transform: inherit !important;
    position: inherit !important;
    margin: inherit !important;
    padding: initial !important;
    display: inherit !important;
    word-wrap: inherit !important;
    font-size: 16px !important;
    line-height: 20px !important;
    text-align: center !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

.swal2-modal .swal2-content {
    font-size: inherit !important;
    text-align: inherit !important;
    font-weight: inherit !important;
    position: inherit !important;
    float: inherit !important;
    margin: inherit !important;
    padding: initial !important;
    line-height: inherit !important;
    color: inherit !important;
    word-wrap: inherit !important;
}

.swal2-icon {
    width: 72px !important;
    height: 72px !important;
    font-size: 80px !important;
    line-height: 80px !important;
    margin: 0 auto 25px !important;
}

.swal2-confirm {
    transition: .4s ease;
    outline: 0;
}

.swal2-cancel {
    background: transparent !important;
    transition: .4s ease;
    outline: 0;
}

.swal2-cancel:hover {
    color: #fff !important;
    border: 2px solid #fff !important;
    background: #d02f2f !important;
}

.swal2-confirm:hover {
    color: #fff !important;
    border: 2px solid #fff !important;
    background: #39ab39 !important;
}

.swal2-ok-button:hover {
    background-color: transparent !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
    right: 13px;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    top: 34px;
    width: 47px;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
    left: 13px;
}

.swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
    right: 3px;
}

.swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
    left: 10px;
}

.swal2-icon.swal2-success .swal2-success-ring {
    width: 72px !important;
    height: 72px !important;
}

.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'], .swal2-icon.swal2-success .swal2-success-fix, .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
    background: transparent !important;
}

.swal2-icon.swal2-success {
    border-color: transparent !important;
}

@-webkit-keyframes animate-success-tip {
    0% {
        width: 0;
        left: -3px;
        top: 19px;
    }

    54% {
        width: 0;
        left: -3px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -12px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 17px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 10px;
        top: 46px;
    }
}

@keyframes animate-success-tip {
    0% {
        width: 0;
        left: -3px;
        top: 19px;
    }

    54% {
        width: 0;
        left: -3px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -12px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 17px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 10px;
        top: 46px;
    }
}

@-webkit-keyframes animate-success-long {
    0% {
        width: 0;
        right: 41px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 41px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: -5px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 3px;
        top: 38px;
    }
}

@keyframes animate-success-long {
    0% {
        width: 0;
        right: 41px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 41px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: -5px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 3px;
        top: 38px;
    }
}

.field-validation-error {
    position: relative;
    display: flex;
    margin: 10px 0 15px;
    color: #C92525;
}

.primeiro-acesso.informacoes .field-validation-error{
    margin-bottom: 5px;
}

.tagify__input {
    margin: 0;
    padding: 0;
}

.tagify__dropdown__item {
    line-height: 38px;
    font-size: 14px;
    color: #888;
}

.usuarios__user img {
    width: 48px;
    height: 48px;
}

.configuracoes__content {
    margin-top: 0;
    margin-bottom: 0;
}

.configuracoes {
    background: #fcfcfc;
}

.configuracoes .main-header {
    padding-right: 0;
}

.configuracoes .main-header__logo {
    border-right: none;
}

.configuracoes .main-header__items {
    display: flex;
    width: calc(100% - 240px);
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

@media (max-width: 1000px) {
    .configuracoes .main-header__items {
        justify-content: center;
        width: 80px;
    }

    .configuracoes__header-title {
        display: none;
    }

    .configuracoes__header-back span {
        display: none;
    }
}

.configuracoes .main-menu {
    border-right: none;
    padding: 35px 0;
    background: #fafafa;
}

.configuracoes .content__page {
    background-color: transparent;
}

.configuracoes .filter__input {
    border: none;
}

.sub-menu__content {
    overflow-y: auto;
    height: 90%;
    width: 100%;
}

.chosen-container-single .chosen-single {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4 !important;
    background: #fff;
    font-size: 14px;
    color: #888888;
    padding: 0 15px;
    box-shadow: none;
    background-image: none;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    box-shadow: none;
    background-image: none;
}

.chosen-container-single .chosen-single div b {
    background-position: 3px 9px;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -15px 10px;
}

.chosen-container .chosen-drop {
    border: 1px solid #E4E4E4;
    border-top: 0;
}

.chosen-container-single .chosen-search input[type=text] {
    border: 1px solid #E4E4E4;
}

.list-rows__user img {
    width: 48px;
    height: 48px;
}

.primeiro-acesso__row {
    position: relative;
}

.tagify__input::before {
    top: 6.5px;
}

.main-header__logo img {
    max-width: 80%;
    max-height: 80%;
}

.gradient, .main-banner__item::before {
    background-image: linear-gradient(to right, #000, rgba(0, 0, 0, .6))
}

.bg-red, .side-eventos__hour {
    background: #CA4343;
}

.font-color, .podcast__buttons button:hover {
    color: #CA4343 !important;
}

.conteudo-header__read-later.font-color:hover {
    color: #CA4343 !important;
}

.font-color:hover {
    color: #333 !important;
}

.abas__item--active {
    border-bottom: 2px solid #CA4343;
}

.gradient-top, .comissoes__item::before, .comissoes-page__box::before, .comissao__header::before {
    background-image: linear-gradient(to bottom, #2B4F88, #CA4343);
}

.primary-button {
    background: #CA4343;
    color: #fff;
}

.primary-button:hover {
    box-shadow: inset 0 0 0 2px #CA4343;
    color: #CA4343;
}

.main-menu__item:hover, .main-menu__item:hover i, .color-red-hover, .main-menu__comissao:hover, .main-menu__comissao-add:hover {
    color: #CA4343;
}

.color-red-hover:hover, .main-menu__comissao:hover i {
    background: #CA4343;
    color: #fff !important;
}

.main-banner .slick-dots li {
    background: #545454;
}

.main-banner .slick-dots li.slick-active {
    background: #CA4343;
}

.page__back {
    border: 1px solid #CA4343;
    color: #CA4343;
}

.page__back:hover {
    background: #CA4343;
    color: #fff;
}

.comissao__menu a.active {
    box-shadow: inset 0 -2px 0 #CA4343;
}

.comissao__menu a:hover {
    color: #CA4343;
}

.quote-empty-box a {
    color: #CA4343;
}

.links-page__link:hover {
    color: #CA4343;
}

.conteudo-header__back:hover, .new-content-form__icon-label:hover, .conteudo-header__back-with-text:hover {
    color: #CA4343;
}

.new-content-bar__button.active {
    color: #CA4343;
}

.negative-button {
    box-shadow: inset 0 0 0 2px #CA4343;
    color: #CA4343;
    background-color: transparent;
}

.negative-button:hover {
    background: #CA4343;
    color: #fff;
}

.configuracoes__menu-item--active {
    border-color: #CA4343;
}

.new-content-featured__label.with-file {
    color: #CA4343;
}

.notifications__alert {
    background: #2B4F88;
}

.notifications__button:hover {
    color: #2B4F88;
}

.side-files__item i {
    color: #2B4F88;
}

.login__forgot:hover {
    color: #2B4F88;
}

.login__check {
    color: #2B4F88;
}

.success__icon {
    color: #2B4F88;
}

.redefine__options p::before {
    background: #CA4343;
}

.usuarios__blue, .usuarios__unidade {
    color: #43abd4 !important
}

.em-breve {
    color: #fff
}


.swal2-modal {
    background-image: linear-gradient(to bottom, #2B4F88, #CA4343) !important;
    color: #fff !important;
}

.swal2-icon {
    color: #fff !important;
    border-color: #fff !important;
}

.swal2-confirm {
    color: #CA4343 !important;
    border: 2px solid #fff !important;
    background: #fff !important;
}

.swal2-cancel {
    color: #fff !important;
    border: 2px solid #fff !important;
}

.swal2-ok-button:hover {
    box-shadow: inset 0 0 0 2px #fff !important;
    color: #fff !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #fff;
}

.swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
    background-color: #fff;
}

.swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
    background-color: #fff;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border: 4px solid #fff;
}

.button__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.opcao-item {
    position: relative;
}

.opcao-item-remove {
    position: absolute;
    top: 7.5px;
    right: 2px;
    font-size: 20px;
    cursor: pointer;
    color: #9B9B9B;
    font-weight: bold;
}

.opcao-item-remove:hover {
    font-weight: bold;
}

.opcao-item-add {
    cursor: pointer;
    font-size: 14px;
}

.list-respostas .item-resposta {
    height: 40px;
    line-height: 38px;
    border: 1px solid #E4E4E4;
    background: #fff;
    font-size: 14px;
    color: #9B9B9B;
    padding: 0 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.list-respostas.parcial .item-resposta {
    opacity: .7;
}

.list-respostas .item-resposta.active {
    opacity: 1;
}

.list-respostas .item-resposta div {
    width: 100%;
    display: flex;
    align-items: center;
}

.list-respostas .item-resposta div input {
    margin-right: 15px;
    filter: grayscale(1);
    cursor: pointer;
}

.list-respostas .item-resposta div label {
    width: 100%;
    cursor: pointer;
}

.list-respostas.parcial .item-resposta div input, .list-respostas.parcial .item-resposta div label {
    cursor: initial;
}


#grupos_cat {
    width: 450px;
    display: inline-block;
}

.cat-arrow {
    font-size: 16px;
}

.cat-arrow#prev {
    margin: 0 10px 0 20px;
}

.cat-arrow#next {
    margin: 0 0 0 10px;
}

@media (max-width: 1320px) {
    .cat-arrow#prev {
        margin: 0px 10px 0px 5px;
    }

    /*#grupos_cat {*/
    /*    width: 200px;*/
    /*}*/

    .abas__item:not(:last-child) {
        margin-right: 20px;
    }
}

#novo-membro #cadastrar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 315px;
}

.main-header{
    position: fixed;
    width: 100%;
}

[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
[data-title]:after {
    content: attr(data-title);
    background-color: #005b94;
    font-size: 11px;
    color: #FFF;
    position: absolute;
    padding: 5px;
    top: -3em;
    left: 0;
    white-space: nowrap;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    border-radius: 5px;
}
[data-title] {
    position: relative;
}

#cookie.fancybox-content {
    position: absolute !important;
    bottom: 0 !important;
    width: 100% !important;
    left: 0 !important;
    border-radius: 0 !important;
    padding: 20px 30px !important;
    cursor: default;
}

#cookie .fancybox-close-small {
    display: none !important;
}

.container__info__cookies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.txt__cookie {
    font-size: 1.3rem;
    line-height: 2.2rem;
    color: #000000;
    margin-right: 2.6rem;
    text-align: left;
    font-weight: normal;
    font-family: 'Principal', 'Quicksand', sans-serif !important;
}

#SugestaoUsername{
    color: #C92525;
}

.sugestaoUsername{
    color: #FFF;
    font-weight: bold;
}

.tagify__tag__removeBtn{
    line-height: 13px;
}

.toggle_pwd{
    position: absolute;
    right: 10px;
    bottom: 13px;
    font-size: 15px; color: #8d8b8b; cursor: pointer
}

.campo-senha{
    position: relative;
}