/* BACKGROUND COLOR DAS APLICAÇÕES */
.if-bg-app {
    background: #f4f6f9;
}

/* CAIXA PEQUENA */
.if-small-box {
    border-radius: 0.25rem;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    display: block;
    margin-bottom: 20px;
    position: relative;
}
  
.if-small-box > .inner {
    padding: 10px;
}
  
.if-small-box > .if-small-box-footer {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding: 3px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
}

.if-small-box > .if-small-box-footer:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.if-small-box h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .col-xl-2 .if-small-box h3,
    .col-lg-2 .if-small-box h3,
    .col-md-2 .if-small-box h3 {
        font-size: 1.6rem;
    }
    .col-xl-3 .if-small-box h3,
    .col-lg-3 .if-small-box h3,
    .col-md-3 .if-small-box h3 {
        font-size: 1.6rem;
    }
}

@media (min-width: 1200px) {
    .col-xl-2 .if-small-box h3,
    .col-lg-2 .if-small-box h3,
    .col-md-2 .if-small-box h3 {
        font-size: 2.2rem;
    }
    .col-xl-3 .if-small-box h3,
    .col-lg-3 .if-small-box h3,
    .col-md-3 .if-small-box h3 {
        font-size: 2.2rem;
    }
}
  
.if-small-box p {
    font-size: 1rem;
}

.if-small-box p > small {
    color: #f8f9fa;
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

.if-small-box h3,
.if-small-box p {
    z-index: 5;
}
  
.if-small-box .icon {
    color: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.if-small-box .icon > i {
    font-size: 90px;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s linear;
}

.if-small-box .icon > i.fa, .if-small-box .icon > i.fas, .if-small-box .icon > i.far, .if-small-box .icon > i.fab, .if-small-box .icon > i.glyphicon, .if-small-box .icon > i.ion {
    font-size: 70px;
    top: 20px;
}

.if-small-box:hover {
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .if-small-box {
        text-align: center;
    }
    .if-small-box .icon {
        display: none;
    }
    .if-small-box p {
        font-size: 12px;
    }
}

/* BOTÕES DA TOOLBAR DAS APLICAÇÕES */
.if-btn-app {
    border-radius: 3px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #6c757d;
    font-size: 12px;
    height: 60px;
    margin: 0px;
    /*min-width: 80px;*/
    padding: 15px 5px;
    position: relative;
    text-align: center;
}

.if-btn-app-min-width-60 {
    min-width: 60px !important;
}
  
.if-btn-app > .fa,
.if-btn-app > .fas,
.if-btn-app > .far,
.if-btn-app > .fab,
.if-btn-app > .glyphicon,
.if-btn-app > .ion {
    display: block;
    font-size: 20px;
}

.if-btn-app:hover {
    background: #f8f9fa;
    border-color: #aaaaaa;
    color: #444;
}
  
.if-btn-app:active, .if-btn-app:focus {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
  
.if-btn-app > .badge {
    font-size: 10px;
    font-weight: 400;
    position: absolute;
    right: -10px;
    top: -3px;
}

/* CARTÕES */
.if-card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.if-card > hr {
    margin-right: 0;
    margin-left: 0;
}

.if-card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.if-card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.if-card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.if-card-title {
    margin-bottom: 0.75rem;
}

.if-card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.if-card-text:last-child {
    margin-bottom: 0;
}

.if-card-link:hover {
    text-decoration: none;
}

.if-card-link + .if-card-link {
    margin-left: 1.25rem;
}

.if-card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}

.if-card-header:first-child {
    border-radius: calc(0.25rem - 0) calc(0.25rem - 0) 0 0;
}

.if-card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.if-card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 0 solid rgba(0, 0, 0, 0.125);
}

.if-card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 0) calc(0.25rem - 0);
}

.if-card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.if-card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.if-card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.if-card-img,
.if-card-img-top,
.if-card-img-bottom {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
}

.if-card-img,
.if-card-img-top {
    border-top-left-radius: calc(0.25rem - 0);
    border-top-right-radius: calc(0.25rem - 0);
}

.if-card-img,
.if-card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 0);
    border-bottom-left-radius: calc(0.25rem - 0);
}

.if-card-deck .if-card {
    margin-bottom: 7.5px;
}

@media (min-width: 576px) {
    .if-card-deck {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -7.5px;
        margin-left: -7.5px;
    }
    .if-card-deck .if-card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-right: 7.5px;
        margin-bottom: 0;
        margin-left: 7.5px;
    }
}

.if-card-group > .if-card {
    margin-bottom: 7.5px;
}

