/* #44631 Não exibir mensagens globais para usuários não interativos */
body[data-is-interactive='false'] .globalMessage {
    opacity: 0;
    pointer-events: none;
}

/*
 * Carregamento dos Icon Fonts e configurações necessárias
 */

    @font-face {
      font-family: 'fontello';
      src: url('fonts/Fontello/font/fontello.eot?96141403');
      src: url('fonts/Fontello/font/fontello.eot?96141403#iefix') format('embedded-opentype'),
           url('fonts/Fontello/font/fontello.woff2?96141403') format('woff2'),
           url('fonts/Fontello/font/fontello.woff?96141403') format('woff'),
           url('fonts/Fontello/font/fontello.ttf?96141403') format('truetype'),
           url('fonts/Fontello/font/fontello.svg?96141403#fontello') format('svg');
      font-weight: normal;
      font-style: normal;
    }

    [class^="icon-"]:before, [class*=" icon-"]:before {
      font-family: "fontello";
      font-weight: normal;
      font-style: normal;
      display: inline-block;
      text-decoration: inherit;
      font-size: 0.95em;
    }
     a [class^="icon-"], a [class*=" icon-"] {
      display: inline-block;
      text-decoration: inherit;
    }
    /* makes the font 33% larger relative to the icon container */
    .icon-large:before {
      vertical-align: top;
      font-size: 1.3333333333333333em;
    }
    .btn [class^="icon-"], .btn [class*=" icon-"] {
      /* keeps button heights with and without icons the same */

      line-height: .9em;
    }
    li [class^="icon-"], li [class*=" icon-"] {
      display: inline-block;
      width: 1.25em;
      text-align: center;
    }
    li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
      /* 1.5 increased font size for icon-large * 1.25 width */

      width: 1.875em;
    }
    li[class^="icon-"], li[class*=" icon-"] {
      margin-left: 0;
      list-style-type: none;
    }
    li[class^="icon-"]:before, li[class*=" icon-"]:before {
      text-indent: -2em;
      text-align: center;
    }
    li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
      text-indent: -1.3333333333333333em;
    }
    
    /* botão - receber compartilhamento */ 
    .icon-received:before {
        content: '\e80e';
        transform: rotate(90deg) scale(1, -1);
    }
    
    .icon-spin3.rotate360 {
        -webkit-animation-duration: 1.4s !important; 
        animation-duration: 1.4s !important;
    }
/**/


root { 
    display: block;
}

* {
    font-family: Tahoma, Calibri, Verdana, Arial;
}

body {
	margin: 0;
	background-color: #FFFFFF;
}

body.shrink {
	background-color: #999999; /*#E8E8E8;*/
}

.bold {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

/* Não logado */
.shrink #CloudView {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

.shrink #CloudView #divViewArea {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-grow: 1;
}

/* Logado */
body:not(.shrink) #TitleBarView {
    display: none;
}

#CloudView #divViewArea {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: white;
}

#taticViewLoading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    opacity: 0.8;
    text-align: center;
    background-image: url(com/sadig/cloud/view/assets/loading_gif.gif);
    background-repeat:no-repeat;
    /*background-attachment:fixed;*/
    background-position:center; 
	z-index: 50000;
    color: #666666;
}

#taticViewLoading label {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
}

div .ui-button > span {
	font-size: 16px;
	padding: 5px;
}

.expanded {
    background-image: url(com/sadig/cloud/view/assets/collapse.png);
}

/* WarningDialog - remover em #32345 */
    #warningDialog .detailImage {
        float: right;
        margin-right: 13px;
        margin-top: 11px;
        width: 16px;
        height: 16px;
        background-image: url(com/sadig/cloud/view/assets/expand.png);
    }

    #warningDialog .tdMessage {
        width: 70%;
    }

    #warningDialog .tdOccurrence {
        width: 15%;
    }

    #warningDialog .tdActions {
        width: 15%;
    }

    #warningDialog .divHeader {
        height: 10%;
    }

    #warningDialog .tbHeader {
        width: 100%;
    }

    #warningDialog .messageContent {
        overflow-y: auto;
        height: 90%;
    }

    #warningDialog .tbDetail {
        width: 100%;
        height: 100px;
        display: none;
    }

    #warningDialog .divWarning {
        border: 1px solid #000000;
        font-size: 9pt;
        margin-bottom: 5px;
        overflow: hidden;
        border-radius: 5px 5px 5px 5px;
    }

    #warningDialog .tbWarning {
        width: 100%;
        vertical-align: middle;
    }

    #warningDialog .lbClose {
        padding-left: 5px;
    }

