body {
    padding-bottom: 35px;
}

body>footer {
    background-color: #fff;
    line-height: 30px;
}

/*input[type=file] {
    margin: 0;
    padding: 0;
    direction: rtl\0/;  IE only
}

input[type=file]::-webkit-file-upload-button {
    height: 100%;
}*/

/**
    Classes para uso comum
*/
.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

.break-all {
    overflow-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate-270 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

/* MODAL TELA CHEIA */
/* ----------------------------------------------------------------------------*/
.modal-full .modal-dialog {
    min-width: 100%;
    margin: 0;
}

.modal-full .modal-content {
    height: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.modal-frame .modal-content {
    height: 100%;
}

.modal-full .modal-body,
.modal-frame .modal-body {
    padding: 15px;
    display: block;
    max-height: 92%;
    position: relative;
    overflow-y: auto;
}




/* Modal full na horizontal */
.modal-stretched .modal-body {
    padding: 15px;
    display: block;
}

.modal-stretched .modal-dialog {
    min-width: calc(100% - 40px);
    margin: 20px;
}

/* Modal quase TELA CHEIA */
.modal-frame .modal-dialog {
    min-width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin: 20px;
    margin-bottom: 0;
}

/* Modal arrastável */
.modal-dialog.ui-draggable-dragging {
    opacity: 0.9;
}

.modal-header.ui-draggable-handle {
    cursor: move;
}

.modal-header.ui-draggable-handle:hover {
    background-color: #b487e6;
    color: #6e2aad;
}

/* MODAL CENTRALIZADO */
/* ----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .modal-middle:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-middle>.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/* CHECKBOX PADRÃO DO SISTEMA */
/* ----------------------------------------------------------------------------*/
/* Uso:
<span class="default-checkbox">
    <label>
        <input type="checkbox" value="0" />
        <span class="default-checkbox-icon"></span>
        Texto
    </label>
</span>
*/
.default-checkbox {
    position: relative;
    min-height: 30px;
    display: inline-block;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    *display: inline;
    *zoom: 1;
}

.default-checkbox-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin: 0;
    overflow: hidden;
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.default-checkbox-icon::before {
    top: 5px;
    left: 3px;
    width: 16px;
    height: 9.4px;
    content: '';
    position: absolute;
    border-left: 4px solid #555666;
    border-bottom: 4px solid #555666;
    -webkit-transition: transform 0.15s cubic-bezier(0, 0.9, 0.35, 1.5);
    -o-transition: transform 0.15s cubic-bezier(0, 0.9, 0.35, 1.5);
    transition: transform 0.15s cubic-bezier(0, 0.9, 0.35, 1.5);
    -webkit-transform: rotate(-115deg) translateZ(0) translateX(12px) translateY(15px);
    -ms-transform: rotate(-115deg) translateZ(0) translateX(12px) translateY(15px);
    -o-transform: rotate(-115deg) translateZ(0) translateX(12px) translateY(15px);
    transform: rotate(-115deg) translateZ(0) translateX(12px) translateY(15px);
    visibility: hidden;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.default-checkbox input {
    visibility: hidden;
    position: absolute;
}

.default-checkbox input:checked+.default-checkbox-icon::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    visibility: visible;
}

.default-checkbox input:disabled+.default-checkbox-icon {
    background-color: #dadada;
    cursor: not-allowed;
    border-color: #bfbbbb;
}

.default-checkbox input:disabled+.default-checkbox-icon::before {
    border-color: #8c8c8c;
}

/* RADIO PADRÃO DO SISTEMA */
/* ----------------------------------------------------------------------------*/
/* Uso:
<span class="default-radio">
    <label>
        <input type="radio" value="0" />
        <span class="default-radio-icon"></span>
        Texto
    </label>
</span>
*/
.default-radio {
    position: relative;
    min-height: 30px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.default-radio-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin: 0;
    overflow: hidden;
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.default-radio-icon::before {
    top: 4px !important;
    left: 4px !important;
    width: 14px;
    height: 14px;
    content: '';
    position: absolute;
    background-color: #555666;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    visibility: hidden;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.default-radio input {
    visibility: hidden;
    position: absolute;
}

.default-radio input:checked+.default-radio-icon::before {
    visibility: visible;
}

.default-radio input:disabled+.default-radio-icon {
    cursor: not-allowed;
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.default-radio input:disabled+.default-radio-icon::before {
    background-color: #000;
}

/* MENSAGENS PADRÃO */
/* ----------------------------------------------------------------------------*/
/*.default-msg-danger {
    border: 1px solid #a94442;
}*/
.default-msg-danger .modal-title {
    color: #a94442;
}

/*.default-msg-warning {
    border: 1px solid #eab10f;
}*/
.default-msg-warning .modal-title {
    color: #b98f1b;
}

/*.default-msg-info {
    border: 1px solid #6eadea;
}*/
.default-msg-info .modal-title {
    color: #3a70a5;
}

/*.default-msg-success {
    border: 1px solid #2d9535;
}*/
.default-msg-success .modal-title {
    color: #528931;
}

/*.default-msg-question {
    border: 1px solid #a94442;
}
.default-msg-question .modal-title {
    color: #a94442;
}*/

/* Dragula */
/* ----------------------------------------------------------------------------*/

.dragula-container {
    min-height: 50px;
}

.dragula-remove-button {
    display: none;
    margin-right: 10px;
    cursor: pointer;
    color: #c52a2a;
}

.dragula-remove-button:hover {
    transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
}

.dragable {
    z-index: 100;
    cursor: grab;
    cursor: -o-grab;
    cursor: -moz-grab;
    cursor: -webkit-grab
}

.dragable .card-body {
    padding-top: 12px;
    padding-bottom: 12px;
}

.dragable.gu-mirror {
    z-index: 500;
}

/* Evento drag ao arrastar itens da grade */
.gu-mirror {
    /* position: absolute !important; */
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.gu-hide {
    display: none !important;
}

.gu-unselectable {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.gu-transit {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
}

.btn-contentus-red {
    background-color: #fb7d7d;
    color: white;
}

.btn-contentus-green {
    background-color: #82ad16;
    color: white;
}

.btn-contentus-gray {
    background-color: #C7C7C7;
    color: white;
}

.modal-fullscreen {
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    z-index: 1050;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow: auto;
}


tr.pergunta-anulada {
    text-decoration: line-through;
    background: #eed202 !important;
}

.dropdown .dropdown-item {
    cursor: pointer;
}


.nav-alerta-instituicao {
    margin-left: 15px;
    margin-right: 15px;
}

.nav-alerta-instituicao i {
    font-size: 23px;
    color: #9c9c9c;
    cursor: pointer;
}
.nav-alerta-instituicao.nova i {
    color: #ad6b00 !important;
}

.balancar {
    transform: rotate(15deg);
}

.tox-toolbar-overlord.tox-tbtn--disabled .tox-toolbar__primary,
.tox.tox-tinymce.tox-tinymce--disabled .tox-editor-container .tox-sidebar-wrap .tox-edit-area .tox-edit-area__iframe  {
    background-color: #f7f7f7;
}

.img-forum {
    max-width: 500px;
}

@media(max-width:767px) {
    .img-forum {
        max-width: 100%;
    }
}