/**
    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%;
    width: 100%;
    height: 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: #e4c5c5;
    color: #634b4b;
}

/* 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;
}*/