.disabled {
	opacity: .5;
    pointer-events: none;
}

#BoundsDialog .smallText {
	font-size: 10px;
	color: gray;
}

.globalMessage.photon-overlay {
    position: fixed;
    z-index: 9999;
}

.globalMessage .content {
    position: fixed;
    bottom: 15px;
    display: flex;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    background: #555;
    color: #ddd;
    border-radius: 3px;
    padding: 13px 20px;
    box-shadow: 0 2px 2px 0 #333, 0 0 0 1px #444;
}

.globalMessage .content .message-wrap {
    flex-grow: 1;
    text-align: justify;
}

.globalMessage .content .message-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.globalMessage .content a {
    color: #2196F3;
}

.globalMessage .content button {
    border: 0;
    color: white;
    background: #4cb733;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 13px;
    margin-left: 20px;
    align-self: center;
    white-space: nowrap;
}

.globalMessage .content button:hover {
    opacity: 0.8;
}

/* Visão mobile */
@media (max-width: 767px) {
    
    .globalMessage .content {
        flex-direction: column;
        width: 100%;
        bottom: 0;
        border-radius: 0;
        font-size: 13px;
    }
    
    .globalMessage .content button {
        margin: 0;
        margin-top: 10px;
    }
    
}

/* Estilos das telas de logon e registro novas */

.outsideView {
    position: relative;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0px 15px 15px 2px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 15px 15px 2px rgba(0,0,0,0.7);
    box-shadow: 0px 15px 15px 2px rgba(0,0,0,0.7);
}

.outsideView .mainBanner {
    background: #d8e0e7;
    z-index: 1;
}

.outsideView .mainBannerBottomLine {
    position: relative;
    color: #e45b2e;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.outsideView .mainBannerBottomLine > div {
    height: 2px;
    border-bottom: 2px solid #e45b2e;
    display: inline-block;
}

.outsideView .mainBannerBottomLine > .left {
    position: absolute;
    left: 0;
    width: 345px;
    width: calc(50% - 134px);
}

.outsideView .mainBannerBottomLine > .centerLeft {
    position: relative;
    top: -11px;
    left: 20px;
    width: 37px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: white;
    height: 30px;
}

.outsideView .mainBannerBottomLine > .center {
    position: relative;
    top: -2px;
    width: 220px;
    height: 30px;
    background: white;
}

.outsideView .mainBannerBottomLine > .centerRight {
    position: relative;
    top: -11px;
    left: -20px;
    width: 37px;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 30px;
    background: white;
}

.outsideView .mainBannerBottomLine > .right {
    position: absolute;
    right: 0;
    width: 345px;
    width: calc(50% - 134px);
}

.outsideView .mainBannerBottomLine > span {
    position: absolute;
    top: 5px;
    left: 0px;
    right: 0px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}

.outsideView .mainInformation {
    text-align: center;
}

.outsideView .mainInformation .informationItem {
    display: inline-block;
    width: 32%;
    vertical-align: top;
    padding: 1%;
}

.outsideView .mainInformation h4 {
    color: #253c78;
    margin-bottom: 0;
    font-size: 14px;
}

.outsideView .mainInformation .informationItem h4:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    margin-top: -4px;
    width: 0; 
    height: 0; 
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #e12d27;
}

.outsideView .mainInformation p {
    font-size: 12px;
    line-height: 20px;
}

.outsideView .registerStrip {
    margin-top: 30px;
    text-align: center;
}

.outsideView .registerStrip button {
    width: 220px;
}

.outsideView .footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    background: #9da6b0;
    color: white;
    border-top: 1px solid #bec4cb;
    border-bottom: 1px solid #bec4cb;
    min-height: 30px;
    line-height: 30px;
    font-size: 12px;
    text-align: left;
    padding-left: 8px;
    padding-right: 8px;
}