@media (min-width: 576px) {
    .if-card-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .if-card-group > .if-card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .if-card-group > .if-card + .if-card {
        margin-left: 0;
        border-left: 0;
    }
    .if-card-group > .if-card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .if-card-group > .if-card:not(:last-child) .if-card-img-top,
    .if-card-group > .if-card:not(:last-child) .if-card-header {
        border-top-right-radius: 0;
    }
    .if-card-group > .if-card:not(:last-child) .if-card-img-bottom,
    .if-card-group > .if-card:not(:last-child) .if-card-footer {
        border-bottom-right-radius: 0;
    }
    .if-card-group > .if-card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .if-card-group > .if-card:not(:first-child) .if-card-img-top,
    .if-card-group > .if-card:not(:first-child) .if-card-header {
        border-top-left-radius: 0;
    }
    .if-card-group > .if-card:not(:first-child) .if-card-img-bottom,
    .if-card-group > .if-card:not(:first-child) .if-card-footer {
        border-bottom-left-radius: 0;
    }
}

.if-card-columns .if-card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .if-card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .if-card-columns .if-card {
        display: inline-block;
        width: 100%;
    }
}

.accordion > .if-card {
    overflow: hidden;
}

.accordion > .if-card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion > .if-card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.if-card-primary:not(.if-card-outline) > .if-card-header {
    background-color: #007bff;
}

.if-card-primary:not(.if-card-outline) > .if-card-header,
.if-card-primary:not(.if-card-outline) > .if-card-header a {
    color: #ffffff;
}

.if-card-primary:not(.if-card-outline) > .if-card-header a.active {
    color: #1F2D3D;
}

.if-card-primary.if-card-outline {
    border-top: 3px solid #007bff;
}

.if-card-primary.if-card-outline-tabs > .if-card-header a:hover {
    border-top: 3px solid #dee2e6;
}

