.widget {
    font-family: 'Open Sans', sans-serif !important;
}

.widget .widget-posts, .widget .widget-list-messages {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: #000000;
}

.widget .widget-header .widget-close {
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    position: absolute;
    right: 15px;
    z-index: 9;
    padding: 10px 0;
}

.widget-on {
    position: fixed;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    width: 188px;
    height: 62px;
    background: #FFFFFF;
    border-radius: 50px;
    box-shadow: 0 0 7px 1px #ababab !important;
    cursor: pointer;
    display: block;
}

.widget-on div {
    float: left;
    padding: 10px 20px;
}

.widget-on div p {
    font-size: 16px;
    color: #262626;
    font-weight: bold;
    line-height: 19px;
    height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis !important;
    margin: 0;
}

.widget-on div em {
    font-size: 12px;
    color: #666;
    height: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis !important;
    font-style: normal;
}

.widget-on-icon {
    width: 62px;
    height: 62px;
    background-color: #007033;
    border-radius: 50%;
    display: block;
    padding: 16px;
    float: left;
}

.widget .widget-layout {
    pointer-events: auto;
    box-sizing: content-box !important;
    z-index: 999999999;
    position: fixed;
    bottom: 20px;
    min-width: 50px;
    max-width: 300px;
    max-height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-radius: 50px;
    box-shadow: 0 0 7px 1px #ababab;
    -webkit-animation: appear .15s cubic-bezier(.25, .25, .5, 1.1);
    animation: appear .15s cubic-bezier(.25, .25, .5, 1.1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
    -webkit-transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1), min-width .2s cubic-bezier(.25, .25, .5, 1), max-width .2s cubic-bezier(.25, .25, .5, 1), min-height .2s cubic-bezier(.25, .25, .5, 1), max-height .2s cubic-bezier(.25, .25, .5, 1), border-radius 50ms cubic-bezier(.25, .25, .5, 1) .15s, background-color 50ms cubic-bezier(.25, .25, .5, 1) .15s, color 50ms cubic-bezier(.25, .25, .5, 1) .15s;
    transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1), min-width .2s cubic-bezier(.25, .25, .5, 1), max-width .2s cubic-bezier(.25, .25, .5, 1), min-height .2s cubic-bezier(.25, .25, .5, 1), max-height .2s cubic-bezier(.25, .25, .5, 1), border-radius 50ms cubic-bezier(.25, .25, .5, 1) .15s, background-color 50ms cubic-bezier(.25, .25, .5, 1) .15s, color 50ms cubic-bezier(.25, .25, .5, 1) .15s;
    color: #FFFFFF;
}

.widget .layout-right {
    right: 20px
}

.widget .layout-open {
    overflow: hidden;
    min-width: 360px;
    max-width: 360px;
    height: 500px;
    max-height: 500px;
    border-radius: 4px;
    color: #FFFFFF;
    -webkit-transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1.1), min-width .2s cubic-bezier(.25, .25, .5, 1.1), max-width .2s cubic-bezier(.25, .25, .5, 1.1), max-height .2s cubic-bezier(.25, .25, .5, 1.1), min-height .2s cubic-bezier(.25, .25, .5, 1.1), border-radius 0ms cubic-bezier(.25, .25, .5, 1.1), background-color 0ms cubic-bezier(.25, .25, .5, 1.1), color 0ms cubic-bezier(.25, .25, .5, 1.1);
    transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1.1), min-width .2s cubic-bezier(.25, .25, .5, 1.1), max-width .2s cubic-bezier(.25, .25, .5, 1.1), max-height .2s cubic-bezier(.25, .25, .5, 1.1), min-height .2s cubic-bezier(.25, .25, .5, 1.1), border-radius 0ms cubic-bezier(.25, .25, .5, 1.1), background-color 0ms cubic-bezier(.25, .25, .5, 1.1), color 0ms cubic-bezier(.25, .25, .5, 1.1);
}

.widget .layout-expand {
    height: 554px;
    min-height: 554px;
    display: none;
}