.outsideView .footer > span {
    margin: 10px;
    cursor: pointer;
}

.outsideView .footer > span:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    margin-top: -2px;
    width: 5px; 
    height: 5px;
    background: white;
    border-radius: 50%;
}

.outsideView .rights {
    position: absolute;
    bottom: 0;
    right: 18px;
    font-size: 10px;
    color: #b5a6c5;
    padding-bottom: 4px;
}

/* Telas de registro */
    .registerWrapper .mainBanner {
        text-align: center;
        padding-bottom: 10px;
    }

    .registerWrapper .registerForm {
        display: inline-block;
        width: 80%;
        max-width: 480px;
        margin-top: 10px;
    }

    .registerWrapper .facebookButton {
        margin-bottom: 10px;
    }

    .registerWrapper .agreeBar {
        text-align: left;
        font-size: 14px;
        color: #747980;
    }

    .registerWrapper .agreeBar > div {
        clear: both;
        margin-bottom: 8px;
    }

    .registerWrapper .spacer {
        height: 100px;
    }

    @media (max-width: 600px) 
    {
        .registerWrapper .requiredFields {
            display: none;
        }

        .registerWrapper .qrkFieldWrapper.qrkHalfSize {
            width: 100%;
        }
    }

    @media (max-width: 400px) 
    {
        .registerWrapper .facebookButton {
            width: 100%;
            margin-bottom: 25px;
        }
    }

/* Botão flutuante */
.floating-btn {
    font-size: 20px;
    border-radius: 50%!important;
    display: inline-block;
    height: 45px !important;
    width: 45px !important;
    line-height: 45px;
    text-align: center;
    background: #337ab7;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
}

/* Estilo desabilitado dos botões do jquery ui */
.tvInvalid {
    opacity: 0.64 !important;
    cursor: default !important;
}

.facebookButton {
    width: 185px;
    line-height: 25px;
    text-decoration: none !important;
    display: inline-block;
    text-align: left;
    overflow: hidden;
    background: #4c69ba;
    background: -webkit-linear-gradient(#4c69ba, #3b55a0);
    background: linear-gradient(#4c69ba, #3b55a0);
    color: white !important;
    border-radius: 2px;
}

.facebookButton:hover {
    background: #5b7bd5;
    background: -webkit-linear-gradient(#5b7bd5, #4864b1);
    background: linear-gradient(#5b7bd5, #4864b1);
    border-color: #5874c3 #4961a8 #41599f;
    box-shadow: inset 0 0 1px #607fd6;
}

.facebookButton i {
    width: 20px;
    font-size: 22px;
    color: white;
    margin-left: 6px;
    margin-top: -1px;
}

.facebookButton span {
    display: inline-block;
    width: 145px;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'lucida grande',tahoma,verdana,arial,sans-serif;
    position: relative;
    top: -4px;
    text-align: center;
}

.logonForm .rememberWrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 13px;
    margin-bottom: 0px;
    cursor: pointer;
}

.logonForm #inRemember {
    display: none;
}

.logonForm #login-remember:before {
    font-family: "Fontello";
    content: "\f096";
    font-size: 20px;
    font-style: normal;
    vertical-align: middle;
    display: inline-block;
    width: 20px;
}

.logonForm #inRemember:checked ~ #login-remember:before {
    content: "\e801";
    color: #e12d27;
}

.message-dialog .messageContent {
    text-align: justify;
}

.message-dialog .messageContent br {
    line-height: 25px;
}

.ui-dialog .ui-dialog-buttonpane .auto-confirm-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #4494d6;
}

/* #32076 - Dialogs 'responsivas' */
@media (min-width: 768px) {
    .responsive-dialog .responsive-content {
        width: auto !important;
        min-height: 0px !important;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: inherit;
    }
}