.if-card-primary.if-card-outline-tabs > .if-card-header a.active {
    border-top: 3px solid #007bff;
}
  
  .bg-primary .btn-tool,
  .bg-gradient-primary .btn-tool,
  .if-card-primary:not(.if-card-outline) .btn-tool {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .bg-primary .btn-tool:hover,
  .bg-gradient-primary .btn-tool:hover,
  .if-card-primary:not(.if-card-outline) .btn-tool:hover {
    color: #ffffff;
  }
  
  .if-card.bg-primary .bootstrap-datetimepicker-widget .table td,
  .if-card.bg-primary .bootstrap-datetimepicker-widget .table th,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget .table td,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget .table th {
    border: none;
  }
  
  .if-card.bg-primary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.day:hover,
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.hour:hover,
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.minute:hover,
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.second:hover,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.day:hover,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.hour:hover,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.minute:hover,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.second:hover {
    background: #0067d6;
    color: #ffffff;
  }
  
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.today::before,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: #ffffff;
  }
  
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.active,
  .if-card.bg-primary .bootstrap-datetimepicker-widget table td.active:hover,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.active,
  .if-card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.active:hover {
    background: #3395ff;
    color: #ffffff;
  }
  
  .if-card-secondary:not(.if-card-outline) > .if-card-header {
    background-color: #6c757d;
  }
  
  .if-card-secondary:not(.if-card-outline) > .if-card-header,
  .if-card-secondary:not(.if-card-outline) > .if-card-header a {
    color: #ffffff;
  }
  
  .if-card-secondary:not(.if-card-outline) > .if-card-header a.active {
    color: #1F2D3D;
  }
  
  .if-card-secondary.if-card-outline {
    border-top: 3px solid #6c757d;
  }
  
  .if-card-secondary.if-card-outline-tabs > .if-card-header a:hover {
    border-top: 3px solid #dee2e6;
  }
  
  .if-card-secondary.if-card-outline-tabs > .if-card-header a.active {
    border-top: 3px solid #6c757d;
  }
  
  .bg-secondary .btn-tool,
  .bg-gradient-secondary .btn-tool,
  .if-card-secondary:not(.if-card-outline) .btn-tool {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .bg-secondary .btn-tool:hover,
  .bg-gradient-secondary .btn-tool:hover,
  .if-card-secondary:not(.if-card-outline) .btn-tool:hover {
    color: #ffffff;
  }
  
  .if-card.bg-secondary .bootstrap-datetimepicker-widget .table td,
  .if-card.bg-secondary .bootstrap-datetimepicker-widget .table th,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget .table td,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget .table th {
    border: none;
  }
  
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.day:hover,
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.hour:hover,
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.minute:hover,
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.second:hover,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.day:hover,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.hour:hover,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.minute:hover,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.second:hover {
    background: #596167;
    color: #ffffff;
  }
  
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.today::before,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: #ffffff;
  }
  
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.active,
  .if-card.bg-secondary .bootstrap-datetimepicker-widget table td.active:hover,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.active,
  .if-card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.active:hover {
    background: #868e96;
    color: #ffffff;
  }
  
  .if-card-success:not(.if-card-outline) > .if-card-header {
    background-color: #28a745;
  }
  
  .if-card-success:not(.if-card-outline) > .if-card-header,
  .if-card-success:not(.if-card-outline) > .if-card-header a {
    color: #ffffff;
  }
  
  .if-card-success:not(.if-card-outline) > .if-card-header a.active {
    color: #1F2D3D;
  }
  
  .if-card-success.if-card-outline {
    border-top: 3px solid #28a745;
  }
  
  .if-card-success.if-card-outline-tabs > .if-card-header a:hover {
    border-top: 3px solid #dee2e6;
  }
  
  .if-card-success.if-card-outline-tabs > .if-card-header a.active {
    border-top: 3px solid #28a745;
  }

  .info-box {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    background: #ffffff;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    min-height: 80px;
    padding: .5rem;
    position: relative;
  }
  
  .info-box .progress {
    background-color: rgba(0, 0, 0, 0.125);
    height: 2px;
    margin: 5px 0;
  }
  
  .info-box .progress .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box-icon {
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.875rem;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 70px;
  }
  
  .info-box .info-box-icon > img {
    max-width: 100%;
  }
  
  .info-box .info-box-content {
    -ms-flex: 1;
    flex: 1;
    padding: 5px 10px;
  }
  
  .info-box .info-box-number {
    display: block;
    font-weight: 700;
  }
  
  .info-box .progress-description,
  .info-box .info-box-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .info-box .info-box .bg-primary,
  .info-box .info-box .bg-gradient-primary {
    color: #ffffff;
  }
  
  .info-box .info-box .bg-primary .progress-bar,
  .info-box .info-box .bg-gradient-primary .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box .bg-secondary,
  .info-box .info-box .bg-gradient-secondary {
    color: #ffffff;
  }
  
  .info-box .info-box .bg-secondary .progress-bar,
  .info-box .info-box .bg-gradient-secondary .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box .bg-success,
  .info-box .info-box .bg-gradient-success {
    color: #ffffff;
  }
  
  .info-box .info-box .bg-success .progress-bar,
  .info-box .info-box .bg-gradient-success .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box .bg-info,
  .info-box .info-box .bg-gradient-info {
    color: #ffffff;
  }
  
  .info-box .info-box .bg-info .progress-bar,
  .info-box .info-box .bg-gradient-info .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box .bg-warning,
  .info-box .info-box .bg-gradient-warning {
    color: #1F2D3D;
  }
  
  .info-box .info-box .bg-warning .progress-bar,
  .info-box .info-box .bg-gradient-warning .progress-bar {
    background-color: #1F2D3D;
  }
  
  .info-box .info-box .bg-danger,
  .info-box .info-box .bg-gradient-danger {
    color: #ffffff;
  }
  
  .info-box .info-box .bg-danger .progress-bar,
  .info-box .info-box .bg-gradient-danger .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box .bg-light,
  .info-box .info-box .bg-gradient-light {
    color: #1F2D3D;
  }
  
  .info-box .info-box .bg-light .progress-bar,
  .info-box .info-box .bg-gradient-light .progress-bar {
    background-color: #1F2D3D;
  }
  
  .info-box .info-box .bg-dark,
  .info-box .info-box .bg-gradient-dark {
    color: #ffffff;
  }
  
  .info-box .info-box .bg-dark .progress-bar,
  .info-box .info-box .bg-gradient-dark .progress-bar {
    background-color: #ffffff;
  }
  
  .info-box .info-box-more {
    display: block;
  }
  
  .info-box .progress-description {
    margin: 0;
  }
  
  @media (min-width: 768px) {
    .col-xl-2 .info-box .progress-description,
    .col-lg-2 .info-box .progress-description,
    .col-md-2 .info-box .progress-description {
      display: none;
    }
    .col-xl-3 .info-box .progress-description,
    .col-lg-3 .info-box .progress-description,
    .col-md-3 .info-box .progress-description {
      display: none;
    }
  }
  
  @media (min-width: 992px) {
    .col-xl-2 .info-box .progress-description,
    .col-lg-2 .info-box .progress-description,
    .col-md-2 .info-box .progress-description {
      font-size: 0.75rem;
      display: block;
    }
    .col-xl-3 .info-box .progress-description,
    .col-lg-3 .info-box .progress-description,
    .col-md-3 .info-box .progress-description {
      font-size: 0.75rem;
      display: block;
    }
  }
  
  @media (min-width: 1200px) {
    .col-xl-2 .info-box .progress-description,
    .col-lg-2 .info-box .progress-description,
    .col-md-2 .info-box .progress-description {
      font-size: 1rem;
      display: block;
    }
    .col-xl-3 .info-box .progress-description,
    .col-lg-3 .info-box .progress-description,
    .col-md-3 .info-box .progress-description {
      font-size: 1rem;
      display: block;
    }
  }