/*@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,800,700,600);
/*************************************************************
*						App Variables
**************************************************************/
/*************************************************************
*					  Colors Definitions
**************************************************************/
/*************************************************************
*					Common Element Variables
**************************************************************/
/* ***************************************************
*			Page Specific Element Variables
****************************************************** */
/*****************************************
*       Background-image: cover mixin
******************************************/
/*****************************************
*       Media Query Mixins
******************************************/
/**:not(html) {
    -webkit-transform: translate3d(0, 0, 0);
}*/

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #4f5f6f;
  overflow-x: hidden; }

.main-wrapper {
  width: 100%;
  position: absolute;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden; }

#ref .color-primary {
  color: #85CE36; }

#ref .chart .color-primary {
  color: #85CE36; }

#ref .chart .color-secondary {
  color: #9ed85f; }

.app {
  position: relative;
  width: 100%;
  padding-left: 240px;
  min-height: 100vh;
  margin: 0 auto;
  left: 0;
  background-color: #f0f3f6;
  -webkit-box-shadow: 0 0 3px #ccc;
          box-shadow: 0 0 3px #ccc;
  -webkit-transition: left 0.3s ease, padding-left 0.3s ease;
  transition: left 0.3s ease, padding-left 0.3s ease;
  overflow: hidden; }
  .app .content {
    padding: 95px 20px 75px 20px;
    min-height: 100vh; }
    @media (min-width: 1200px) {
      .app .content {
        padding: 105px 40px 85px 40px; } }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .app .content {
        padding: 100px 35px 80px 35px; } }
    @media (min-width: 768px) and (max-width: 991.98px) {
      .app .content {
        padding: 95px 20px 75px 20px; } }
    @media (max-width: 767.98px) {
      .app .content {
        padding: 70px 20px 70px 20px; } }
  @media (max-width: 991.98px) {
    .app {
      padding-left: 0; } }
  @media (max-width: 991.98px) {
    .app.sidebar-open {
      left: 0; } }
  .app.blank {
    background-color: #667380; }

.auth {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #667380;
  overflow-x: hidden;
  overflow-y: auto; }

.auth-container {
  width: 450px;
  min-height: 330px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%); }
  .auth-container .auth-header {
    text-align: center;
    border-bottom: 1px solid #85CE36; }
  .auth-container .auth-title {
    color: #97A4B1;
    padding: 20px;
    line-height: 30px;
    font-size: 26px;
    font-weight: 600;
    margin: 0; }
  .auth-container .auth-content {
    padding: 30px 50px;
    min-height: 260px; }
  .auth-container .forgot-btn {
    line-height: 28px; }
  .auth-container .checkbox label {
    padding: 0; }
  .auth-container .checkbox a {
    vertical-align: text-top; }
  .auth-container .checkbox span {
    color: #4f5f6f; }

@media (max-width: 767.98px) {
  .auth-container {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: inherit;
            transform: inherit;
    margin: 0;
    margin-bottom: 10px; }
    .auth-container .auth-content {
      padding: 30px 25px; } }

.error-card {
  width: 410px;
  min-height: 330px;
  margin: 60px auto; }
  .error-card .error-title {
    font-size: 150px;
    line-height: 150px;
    font-weight: 700;
    color: #252932;
    text-align: center;
    text-shadow: rgba(61, 61, 61, 0.3) 0.5px 0.5px, rgba(61, 61, 61, 0.2) 1px 1px, rgba(61, 61, 61, 0.3) 1.5px 1.5px; }
  .error-card .error-sub-title {
    font-weight: 100;
    text-align: center; }
  .error-card .error-container {
    text-align: center;
    visibility: hidden; }
    .error-card .error-container.visible {
      visibility: visible; }
  .error-card.global {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    margin: 0; }
    .error-card.global .error-title {
      color: #ffffff; }
    .error-card.global .error-sub-title,
    .error-card.global .error-container {
      color: #ffffff; }

@media (min-width: 768px) and (max-width: 991.98px) {
  .error-card {
    width: 50%; }
    .error-card.global {
      position: relative;
      top: 25%;
      left: 0;
      -webkit-transform: inherit;
              transform: inherit;
      margin: 40px auto; } }

@media (max-width: 767.98px) {
  .error-card {
    width: 90%; }
    .error-card.global {
      position: relative;
      top: 25%;
      left: 0;
      -webkit-transform: inherit;
              transform: inherit;
      margin: 40px auto; } }

.alert {
  background-image: none; }
  .alert.alert-primary {
    color: #ffffff;
    background-color: #85CE36;
    border-color: #85CE36; }
    .alert.alert-primary hr {
      border-top-color: #78bd2e; }
    .alert.alert-primary .alert-link {
      color: #e6e6e6; }
  .alert.alert-success {
    color: #ffffff;
    background-color: #4bcf99;
    border-color: #4bcf99; }
    .alert.alert-success hr {
      border-top-color: #37ca8e; }
    .alert.alert-success .alert-link {
      color: #e6e6e6; }
  .alert.alert-info {
    color: #ffffff;
    background-color: #76D4F5;
    border-color: #76D4F5; }
    .alert.alert-info hr {
      border-top-color: #5ecdf3; }
    .alert.alert-info .alert-link {
      color: #e6e6e6; }
  .alert.alert-warning {
    color: #ffffff;
    background-color: #fe974b;
    border-color: #fe974b; }
    .alert.alert-warning hr {
      border-top-color: #fe8832; }
    .alert.alert-warning .alert-link {
      color: #e6e6e6; }
  .alert.alert-danger {
    color: #ffffff;
    background-color: #FF4444;
    border-color: #FF4444; }
    .alert.alert-danger hr {
      border-top-color: #ff2b2b; }
    .alert.alert-danger .alert-link {
      color: #e6e6e6; }
  .alert.alert-inverse {
    color: #ffffff;
    background-color: #131e26;
    border-color: #131e26; }
    .alert.alert-inverse hr {
      border-top-color: #0b1115; }
    .alert.alert-inverse .alert-link {
      color: #e6e6e6; }

.animated {
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-delay: .1s;
          animation-delay: .1s; }

.btn {
  background-image: none;
  border-radius: 0;
  margin-bottom: 5px;
  line-height: 1.2; }
  .btn, .btn:hover {
    color: #ffffff; }
  .btn.btn-primary {
    color: #212529;
    background-color: #85CE36;
    border-color: #85CE36; }
    .btn.btn-primary:hover {
      color: #fff;
      background-color: #72b22b;
      border-color: #6ba829; }
    .btn.btn-primary:focus, .btn.btn-primary.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5); }
    .btn.btn-primary.disabled, .btn.btn-primary:disabled {
      color: #212529;
      background-color: #85CE36;
      border-color: #85CE36; }
    .btn.btn-primary:not(:disabled):not(.disabled):active, .btn.btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn.btn-primary.dropdown-toggle {
      color: #fff;
      background-color: #6ba829;
      border-color: #649e26; }
      .btn.btn-primary:not(:disabled):not(.disabled):active:focus, .btn.btn-primary:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-primary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5); }
    .btn.btn-primary, .btn.btn-primary:hover {
      color: #ffffff; }
  .btn.btn-secondary {
    color: #212529;
    background-color: #fff;
    border-color: #d7dde4; }
    .btn.btn-secondary:hover {
      color: #212529;
      background-color: #ececec;
      border-color: #b9c3cf; }
    .btn.btn-secondary:focus, .btn.btn-secondary.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5); }
    .btn.btn-secondary.disabled, .btn.btn-secondary:disabled {
      color: #212529;
      background-color: #fff;
      border-color: #d7dde4; }
    .btn.btn-secondary:not(:disabled):not(.disabled):active, .btn.btn-secondary:not(:disabled):not(.disabled).active,
    .show > .btn.btn-secondary.dropdown-toggle {
      color: #212529;
      background-color: #e6e6e6;
      border-color: #b1bdca; }
      .btn.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn.btn-secondary:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-secondary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5); }
    .btn.btn-secondary, .btn.btn-secondary:hover {
      color: #4f5f6f; }
  .btn.btn-success {
    color: #212529;
    background-color: #4bcf99;
    border-color: #4bcf99; }
    .btn.btn-success:hover {
      color: #fff;
      background-color: #33c087;
      border-color: #31b680; }
    .btn.btn-success:focus, .btn.btn-success.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5); }
    .btn.btn-success.disabled, .btn.btn-success:disabled {
      color: #212529;
      background-color: #4bcf99;
      border-color: #4bcf99; }
    .btn.btn-success:not(:disabled):not(.disabled):active, .btn.btn-success:not(:disabled):not(.disabled).active,
    .show > .btn.btn-success.dropdown-toggle {
      color: #fff;
      background-color: #31b680;
      border-color: #2eac79; }
      .btn.btn-success:not(:disabled):not(.disabled):active:focus, .btn.btn-success:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-success.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5); }
  .btn.btn-info {
    color: #212529;
    background-color: #76D4F5;
    border-color: #76D4F5; }
    .btn.btn-info:hover {
      color: #212529;
      background-color: #52c9f2;
      border-color: #46c5f2; }
    .btn.btn-info:focus, .btn.btn-info.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5); }
    .btn.btn-info.disabled, .btn.btn-info:disabled {
      color: #212529;
      background-color: #76D4F5;
      border-color: #76D4F5; }
    .btn.btn-info:not(:disabled):not(.disabled):active, .btn.btn-info:not(:disabled):not(.disabled).active,
    .show > .btn.btn-info.dropdown-toggle {
      color: #212529;
      background-color: #46c5f2;
      border-color: #3bc1f1; }
      .btn.btn-info:not(:disabled):not(.disabled):active:focus, .btn.btn-info:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-info.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5); }
  .btn.btn-warning {
    color: #212529;
    background-color: #fe974b;
    border-color: #fe974b; }
    .btn.btn-warning:hover {
      color: #212529;
      background-color: #fe8125;
      border-color: #fe7a18; }
    .btn.btn-warning:focus, .btn.btn-warning.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5); }
    .btn.btn-warning.disabled, .btn.btn-warning:disabled {
      color: #212529;
      background-color: #fe974b;
      border-color: #fe974b; }
    .btn.btn-warning:not(:disabled):not(.disabled):active, .btn.btn-warning:not(:disabled):not(.disabled).active,
    .show > .btn.btn-warning.dropdown-toggle {
      color: #212529;
      background-color: #fe7a18;
      border-color: #fe720c; }
      .btn.btn-warning:not(:disabled):not(.disabled):active:focus, .btn.btn-warning:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-warning.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5); }
  .btn.btn-danger {
    color: #fff;
    background-color: #FF4444;
    border-color: #FF4444; }
    .btn.btn-danger:hover {
      color: #fff;
      background-color: #ff1e1e;
      border-color: #ff1111; }
    .btn.btn-danger:focus, .btn.btn-danger.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5); }
    .btn.btn-danger.disabled, .btn.btn-danger:disabled {
      color: #fff;
      background-color: #FF4444;
      border-color: #FF4444; }
    .btn.btn-danger:not(:disabled):not(.disabled):active, .btn.btn-danger:not(:disabled):not(.disabled).active,
    .show > .btn.btn-danger.dropdown-toggle {
      color: #fff;
      background-color: #ff1111;
      border-color: #ff0404; }
      .btn.btn-danger:not(:disabled):not(.disabled):active:focus, .btn.btn-danger:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-danger.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5); }
  .btn.btn-primary-outline {
    color: #85CE36;
    background-color: transparent;
    background-image: none;
    border-color: #85CE36; }
    .btn.btn-primary-outline:hover {
      color: #212529;
      background-color: #85CE36;
      border-color: #85CE36; }
    .btn.btn-primary-outline:focus, .btn.btn-primary-outline.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5); }
    .btn.btn-primary-outline.disabled, .btn.btn-primary-outline:disabled {
      color: #85CE36;
      background-color: transparent; }
    .btn.btn-primary-outline:not(:disabled):not(.disabled):active, .btn.btn-primary-outline:not(:disabled):not(.disabled).active,
    .show > .btn.btn-primary-outline.dropdown-toggle {
      color: #212529;
      background-color: #85CE36;
      border-color: #85CE36; }
      .btn.btn-primary-outline:not(:disabled):not(.disabled):active:focus, .btn.btn-primary-outline:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-primary-outline.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(133, 206, 54, 0.5); }
  .btn.btn-secondary-outline {
    color: #d7dde4;
    background-color: transparent;
    background-image: none;
    border-color: #d7dde4; }
    .btn.btn-secondary-outline:hover {
      color: #212529;
      background-color: #d7dde4;
      border-color: #d7dde4; }
    .btn.btn-secondary-outline:focus, .btn.btn-secondary-outline.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5); }
    .btn.btn-secondary-outline.disabled, .btn.btn-secondary-outline:disabled {
      color: #d7dde4;
      background-color: transparent; }
    .btn.btn-secondary-outline:not(:disabled):not(.disabled):active, .btn.btn-secondary-outline:not(:disabled):not(.disabled).active,
    .show > .btn.btn-secondary-outline.dropdown-toggle {
      color: #212529;
      background-color: #d7dde4;
      border-color: #d7dde4; }
      .btn.btn-secondary-outline:not(:disabled):not(.disabled):active:focus, .btn.btn-secondary-outline:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-secondary-outline.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(215, 221, 228, 0.5); }
  .btn.btn-info-outline {
    color: #76D4F5;
    background-color: transparent;
    background-image: none;
    border-color: #76D4F5; }
    .btn.btn-info-outline:hover {
      color: #212529;
      background-color: #76D4F5;
      border-color: #76D4F5; }
    .btn.btn-info-outline:focus, .btn.btn-info-outline.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5); }
    .btn.btn-info-outline.disabled, .btn.btn-info-outline:disabled {
      color: #76D4F5;
      background-color: transparent; }
    .btn.btn-info-outline:not(:disabled):not(.disabled):active, .btn.btn-info-outline:not(:disabled):not(.disabled).active,
    .show > .btn.btn-info-outline.dropdown-toggle {
      color: #212529;
      background-color: #76D4F5;
      border-color: #76D4F5; }
      .btn.btn-info-outline:not(:disabled):not(.disabled):active:focus, .btn.btn-info-outline:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-info-outline.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(118, 212, 245, 0.5); }
  .btn.btn-success-outline {
    color: #4bcf99;
    background-color: transparent;
    background-image: none;
    border-color: #4bcf99; }
    .btn.btn-success-outline:hover {
      color: #212529;
      background-color: #4bcf99;
      border-color: #4bcf99; }
    .btn.btn-success-outline:focus, .btn.btn-success-outline.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5); }
    .btn.btn-success-outline.disabled, .btn.btn-success-outline:disabled {
      color: #4bcf99;
      background-color: transparent; }
    .btn.btn-success-outline:not(:disabled):not(.disabled):active, .btn.btn-success-outline:not(:disabled):not(.disabled).active,
    .show > .btn.btn-success-outline.dropdown-toggle {
      color: #212529;
      background-color: #4bcf99;
      border-color: #4bcf99; }
      .btn.btn-success-outline:not(:disabled):not(.disabled):active:focus, .btn.btn-success-outline:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-success-outline.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(75, 207, 153, 0.5); }
  .btn.btn-warning-outline {
    color: #fe974b;
    background-color: transparent;
    background-image: none;
    border-color: #fe974b; }
    .btn.btn-warning-outline:hover {
      color: #212529;
      background-color: #fe974b;
      border-color: #fe974b; }
    .btn.btn-warning-outline:focus, .btn.btn-warning-outline.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5); }
    .btn.btn-warning-outline.disabled, .btn.btn-warning-outline:disabled {
      color: #fe974b;
      background-color: transparent; }
    .btn.btn-warning-outline:not(:disabled):not(.disabled):active, .btn.btn-warning-outline:not(:disabled):not(.disabled).active,
    .show > .btn.btn-warning-outline.dropdown-toggle {
      color: #212529;
      background-color: #fe974b;
      border-color: #fe974b; }
      .btn.btn-warning-outline:not(:disabled):not(.disabled):active:focus, .btn.btn-warning-outline:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-warning-outline.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(254, 151, 75, 0.5); }
  .btn.btn-danger-outline {
    color: #FF4444;
    background-color: transparent;
    background-image: none;
    border-color: #FF4444; }
    .btn.btn-danger-outline:hover {
      color: #fff;
      background-color: #FF4444;
      border-color: #FF4444; }
    .btn.btn-danger-outline:focus, .btn.btn-danger-outline.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5); }
    .btn.btn-danger-outline.disabled, .btn.btn-danger-outline:disabled {
      color: #FF4444;
      background-color: transparent; }
    .btn.btn-danger-outline:not(:disabled):not(.disabled):active, .btn.btn-danger-outline:not(:disabled):not(.disabled).active,
    .show > .btn.btn-danger-outline.dropdown-toggle {
      color: #fff;
      background-color: #FF4444;
      border-color: #FF4444; }
      .btn.btn-danger-outline:not(:disabled):not(.disabled):active:focus, .btn.btn-danger-outline:not(:disabled):not(.disabled).active:focus,
      .show > .btn.btn-danger-outline.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.5); }
  .btn.btn-pill-left:focus, .btn.btn-pill-right:focus, .btn.btn-oval:focus {
    outline: none;
    outline-offset: initial; }
  .btn.btn-pill-left {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px; }
  .btn.btn-pill-right {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px; }
  .btn.btn-oval {
    border-radius: 25px; }
  .btn.btn-link {
    text-decoration: none; }
  .btn strong {
    font-weight: 600; }

.btn-group .dropdown-menu > li:last-child a:hover:before {
  height: 0px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); }

.card {
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1);
          box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1);
  margin-bottom: 10px;
  border-radius: 0;
  border: none; }
  .card .card {
    -webkit-box-shadow: none;
            box-shadow: none; }
  .card .card-header {
    background-image: none;
    background-color: #ffffff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    border-radius: 0;
    min-height: 50px;
    border: none; }
    .card .card-header::after {
      display: block;
      clear: both;
      content: ""; }
    .card .card-header.bordered {
      border-bottom: 1px solid #d7dde4; }
    .card .card-header.card-header-sm {
      min-height: 40px; }
    .card .card-header > span {
      vertical-align: middle; }
    .card .card-header .pull-right {
      margin-left: auto; }
    .card .card-header .header-block {
      padding: 0.5rem 15px; }
      @media (min-width: 1200px) {
        .card .card-header .header-block {
          padding: 0.5rem 20px; } }
      @media (max-width: 767.98px) {
        .card .card-header .header-block {
          padding: 0.5rem 10px; } }
    .card .card-header .title {
      color: #4f5f6f;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex; }
    .card .card-header .btn {
      margin: 0; }
    .card .card-header .nav-tabs {
      border-color: transparent;
      -ms-flex-item-align: stretch;
          align-self: stretch;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      top: 1px; }
      .card .card-header .nav-tabs .nav-item {
        margin-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-item-align: stretch;
            align-self: stretch; }
        .card .card-header .nav-tabs .nav-item .nav-link {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-item-align: stretch;
              align-self: stretch;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          color: #4f5f6f;
          opacity: 0.7;
          padding-left: 10px;
          padding-right: 10px;
          border-radius: 0;
          font-size: 14px;
          border-top-width: 2px;
          border-bottom: 1px solid #d7dde4;
          text-decoration: none; }
          .card .card-header .nav-tabs .nav-item .nav-link.active {
            border-top-color: #85CE36;
            border-bottom-color: transparent;
            opacity: 1; }
            .card .card-header .nav-tabs .nav-item .nav-link.active:hover, .card .card-header .nav-tabs .nav-item .nav-link.active:focus {
              opacity: 1;
              background-color: #ffffff;
              border-color: #d7dde4 #d7dde4 transparent;
              border-top-color: #85CE36; }
          .card .card-header .nav-tabs .nav-item .nav-link:hover, .card .card-header .nav-tabs .nav-item .nav-link:focus {
            opacity: 1;
            background-color: transparent;
            border-color: transparent; }
  .card.card-default > .card-header {
    background-color: #fff;
    color: inherit; }
  .card.card-primary {
    border-color: #85CE36; }
    .card.card-primary > .card-header {
      background-color: #85CE36;
      border-color: #85CE36; }
  .card.card-success > .card-header {
    background-color: #4bcf99; }
  .card.card-info > .card-header {
    background-color: #76D4F5; }
  .card.card-warning > .card-header {
    background-color: #fe974b; }
  .card.card-danger > .card-header {
    background-color: #FF4444; }
  .card.card-inverse > .card-header {
    background-color: #131e26; }
  .card .title-block,
  .card .card-title-block {
    padding-bottom: 0;
    margin-bottom: 20px;
    border: none; }
    .card .title-block::after,
    .card .card-title-block::after {
      display: block;
      clear: both;
      content: ""; }
  .card .section {
    margin-bottom: 20px; }
  .card .example,
  .card .section.demo {
    margin-bottom: 20px; }

.card-block {
  padding: 15px; }
  .card-block .tab-content {
    padding: 0;
    border-color: transparent; }
  @media (min-width: 1200px) {
    .card-block {
      padding: 20px; } }
  @media (max-width: 767.98px) {
    .card-block {
      padding: 10px; } }

.card-footer {
  background-color: #fafafa; }

.easy-pie-chart {
  width: 50px;
  height: 50px;
  display: inline-block;
  background-color: #d7dde4;
  border-radius: 5px; }

.dropdown-menu {
  float: left;
  -webkit-box-shadow: 2px 3px 6px rgba(126, 142, 159, 0.1);
          box-shadow: 2px 3px 6px rgba(126, 142, 159, 0.1);
  border: 1px solid rgba(126, 142, 159, 0.1);
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
  .dropdown-menu .dropdown-item {
    display: block;
    padding: 0px 15px;
    clear: both;
    font-weight: normal;
    color: #4f5f6f;
    /*white-space: nowrap;*/
    -webkit-transition: none;
    transition: none; }
    .dropdown-menu .dropdown-item i {
      margin-right: 2px; }
    .dropdown-menu .dropdown-item:hover {
      color: #85CE36 !important;
      background: none;
      background-color: whitesmoke; }

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.centralize-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

input,
textarea {
  outline: none; }

.form-group .row {
  margin-left: -10px;
  margin-right: -10px; }
  .form-group .row [class^='col'] {
    padding-left: 10px;
    padding-right: 10px; }

.form-group.has-error span.has-error {
  color: #FF4444;
  font-size: 13px;
  display: block !important; }

.form-group.has-error .form-control-feedback {
  color: #FF4444; }

.form-group.has-warning span.has-warning {
  color: #fe974b;
  font-size: 13px;
  display: block !important; }

.form-group.has-warning .form-control-feedback {
  color: #fe974b; }

.form-group.has-success span.has-success {
  color: #4bcf99;
  font-size: 13px;
  display: block !important; }

.form-group.has-success .form-control-feedback {
  color: #4bcf99; }

/* Input groups */
.input-group {
  margin-bottom: 10px; }
  .input-group .form-control {
    padding-left: 5px; }
  .input-group .input-group-btn .btn {
    margin-bottom: 0; }
  .input-group span.input-group-addon {
    font-style: italic;
    border: none;
    border-radius: 0;
    border: none;
    background-color: #d7dde4;
    -webkit-transition: background-color ease-in-out 15s, color ease-in-out .15s;
    transition: background-color ease-in-out 15s, color ease-in-out .15s; }
    .input-group span.input-group-addon.focus {
      background-color: #85CE36;
      color: #ffffff; }

label,
.control-label {/*600 era el que tenía*/
  font-weight: 400 !important; }

.form-control.underlined {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #d7dde4; 
  position: relative;
}

  .form-control.underlined.indented {
    padding: .375rem .75rem; }
  .has-error .form-control.underlined:focus,
  .has-warning .form-control.underlined:focus,
  .has-success .form-control.underlined:focus, .form-control.underlined:focus {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid #85CE36; }
  .has-error .form-control.underlined {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #FF4444; }
  .has-warning .form-control.underlined {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #fe974b; }
  .has-success .form-control.underlined {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #4bcf99; }

.form-control.boxed {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .form-control.boxed:focus {
    border: 1px solid #85CE36; }

.radio,
.checkbox {
  display: none; }
  .radio + span,
  .checkbox + span {
    padding: 0;
    padding-right: 10px; }
  .radio + span:before,
  .checkbox + span:before {
    font-family: FontAwesome;
    font-size: 21px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 10px;
    color: #c8d0da; }
  .radio:checked + span:before,
  .checkbox:checked + span:before {
    color: #85CE36; }
  .radio:disabled + span:before,
  .checkbox:disabled + span:before {
    opacity: 0.5;
    cursor: not-allowed; }
  .radio:checked:disabled + span:before,
  .checkbox:checked:disabled + span:before {
    color: #c8d0da; }

.checkbox + span:before {
  content: "\f0c8"; }

.checkbox:checked + span:before {
  content: "\f14a"; }

.checkbox.rounded + span:before {
  content: "\f111"; }

.checkbox.rounded:checked + span:before {
  content: "\f058"; }

.radio + span:before {
  content: "\f111"; }

.radio:checked + span:before {
  content: "\f192"; }

.radio.squared + span:before {
  content: "\f0c8"; }

.radio.squared:checked + span:before {
  content: "\f14a"; }

.form-control::-webkit-input-placeholder {
  font-style: italic;
  color: #c8d0da; }

.form-control:-moz-placeholder {
  /* Firefox 18- */
  font-style: italic;
  color: #d7dde4; }

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  font-style: italic;
  color: #d7dde4; }

.form-control:-ms-input-placeholder {
  font-style: italic;
  color: #d7dde4; }

.images-container::after {
  display: block;
  clear: both;
  content: ""; }

.images-container .image-container {
  float: left;
  padding: 3px;
  margin-right: 10px;
  margin-bottom: 35px;
  position: relative;
  border: 1px solid #e6eaee;
  overflow: hidden; }
  .images-container .image-container.active {
    border-color: #85CE36; }
  .images-container .image-container:hover .controls {
    bottom: 0;
    opacity: 1; }

.images-container .controls {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  bottom: -35px;
  text-align: center;
  height: 35px;
  font-size: 24px;
  -webkit-transition: bottom 0.2s ease, opacity 0.2s ease;
  transition: bottom 0.2s ease, opacity 0.2s ease;
  background-color: #fff; }
  .images-container .controls::after {
    display: block;
    clear: both;
    content: ""; }
  .images-container .controls .control-btn {
    display: inline-block;
    color: #4f5f6f;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
    .images-container .controls .control-btn:hover {
      opacity: 1; }
    .images-container .controls .control-btn.move {
      cursor: move; }
    .images-container .controls .control-btn.star {
      color: #FFB300; }
      .images-container .controls .control-btn.star i:before {
        content: "\f006"; }
      .images-container .controls .control-btn.star.active i:before {
        content: "\f005"; }
    .images-container .controls .control-btn.remove {
      color: #FF4444; }

.images-container .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 130px;
  height: 135px;
  line-height: 135px;
  text-align: center; }

.images-container .image-container.main {
  border-color: #FFB300; }

.images-container .image-container.new {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-style: dashed;
  border: 1px #85CE36 solid;
  color: #85CE36; }
  .images-container .image-container.new .image {
    font-size: 2.5rem; }
  .images-container .image-container.new:hover {
    opacity: 1; }

/* *******************************************
*		  Item List general styles
********************************************** */
.item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 0;
  line-height: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .item-list {
      font-size: 1rem; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .item-list {
      font-size: 0.95rem; } }
  @media (max-width: 767.98px) {
    .item-list {
      font-size: 1.05rem; } }
  .item-list.striped > li {
    border-bottom: 1px solid #e9edf0; }
  .item-list.striped > li:nth-child(2n + 1) {
    background-color: #fcfcfd; }
    @media (max-width: 767.98px) {
      .item-list.striped > li:nth-child(2n + 1) {
        background-color: #f8f9fb; } }
  .item-list.striped .item-list-footer {
    border-bottom: none; }

/* *******************************************
*			Item general styles
********************************************** */
.item-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.item-list .item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 100%; }
  .item-list .item-row.nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }

.item-list .item-col {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px 10px 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  -ms-flex-negative: 3;
      flex-shrink: 3;
  margin-left: auto;
  margin-right: auto;
  min-width: 0; }
  .item-list .item-col.fixed {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }
  .item-list .item-col.pull-left {
    margin-right: auto; }
  .item-list .item-col.pull-right {
    margin-left: auto; }
  .item-list .item-col > div {
    width: 100%; }
  .item-list .item-col:last-child {
    padding-right: 0; }

.item-list .no-overflow {
  overflow: hidden; }

.item-list .no-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

/* *******************************************
*				Item components
********************************************** */
.item-list {
  /********************************************
	*					Header
	*********************************************/
  /********************************************
	*					Heading
	*********************************************/
  /********************************************
	*					Checkbox
	*********************************************/
  /********************************************
	*					Image
	*********************************************/
  /********************************************
	*					Title
	*********************************************/
  /********************************************
	*					Stats
	*********************************************/
  /********************************************
	*				     Actions
	*********************************************/
  /********************************************
	*			   Something else?
	*********************************************/ }
  .item-list .item-list-header .item-col.item-col-header span {
    color: #999;
    font-size: 0.8rem;
    font-weight: 700 !important; }
  .item-list .item-heading {
    font-size: 0.9rem;
    display: none;
    color: #666;
    font-weight: 700;
    padding-right: 10px; }
    @media (max-width: 767.98px) {
      .item-list .item-heading {
        display: block; } }
    @media (min-width: 576px) and (max-width: 767.98px) {
      .item-list .item-heading {
        width: 100%; } }
    @media (max-width: 575.98px) {
      .item-list .item-heading {
        width: 40%; } }
  .item-list .item-col.item-col-check {
    -ms-flex-preferred-size: 30px;
        flex-basis: 30px; }
    @media (max-width: 767.98px) {
      .item-list .item-col.item-col-check {
        -webkit-box-ordinal-group: -7;
            -ms-flex-order: -8;
                order: -8; } }
  .item-list .item-check {
    margin-bottom: 0; }
    .item-list .item-check .checkbox + span {
      padding-right: 0; }
      .item-list .item-check .checkbox + span:before {
        width: 20px; }
  .item-list .item-col.item-col-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px; }
    .item-list .item-col.item-col-img.xs {
      -ms-flex-preferred-size: 40px;
          flex-basis: 40px; }
    .item-list .item-col.item-col-img.sm {
      -ms-flex-preferred-size: 50px;
          flex-basis: 50px; }
    .item-list .item-col.item-col-img.lg {
      -ms-flex-preferred-size: 100px;
          flex-basis: 100px; }
    .item-list .item-col.item-col-img.xl {
      -ms-flex-preferred-size: 120px;
          flex-basis: 120px; }
    .item-list .item-col.item-col-img a {
      width: 100%; }
  .item-list .item-img {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    background-color: #efefef;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  @media (max-width: 767.98px) {
    .item-list .item-col.item-col-title {
      -webkit-box-ordinal-group: -3;
          -ms-flex-order: -4;
              order: -4; } }
  .item-list .item-col.item-col-title a {
    display: block; }
  .item-list .item-title {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: 600; }
  .item-list .item-stats {
    height: 1.4rem; }
  .item-list .item-col.item-col-actions-dropdown {
    -ms-flex-preferred-size: 40px;
        flex-basis: 40px;
    text-align: center;
    padding-left: 0 !important; }
    @media (max-width: 767.98px) {
      .item-list .item-col.item-col-actions-dropdown {
        -webkit-box-ordinal-group: -2;
            -ms-flex-order: -3;
                order: -3;
        -ms-flex-preferred-size: 40px !important;
            flex-basis: 40px !important;
        padding-right: 10px; } }
  .item-list .item-actions-dropdown {
    position: relative;
    font-size: 1.1rem; }
    .item-list .item-actions-dropdown.active .item-actions-block {
      max-width: 120px; }
    .item-list .item-actions-dropdown.active .item-actions-toggle-btn {
      color: #85CE36; }
      .item-list .item-actions-dropdown.active .item-actions-toggle-btn .active {
        display: block; }
      .item-list .item-actions-dropdown.active .item-actions-toggle-btn .inactive {
        display: none; }
    .item-list .item-actions-dropdown .item-actions-toggle-btn {
      color: #9ba8b5;
      font-size: 1.2rem;
      cursor: pointer;
      width: 100%;
      line-height: 30px;
      text-align: center;
      text-decoration: none; }
      .item-list .item-actions-dropdown .item-actions-toggle-btn .active {
        display: none; }
    .item-list .item-actions-dropdown .item-actions-block {
      height: 30px;
      max-width: 0px;
      line-height: 30px;
      overflow: hidden;
      position: absolute;
      top: 0;
      right: 100%;
      background-color: #d7dde4;
      border-radius: 3px;
      -webkit-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out; }
      .item-list .item-actions-dropdown .item-actions-block.direction-right {
        right: auto;
        left: 100%; }
      .item-list .item-actions-dropdown .item-actions-block .item-actions-list {
        padding: 0;
        list-style: none;
        white-space: nowrap;
        padding: 0 5px; }
        .item-list .item-actions-dropdown .item-actions-block .item-actions-list li {
          display: inline-block;
          padding: 0; }
        .item-list .item-actions-dropdown .item-actions-block .item-actions-list a {
          display: block;
          padding: 0 5px; }
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.edit,
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.clonar,
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.pdf,
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.img,
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.btn-status {
            color: #38424C; }
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.check {
            color: #40B726; }
          .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.remove {
            color: #DB0E1E; }
            .item-list .item-actions-dropdown .item-actions-block .item-actions-list a.star {
            color: #DB0; }

/* *******************************************
*				Adjustments
********************************************** */
.card > .item-list .item > .item-row {
  padding: 0 15px; }
  @media (min-width: 1200px) {
    .card > .item-list .item > .item-row {
      padding: 0 20px; } }
  @media (max-width: 767.98px) {
    .card > .item-list .item > .item-row {
      padding: 0 10px; } }

.logo {
  display: inline-block;
  width: 45px;
  height: 25px;
  vertical-align: middle;
  margin-right: 5px;
  position: relative; }
  .logo .l {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #85CE36;
    position: absolute; }
    .logo .l.l1 {
      bottom: 0;
      left: 0; }
    .logo .l.l2 {
      width: 7px;
      height: 7px;
      bottom: 13px;
      left: 10px; }
    .logo .l.l3 {
      width: 7px;
      height: 7px;
      bottom: 4px;
      left: 17px; }
    .logo .l.l4 {
      bottom: 13px;
      left: 25px; }
    .logo .l.l5 {
      bottom: 0;
      left: 34px; }

.modal-body.modal-tab-container {
  padding: 0; }
  .modal-body.modal-tab-container .modal-tabs {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); }
    .modal-body.modal-tab-container .modal-tabs .nav-link {
      padding: 10px 20px;
      border: none; }
      .modal-body.modal-tab-container .modal-tabs .nav-link:hover, .modal-body.modal-tab-container .modal-tabs .nav-link.active {
        color: #85CE36;
        border-bottom: 2px solid #85CE36; }
      .modal-body.modal-tab-container .modal-tabs .nav-link.active {
        font-weight: 600; }

a:not(.btn) {
  -webkit-transition: initial;
  transition: initial;
  text-decoration: underline;
  color: #969696; }
  a:not(.btn):hover {
    text-decoration: underline;
    color: #70b02b; }
    a:not(.btn):hover:before {
      -webkit-transform: scaleX(1);
              transform: scaleX(1); }
  a:not(.btn):focus {
    text-decoration: none; }

span a {
  vertical-align: text-bottom; }

[class^='nav'] li > a,
[class*=' nav'] li > a {
  display: block; }
  [class^='nav'] li > a:before,
  [class*=' nav'] li > a:before {
    display: none; }

.nav.nav-tabs-bordered {
  border-color: #85CE36; }
  .nav.nav-tabs-bordered + .tab-content {
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-color: #85CE36;
    padding: 10px 20px 0; }
  .nav.nav-tabs-bordered .nav-item .nav-link {
    text-decoration: none; }
    .nav.nav-tabs-bordered .nav-item .nav-link:hover {
      color: #ffffff;
      background-color: #85CE36;
      border: 1px solid #85CE36; }
    .nav.nav-tabs-bordered .nav-item .nav-link.active {
      border-color: #85CE36;
      border-bottom-color: transparent; }
      .nav.nav-tabs-bordered .nav-item .nav-link.active:hover {
        background-color: #ffffff;
        color: inherit; }

.nav.nav-pills + .tab-content {
  border: 0;
  padding: 5px; }

.nav.nav-pills .nav-item .nav-link {
  text-decoration: none; }
  .nav.nav-pills .nav-item .nav-link:hover {
    color: #4f5f6f;
    background-color: transparent;
    border: 0; }
  .nav.nav-pills .nav-item .nav-link.active {
    border-color: #85CE36;
    border-bottom-color: transparent;
    background-color: #85CE36; }
    .nav.nav-pills .nav-item .nav-link.active:hover {
      background-color: #85CE36;
      color: #ffffff; }

#nprogress .bar {
  background: #85CE36 !important; }
  #nprogress .bar .peg {
    -webkit-box-shadow: 0 0 10px #85CE36, 0 0 5px #85CE36;
            box-shadow: 0 0 10px #85CE36, 0 0 5px #85CE36; }

#nprogress .spinner {
  top: 25px !important;
  right: 23px !important; }
  #nprogress .spinner .spinner-icon {
    border-top-color: #85CE36 !important;
    border-left-color: #85CE36 !important; }

.pagination {
  margin-top: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .pagination .page-item .page-link {
    color: #85CE36; }
  .pagination .page-item.active .page-link,
  .pagination .page-item.active .page-link:focus,
  .pagination .page-item.active .page-link:hover {
    color: #fff;
    border-color: #85CE36;
    background-color: #85CE36; }

.sameheight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

/* Let's get this party started */
::-webkit-scrollbar {
  width: 7px;
  height: 7px; }

/* Track */
::-webkit-scrollbar-track {
  border-radius: 0; }

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #78bd2e; }

::-webkit-scrollbar-thumb:window-inactive {
  background: #85CE36; }

.table label {
  margin-bottom: 0; }

.table .checkbox + span {
  margin-bottom: 0; }
  .table .checkbox + span:before {
    line-height: 20px; }

.row-sm {
  margin-left: -10px;
  margin-right: -10px; }
  .row-sm [class^='col'] {
    padding-left: 10px;
    padding-right: 10px; }

.title-block {
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d7dde4; }
  .title-block::after {
    display: block;
    clear: both;
    content: ""; }
  @media (max-width: 767.98px) {
    .title-block {
      margin-bottom: 20px; } }

.subtitle-block {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #e0e5ea; }

.section {
  display: block;
  margin-bottom: 15px; }
  @media (min-width: 1200px) {
    .section {
      margin-bottom: 25px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .section {
      margin-bottom: 20px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .section {
      margin-bottom: 15px; } }
  @media (max-width: 767.98px) {
    .section {
      margin-bottom: 10px; } }
  .section:last-of-type {
    margin-bottom: 0; }

.box-placeholder {
  margin-bottom: 15px;
  padding: 20px;
  border: 1px dashed #ddd;
  background: #fafafa;
  color: #444;
  cursor: pointer; }

.underline-animation {
  position: absolute;
  top: auto;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #85CE36;
  content: '';
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); }

.stat-chart {
  border-radius: 50%; }

.stat {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  margin-right: 10px; }
  .stat .value {
    font-size: 20px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500; }
  .stat .name {
    overflow: hidden;
    text-overflow: ellipsis; }
  .stat.lg .value {
    font-size: 26px;
    line-height: 28px; }
  .stat.lg .name {
    font-size: 16px; }

.list-icon [class^='col'] {
  cursor: pointer; }
  .list-icon [class^='col'] em {
    font-size: 14px;
    width: 40px;
    vertical-align: middle;
    margin: 0;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 1s;
    transition: all 1s;
    line-height: 30px; }
  .list-icon [class^='col']:hover em {
    -webkit-transform: scale(2, 2);
            transform: scale(2, 2); }

.well {
  background-image: none;
  background-color: #fff; }

.jumbotron {
  background-image: none;
  background-color: #fff;
  padding: 15px 30px; }
  .jumbotron.jumbotron-fluid {
    padding-left: 0;
    padding-right: 0; }

.rounded {
  border-radius: 0.25rem; }

.rounded-l {
  border-radius: 0.3rem; }

.rounded-s {
  border-radius: 0.2rem; }

.jqstooltip {
  height: 25px !important;
  width: auto !important;
  border-radius: 0.2rem; }

.title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0; }
  .title.l {
    font-size: 1.6rem; }
  .title.s {
    font-size: 1.4rem; }
  .card .title {
    font-size: 1.1rem;
    color: #4f5f6f; }

.title-description {
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
  color: #7e8e9f; }
  .title-description.s {
    font-size: 0.8rem; }
  @media (max-width: 767.98px) {
    .title-description {
      display: none; } }

.subtitle {
  font-size: 1.2rem;
  margin: 0;
  color: #7e8e9f; }

.text-primary {
  color: #85CE36; }

.text-muted {
  color: #9ba8b5; }

pre {
  padding: 0;
  border: none;
  background: none; }

/*****************************************
*       Background-image: cover mixin
******************************************/
/*****************************************
*       Media Query Mixins
******************************************/
.flot-chart {
  display: block;
  height: 225px; }
  .flot-chart .flot-chart-content {
    width: 100%;
    height: 100%; }
  .flot-chart .flot-chart-pie-content {
    width: 225px;
    height: 225px;
    margin: auto; }

.dashboard-page #dashboard-downloads-chart,
.dashboard-page #dashboard-visits-chart {
  height: 220px; }

@media (max-width: 575.98px) {
  .dashboard-page .items .card-header {
    border: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .dashboard-page .items .card-header .header-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      border-bottom: 1px solid #e9edf0; } }

.dashboard-page .items .card-header .title {
  padding-right: 0px;
  margin-right: 5px; }

.dashboard-page .items .card-header .search {
  margin: 0;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 575.98px) {
    .dashboard-page .items .card-header .search {
      min-width: 50%; } }
  .dashboard-page .items .card-header .search .search-input {
    border: none;
    background-color: inherit;
    color: #C2CCD6;
    width: 100px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .dashboard-page .items .card-header .search .search-input::-webkit-input-placeholder {
      /* WebKit, Blink, Edge */
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      color: #C2CCD6; }
    .dashboard-page .items .card-header .search .search-input:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      color: #C2CCD6; }
    .dashboard-page .items .card-header .search .search-input::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      color: #C2CCD6; }
    .dashboard-page .items .card-header .search .search-input:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      color: #C2CCD6; }
    @media (max-width: 575.98px) {
      .dashboard-page .items .card-header .search .search-input {
        min-width: 130px; } }
    .dashboard-page .items .card-header .search .search-input:focus {
      color: #7e8e9f; }
      .dashboard-page .items .card-header .search .search-input:focus::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: #aab4c0; }
      .dashboard-page .items .card-header .search .search-input:focus:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #aab4c0; }
      .dashboard-page .items .card-header .search .search-input:focus::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #aab4c0; }
      .dashboard-page .items .card-header .search .search-input:focus:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #aab4c0; }
      .dashboard-page .items .card-header .search .search-input:focus + .search-icon {
        color: #7e8e9f; }
  .dashboard-page .items .card-header .search .search-icon {
    color: #C2CCD6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-right: 6px; }

.dashboard-page .items .card-header .pagination {
  display: inline-block;
  margin: 0; }

.dashboard-page .items .item-list .item-col-title {
  -webkit-box-flex: 9;
      -ms-flex-positive: 9;
          flex-grow: 9; }

.dashboard-page .items .item-list .item-col-date {
  text-align: right; }

@media (min-width: 1200px) {
  .dashboard-page .items .item-list .item-col-date {
    -webkit-box-flex: 4;
        -ms-flex-positive: 4;
            flex-grow: 4; } }

@media (max-width: 767.98px) {
  .dashboard-page .items .item-list .item-list-header {
    display: none; }
  .dashboard-page .items .item-list .item-row {
    padding: 0; }
  .dashboard-page .items .item-list .item-col {
    padding-left: 10px;
    padding-right: 10px; }
  .dashboard-page .items .item-list .item-col-img {
    padding-left: 10px;
    -ms-flex-preferred-size: 60px;
        flex-basis: 60px;
    padding-right: 0; }
  .dashboard-page .items .item-list .item-col-stats {
    text-align: center; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  .dashboard-page .items .item-list .item-col-title {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    border-bottom: 1px solid #e9edf0; }
  .dashboard-page .items .item-list .item-col:not(.item-col-title):not(.item-col-img) {
    position: relative;
    padding-top: 35px; }
  .dashboard-page .items .item-list .item-heading {
    position: absolute;
    height: 30px;
    width: 100%;
    left: 0;
    top: 5px;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px; } }

@media (max-width: 575.98px) {
  .dashboard-page .items .item-list .item-col {
    border-bottom: 1px solid #e9edf0; }
  .dashboard-page .items .item-list .item-col-img {
    -ms-flex-preferred-size: 50px;
        flex-basis: 50px;
    -webkit-box-ordinal-group: -4;
        -ms-flex-order: -5;
            order: -5; }
  .dashboard-page .items .item-list .item-col-title {
    -ms-flex-preferred-size: calc(100% - 50px);
        flex-basis: calc(100% - 50px); }
  .dashboard-page .items .item-list .item-col:not(.item-col-title):not(.item-col-img) {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: left; }
    .dashboard-page .items .item-list .item-col:not(.item-col-title):not(.item-col-img) .item-heading {
      text-align: left; }
  .dashboard-page .items .item-list .item-col-date {
    border: none; } }

.dashboard-page .sales-breakdown .dashboard-sales-breakdown-chart {
  margin: 0 auto;
  max-width: 250px;
  max-height: 250px; }

.dashboard-page #dashboard-sales-map .jqvmap-zoomin,
.dashboard-page #dashboard-sales-map .jqvmap-zoomout {
  background-color: #85CE36;
  height: 20px;
  width: 20px;
  line-height: 14px; }

.dashboard-page #dashboard-sales-map .jqvmap-zoomout {
  top: 32px; }

.dashboard-page .stats .card-block {
  padding-bottom: 0; }

.dashboard-page .stats .stat-col {
  margin-bottom: 20px;
  float: left;
  white-space: nowrap;
  overflow: hidden; }

.dashboard-page .stats .stat-icon {
  color: #BDBDBD;
  display: inline-block;
  font-size: 26px;
  text-align: center;
  vertical-align: middle;
  width: 50px; }

.dashboard-page .stats .stat-chart {
  margin-right: 5px;
  vertical-align: middle; }
  @media (min-width: 1200px) {
    .dashboard-page .stats .stat-chart {
      margin-right: 0.6vw; } }

.dashboard-page .stats .stat {
  vertical-align: middle; }
  @media (min-width: 1200px) {
    .dashboard-page .stats .stat .value {
      font-size: 1.3vw; } }
  @media (min-width: 1200px) {
    .dashboard-page .stats .stat .name {
      font-size: 0.9vw; } }

.dashboard-page .stats .stat-progress {
  height: 2px;
  margin: 5px 0;
  color: #85CE36;
  background-color: #dddddd; }
  .dashboard-page .stats .stat-progress .progress-bar {
    background-color: #85CE36; }

.dashboard-page .tasks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: stretch;
      align-content: stretch; }
  .dashboard-page .tasks .title-block .title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .dashboard-page .tasks label {
    width: 100%;
    margin-bottom: 0; }
    .dashboard-page .tasks label .checkbox:checked + span {
      text-decoration: line-through; }
    .dashboard-page .tasks label span {
      display: inline-block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%; }
  .dashboard-page .tasks .tasks-block {
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0;
    margin-right: -5px; }
  .dashboard-page .tasks .item-list .item-col {
    padding-top: 5px;
    padding-bottom: 5px; }

.items-list-page .title-search-block {
  position: relative; }

@media (max-width: 767.98px) {
  .items-list-page .title-block {
    padding-bottom: 10px;
    margin-bottom: 13px; } }

.items-list-page .title-block .action {
  display: inline; }
  .items-list-page .title-block .action a {
    padding: 10px 15px; }
    .items-list-page .title-block .action a .icon {
      margin-right: 5px;
      text-align: center;
      width: 16px; }
  @media (max-width: 767.98px) {
    .items-list-page .title-block .action {
      display: none; } }

.items-list-page .items-search {
  position: absolute;
  margin-bottom: 15px;
  right: 0;
  top: 0; }
  @media (max-width: 767.98px) {
    .items-list-page .items-search {
      position: static; } }
  .items-list-page .items-search .search-button {
    margin: 0; }

.items-list-page .item-list .item-col.item-col-check {
  text-align: left; }

.items-list-page .item-list .item-col.item-col-img {
  text-align: left;
  width: auto;
  text-align: center;
  -ms-flex-preferred-size: 70px;
      flex-basis: 70px; }
  @media (min-width: 576px) {
    .items-list-page .item-list .item-col.item-col-img:not(.item-col-header) {
      height: 80px; } }

.items-list-page .item-list .item-col.item-col-title {
  text-align: left;
  margin-left: 0 !important;
  margin-right: auto;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 9;
      -ms-flex-positive: 9;
          flex-grow: 9; }

.items-list-page .item-list .item-col.item-col-sales {
  text-align: right;
  font-weight: 600; }

.items-list-page .item-list .item-col.item-col-stats {
  text-align: center; }

.items-list-page .item-list .item-col.item-col-category {
  text-align: left;
  font-weight: 600; }

.items-list-page .item-list .item-col.item-col-author {
  text-align: left;
  -webkit-box-flex: 4.5;
      -ms-flex-positive: 4.5;
          flex-grow: 4.5; }

.items-list-page .item-list .item-col.item-col-date {
  text-align: right; }

@media (max-width: 767.98px) {
  .items-list-page .card.items {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .items-list-page .item-list .item {
    border: none;
    margin-bottom: 10px;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1);
            box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1); }
  .items-list-page .item-list .item-row {
    padding: 0 !important; }
  .items-list-page .item-list .item-col.item-col-author {
    -webkit-box-flex: 3;
        -ms-flex-positive: 3;
            flex-grow: 3; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  .items-list-page .item-list .item-list-header {
    display: none; }
  .items-list-page .item-list .item {
    background-color: #fff;
    margin-bottom: 10px;
    -webkit-box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1);
            box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1); }
  .items-list-page .item-list .item-row {
    padding: 0; }
  .items-list-page .item-list .item-heading {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    line-height: 40px;
    padding-left: 0; }
  .items-list-page .item-list .item-col.item-col-check, .items-list-page .item-list .item-col.item-col-title, .items-list-page .item-list .item-col.item-col-actions-dropdown {
    border-bottom: 1px solid #d7dde4; }
    .items-list-page .item-list .item-col.item-col-check .item-heading, .items-list-page .item-list .item-col.item-col-title .item-heading, .items-list-page .item-list .item-col.item-col-actions-dropdown .item-heading {
      display: none; }
  .items-list-page .item-list .item-col.item-col-sales, .items-list-page .item-list .item-col.item-col-stats, .items-list-page .item-list .item-col.item-col-category, .items-list-page .item-list .item-col.item-col-author, .items-list-page .item-list .item-col.item-col-date {
    padding-top: 40px;
    position: relative; }
  .items-list-page .item-list .item-col.item-col-check {
    display: none; }
  .items-list-page .item-list .item-col.item-col-title {
    padding-left: 10px;
    text-align: left;
    margin-left: 0 !important;
    margin-right: auto;
    -ms-flex-preferred-size: calc(100% - 40px);
        flex-basis: calc(100% - 40px); }
  .items-list-page .item-list .item-col.item-col-img {
    padding-left: 10px;
    -ms-flex-preferred-size: 79px;
        flex-basis: 79px; }
  .items-list-page .item-list .item-col.item-col-sales {
    text-align: left; }
  .items-list-page .item-list .item-col.item-col-stats {
    text-align: center; }
  .items-list-page .item-list .item-col.item-col-category {
    text-align: center; }
  .items-list-page .item-list .item-col.item-col-author {
    text-align: center; }
  .items-list-page .item-list .item-col.item-col-date {
    padding-right: 10px;
    text-align: right;
    white-space: nowrap;
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 3;
        -ms-flex-positive: 3;
            flex-grow: 3; } }

@media (max-width: 575.98px) {
  .items-list-page .item-list-header {
    display: none; }
  .items-list-page .item-list .item {
    border: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1);
            box-shadow: 1px 1px 5px rgba(126, 142, 159, 0.1); }
    .items-list-page .item-list .item .item-col {
      text-align: right;
      border-bottom: 1px solid #d7dde4;
      padding-left: 10px; }
      .items-list-page .item-list .item .item-col[class^=item-col] {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; }
      .items-list-page .item-list .item .item-col.item-col-check {
        display: none; }
      .items-list-page .item-list .item .item-col.item-col-img .item-img {
        padding-bottom: 65%; }
      .items-list-page .item-list .item .item-col.item-col-title {
        text-align: left;
        padding-bottom: 0;
        border: none;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -ms-flex-preferred-size: 0;
            flex-basis: 0; }
        .items-list-page .item-list .item .item-col.item-col-title .item-heading {
          display: none; }
        .items-list-page .item-list .item .item-col.item-col-title .item-title {
          font-size: 1rem;
          line-height: 1.4rem; }
      .items-list-page .item-list .item .item-col.item-col-actions-dropdown {
        border: none;
        padding-bottom: 0; }
      .items-list-page .item-list .item .item-col.item-col-sales {
        text-align: left; }
      .items-list-page .item-list .item .item-col.item-col-stats {
        text-align: left; }
      .items-list-page .item-list .item .item-col.item-col-category {
        text-align: left; }
      .items-list-page .item-list .item .item-col.item-col-author {
        text-align: left; }
      .items-list-page .item-list .item .item-col.item-col-date {
        text-align: left; } }

.screenful-page .section {
  text-align: center; }

.screenful-page .subtitle {
  margin-bottom: 30px; }

.screenful-page .description {
  margin-bottom: 50px; }

.screenful-page .screenful-logo {
  width: 300px;
  height: 160px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/screenful/logo.png");
  background-repeat: no-repeat;
  display: inline-block;
  margin-bottom: 20px; }

.screenful-page .integrations-tools {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.screenful-page .integrations-title {
  margin-bottom: 40px; }

.screenful-page .integration-item {
  margin: 0 1%;
  margin-bottom: 30px; }

.screenful-page .integration-logo {
  width: 190px;
  height: 90px;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease; }

.screenful-page .integration-logo:hover {
  border: 1px solid #6769d4; }

.screenful-page .benefits-title {
  margin-bottom: 70px; }

.screenful-page .screen-colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.screenful-page .screen-item {
  max-width: 500px; }

.screenful-page .ex-pic {
  width: 100%;
  border-radius: 10px;
  background-size: cover; }

.screenful-page .title {
  margin-bottom: 20px; }

.screenful-page a {
  text-decoration: none; }

.screenful-page ul {
  display: inline-block;
  text-align: left;
  width: 100%; }

.screenful-page .divider {
  background-color: #fff;
  padding-bottom: 1px;
  margin-bottom: 50px; }

.table-flip-scroll table {
  width: 100%; }

@media only screen and (max-width: 800px) {
  .table-flip-scroll .flip-content:after,
  .table-flip-scroll .flip-header:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }
  .table-flip-scroll html .flip-content,
  .table-flip-scroll html .flip-header {
    -ms-zoom: 1;
    zoom: 1; }
  .table-flip-scroll *:first-child + html .flip-content,
  .table-flip-scroll *:first-child + html .flip-header {
    -ms-zoom: 1;
    zoom: 1; }
  .table-flip-scroll table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative; }
  .table-flip-scroll th,
  .table-flip-scroll td {
    margin: 0;
    vertical-align: top; }
  .table-flip-scroll th:last-child,
  .table-flip-scroll td:last-child {
    border-bottom: 1px solid #ddd; }
  .table-flip-scroll th {
    border: 0 !important;
    border-right: 1px solid #ddd !important;
    width: auto !important;
    display: block;
    text-align: right; }
  .table-flip-scroll td {
    display: block;
    text-align: left;
    border: 0 !important;
    border-bottom: 1px solid #ddd !important; }
  .table-flip-scroll thead {
    display: block;
    float: left; }
  .table-flip-scroll thead tr {
    display: block; }
  .table-flip-scroll tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap; }
  .table-flip-scroll tbody tr {
    display: inline-block;
    vertical-align: top;
    margin-left: -5px;
    border-left: 1px solid #ddd; } }

.wyswyg {
  border: 1px solid #d7dde4; }
  .wyswyg .ql-container {
    border-top: 1px solid #d7dde4; }
  .wyswyg .toolbar .btn {
    margin: 0; }
  .wyswyg .ql-container {
    font-size: 1rem; }
    .wyswyg .ql-container .ql-editor {
      min-height: 200px; }

.footer {
  background-color: #fff;
  position: absolute;
  left: 240px;
  right: 0;
  bottom: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .footer-fixed .footer {
    position: fixed; }
  .footer .footer-block {
    vertical-align: middle;
    margin-left: 20px;
    margin-right: 20px; }
  .footer .footer-github-btn {
    vertical-align: middle; }
  @media (max-width: 991.98px) {
    .footer {
      left: 0; } }
  .footer .author > ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .footer .author > ul li {
      display: inline-block; }
      .footer .author > ul li:after {
        content: "|"; }
      .footer .author > ul li:last-child:after {
        content: ""; }
      @media (max-width: 991.98px) {
        .footer .author > ul li {
          display: block;
          text-align: right; }
          .footer .author > ul li:after {
            content: ""; } }
    @media (max-width: 991.98px) {
      .footer .author > ul {
        display: block; } }
    @media (max-width: 767.98px) {
      .footer .author > ul {
        display: none; } }

.header {
  background-color: #d7dde4;
  height: 70px;
  position: absolute;
  left: 240px;
  right: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 991.98px) {
    .header {
      left: 0; } }
  @media (max-width: 767.98px) {
    .header {
      left: 0;
      height: 50px; } }
  .header-fixed .header {
    position: fixed; }
  @media (max-width: 767.98px) {
    .header .header-block {
      padding: 5px; } }

/*.modal .modal-content {
  border-radius: 0; }*/

.modal .modal-header {
  background-color: #85CE36;
  color: #ffffff; }

.modal .modal-footer .btn {
  margin-bottom: 0; }

.sidebar {
  background-color: #3a4651;
  color: #f2f2f2;
  width: 240px;
  /*padding-bottom: 60px;*/
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 1001; }
  @media (max-width: 991.98px) {
    .sidebar {
      position: fixed;
      left: -240px; } }
  .sidebar-fixed .sidebar {
    position: fixed; }
  .sidebar-open .sidebar {
    left: 0; }
  .sidebar .sidebar-container {
    position: absolute;
    top: 0;
    bottom: 51px;
    width: 100%;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden; }
    .sidebar .sidebar-container::-webkit-scrollbar-track {
      background-color: #2c353e; }
  .sidebar .label {
    font-size: .75em;
    display: inline-block;
    border-radius: .2em;
    padding: 2px 5px;
    background-color: #ccc;
    color: #000;
    margin: 0 3px; }
  .sidebar .label-screenful {
    color: #fff;
    background-color: #6769d4; }
  .sidebar .sidebar-menu {
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0; }
    .sidebar .sidebar-menu li a:focus,
    .open .sidebar .sidebar-menu li a:focus {
      background-color: inherit; }
    .sidebar .sidebar-menu ul {
      padding: 0;
      height: 0px;
      overflow: hidden; }
      .loaded .sidebar .sidebar-menu ul {
        height: auto; }
    .sidebar .sidebar-menu li.active ul {
      height: auto; }
    .sidebar .sidebar-menu li a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      display: block; }
    .sidebar .sidebar-menu li a:hover,
    .sidebar .sidebar-menu li.open > a,
    .sidebar .sidebar-menu li.open a:hover {
      color: #ffffff;
      background-color: #2d363f; }
    .sidebar .sidebar-menu .arrow {
      float: right;
      font-size: 18px;
      line-height: initial;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      margin-right: 0; }
      .sidebar .sidebar-menu .arrow:before {
        content: "\f105" !important; }
    .sidebar .sidebar-menu li.open > a .arrow {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
    .sidebar .sidebar-menu > li > a {
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 20px;
      padding-right: 15px; }
    .sidebar .sidebar-menu > li.active > a,
    .sidebar .sidebar-menu > li.active > a:hover {
      background-color: #85CE36 !important;
      color: #ffffff !important; }
    .sidebar .sidebar-menu > li.open > a {
      background-color: #333e48; }
    .sidebar .sidebar-menu > li > a i {
      margin-right: 5px;
      font-size: 16px; }
      .sidebar .sidebar-menu > li > a i.arrow {
        font-size: 20px; }
    .sidebar .sidebar-menu > li > .sidebar-nav > li a {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 50px;
      padding-right: 15px;
      background-color: #333e48; }
    .sidebar .sidebar-menu > li > .sidebar-nav > li.active a {
      color: #ffffff; }
    .sidebar .sidebar-menu > li > .sidebar-nav > li > .sidebar-nav > li a {
      padding-left: 60px;
      padding-right: 15px; }
    .sidebar .sidebar-menu > li > .sidebar-nav > li > .sidebar-nav > li > .sidebar-nav > li a {
      padding-left: 70px; }

.sidebar-overlay {
  position: absolute;
  display: none;
  left: 200vw;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 15; }
  @media (max-width: 991.98px) {
    .sidebar-overlay {
      display: block; } }
  @media (max-width: 767.98px) {
    .sidebar-overlay {
      background-color: rgba(0, 0, 0, 0.7); } }
  @media (max-width: 991.98px) {
    .sidebar-open .sidebar-overlay {
      left: 0;
      opacity: 1; } }

.sidebar-mobile-menu-handle {
  display: none;
  position: absolute;
  top: 50px;
  background-color: transparent;
  width: 30px;
  bottom: 0;
  z-index: 10; }
  @media (max-width: 991.98px) {
    .sidebar-mobile-menu-handle {
      display: block; } }

.header .header-block-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap; }
  .header .header-block-buttons .btn.header-btn {
    background-color: transparent;
    border: 1px solid #64798d;
    color: #64798d;
    margin: 0 5px;
    border-radius: 0.2rem; }
    .header .header-block-buttons .btn.header-btn:hover, .header .header-block-buttons .btn.header-btn:focus {
      border: 1px solid #3a4651;
      color: #3a4651; }
    @media (max-width: 767.98px) {
      .header .header-block-buttons .btn.header-btn span {
        display: none; } }

.header .header-block-collapse {
  padding-right: 5px; }
  @media (max-width: 767.98px) {
    .header .header-block-collapse {
      width: 155px; } }
  .header .header-block-collapse .collapse-btn {
    background: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #85CE36;
    font-size: 24px;
    line-height: 40px;
    border-radius: 0;
    outline: none;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: initial; }

.header .header-block-nav {
  margin-left: auto;
  white-space: nowrap;
  padding-right: 15px; }
  @media (max-width: 767.98px) {
    .header .header-block-nav {
      padding-right: 25px; } }
  .header .header-block-nav::after {
    display: block;
    clear: both;
    content: ""; }
  .header .header-block-nav a {
    text-decoration: none; }
  .header .header-block-nav ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .header .header-block-nav > ul {
    display: table; }
  .header .header-block-nav > ul > li {
    display: table-cell;
    position: relative; }
    .header .header-block-nav > ul > li:before {
      display: block;
      content: " ";
      width: 1px;
      height: 24px;
      top: 50%;
      margin-top: -12px;
      background-color: #8b9cb1;
      position: absolute;
      left: 0; }
    .header .header-block-nav > ul > li:first-child:before {
      display: none; }
  .header .header-block-nav > ul > li > a {
    padding: 0 15px;
    color: #4f5f6f; }
    .header .header-block-nav > ul > li > a:hover {
      color: #85CE36; }
  .header .header-block-nav .dropdown-menu {
    margin-top: 15px; }

.header .header-block-search {
  margin-right: auto;
  padding-left: 20px; }
  @media (max-width: 767.98px) {
    .header .header-block-search {
      padding-left: 10px;
      display: none; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .header .header-block-search {
      padding-left: 20px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .header .header-block-search {
      padding-left: 20px; } }
  @media (min-width: 1200px) {
    .header .header-block-search {
      padding-left: 35px; } }
  .header .header-block-search > form {
    float: right; }
    @media (max-width: 767.98px) {
      .header .header-block-search > form {
        padding-left: 0; } }
  .header .header-block-search .input-container {
    position: relative;
    color: #7e8e9f; }
    .header .header-block-search .input-container i {
      position: absolute;
      pointer-events: none;
      display: block;
      height: 40px;
      line-height: 40px;
      left: 0; }
    .header .header-block-search .input-container input {
      background-color: transparent;
      border: none;
      padding-left: 25px;
      height: 40px;
      max-width: 150px; }
      @media (max-width: 767.98px) {
        .header .header-block-search .input-container input {
          max-width: 140px; } }
    .header .header-block-search .input-container input:focus + .underline {
      -webkit-transform: scaleX(1);
              transform: scaleX(1); }

#modal-media .modal-body {
  min-height: 250px; }

#modal-media .modal-tab-content {
  min-height: 300px; }

#modal-media .images-container {
  padding: 15px;
  text-align: center; }
  #modal-media .images-container .image-container {
    margin: 0 auto 10px auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    float: none; }
    #modal-media .images-container .image-container:hover {
      border-color: rgba(133, 206, 54, 0.5); }
    #modal-media .images-container .image-container.active {
      border-color: rgba(133, 206, 54, 0.5); }

#modal-media .upload-container {
  padding: 15px; }
  #modal-media .upload-container .dropzone {
    position: relative;
    border: 2px dashed #85CE36;
    height: 270px; }
    #modal-media .upload-container .dropzone .dz-message-block {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
              transform: translateY(-50%) translateX(-50%); }
      #modal-media .upload-container .dropzone .dz-message-block .dz-message {
        margin: 0;
        font-size: 24px;
        color: #85CE36;
        width: 230px; }

.customize {
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 15px;
  text-align: center; }
  .customize .customize-header {
    margin-bottom: 10px; }

#customize-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 240px; }
  @media (max-width: 991.98px) {
    .sidebar-open #customize-menu {
      left: 0; } }
  @media (max-width: 991.98px) {
    #customize-menu {
      -webkit-transition: left 0.3s ease;
      transition: left 0.3s ease;
      left: -240px; } }
  #customize-menu > li > a {
    background-color: #3a4651;
    border-top: 1px solid rgba(45, 54, 63, 0.5); }
  #customize-menu > li > a:hover,
  #customize-menu > li.open > a {
    background-color: #2d363f; }
  #customize-menu .customize {
    width: 240px;
    color: rgba(255, 255, 255, 0.5);
    background-color: #2d363f;
    text-align: center;
    padding: 10px 15px;
    border-top: 2px solid #85CE36; }
    #customize-menu .customize .customize-item {
      margin-bottom: 15px; }
      #customize-menu .customize .customize-item .customize-header {
        margin-bottom: 10px; }
      #customize-menu .customize .customize-item label {
        font-weight: 400; }
        #customize-menu .customize .customize-item label.title {
          font-size: 14px; }
      #customize-menu .customize .customize-item .radio + span {
        padding: 0;
        padding-left: 5px; }
      #customize-menu .customize .customize-item .radio + span:before {
        font-size: 17px;
        color: #546273;
        cursor: pointer; }
      #customize-menu .customize .customize-item .radio:checked + span:before {
        color: #85CE36; }
      #customize-menu .customize .customize-item .customize-colors {
        list-style: none; }
        #customize-menu .customize .customize-item .customize-colors li {
          display: inline-block;
          margin-left: 5px;
          margin-right: 5px; }
          #customize-menu .customize .customize-item .customize-colors li .color-item {
            display: block;
            height: 20px;
            width: 20px;
            border: 1px solid;
            cursor: pointer; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.color-red {
              background-color: #FB494D;
              border-color: #FB494D; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.color-orange {
              background-color: #FE7A0E;
              border-color: #FE7A0E; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.color-green {
              background-color: #8CDE33;
              border-color: #8CDE33; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.color-seagreen {
              background-color: #4bcf99;
              border-color: #4bcf99; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.color-blue {
              background-color: #52BCD3;
              border-color: #52BCD3; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.color-purple {
              background-color: #7867A7;
              border-color: #7867A7; }
            #customize-menu .customize .customize-item .customize-colors li .color-item.active {
              position: relative;
              font-family: FontAwesome;
              font-size: 17px;
              line-height: 17px; }
              #customize-menu .customize .customize-item .customize-colors li .color-item.active:before {
                content: "\f00c";
                position: absolute;
                top: 0;
                left: 0;
                color: #fff; }

.sidebar-header .brand {
  color: #fff;
  text-align: left;
  padding-left: 25px;
  line-height: 70px;
  font-size: 16px; }
  @media (max-width: 767.98px) {
    .sidebar-header .brand {
      line-height: 50px;
      font-size: 16px; } }

.header .header-block-nav .notifications {
  font-size: 16px; }
  .header .header-block-nav .notifications a {
    padding-right: 10px; }
  .header .header-block-nav .notifications .counter {
    font-weight: bold;
    font-size: 14px;
    position: relative;
    top: -3px;
    left: -2px; }
  .header .header-block-nav .notifications.new .counter {
    color: #85CE36;
    font-weight: bold; }
  @media (max-width: 767.98px) {
    .header .header-block-nav .notifications {
      position: static; } }

.header .header-block-nav .notifications-dropdown-menu {
  white-space: normal;
  left: auto;
  right: 0;
  min-width: 350px; }
  .header .header-block-nav .notifications-dropdown-menu:before {
    position: absolute;
    right: 20px;
    bottom: 100%;
    margin-right: -1px; }
  .header .header-block-nav .notifications-dropdown-menu:after {
    position: absolute;
    right: 20px;
    bottom: 100%; }
  .header .header-block-nav .notifications-dropdown-menu .notifications-container .notification-item {
    border-bottom: 1px solid rgba(126, 142, 159, 0.1);
    padding: 5px; }
    .header .header-block-nav .notifications-dropdown-menu .notifications-container .notification-item:hover {
      background-color: #f5f5f5; }
  .header .header-block-nav .notifications-dropdown-menu .notifications-container .img-col {
    display: table-cell;
    padding: 5px; }
  .header .header-block-nav .notifications-dropdown-menu .notifications-container .body-col {
    padding: 5px;
    display: table-cell; }
  .header .header-block-nav .notifications-dropdown-menu .notifications-container .img {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    vertical-align: top;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .header .header-block-nav .notifications-dropdown-menu .notifications-container p {
    color: #4f5f6f;
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    margin: 0;
    vertical-align: top; }
    .header .header-block-nav .notifications-dropdown-menu .notifications-container p .accent {
      font-weight: bold; }
  .header .header-block-nav .notifications-dropdown-menu footer {
    text-align: center; }
    .header .header-block-nav .notifications-dropdown-menu footer a {
      color: #212529;
      -webkit-transition: none;
      transition: none; }
      .header .header-block-nav .notifications-dropdown-menu footer a:hover {
        background-color: #f5f5f5;
        color: #85CE36; }
  @media (max-width: 767.98px) {
    .header .header-block-nav .notifications-dropdown-menu {
      min-width: 100px;
      width: 100%;
      margin-top: 5px; }
      .header .header-block-nav .notifications-dropdown-menu:before, .header .header-block-nav .notifications-dropdown-menu:after {
        right: 107px; } }

.header .header-block-nav .profile .img {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  background-color: #8b9cb1;
  color: #ffffff;
  text-align: center;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle; }

.header .header-block-nav .profile .name {
  display: inline-block;
  margin-right: 9px;
  font-weight: bold; }
  @media (max-width: 767.98px) {
    .header .header-block-nav .profile .name {
      display: none; } }

.header .header-block-nav .profile .arrow {
  color: #85CE36; }

.header .header-block-nav .profile-dropdown-menu {
  left: auto;
  right: 0;
  min-width: 180px;
  white-space: normal; }
  .header .header-block-nav .profile-dropdown-menu:before {
    position: absolute;
    right: 10px;
    bottom: 100%;
    margin-right: -1px; }
  .header .header-block-nav .profile-dropdown-menu:after {
    position: absolute;
    right: 10px;
    bottom: 100%; }
  .header .header-block-nav .profile-dropdown-menu a {
    padding: 10px 15px; }
    .header .header-block-nav .profile-dropdown-menu a .icon {
      color: #85CE36;
      text-align: center;
      width: 16px; }
    .header .header-block-nav .profile-dropdown-menu a span {
      display: inline-block;
      padding-left: 5px;
      text-align: left;
      color: #7e8e9f; }
  .header .header-block-nav .profile-dropdown-menu .profile-dropdown-menu-icon {
    padding: 0; }
  .header .header-block-nav .profile-dropdown-menu .profile-dropdown-menu-topic {
    color: #7e8e9f;
    padding: 0; }
  .header .header-block-nav .profile-dropdown-menu .dropdown-divider {
    margin: 0; }
  .header .header-block-nav .profile-dropdown-menu .logout {
    border-top: 1px solid rgba(126, 142, 159, 0.1); }
  @media (max-width: 767.98px) {
    .header .header-block-nav .profile-dropdown-menu {
      margin-top: 8px; } }

/*Contenido agregado por SrMeph...*/
/*Animation msg*/
i.success{
    color:#4bcf99;
    font-size:6em;
    -webkit-animation-name: msg-success; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: msg-success;
    animation-duration: 2s;
}
i.error{
    color:#f27474;
    font-size:6em;
    -webkit-animation-name: msg-error; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: msg-error;
    animation-duration: 2s;
}
i.warning{
    color:#fe8125;
    font-size:6em;
    -webkit-animation-name: msg-warning; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: msg-warning;
    animation-duration: 2s;
}
i.info{
    color:#52c9f2;
    font-size:6em;
    -webkit-animation-name: msg-info; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: msg-info;
    animation-duration: 2s;
}

@-webkit-keyframes msg-success {
     0%   {color:white;}
    100% {color:#4bcf99;}
}
@keyframes msg-success {
    0%   {color:white;}
    100% {color:#4bcf99;}
}
@-webkit-keyframes msg-error {
     0%   {color:white;}
    100% {color:#f27474;}
}
 @keyframes msg-error {
    0%   {color:white;}
    100% {color:#f27474;}
}
@-webkit-keyframes msg-warning {
     0%   {color:white;}
    100% {color:#fe8125;}
}
 @keyframes msg-warning {
    0%   {color:white;}
    100% {color:#fe8125;}
}
@-webkit-keyframes msg-info {
     0%   {color:white;}
    100% {color:#4bcf99;}
}
@keyframes msg-info {
    0%   {color:white;}
    100% {color:#52c9f2;}
} 
/*status */ 
.status-success{
  background-color:#5cb85c;
  color:white;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}
.status-danger{
  background-color:#ff1e1e;
  color:white;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}
.status-dos{
  background-color:#33c087;
  color:white;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}


.status-tres{
  background-color:#3357c0;
  color:white;
}

 /* The switch - the box around the slider */
.switch_controles {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0px;
}

/* Hide default HTML checkbox */
.switch_controles input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 
/*Cuartos Frios*/

  .cuartos_frios {
      border-radius: 5px;
      margin-left: .5%;
      margin-right: .5%;
      padding: 1%;
      width: 97%;
      background-color: #f5f5f5;
  }

  .cuartos_frios div{
      border-radius: 5px;
      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
      margin: 1%;
      padding: 2% 0;
      background-color: #fff;
  }

  .cuartos_frios div:hover {
      box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08);
  }

  .cuartos_frios div h2{
      color: #0f1923 !important;
  }

  .cuartos_frios div p{
      font-size: 1.2em;
      color: #0f1923 !important;
  }

  /*Widgets */
  .widget {
      margin: 0 0 25px 0;
      display: block;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      color:#7C7878;
  }
  /*.widget*/ .widget-heading{
      padding: 7px 15px;
      -webkit-border-radius: 2px 2px 0 0;
      -moz-border-radius: 2px 2px 0 0;
      border-radius: 2px 2px 0 0;
      text-transform: uppercase;
      text-align: center;
      background: #959393 !important; 
      /*width: 100%;*/
      color: white !important;
      position: relative;
  }
  .widget-heading h3{
      color: white !important;

  }
  /*.widget */.widget-heading p {
      display: block;
  }
  .widget .widget-body {
      /* padding: 10px 15px; */
      font-size: 1em;
      font-weight: 300;

      background: #F6F1F1;
      border-top: 1px dotted;
      box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important
  }

  .widget .widget-body strong{
      /* padding: 10px 15px; */
      font-size: 2em;
  }

  #tagentes .group{
    font-weight: bold;
    font-size: 1.2em;
  }
.encabezado_controles{
  margin: 0; 
  padding: 0px 5px; 
  font-size: 1.3em; 
  background: #AEADAD; 
  color: white;
  width: 98%;
  margin: 1% 1%;
 /* -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;*/
}

.widget .widget-body .list-group li{
    /* padding: 10px 15px; */
    font-size: 1.3em;
}
.list-group-item:last-child {
    margin-bottom: 1rem;
}


  .select2,
  .select2-container,
  .selection,
  .select2-search__field,
  .select2-selection__rendered,
  .select2-selection {
    /*float: : left;*/
    width: 100% !important;
  }

  .color_azul{
    background-color: #337ab7 !important;
    border-color: #2e6da4 !important;
  }
  .color_danger{
    background-color: #d9534f !important;
    border-color: #d43f3a !important;
  }

  .color_warning{
    background-color: #f0ad4e !important;
    border-color: #eea236 !important;
  }

  .form_datetime input{
    font-size: 12px;
    width: 105px;
  }

#chartdiv,
#chartdiv2,
#chartdiv3,
#chartdiv4 {
  margin-top: 15px;
  margin-bottom: 60px;
}

.amChartsPeriodSelector {
  float: right;
}

.amChartsPeriodSelector .amChartsButton {
  padding-top: 5px;
  padding-bottom: 3px;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #dddddd;
  outline: none;
  background: #fff;
  color: #000;
}

.amChartsPeriodSelector .amChartsButton:hover {
  background-color: #eeeeee;
}

.amChartsPeriodSelector .amChartsButtonSelected {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #0088CC;
  color: #000000;
  padding-bottom: 3px;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 1px;
  outline: none;
}

.amChartsDataSetSelector {
  padding: 5px 0 0 15px;
}

.opciones_fecha {
    padding: 5px 0;
    height: 30px;
    margin-left: .5%;
    margin-right: .5%;
    width: 99%;
}

.opciones_fecha .buscador .header_grid_name {
    margin-right: 20px;
    padding-top: 5px;
    float: left;
    font-weight: bold;
}

.opciones_fecha .buscador .header_grid_name i {
    font-size: 1.5em;
}

.opciones_fecha .buscador {
    width: 80%;
    float:left;
}

.opciones_fecha .buscador .input-append {
    margin: 0;
}

.opciones_fecha .header_grafica .header_grafica_name {
    margin-right: 20px;
    padding-top: 5px;
    float: left;
    font-weight: bold;
}

.opciones_fecha .header_grafica .header_grafica_name i {
    font-size: 1.5em;
}

.opciones_fecha .header_grafica {
    width: 30%;
    float:left;
}

.opciones_fecha .botones_grafica {
    text-align: right;
    width: 70%;
}

.opciones_fecha .botones_grafica .input-append, .opciones_fecha .botones_grafica .input-prepend {
    margin: 0 0 0 5px;
}
.right{
    float: right;
}

.maximo_minimo{
  margin: 1em 0 0.5em 0;
  font-size: 1em;
  font-style: italic;
}
.maximo_minimo i{
  font-size: 0.8em;
}

.custom-search-form{
  margin: 1em 2% 0 2%;
  width: 96%;
  
}

#buscador_axiliar{
  display: none;
}

.sidebar-container a{
  text-decoration: none !important; 
}

.txt-inW{
  margin-left: 0.5em;
}
.firstParamBody{
  border-left: 1px solid #d7dde4;
  border-right: 1px solid #d7dde4;
  border-bottom: 1px solid #d7dde4;
}
.firstParamHeader{
  border-left: 1px solid #d7dde4 !important;
  border-right: 1px solid #d7dde4 !important;
  
}
.modal { overflow: auto !important; }
tr.r_selected td,
tr.r_selected td a b
{
    background-color: #428bca !important;
   /* /*background-color: #fcfc84 !important;* /*/
    color: #fff;
}

#dashboard div.card{
  cursor: pointer;
  /*box-shadow: 2px 2px #4f5f6f;*/
}
#dashboard div.card:hover{
  box-shadow: 3px 3px rgba(0, 0, 0, 0.125);
}


.shape{    
  border-style: solid;
  /*border-width: 0 70px 40px 0;*/
  border-width: 0 55px 50px 0;
  /*float:right;*/
  position: absolute;
  right: 0;
  top: 0;
  height: 0px;
  width: 0px;
  -ms-transform:rotate(360deg); /* IE 9 */
  -o-transform: rotate(360deg);  /* Opera 10.5 */
  -webkit-transform:rotate(360deg); /* Safari and Chrome */
  transform:rotate(360deg);
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
  /*opacity: 50% !important;*/
}

.shape-text{
  color:#fff; font-size:12px; 
  font-weight:bold; 
  position:relative; 
  /*right:-40px; 
  top:2px; */
  right:-30px; 
  top:3px;
  white-space: nowrap;
  -ms-transform:rotate(30deg); /* IE 9 */
  -o-transform: rotate(360deg);  /* Opera 10.5 */
  -webkit-transform:rotate(30deg); /* Safari and Chrome */
  transform:rotate(30deg);
} 

#tgrid em{
  color: #627181;
}

#tgrid hr{
  margin: 3px 0;
  border-color: #d7dde4;
}

/*=============================================================================================================
                                            GENERAL
/*=============================================================================================================*/
  .color-verde{
    color: #85CE36 !important;
  }

  .color-blanco{
    color: #fff !important;
  }

  .color-gris-1{
    color: #3a4651 !important;
  }

  .color-gris-2{
    color: #d7dde4 !important;
  }

  .color-gris-3{
    color: #f0f3f6 !important;
  }

  .color-rojo{
    color: #fa183d !important;
  }

  .background-verde{
    background: #85CE36 !important;
  }

  .background-blanco{
    background: #fff !important;
  }

  .background-gris-1{
    background: #3a4651 !important;
  }

  .background-gris-2{
    background: #d7dde4 !important;
  }

  .background-gris-3{
    background: #f0f3f6 !important;
  }

  .background-rojo{
    background: #fa183d !important;
  }

  .border-color-verde{
    border-color: #85CE36 !important;
  }

  .border-color-blanco{
    border-color: #fff !important;
  }

  .border-color-gris-1{
    border-color: #3a4651 !important;
  }

  .border-color-gris-2{
    border-color: #d7dde4 !important;
  }

  .border-color-gris-3{
    border-color: #f0f3f6 !important;
  }

  .border-color-rojo{
    border-color: #fa183d !important;
  }

  .alert-info-slim{
    padding: 2px 5px;
    margin: 5px 10px;
    font-weight: bold;
  }

  .btn-tooltip{
    display: block;
    font-weight: bold;
    margin-top: 10px;
  }

  .div-disabled-content{
    background: rgba(196, 196, 196, 0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .btn.btn-secondary:focus,
  .btn.btn-secondary.focus,
  .btn.btn-info:focus,
  .btn.btn-info.focus{
    box-shadow: none !important;
  }

  .spinner-switch-control{
    position: absolute;
    font-size: 15px;
    width: 15px;
    left: calc(50% - 7.5px);
    top: calc(50% - 7.5px);
    display: none;
  }

  table.dataTable > tbody > tr.child span.dtr-title{
    min-width: inherit !important;
  }

  table.dataTable > tbody > tr.child span.dtr-title::after{
    content: ':';
  }

  :active,
  :active *,
  :focus,
  :focus * {
    outline: none !important;
    -moz-outline-style: none !important; 
  }

  .select2,
  .select2-container{ 
    width: 100% !important; 
  }

  .logo_by {
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #AD1D28;
    background-image: url("../img/logo_by.png");
    background-size: 20px 20px;
    background-position: 3px 3px;
    background-repeat: no-repeat;
    border-radius: 100%;
    bottom: 5px;
    height: 26px;
    opacity: 0.80;
    filter: alpha(opacity=80);
    padding: 3px;
    position: fixed;
    right: 20px;
    width: 26px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 1;
    cursor: pointer;
  }

  .logo-menu{
    width: 80%;
    padding: 15px 15px;
    display: block;
    margin: 0 auto;
  }

  .select2-border-content{
    border-bottom: 1px solid #d7dde4;
    padding-bottom: 8px;
    background: #fff;
    position: relative;
  }

  .dataTables_info{
    white-space: inherit !important;
  }

  .margin-auto{
    margin: 0 auto;
  }

  .mensaje-icon-text{
    width: 100px;
    height: 100px;
    text-align: center;
  }

  .mensaje-icon-text i{
    font-size: 50px;
    display: block;
}

  .mensaje-icon-text span{
    font-weight: bold;
  }

  /*========== TYPEAHEAD ==========*/

  span.twitter-typeahead{
    display: block !important;
  }

  .tt-menu {
    width: 303px;
    margin: 7px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
  }

  .tt-suggestion{
    padding: 3px 20px;
    cursor: pointer;
  }

  .tt-suggestion:hover{
    background: #85CE36;
    color: #fff
  }

  /*========== STATUS FORM ELEMENTS ==========*/
  .error-elemet-form.underlined{
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #FF4444;
  }

  .valid-element-form.underlined{
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #4bcf99;
  }

  .status-element-error {
      color: #FF4444;
      font-size: 13px;
      display: block !important;
  }

  .btn-file {
      position: relative;
      overflow: hidden;
  }

  .btn-file input[type=file] {
      position: absolute;
      top: 0;
      right: 0;
      min-width: 100%;
      min-height: 100%;
      font-size: 100px;
      text-align: right;
      filter: alpha(opacity=0);
      opacity: 0;
      outline: none;
      background: white;
      cursor: inherit;
      display: block;
  }

  .span-file{
    width: 100%;
  }

  .easy-button-container>button{
    cursor: pointer;
  }

  .bootbox .bootbox-close-button{
    order: 2;
  }

  .btn-gris{
    color: black;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    padding: 9px 20px;
  }

  .btn-gris i{
    margin-right: 5px;
  }

  .fecha-range{
    border: none;
    padding-bottom: 0px;
    padding-top: 0px;
    line-height: 28px;
  }

  .small-texto-modal-mensaje{
    font-size: 14px;
    margin-top: 10px;
  }

  .ui-pnotify-title,
  .ui-pnotify-text{
    word-break: break-word;
  }

  /*============== SWITCH TEXT ON-OFF ==============*/
  .content-switch-es-MX .onoffswitch{
    width: 120px;
  }

  .content-switch-en-US .onoffswitch{
    width: 80px;
  }

  .onoffswitch {
    position: relative;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select: none;
  }

  .onoffswitch-checkbox {
      position: absolute;
      opacity: 0;
      pointer-events: none;
  }

  .onoffswitch-label {
      display: block;
      overflow: hidden;
      border: 1px solid #fa183d;
      border-radius: 20px;
  }

  .onoffswitch-inner {
      display: block;
      width: 200%;
      margin-left: -100%;
      transition: margin 0.3s ease-in 0s;
  }

  .onoffswitch-inner:before, .onoffswitch-inner:after {
      display: block;
      float: left;
      width: 50%;
      height: 30px;
      padding: 0;
      line-height: 30px;
      font-size: 14px;
      color: white;
      font-weight: bold;
      box-sizing: border-box;
  }

  .content-switch-es-MX .onoffswitch-inner:before{
    content: "Encendido";
  }

  .content-switch-en-US .onoffswitch-inner:before{
    content: "On";
  }

  .onoffswitch-inner:before {
      padding-left: 10px;
      color: #85CE36;
      text-align: initial;
  }

  .content-switch-es-MX .onoffswitch-inner:after{
    content: "Apagado";
  }

  .content-switch-en-US .onoffswitch-inner:after{
    content: "Off";
  }

  .onoffswitch-inner:after {
      padding-right: 10px;
      color: #fa183d;
      text-align: right;
  }

  .content-switch-es-MX .onoffswitch-switch{
    right: 86px;
  }

  .content-switch-en-US .onoffswitch-switch{
    right: 47px;
  }

  .onoffswitch-switch {
      display: block;
      width: 20px;
      margin: 6px;
      position: absolute;
      top: 0;
      bottom: 0;
      border: 2px solid #fa183d;
      border-radius: 20px;
      transition: all 0.3s ease-in 0s; 
  }

  .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
      margin-left: 0;
  }

  .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
      right: 0px; 
      border-color: #85CE36;
  }
  .onoffswitch-checkbox:checked + .onoffswitch-label {
    border-color: #85CE36;
  }

/*=============================================================================================================
                                            LOGIN
/*=============================================================================================================*/
  .logo-login{
    width: 300px;
    padding: 5px 20px;
  }
/*=============================================================================================================
                                            DASHBOARD
/*=============================================================================================================*/

  .content-no-get-data{
    width: 120px;
    height: 120px;
    position: fixed;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    text-align: center;
  }

  .content-no-get-data i{
    font-size: 70px;
    color:#b5b9bd;
    display: block;
  }

  .content-no-get-data span{
    font-weight: bold;
    color:#b5b9bd;
  }

  .content-no-hay-agentes{
    text-align: center;
    margin-top: 50px;
  }

  .content-no-hay-agentes i{
    font-size: 70px;
    color: #b5b9bd;
    display: block;
  }

  .content-no-hay-agentes span{
    font-weight: bold;
    color: #b5b9bd;
  }

  .border-radius-4{
    border-radius: 4px !important;
  }

  #ajax_paging{
    display: none;
  }

  .content-btn-buscar-dashboard{
    border-radius: 0 0.25rem 0.25rem 0;
    border-left: inherit;
    padding: 0.375rem 0.75rem;
    padding: inherit;
  }

  #btn_buscar_dashboard{
    cursor: pointer;
    padding: 0.375rem 0.75rem;
  }

   #btn_buscar_dashboard:hover{
    background: #e1e4e8;
   }

  /*CARDS*/
  .field_card{
    font-size: 20px;
  }

  .field_card .offer-content{
    height: 435px;
  }

  #dashboard .offer{
    background:#fff; 
    border:1px solid #ddd; 
    margin: 15px 0; 
    overflow:hidden;
    position: relative;
  }
  
  #dashboard .shape{    
    border-style: solid; border-width: 0 70px 40px 0; float:right; height: 0px; width: 0px;
    -ms-transform:rotate(360deg);
    -o-transform: rotate(360deg);  
    -webkit-transform:rotate(360deg); 
    transform:rotate(360deg);
  }

  #dashboard .offer-default .shape{
    border-color: transparent #999999 transparent transparent;
    display: none;
  }

  #dashboard .shape-text{
    color:#fff; font-size:12px; 
    font-weight:bold; position:relative; 
    right:-40px; 
    top:2px; 
    white-space: nowrap;
    -ms-transform:rotate(30deg);
    -o-transform: rotate(360deg);  
    -webkit-transform:rotate(30deg);
    transform:rotate(30deg);
  }

  #dashboard .offer-content>.img-portada-paquete{
    width: 100%;
  }

  #dashboard .content-info-paquete-gral{
    padding: 10px;
    position: relative;
    height: 180px;
  }

  #dashboard .content-info-paquete-gral hr{
    margin: 10px 0px;
  }

  #dashboard .content-info-paquete{
    position: relative;
    margin-top: 15px;
  }

  #dashboard .content-desc h3,
  #dashboard .content-desc p{
      width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: pre;
  }

  #dashboard .titulo-paquete{
    font-size: 1em;
    margin: 5px 0px;
  }

  #dashboard .descripcion-paquete{
    font-size: 0.6em;
  }

  .content-ver-mas-card{
    height: 45px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .btn-dash-full{
    width: 100%;
    text-align: center;
    display: block;
    font-size: 17px;
    text-decoration: none !important;
  }

  .btn-dash-full-off:hover{
    color: #fa183d !important;
  }

  .btn-dash-full-on:hover{
    color: #85ce36 !important;
  }

  #dashboard .content-status-gral{
    width: 60px;
    height: 60px;
    border-radius: 50px;
    position: absolute;
    top: -45px;
    right: 24px;
    background: #fff;
    z-index: 1;
  }

  #dashboard .content-text-status{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    width: 50px;
  }

  #dashboard .color-icon-blue{color: #2992c9;}
  #dashboard .color-icon-red{color: #f63b3b;}
  #dashboard .color-icon-yellow{color: #c4c905;}
  #dashboard .color-icon-green{color: #38a838;}
  #dashboard .color-icon-gray{color: #666;}


  #dashboard .content-clima{
    text-align: center;
  }

  #dashboard .content-clima>div{
    margin: 6px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #dashboard .content-clima>div:nth-child(2){
    font-size: 0.6em;
  }

  #dashboard .content-info-clima{
    background: #b7b7b7;
    height: 50px;
  }

  #dashboard .title-pronostico{
    text-align: left;
    color: gray;
  }

  .content-clima img.partly-cloudy-day,
  .content-clima img.clear-night,
  .content-clima img.partly-cloudy-night,
  .content-clima img.cloudy,
  .content-clima img.clear-day,
  .content-clima img.rain-day,
  .content-clima img.sleet,
  .content-clima img.snow{
    width: 70px;
    margin-right: -10px;
  }

  .content-clima img.wind,
  .content-clima img.fog{
    width: 40px;
    margin-bottom: 11px;
    margin-right: 5px;
  }

  .temp_actual_card{
    font-size: 1.5em;
  }

  .popover{
    max-width: 100%;
  }

  .content-popover span{
    margin: 0px 10px;
  }

  .content-popover hr{
    margin: 10px 0px;
    width: 100%;
  }

  .content-popover{
    height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: center;
  }

  .content-popover i.fa-check{
    color: #85CE36;
  }

  .content-popover i.fa-exclamation-triangle{
    color: #f63b3b;
  }

  .content-popover i.fa-unlink{
    color: gray;
  }

  .content-popover h6{
    font-size: 10px;
    line-height: 12px;
    margin: 0px;
  }

  .content-popover .row>div{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*========== OFF ==========*/
  .status-paquete-circle{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
  }

  .status-paquete-circle:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
  }

  .status-paquete-circle:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 200ms;
  }

  .bg-status-card-rojo:before{
    background: #ba1f24;
  }

  .bg-status-card-rojo:after{
    background: #fa183d;
  }

  .bg-status-card-verde:after {
    background: #85ce36;
  }

  .bg-status-card-gris:after {
    background: #999999;
  }


  .content-text-status small {
    display: block;
    position: relative;
    z-index: 3;
    font-size: 0.5em;
    color: #fff;
    font-weight: bold;
  }

  .content-text-status i{
    font-size: 15px;
  }

  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }


  /*========== INFO OCULTA ==========*/
  .content-info-oculta{
    background-color: #fff;
    width: 100%;
    overflow: hidden;
    height: 0;
    transition: all 0.6s ease;
    position: absolute;
    top: 0;
    z-index: 2;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  #tabEstadosOculto{
    text-align: center;
  }

  .content-info-oculta .nav-tabs-wrapper{
    margin-left: 30px;
  }

  .content-info-oculta .nav-item a{
    font-size: 14px;
    text-decoration: none;
  }

  .content-controles ul li>h6{
    float: left;
    font-size: 14px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 0px;
  }

  .open-info-oculta{
    background-color: #fff;
    width: 33px;
    height: 33px;
    position: absolute;
    z-index: 3;
    text-align: center;
    cursor: pointer;
    top: 0px;
    left: 0px;
    display: none;
  }

  .open-info-oculta::after{
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }

  @media (max-width: 767.98px) {
    .open-info-oculta{
      width: 40px;
      height: 40px;
    }
  }

  .open-info-oculta>i{
    font-size: 18px;
  }

  .open-info-oculta>i.fa-angle-up{
    font-size: 25px;
  }

  .show-info-oculta{
    height: 100%;
    padding: 10px;
    z-index: 2;
  }

  .background-info-oculta{
    background: rgba(0,0,0,0.1);
  }

  .header-estado-agentes h6{
    margin: 0px;
    font-size: 14px;
    font-weight: bold;
  }

  .titulo-info-oculta{
    font-size: 12px;
    margin: 3px 0px;
  }

  .btn-danger-info-oculta{
    background: #fa183d;
    border-color: #fa183d;
    color: #fff;
  }

  .btn-danger-info-oculta i{
    color: #fff;
  }

  .content-status-info-oculta{
    font-size: 11px;
  }

  .content-status-info-oculta > div{
    margin: 3px 0px;
  }

  .bg-red{
    background: #fa183d;
    border: 1px solid #fa183d;
    color: #fff;
  }

  .bg-green{
    background: #85ce36;
    border: 1px solid #85ce36;
    color: #fff;
  }

  .row-estados>div{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .divisor-info-oculta{
    border-top-style: dashed;
  }

  .content-alertas-agentes{
    margin-bottom: 25px;
    text-align: center;
  }

  .header-alertas-agentes h6{
    margin: 0px;
    font-size: 14px;
    font-weight: bold;
  }

  .content-estado-agentes{
    text-align: left;
  }

  .header-estado-agentes{
    border-bottom: 1px solid #d7dde4;
    padding: 10px 0px;
  }

  .row-estados,
  .row-alertas{
    margin: 0px auto;
    padding: 5px 0px;
  }

  .row-estados{
    border-bottom: 1px dashed #d7dde4;
    background: #f9fafb;
  }


  .si-hay-alertas .header-alertas-agentes{
    border-bottom: 1px solid #f5c6cb;
    padding: 10px 0px;
  }

  .no-hay-alertas .header-alertas-agentes{
    border-bottom: 1px solid #bce1f0;
    padding: 10px 0px;
  }

  .si-hay-alertas .row-alertas{
    border-bottom: 1px dashed #f5c6cb;
    background: #f8d7da;
    color: #721c24;
  }

  .no-hay-alertas .row-alertas{
    border-bottom: 1px dashed #bce1f0;
    background: #e2f5fd;
    color: #09516e;
  }

  #dashboard .leaflet-control-container>div,
  #dashboard-full .leaflet-control-container>div{
    z-index: 1;
  }

  .card-sin-mapa{
    color: #3a4651;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .card-sin-mapa-gris{
    background: #e0e0e0;
    text-shadow: 2px 2px #f2f0f0;
  }

  .card-sin-mapa-verde{
    background: #B8F07C;
    text-shadow: 2px 2px #C1F9AC;
  }

  .card-sin-mapa-rojo{
    background: #ef8f9f;
    text-shadow: 2px 2px #f6b1b1;
  }

  .indicadores-card-header{
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    align-items: center;
  }

  .indicadores-card-header>.item-indicador-card-header{
    margin: 0px 5px;
  }

  .fecha-card-sin-mapa{
    font-size: 0.6em;
    text-shadow: initial;
  }

  .icon-battery-card{
    width: 24px;
    height: 24px;
  }

  .icon-signal-card{
    width: 14px;
    height: 14px;
  }

  .card-sin-mapa-gris .fecha-card-sin-mapa{
    border: 1px solid #999;
  }

  .card-sin-mapa-verde .fecha-card-sin-mapa{
    border: 1px solid #85ce36;
  }

  .card-sin-mapa-rojo .fecha-card-sin-mapa{
    border: 1px solid #fa183d;
  }

  .fecha-card-con-mapa{
    background: #f0f3f6;
    font-size: 0.6em;
    text-shadow: initial;
    color: #3a4651;
  }

  .card-sin-mapa .card-sin-mapa-titulo{
    margin-bottom: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre;
    padding: 0px 40px;
    font-size: 1em;
  }

  .card-sin-mapa .card-sin-mapa-icono{
    font-size: 2.5em;
    margin: 5px 0px;
  }

  .card-sin-mapa .card-sin-mapa-valor{
    font-size: 0.8em;
    font-family: 'Open Sans', sans-serif;
    margin-left: 10px;
  }

  .card-sin-mapa .card-sin-mapa-unidad{
    font-size: 0.4em;
    font-family: 'Open Sans', sans-serif;
  }

  .card-sin-mapa-nombre-param{
    font-size: 0.6em;
  }

  .div-parametros_agente{
    height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 10px;
  }

  .row-parametros-card{
    border-bottom: 1px dashed #d7dde4;
    background: #f9fafb;
    padding: 5px 0px;
  }

  /*.content-desc-param-card>i>span{
    font-family: 'Open Sans', sans-serif;
    margin-left: 5px;
  }*/

  .row-parametros-card>div{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .content-desc-param-card{
    display: flex;
  }

  .content-desc-param-card>span:nth-child(1){
    font-size: 20px;
    margin-right: 10px;
    margin-left: 5px;
    justify-content: center;
    flex-direction: column;
    display: flex;
  }

  .content-desc-param-card>span:nth-child(2){
    font-size: 0.6em;
  }

  .content-val-param-card{
    text-align: center;
  }

  .content-val-param-card>div.val-param-cantidad>span{
    font-size: 0.8em;
    font-weight: bold;
  }

  .content-val-param-card>span{
    font-weight: bold;
  }

  .val-param-min-max{
    font-size: 0.6em;
    font-style: italic;
  }

  .text-no-disponible-card{
    font-size: 0.6em;
  }

  .parametros-card-bloques{
    display: flex;
    flex-wrap: wrap;
  }

  .bloque-param-card{
    border: 1px solid;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    width: 100px;
    height: 75px;
    padding: 5px;
  }

  .bloque-param-card .icono-bloque-param{
    text-align: center;
  }

  .bloque-param-card .content-bloque-param{
    text-align: center;
  }

  .bloque-param-card .content-bloque-param p{
    font-size: 12px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre;
    margin: 0px;
  }

  .bloque-azul{
    color: #0ba5e3;
  }

  .bloque-azul .content-bloque-param p span{
    background: #0ba5e3;
    color: #fff;
  }

  .bloque-rojo{
    color: #fa183d;
  }

  .bloque-rojo .content-bloque-param p span{
    background: #fa183d;
    color: #fff;
  }

  .fecha-estado-puerta{
    font-size: 10px !important;
    color: #969696;
    font-style: italic;
  }

  .btn-offcanvas-normal{
    background-color: #fff !important;
    color: #000 !important;
  }

  .btn-offcanvas-normal:hover{
    background-color: #f4f4f4 !important;
  }

  .btn-offcanvas-alerta{
    background-color: #fa183d !important;
    color: #fff !important;
    padding: 0px;
  }

  .btn-offcanvas-alerta:hover{
    background-color: #ed1135 !important;
  }

  .msg-alert-map-card{
    position: absolute;
    background: rgb(250, 24, 61);
    width: 200px;
    text-align: center;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 100px);
    z-index: 1;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    border-radius: 4px;
  }

  .msg-alert-map-card>h6{
    color: #fff;
    font-weight: bold;
    margin: 0px;
  }

  .msg-alert-map-card>i{
    color: #fff;
    position: absolute;
    right: 5px;
    bottom: 2px;
    font-size: 14px;
    cursor: pointer;
  }

  .title-popover-alert-card{
    font-weight: bold;
    margin: 0px;
  }

  /*.btnOffcanvas-card-sinmapa{
    width: 26px;
    height: 26px;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    border-radius: 4px;
    cursor: pointer;
  }*/

  .content-btns-cards-sin-mapa{
    position: absolute;
    left: 10px;
    top: 10px;
  }

  .content-btns-cards-sin-mapa span{
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px 0px;
    text-align: center;
    position: relative;
  }

  .content-btns-cards-sin-mapa span::after{
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }

  @media (max-width: 767.98px) {
    .content-btns-cards-sin-mapa span{
      width: 36px;
      height: 36px;
    }

    .content-btns-cards-sin-mapa>span>i{
      font-size: 16px;
    }
  }

  .btn-settings-card-sin-mapa{
    background-color: #fff;
    color: #000;
  }

  .btn-settings-card-sin-mapa:hover{
    background-color: #f4f4f4 !important;
  }

  .content-btns-cards-sin-mapa>span>i{
    font-size: 14px;
    text-shadow: initial;
  }

  .content-graph-acum-card>.content-btns-cards-sin-mapa{
    background:#fff;
    z-index: 1;
    padding: 0px 2px;
    opacity: 0.5;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
  }

  .content-graph-acum-card>.content-btns-cards-sin-mapa:hover{
    opacity: 1;
  }

  .content-graph-acum-card .btn-settings-card-sin-mapa{
    background: #e0e0e0;
  }

  .g_acum_card .amChartsLegend>svg{
    padding-left: 40px;
  }

  .content-graph-acum-card .title-graph-acum-card{
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 0px;
    padding-left: 10px;
  }

  .content-info-graph-acum{
    height: 146px !important;
  }

  .status-graph-acum-con-paquete{
    top: 7px !important;
  }

  .status-graph-acum-sin-paquete{
    top: -36px !important;
  }

  .content-graph-acum-card .fecha-card-sin-mapa{
    border: 1px solid #999;
  }

  .content-graph-acum-card .title-graph-acum-card-bottom{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 11px;
    margin: 0px;
  }

  .content-graph-acum-card .amcharts-legend-div>svg>g{
    display: none !important;
  }

  .status-acum-con-mapa .content-status-gral{
    top: -5px !important;
  }

  .tabla-notificaciones-dashboard .checkbox + span{
    padding: 0px;
    display: block;
    width: 18px;
  }

  #modal-parametros-principales .modal-body{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .bloque-param-princ{
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 260px;
    padding: 10px;
    margin: 10px;
  }

  .content-btn-selects-param-princ{
    display: flex;
    border: 1px dashed #d7dde4;
    padding: 5px;
    margin-bottom: 10px;
  }

  .bloque-param-princ-title h6{
    font-weight: bold;
    font-size: 16px;
  }

  .well-custom {
    min-height: 20px;
    padding: 5px;
    margin: 0px 10px 10px 10px;
    border: 1px dashed #e3e3e3;
    border-radius: 4px;
  }

  .the-legend {
    border-style: none;
    border-width: 0;
    font-size: 11px;
    line-height: 20px;
    margin-bottom: 0;
    width: auto;
    color: #a6a6a6;
  }

  .the-fieldset {
    border: 2px groove threedface #444;
  }

  .content-filedset-param-principal .radio-param-principal{
    display: inline-block;
    width: 25px;
  }

  .content-filedset-param-principal #dp_parametro_princ_card{
    display: inline-block;
    width: calc(100% - 35px);
  }

  /*========== DASHBORAD FULL ==========*/

  #dashboard-full>div{
    margin-bottom: 20px;
  }

  #dashboard-full .offer{
    overflow:hidden;
    position: relative;
  }

  /*.content-forecast{
    position: relative;
    padding-top: 45px;
  }*/

  .contenido-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding-top: 10px;
    width: 100%;
  }

  .control-fechas-individual{
    float: right;
    width: 240px;
  }

  .control-fechas{
    height: 30px;
  }

  .control-fechas .input-group-addon{
    padding: 2px;
  }

  .content-control-fechas-paquete{
    display: flex;
  }

  .content-control-fechas-paquete>div{
    margin: 0 5px;
    width: 290px;
  } 

  .fecha_range_grafica{
    border: none;
    padding-bottom: 0px;
    padding-top: 0px;
    line-height: 28px;
  }

  .map-full-popup .leaflet-popup-content{
    text-align: center;
  }

  .propiedades-items{
    flex-grow: 1;
    border: 1px dashed #d7dde4;
    padding: 15px;
    margin: 10px;
    width: 100%;
    /*display: inline-grid;*/
    position: relative;
  }

  .message-no-data-graph{
    /*height: 50px;
    width: 200px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 100px);
    border: 1px dashed #d7dde4;*/
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .message-no-data-graph>h3{
    font-size: 15px;
  }

  /*.text-sin-data-dashFull{
    margin-top: 10px;
  }*/

  .width-basico-100{
    flex-basis: 100%;
  }

  .width-basico-50{
    flex-basis: 50%;
  }

  .width-basico-33{
    flex-basis: 33.33%;
  }

  .width-basico-25{
    flex-basis: 25%;
  }

  .grid-titulo{
    background: #959393 !important;
  }

  .grid-titulo p,
  .grid-titulo span{
    color: #fff !important;
  }

  .widget_embed_forecast{
    width: 100%;
  }

  .widget_embed_forecast iframe{
    border: none;
    width: 100%;
    height: 780px;
  }

  .content-max-min{
    margin-top: 20px
  }

  .content-max-min h4{
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    margin: 0px 10px;
  }

  .content-max-min h4 > i{
    margin-right: 5px;
  }

  .propiedades-items h2{
    font-size: 18px;
    font-weight: bold;
  }

  .last-val-grafica-dash{
    text-align: right;
    padding-right: 5px;
    font-weight: bold;
  }

  #btn_regresar{
    margin: 0px 5px;
  }

  .switch-tiempo-real-dash{
    margin-right: 20px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .switch-tiempo-real-dash>label{
    margin: 0px;
  }

  #chartdiv_forecast .amChartsPeriodSelector{
    margin-top: -7px !important;
  }

  .icon-signal-full{
    width: 15px;
    height: auto;
  }

  .icon-battery-full{
    width: 25px;
    height: auto;
  }

  .icon-signal-full,
  .icon-battery-full{
    margin: 0px 5px;
  }

  #dashboard-full .card>.card-header>.header-block{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #cargar_mas_dashboard{
    width: 100%;
    padding: 10px;
    font-weight: bold;
    display: none;
  }

  #tabEstados,
  #tabControles{
    overflow-y: scroll;
    overflow-x: hidden;
    height: 395px;
  }

  .content-datos-pivote{
    margin-bottom: 25px;
  }

  .content-datos-pivote .row{
    padding: 10px 0px;
    border-bottom: 1px dashed #d7dde4;
  }

  .content-datos-pivote .row:nth-child(2n){
    background: #f9fafb; 
  }

  .header-datos-pivote{
    border-bottom: 1px solid #d7dde4;
    padding: 10px 0px;
    text-align: center;
  }


  .header-datos-pivote h6 {
      margin: 0px;
      font-size: 14px;
      font-weight: bold;
  }

  .content-controles ul{
    margin: 10px 0px;
    border-bottom: 1px dashed #d7dde4;
  }

  .content-controles ul>h6{
    margin: 10px 0px;
    font-size: 14px;
    font-weight: bold;
  }

  .content-tablero-dashfull .nav-item a{
   text-decoration: inherit;
  }

  .titulo-dashboard-full{
    text-align: center;
    margin: 0px 5px;
    font-weight: bold;
    font-size: 22px;
    border-top: 1px dashed;
    border-bottom: 1px dashed;
    border-color:#d7dde4;
    padding: 2px 0px;
  }
  
  /*===*/
  .card-sin-mapa-full{
    position: relative;
    font-size: 20px;
  }

  .content-parametros-agente-full{
    font-size: 20px;
    height: 100%;
    background: #fff;
  }

  .row-parametros-card-full{
    border-bottom: inherit;
    background: inherit;
    padding: 0px;
    width: 100%;
    margin: 0px;
  }

  .row-parametros-card-full>div{
    border-bottom: 1px dashed #d7dde4;
    background: #fff;
    padding: 5px 0px;
  }

  .div-parametros_agente-full{
    height: 240px;
    margin-top: 0px;
  }

  .text-no-disponible-card-full {
    font-size: 1em;
  }

  .div-mapa-parametroPrincipal{
    position: relative;
    font-size: 20px;
  }

  .div-desc-param-card{
    display: flex;
    margin: 0 auto;
  }

  .div-desc-param-card > span:nth-child(2) {
    font-size: 0.6em;
  }

  .div-desc-param-card > span:nth-child(1){
    font-size: 20px;
    margin-right: 10px;
    margin-left: 5px;
    justify-content: center;
    flex-direction: column;
    display: flex;
  }

  .link-menu-setting{
    padding: 10px 0px;
    background: #e9ecef;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 2px 2px 2px #dedfdf;
    cursor: pointer;
  }

  .link-menu-setting:hover{
    background: #e1e4e8;
  }

  .link-menu-setting i{
    display: block;
    margin: 0 auto;
    font-size: 20px;
  }

  .link-menu-setting span{
    font-weight: bold;
  }

  .div-agg-limites-form{
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #dee2e6;
  }

  #tabla_limites tbody{
    text-align: center;
  }

  .mensaje-no-hay-parametros{
    display: none;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #dee2e6;
    text-align: center;
  }

  .mensaje-no-hay-parametros h6{
    font-weight: bold;
  }

  .content-element-dif-acumulado{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0px;
  }

  .content-element-dif-acumulado>div,
  .content-btn-dif-acumulado>button{
    margin: 0px 5px;
  }

  .content-info-graph-header{
    display: flex;
    flex-wrap: wrap;
  }

  .content-info-graph-header .item-info-graph{
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px;
    border: 1px dashed #d7dde4;
  }

  .content-info-graph-header div.item-info-graph h6{
    font-weight: bold;
    margin: 0px;
  }

  .content-info-graph-header div.item-info-graph h6 span{
    font-weight: normal;
  }

  .content-btns-guides{
    width: 100%;
    display: none;
  }

  .content-btns-guides>div{
    display: inline-block;
    margin-right: 5px;
  }

  .content-btns-guides>div:nth-child(1),
  .content-btns-comentarios>div:nth-child(1){
    display: none;
  }

  #btn-ver-mas-agentes{
    background:#e9ecef;
    margin: 0 auto;
    display: block;
    width: 200px;
    padding: 10px;
    color:#495057;
    font-weight: bold;
    margin-top: 20px;
    display: none;
    border-radius: 4px;
    border: 1px solid #ced4da;
  }

  #btn-ver-mas-agentes:focus{
    box-shadow: none;
  }

  #btn-ver-mas-agentes:hover{
    background: #e1e4e8;
  }

  .btn-abrir-opciones-grafica,
  .btn-pdf-grafica{
    height: 27px;
    margin: 0px;
  }

  .header-controls-graph{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 0px 10px;
  }

  .header-controls-graph>div:nth-child(2){
    flex-grow: 2;
  }

  .header-controls-graph>div:nth-child(3){
    width: 100%;
  }

  .content-opciones-grafica{
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .content-opciones-grafica button{
    display: inline-block;
    margin-right: 5px;
  }

  .btns-opciones-grafica{
    display: flex;
    flex-wrap: wrap;
  }

  .btns-opciones-grafica button{
    flex-grow: 1;
  }

  .toggle-panels-btns{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }


  /*========== PUNTOS DE PARTIDA ==========*/
  .content-info-puntos-partida{
    position: relative;
  }

  .content-puntos-partida-historial{
    border: 1px solid;
    width: 100%;
    height: 400px;
    margin-top: 15px;
  }

  #form_agg_punto_partida,
  #form_edit_punto_partida,
  .info-item-punto-partida-secundario{
    display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
  }

  #form_agg_punto_partida{
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border: 1px solid #dee2e6;
  }

  #form_agg_punto_partida>div:nth-child(1),
  #form_agg_punto_partida>div:nth-child(2),
  #form_edit_punto_partida>div:nth-child(1),
  #form_edit_punto_partida>div:nth-child(2),
  .info-item-punto-partida-secundario>div:nth-child(1),
  .info-item-punto-partida-secundario>div:nth-child(2){
    flex-grow: 1;
    margin: 0px 20px 0px 0px;
  }

  #form_agg_punto_partida>div:nth-child(3),
  #form_edit_punto_partida>div:nth-child(3){
    margin: 0px;
  }

  #form_edit_punto_partida>#btn_editar_punto_partida,
  #form_edit_punto_partida>#btn_cancelar_editar_punto_partida{
    flex-grow: 1;
    margin: 5px;
    display: none;
  }

  .info-item-punto-partida-secundario>div:nth-child(3){
    width: 14.4px;
    height: 50px;
  }

  .title-puntos-partida-historial{
    border-bottom: 1px solid;
    text-align: center;
    padding: 5px;
  }

  .title-puntos-partida-historial label{
    margin: 0px;
  }

  .list-puntos-partida-historial{
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 2px;
    height: calc(100% - 38px);
  }

  .item-list-punto-partida{
    border: 1px solid;
    margin-top:10px;
    border-radius: 5px;
    padding: 0px 10px;
  }

  .info-item-punto-partida{
    height: 100%;
  }

  .sin-historial-puntos-partida{
    width: 100px;
    height: 100px;
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    text-align: center;
  }

  .sin-historial-puntos-partida i{
      font-size: 50px;
      display: block;
  }

  .sin-historial-puntos-partida span{
      font-weight: bold;
  }

  /*=== LOADER ===*/

  .content-lds-roller{
    position: absolute;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    text-align: center;
    height: 100%;
    display: none;
  }

  .lds-roller {
    display: inline-block;
    position: fixed;
    width: 64px;
    height: 64px;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }


  /*====== LOADER LINE =======*/

  .load-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    width: 100%;
    height: 6px;
    background-color: #85CE36;
    display: none;
  }
  .bar {
    content: "";
    display: inline;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center;
  }
  .bar:nth-child(1) {
    background-color: #64b909;
    animation: loading 3s linear infinite;
  }
  .bar:nth-child(2) {
    background-color: #85CE36;
    animation: loading 3s linear 1s infinite;
  }
  .bar:nth-child(3) {
    background-color: #A4FF42;
    animation: loading 3s linear 2s infinite;
  }
  @keyframes loading {
      from {left: 50%; width: 0;z-index:100;}
      33.3333% {left: 0; width: 100%;z-index: 10;}
      to {left: 0; width: 100%;}
  } 

  .div-loader{
    background:#fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.40;
    z-index: 1;
    display: none;
  }

   /*====== LOADER RECTANGLES =======*/
  .lds-rectangles {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-rectangles div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: lds-rectangles 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-rectangles div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-rectangles div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-rectangles div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-rectangles {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }

  .loader-rectangles-v1{
    background: rgba(240, 243, 246, 0.5);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .loader-rectangles-v1 .lds-rectangles{
    top: calc(50% - 40px);
    left: calc(50% - 40px);
  }

  .loader-rectangles-v1 .lds-rectangles>div{
    background: #3a4651;
  }

  #tabDashboard{
    padding-bottom: 100px;
  }

  .tab-content-dashboard-full{
    background: #fff;
    padding: 20px 0px;
  }

  .nav-tabs-wrapper-dasboard-full{
    margin-bottom: 0px !important;
  }

  .nav-tabs-wrapper-dasboard-full ul{
    border: none !important;
  }

  .nav-tabs-wrapper-dasboard-full ul li a{
    text-decoration: none;
    border: none !important;
  }

  .nav-tabs-wrapper-dasboard-full ul li a:hover{
    text-decoration: none;
  }

  .header-stack-item-dashfull{
    background: #d7dde4;
    padding: 10px;
    position: relative;
  }

  .header-stack-item-dashfull h3{
    font-size: 18px;
    margin: 0px;
  }

  .content-stack-item-dashfull{
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 41.6px);
    overflow-y: auto;
  }

  .content-stack-item-dashfull .stack-item{
    border: 1px solid #3a4651;
    border-radius: 5px;
    flex-grow: 1;
    margin: 10px;
    position: relative;
    min-height: 130px;
    min-width: 190px;
  }

  #stack_item_parametros .stack-item{
    max-height: none;
  }

  .content-status-stack-item{
    display: flex;
    flex-wrap: wrap;
    padding: 2px 2px 30px 2px;
  }

  .content-status-stack-item .status-stack-item{
    border: 1px solid #969696;
    color: #969696;
    padding: 2px;
    margin: 2px;
    flex-grow: 1;
    text-align: center;
    width: 100%;
  }

  .content-nombre-stack-item{
    height: 30px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .content-nombre-stack-item .nombre-stack-item{
    font-weight: bold;
    font-size: 12px;
    margin: 0px;
    padding: 0px 2px;
  }

  .active-stack-item-status{
    border-color: #85CE36 !important;
    color: #fff !important;
    background: #85CE36 !important;
  }

  .content-img-info-stack-item{
    display: flex;
    justify-content: center;
    height: calc(100% - 30px);
  }

  .content-img-info-stack-item>div{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 0px 10px;
    text-align: center;
  }

  .content-img-info-stack-item>div>img{
    padding: 2px;
  }

  .info-stack-item .variable-stack-item{
    margin-bottom: 2px;
    font-size: 11px;
  }

  .info-stack-item .variable-stack-item span{
    font-weight: bold;
  }

  .img-stack-item>i{
    font-size: 60px;
  }

  .content-tabs-toggle-panels-btns{
    width: 100%;
  }

  .nav-tabs-wrapper-toogle-panel-btns ul li a{
    text-decoration: none;
  }

  .content-tabs-toggle-panels-btns .tab-content{
    padding: 10px;
  }

  .content-buscador-modbus{
    width: 200px;
    position: absolute;
    top: 3px;
    right: 10px;
  }

  .content-buscador-modbus i{
    position: absolute;
    cursor: pointer;
    right: 12px;
    top: 9px;
  }

  .content-btn-settings-modbus{
    float: right;
  }

  .content-btn-settings-modbus button{
    background: #959393;
    opacity: 1 !important;
  }

  .icon-status-checklist{
    font-size: 30px;
  }

  .content-filtros-tablas-modbus{
    height: 30px;
    margin-bottom: 20px;
    padding: 0px 15px;
  }

  .content-filtros-tablas-modbus>div{
    width: 240px;
    float: right;
    margin-left: 20px;
  }

  .content-switch-grafica-modbus{
    position: absolute;
    top: 3px;
    right: 10px;
  }

  .tooltip-img-salidas{
    padding: 0px 15px;
    font-weight: bold;
    margin: 0px;
  }

  .content-especificaciones-img-tags ul{
    margin: 0px;
    font-weight: bold;
  }

  .alert-parametro-modbus{
    border: 2px solid #fa183d !important;
  }

  .alert-parametro-modbus .nombre-stack-item{
    color: #fa183d !important;
  }

  .btn-pdf-modbus{
    float: right;
    margin-left: 20px;
  }
  
/*=============================================================================================================
                                            INICIO
/*=============================================================================================================*/

  .forecast-temperatura{
    margin-bottom: 20px;
  }

  .forecast-temperatura>div{
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .forecast-temperatura>div>div{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .forecast-temperatura>div>img.clear-day{
    width: 200px;
    margin-top: -65px;
    margin-bottom: -70px;
    margin-right: -40px;
    margin-left: -70px;
  }

  .forecast-temperatura>div>img.rain-day,
  .forecast-temperatura>div>img.partly-cloudy-day,
  .forecast-temperatura>div>img.clear-night,
  .forecast-temperatura>div>img.cloudy,
  .forecast-temperatura>div>img.sleet,
  .forecast-temperatura>div>img.snow{
    width: 175px;
    margin-top: -50px;
    margin-right: -25px;
    margin-left: -65px;
    margin-bottom: -40px;
  }

  .forecast-temperatura>div>img.partly-cloudy-night{
    width: 175px;
    margin-top: -50px;
    margin-right: -5px;
    margin-left: -65px;
    margin-bottom: -55px;
  }

  .forecast-temperatura>div>img.wind,
  .forecast-temperatura>div>img.fog{
    width: 90px;
    margin-right: 15px;
  }


  .row_forecast-foot{
    margin-top: 10px;
  }

  .forecast-temperatura span{
    font-size:60px;
  }

  .forecast-info-bottom h5{
    font-size:15px;
    display:inline-block;
    margin:0px 3px;
  }

/*=============================================================================================================
                                            AGENTES
/*=============================================================================================================*/
.content-form-add-tag{
  border: 1px solid #d7dde4;
  border-radius: 5px;
  margin-bottom: 50px;
  display: none;
}

.content-tag-principal{
  padding: 10px 20px 0px 20px;
}

.fieldset-variables,
.fieldset-status{
  display: none;
}

.content-etiqueta-variable{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
}

.content-etiqueta-variable h6{
  margin: 0px;
  color: #999;
}

.content-btns-footer-form-tags{
  padding: 10px 20px 10px 20px;
  text-align: right;
}

button.ATA{
  margin-bottom: 20px;
}

.content-data-tooltip-tag{
  text-align: initial !important;
}

.content-data-tooltip-tag ul{
  padding-left: 20px;
}

.btn-edit-tag{
  display: none;
}

.content-variables-tag-padding{
  padding: 10px 50px;
}

.content-iccid{
  display: none;
}

/*=============================================================================================================
                                            EMPRESAS
/*=============================================================================================================*/
  #content_logo_empresa,
  #content_firma_usuario{
    height: 100%;
    border: 1px solid #d7dde4;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    padding: 2px;
  }

  #content_logo_empresa>img,
  #content_firma_usuario>img{
    margin: 0 auto;
  }

  .content-sinlogo-empresa,
  .content-sinfirma-usuario{
    background: rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .content-sinlogo-empresa,
  .content-sinfirma-usuario{
    margin: 0px;
  }

  .text-especificaciones-logo,
  .text-especificaciones-firma{
    display: inline-block;
    padding: 0.25em 0.4em;
  }

/*=============================================================================================================
                                            USUARIOS
/*=============================================================================================================*/
  .usu-span-ver-clave:before{
    font-size: 19px !important;
  }

  .usu-row-padre-der{
    background: rgba(0, 0, 0, 0.03);
  }

  .usu-menu-hijo-text{
    padding-left: 30px !important;
  }

  .usu-content-table-derechos{
    overflow-x: auto;
  }

  .usu-content-table-derechos table tr td:nth-child(1) label{
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
  }

  .underlined-codigo-pais-tel{
    margin: 0px;
    padding: 2px 0px 0px 0px;
  }

/*=============================================================================================================
                                            BITACORA DE RIEGO
/*=============================================================================================================*/

  .btn-filtrar-bitacRiego{
    color: black;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    padding: 9px 20px;
  }

  .btn-filtrar-bitacRiego:hover{
    color: black;
  }

  .btn-filtrar-bitacRiego>i{
    margin-right: 5px;
  }

/*=============================================================================================================
                                            HISTORIAL
/*=============================================================================================================*/

  .margin-bottom-100{
    margin-bottom: 100px;
  }

  h4.title a{
    color:#4f5f6f;
    font-size: 1.45rem;
    text-decoration: none;
  }

  .accordion .card-header{
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
  }

/*=============================================================================================================
                                            RECETAS
/*=============================================================================================================*/

  .agg-recetas-form fieldset,
  .edit-recetas-form fieldset{
    display: none;
  }

  .div-agg-produc-form,
  .div-edit-produc-form{
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #dee2e6;
  }

  #tabla_productos tbody,
  #tabla_productos_edit tbody{
    text-align: center;
  }

  #tabla_productos_wrapper>div:nth-child(2)>div,
  #tabla_productos_edit_wrapper>div:nth-child(2)>div{
    padding: 0px
  }

  #tabla_productos_edit_info,
  #tabla_productos_info{
    white-space: inherit;
  }

  .div-agg-produc-form select,
  .div-edit-produc-form select,
  .div-agg-produc-form input,
  .div-edit-produc-form input,
  .div-agg-produc-form .input-group,
  .div-edit-produc-form .input-group{
    margin-bottom: 0px;
  }

  #btn_agg_produc_form,
  #btn_edit_produc_form{
    margin-bottom: 0px;
  }

/*=============================================================================================================
                                            PRODUCTOS
/*=============================================================================================================*/

  .addComposicionQuimica,
  .editComposicionQuimica{
    width: 100%;
  }

  .tabla-composicion-quimica{
    text-align: center;
    margin:0px 3px;
  }

  .tabla-composicion-quimica .col-composicion{
    background: rgba(0, 0, 0, 0.05);
    padding: 5px;
  }

  .tabla-composicion-quimica .col-composicion h6{
    margin: 0px;
    font-weight: bold;
  }

  .body-compo-quimica{
    margin: 5px 0px 50px 0px;
  }

  .body-compo-quimica h6{
    margin: 0px;
  }

  .body-compo-quimica>div>div{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .text-sin-composiciones,
  .text-sin-composiciones-edit{
    border: 1px dashed #d7dde4;
    padding: 5px;
    color: #a5a5a5;
  }

  .body-compo-quimica>.row{
    border-bottom: 1px dashed #d7dde4;
    margin-bottom: 5px;
  }

  /*=============================================================================================================
                                          REPORTE DE RIEGOS Y CONSUMOS
/*=============================================================================================================*/

  .btn-grafica-reporte{
    color: black;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
  }

  .btn-grafica-reporte:hover{
    color: black;
  }

  #fecha_range_reporte{
    border: none;
    padding-bottom: 0px;
    padding-top: 0px;
    line-height: 28px;
  }

  .pdf-reporte-riegos-consumos{
    float: right;
  }

  .pdf-reporte-riegos-consumos:hover{
    color:black;
  }
/*=============================================================================================================
                                            PAGE PREVIEW
/*=============================================================================================================*/
.article-page-preview{
  position: relative;
}

.content-page-preview{
  position: absolute;
  padding: 10%;
  z-index: 9;
  background: rgba(0, 0, 0, 0) linear-gradient(125deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 100%) repeat scroll 0% 0%;
  top: 70px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.content-mensaje-page-preview{
  width: 500px;
}

.label-page-preview{
  color: #3a4651 !important;
  background-color: #EFB810 !important;
  padding: 1px 2px !important;
  position: absolute;
  right: 8px;
  top: calc(50% - 9.8px);
}

.label-page-preview i{
  font-size: 10px;
}

ul#sidebar-menu>li,
ul.sidebar-nav>li{
  position: relative;
}

.sidebar .sidebar-menu > li > .sidebar-nav > li a{
  padding-left: 35px;
  padding-right: 30px;
}

.content-mensaje-page-preview{
  font-style: italic;
}

.content-mensaje-page-preview h2{
  font-weight: bold;
  font-style: initial;
}

/*=============================================================================================================
                                            RESPONSIVE
/*=============================================================================================================*/

  /*========== MAX ==========*/

  @media(max-width: 1320px){
    #dashboard-full .amChartsPeriodSelector,
    #dashboard-history .amChartsPeriodSelector{
      font-size: 12px !important;
    }
  }

  @media(max-width: 1220px){
    /*========== DASHBOARD ==========*/
    #dashboard-full .propiedades-items{
      border: inherit;
      padding: 0px;
      margin: 0px;
      padding-bottom: 50px;
    }

    #dashboard-full .amChartsPeriodSelector,
    #dashboard-history .amChartsPeriodSelector{
      margin-top: 15px !important;
      font-size: 14px !important;
      float: inherit;
    }

    #dashboard-full .amChartsPeriodSelector>div:nth-child(1)>input.amChartsInputField,
    #dashboard-history .amChartsPeriodSelector>div:nth-child(1)>input.amChartsInputField{
      width: 100px !important;
    }

    #dashboard-full .amChartsPeriodSelector>div:nth-child(2),
    #dashboard-history .amChartsPeriodSelector>div:nth-child(2){
      float: inherit !important;
      display: inherit !important;
      margin-top: 5px;
    }

    .content-info-graph-header,
    .content-opciones-grafica{
      margin-left: 0px;
    }

    .header-controls-graph{
      margin: 0px 0px 10px 0px;
    }
  }

  @media(max-width: 1020px){
    
  }


  @media(max-width: 991px){
    .divisor-info-oculta,
    .header-estado-agentes hr{
      margin: 5px 0px;
    }

    .title-block>h3.title{
      text-align: center;
    }

    .content-variables-tag-padding{
      padding: 10px 5px;
    }
  }

  @media(max-width: 960px){}
  @media(max-width: 767px){
    /*========== GENERAL ==========*/

    .app .content {
      padding: 70px 5px 70px 5px;
    }

    .logo_by{
      bottom: 0px;
      right: 0px;
    }

    .dataTables_wrapper{
      padding-right: 0px;
      padding-left: 0px;
    }

    /*========== DASHBOARD ==========*/
    #dashboard-full .amChartsPeriodSelector,
    #dashboard-history .amChartsPeriodSelector{
      font-size: 12px !important;
    }
   
    .content-tablero-dashfull{
      margin-top: 20px;
    }

    .content-no-get-data{
      margin: 0 auto;
      position: initial;
    }
  
    .header-dashboard-full>div:nth-child(1){
      width: 35%;
    }

    .header-dashboard-full>div:nth-child(3){
      width: 65%;
    }
  
    .header-dashboard-full>div:nth-child(2){
      order: 3;
      margin-top: 20px;
    }

    /*========== DASHBOARD MODBUS ==========*/
    .tab-content-dashboard-full{
      padding: 20px 0px;
    }

    .header-stack-item-dashfull h3{
      font-size: 1.1rem;
    }

    .content-filtros-tablas-modbus{
      height: auto;
    }
    
    .content-filtros-tablas-modbus > div{
      float: none;
      margin: 10px auto;
    }

    /*========== PAGE PREVIEW ==========*/
    .content-page-preview{
      top: 50px;
    }

    .content-mensaje-page-preview{
      width: 100%;
    }

    .content-mensaje-page-preview h2{
      font-size: 20px;
      font-weight: bold;
    }

    .content-mensaje-page-preview p{
      text-align: justify;
    }

    /*========== AGENTES ==========*/
    .content-variables-tag-padding > .row{
      margin-bottom: 30px;
    }

    .fieldset-variables,
    .fieldset-status{
      margin-top: 15px;
    }
  }
  @media(max-width: 660px){}

  @media(max-width: 640px){
    .widget_embed_forecast iframe{
      height: 1080px;
    }

    .content-element-dif-acumulado{
      justify-content: center;
    }

    .content-btn-dif-acumulado{
      margin-top: 10px !important;
    }
  }

  @media(max-width: 576px){
    .widget_embed_forecast iframe{
      margin-top: 60px;
    }

    .widget_embed_forecast iframe{
      height: 1100px;
    }

    .daterangepicker .drp-selected{
      padding-bottom: 10px;
    }
  }

  @media(max-width: 550px){}

  @media(max-width: 480px){
    /*========== LOGIN ==========*/
      .logo-login{
        width: 60%;
      }

    #dashboard-full .amChartsPeriodSelector,
    #dashboard-history .amChartsPeriodSelector{
      font-size: 11px !important;
    }

    /*========== DASHBOARD ==========*/
    .control-fechas-individual{
      width: 100%;
      padding: 0px;
    }

    .btn-abrir-opciones-grafica,
    .btn-pdf-grafica{
      margin-right: 5px;
    }

    /*========== PAGE PREVIEW ==========*/
    .content-mensaje-page-preview h2{
      font-size: 17px;
    }

    .content-mensaje-page-preview p{
      font-size: 12px;
    }
  }

  @media(max-width: 400px){
    .content-switch-grafica-modbus .switch-tiempo-real-dash{
      display: none;
    }
  }

  @media(max-width: 360px){}

  @media(max-width: 250px){
    #btn-ver-mas-agentes{
      width: 160px;
    }
  }

  /*========== MIN ==========*/
  @media(min-width: 480px){
    /*==========  ==========*/
      .forecast-summary{
        font-size: 20px;
      }

      .content-element-dif-acumulado>.select2-border-content,
      .content-element-dif-acumulado>.select2-border-content{
        width: 180px;
      }
  }
  