@media (max-width: 767px) {
    .responsive-dialog + #CloudView {
        display: none;
    }
    
    .responsive-dialog {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column;
        border-radius: 0px !important;
    }
    
    .responsive-dialog .ui-dialog-titlebar {
        min-height: 50px !important;
        border-radius: 0px !important;
        padding-left: 50px !important;
        padding-top: 10px !important;
        font-size: 18px !important;
    }
    
    .responsive-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close { left: 10px; right: auto; }
    .responsive-dialog .ui-dialog-titlebar .ui-icon-closethick:before { font-family: "fontello"; content: '\e84d' !important; }

    .responsive-dialog .ui-dialog-titlebar .ui-dialog-titlebar-help { position: absolute; right: 10px !important; }
    
    .responsive-dialog .ui-dialog-content {
        position: relative;
        overflow: auto !important;
        flex-grow: 1;
        padding: 5px !important;
        padding-bottom: 20px !important; /* desconsiderar espaço do scroll inferior */
        display: flex;
        flex-flow: column;
        min-height: 0px !important;
        max-height: none !important;
    }
    
    .responsive-dialog .responsive-content {
        height: 100%;
        position: relative !important;
        margin: 0 auto;
    }
    
    .responsive-dialog .ui-dialog-buttonpane {
        min-height: auto;
        border-radius: 0;
    }

    .responsive-dialog .ui-dialog-buttonset {
        display: flex;
        justify-content: flex-end;
    }
    
    .responsive-dialog .ui-dialog-buttonset span {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .responsive-dialog .ui-dialog-buttonpane #close,
    .responsive-dialog .ui-dialog-buttonpane #cancel {
        display: none;
    }
    
    /* Oculta .ui-dialog-buttonpane quando não haver conteúdo */
        .responsive-dialog .ui-dialog-buttonpane {
             padding-top: 0 !important; 
             padding-bottom: 0 !important; 
             margin-top: 0 !important; 
             margin-bottom: 0 !important; 
        }

        .responsive-dialog .ui-dialog-buttonpane button {
             margin-top: .3em !important;
             margin-bottom: .5em !important;
        }
    /* */
}

/* ------------------------------------------- */

/*
 * Rotation
 */

@-webkit-keyframes rotate360 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate360 {
    display: inline-block;
    -webkit-animation-name:             rotate360; 
    -webkit-animation-duration:         .8s; 
    -webkit-animation-iteration-count:  infinite;
    -webkit-animation-timing-function:  linear;
    animation-name:                     rotate360; 
    animation-duration:                 .8s;
    animation-iteration-count:          infinite;
    animation-timing-function:          linear;
}

.rotate360:before {
     font-size: 1em; 
}

/*
 * Arrow movement
 */
@-webkit-keyframes move-left-to-right {
    0%, 100% {
        padding-right: 0px;
    }
    65% {
        padding-right: 15px;
        background: rgba(0,0,0,.02);
    }
}

@keyframes move-left-to-right {
    0%, 100% {
        padding-right: 0px;
    }
    65% {
        padding-right: 15px;
        background: rgba(0,0,0,.02);
    }
}

.move-left-to-right {
    -webkit-animation-name:             move-left-to-right; 
    -webkit-animation-duration:         2s; 
    -webkit-animation-iteration-count:  10;
    -webkit-animation-timing-function:  linear;
    animation-name:                     move-left-to-right; 
    animation-duration:                 2s;
    animation-iteration-count:          10;
    animation-timing-function:          linear;
}

/*
 * Pulse
 */

@-webkit-keyframes pulse {
    0% { box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.06); }
    70% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0px rgba(0, 0, 0, 0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.06); }
    70% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0px rgba(0, 0, 0, 0); }
}

.pulse {
    -webkit-animation-name:             pulse; 
    -webkit-animation-duration:         2s; 
    -webkit-animation-iteration-count:  15;
    -webkit-animation-timing-function:  linear;
    animation-name:                     pulse; 
    animation-duration:                 2s;
    animation-iteration-count:          15;
    animation-timing-function:          linear;
}

/* Classe utilizada pelo SelectionUtil.js */
.nMoreSufix {
    vertical-align: bottom;
    font-size: 14px;
}

/* ------------------------------------------- */

/* Estilos do Photon(Vue) */

[v-cloak] {
    display: none;
}

@media (max-width: 500px) 
{
    .outsideView .mainInformation .informationItem {
        display: none;
    }
}