.widget .layout-mobile {
    bottom: 10px
}

.widget .layout-mobile.layout-open {
    width: calc(100% - 20px);
    min-width: calc(100% - 20px)
}

.widget .layout-mobile.layout-expand {
    bottom: 0;
    height: 100%;
    min-height: 100%;
    width: 100%;
    min-width: 100%;
    border-radius: 0 !important
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.widget .widget-container {
    position: relative;
    height: 100%;
    width: 100%;
    min-width: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.widget .widget-header, .widget .widget-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.widget .widget-header {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 40px;
    height: 50px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #007033 !important;
    color: #FFFFFF;
}

.widget .widget-header h4 {
    font-family: Open Sans, sans-serif !important;
    font-size: 16px;
    padding: 5px 0;
    margin: 0;
    font-weight: 450;
    line-height: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget .widget-header h4 img {
    margin: 0 15px;
}

@-webkit-keyframes slidein {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slidein {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.widget .widget-content {
    height: 450px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #FFFFFF;
}

.widget .widget-posts {
    position: relative;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    background-color: #FAFAFA;
    -webkit-overflow-scrolling: touch;
}

.widget .widget-posts::-webkit-scrollbar {
    width: 8px;
}

.widget .widget-posts::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.widget .widget-posts::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 5px;
}

.widget .widget-posts::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

.widget .widget-posts>label {
    margin-bottom: 23px;
}

.widget .widget-posts .form-check {
    margin-bottom: 13px;
}

.widget .widget-footer {
    position: relative;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 15px;
    color: #96AAB4;
    background-color: #FFFFFF;
}

.widget .widget-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    height: 48px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 5px;
}

.widget .widget-btn.widget-next {
    background-color: #007033;
    color: #FFFFFF;
}

.widget .widget-btn.widget-next:disabled {
    background-color: gray;
    cursor: no-drop;
}

.widget-posts #rd-tiles-assuntosWidget .col-lg-6 {
    width: 100%;
}

label {
    color: #363844;
}

label.form-check-label {
    font-weight: 400;
}

.select-subject {
    margin-top: 30px;
}

.btn-article {
    font-family: var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-micro);
    color: var(--color-neutral-medium);
    text-align: left;
    background: var(--color-neutral-white);
    border: var(--border-width-thin) solid var(--color-neutral-lightest);
    padding: var(--spacing-stack-tiny);
    border-radius: var(--border-radius-tiny);
    transition-timing-function: cubic-bezier(.37,0,.63,1);
    transition-duration: 0.3s;
    margin-bottom: 8px;
    width: 100%;
}

.btn-article:hover {
    background-color: var(--color-neutral-light);
    color: var(--color-neutral-darkest);
}

.input-group {
    color: var(--color-neutral-medium);
    border-color: transparent;
    border-width: var(--border-width-thin);
    border-style: solid;
    background-color: var(--color-neutral-white);
    border-radius: var(--border-radius-micro);
    box-shadow: 0px 0px 0px 1px var(--color-neutral-light);
    margin: 4px 0;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    border: var(--border-width-none);
    z-index: 2;
    margin-left: -1px;
    height: 40px;
    padding: 0 12px;
    margin: 0;
    float: none;
    display: inline-block;
}

#btnMostrarMais {
    display: none;
}

#btnMostrarMaisTiles {
    display: none;
}

.widget-posts .form-group button, .widget-posts .form-group a {
    width: 100%;
    justify-content: end;
}

button#voltar {
    display: block;
    float: initial;
    margin-bottom: 30px;
}

button#voltar i {
    font-size: 16px;
    vertical-align: bottom;
    margin-right: 5px;
}

#artigotilesWidget {
    margin-top: 50px;
}

#artigotilesWidget .panel.panel-default {
    position: relative !important;
}

.widget-posts .panel.panel-default:first-child:before {
    content: 'Artigos';
    font-family: var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-micro);
    line-height: var(--line-height-large);
    color: var(--color-neutral-darkest);
    margin: 24px 0;
    display: block;
    position: absolute;
    top: -65px;
}