@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --dark: #0275d8;
  --light: #5cb85c;
  --red: #d9534f;
  --green: #5cb85c;
  --yellow: #fee101;
  --danger: #dc3545;
  --secondary: #6c757d;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: rgb(82, 81, 81);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
}

.block {
  display: block;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-close {
  display: flex;
  justify-content: flex-end;
  margin: 20px 20px 0 0;
}

.modal-icon {
  font-size: 6rem;
  line-height: 6rem;
}

.modal-icon > ion-icon[name*="close-circle-outline"]{
  color: red;
}

.modal-icon > ion-icon[name*="checkmark"]{
  color: green;
}

p.modal-message {
  font-size: 1.1rem;
  width: 30ch;
  margin-bottom: 50px;
  text-align: center;
}

.full-height {
  position: relative;
  height: 50%;
  background: linear-gradient(45deg, var(--dark), var(--light));
  z-index: 2;
}

.full-height:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/saas-overlay.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}

.banner {
  background: url(../img/banner.jpg);
  height: 300px;
  min-width: 991px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .ad {
  width: fit-content;
  display: flex;
  align-items: center;
}

.banner .punch-heading {
  color: #162441;
  font-size: 1.9em;
  font-weight: 600;
  margin-bottom: -10px;
}

.banner .punch-desc {
  color: #162441;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.banner .punch-line {
  color: #162441;
  font-size: 4.7em;
  font-weight: 600;
  line-height: 0.8em;
}

.banner .punch-sub {
  background: #162441;
  color: white;
  padding: 5px;
  margin-top: 0;
}

.banner p {
  margin: 20px 0;
}

.banner .cta {
  margin-top: 20px;
  background: var(--yellow);
  color: black;
  padding: 10px;
  border-radius: 50px;
  border: 2px dashed black;
  font-size: 0.9em;
  font-weight: 500;
}

.banner .contact {
  margin-top: 20px;
  color: black;
  font-size: 1.3em;
}

.banner .whatsapp {
  width: 30px;
}
.banner .phone {
  font-size: 1.4em;
}

.card-header {
  color: #fff;
    background: linear-gradient(45deg, var(--dark), var(--light));
}

.fullSignin {
  height: 100%;
}

.menu-height {
  height: 120px;
  background: linear-gradient(45deg, var(--dark), var(--light));
  border: 0px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

a.tabla {
  color: #333 !important;
  text-decoration: none;
}

a {
  color: var(--dark);
  text-decoration: none !important;
}

.navbar-brand,
.navbar-brand:hover {
  color: white;
  font-family: 'Poppins';
  font-size: 27px;
  display: flex;
  align-items: center;
}

.show_new_msg {
  font-size: smaller;
  font-weight: 600;
  vertical-align:middle;
  color: var(--red);
  display:inline;
  margin-bottom: 0px;
}

.icon-button {
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2rem;
}

.button_custom {
  background-color: var(--dark);
  color: white;
  font-size: 12px;
}

.button_custom:hover {
  color: white;
}

.button_custom:focus {
  outline: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-icon {
  width: 30px;
  height:30px;
  padding: 0px 3px 3px 3px;
  border-radius: 5px;
  font-size: 20px;
}

.btn_void {
  background-color: var(--yellow);
  color: black;
  font-size: 1rem;
  line-height: 1rem;
  margin-left: 5px;
  padding: 4px;
  border: 1px solid #efc663;
}

.btn_void i,
.btn_undo i {
  vertical-align: middle;
}

.btn_undo {
  background-color: var(--secondary);
  color: white;
  font-size: 1rem;
  line-height: 1rem;
  margin-left: 5px;
  padding: 4px;
}

.btn ion-icon {
  margin-top: 5px;
  font-size: 1em;
}

.button_close {
  background-color: var(--red);
  color: white;
  font-size: 12px;
}

.button_close:hover {
  background-color: var(--red);
  color: white;
}

.button_close:focus {
  outline: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.button_dont_close, .button_dont_close:hover {
  background-color: var(--green);
  color: white;
  font-size: 12px;
}

.button_dont_close:focus {
  outline: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.delete-circle {
  height: 100px;
  width: 100px;
  background-color: var(--light);
  border-radius: 50%;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

.delete-icon {
  width: 50px;
  height: 50px;
  /* Center vertically and horizontally */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
}

.legend-indicator {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #bdc5d1;
  border-radius: 50%;
  margin-right: 0.4375rem;
}

table.table.table-striped tr.alert td {
  background: #fbdbd0;
}

td {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

td a { 
  display: block; 
  color: #333 !important;
  text-decoration: none; 
}

.td-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.td-flex form:first-child {
  margin-right: 10px;
}

.invoice {
  background-color: var(--dark);
  color: white;
}

.subscribed-client {
  font-weight: 500;
}

.past {
  color: red;
  font-weight: 600;
}

.future {
  color: var(--light);
  font-weight: 600;
}

.device-description {
  list-style-type: none;
}

#umbrella {
  animation-duration: 1s;
  animation-name: animate-pop;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
}

@keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5, 1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/*======================================
	Navbar CSS
========================================*/

.navbar {
  height: 100px;
  padding-top: 35px;
  margin-bottom: 20px;
  z-index: 9;
}

.nav-item a.level1:link, 
a.level1:visited, 
a.level1:active {
  color: #FFF;
  font-weight: 500;
  font-size: 14px;
  background-color: transparent;
  text-decoration: none;
  padding-left: 20px;
}

.nav-item a.level1:hover {
  opacity: 0.7;
}
.nav-item a.level2 {
  color: #888;
  font-weight: 500;
  font-size: 12px;
  padding-left: 15px;
}

.nav-item a.level2:hover {
  color: #333;
  background-color: transparent;
  text-decoration: none;
}

.dropdown-menu {
  border: 0px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.dropdown-top {
  border: 0px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}


.navbar-toggler {
  padding: 0;
  background-color: #eee;
  color: #888;
}

.navbar-toggler-icon {
  padding: 5px;
  color:#888;
}

.navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-notification {
  white-space: normal !important;
  font-size: small;
}


.menu-button {
  width: 60px;
  height: 20px;
  font-size: smaller;
}

.small-bulletin {
  display: none;
}


/*======================================
	Hero CSS
========================================*/
.hero-area .hero-inner {
  height: 50%;
  position: absolute;
}


.hero-area .hero-text {
  float: none;
  margin-top: 55px;
}

.bulletin {
  height: 300px;
}

.hero-area .hero-text h1 {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: -1px;
  color: #fff;
}

.hero-area .hero-text p {
  font-size: 14px;
  color: #fff;
}

.hero-area .hero-text .button {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.hero-area .hero-text .button .btn {
  background: #fff;
  color: #081828;
  font-size: 14px;
  margin-right: 10px;
}

.hero-area .hero-text .button .btn ion-icon {
  margin-top: 5px;
  font-size: 1.3em;
}

/* .hero-area .hero-text .button .btn:last-child {
  margin: 0;
} */

.hero-area .hero-text .button .btn:hover {
  color: #fff;
  background-color: #081828;
}

.hero-area .hero-text .button .btn.primary {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
}

.hero-area .hero-text .button .btn.primary::before {
  background: #fff;
}

.hero-area .hero-text .button .btn.primary:hover {
  color: #081828;
}




/*======================================
	History CSS
========================================*/
.history .single-info:last-child{
  margin-bottom:0px;
}

.history .single-head{
  position:relative;
  z-index:5;
  margin-top:10px;
}

.history .single-info{
  text-align:left;
  margin-bottom:25px;
  padding-left:40px;
  position:relative;
}
.history .single-info i{
  font-size:14px;
  display:inline-block;
  position:absolute;
  left:0;
  top:0;
  height:40px;
  width:60px;
  display:block;
  text-align:center;
  background:linear-gradient(45deg, var(--dark), var(--light));
  color:#fff;
  line-height:40px;
  border-radius:5px;
}
.history .single-info ul{
  display:inline-block;
}
.history .single-info ul li span{
  display:block;
  margin-bottom:7px;
  font-size:14px;
  font-weight:600;
  color:#081828;
}
.history .single-info ul li:last-child{
  margin-bottom:0px;
}
.history .single-info ul li{
  font-weight:500;
  display:inline-block;
  font-size:14px;
  color:#333;
  display:block;
}

.ticket-info {
  margin: 30px 0px 30px 0px;
}

.pending {
  color: var(--red);
  background-color: #f8f9fa;
}

.resolved {
  color: var(--dark);
  background-color: #f8f9fa;
}

.ticket-icon {
  font-size: 30px;
}

.device-icon {
  font-size: 50px;
}

.ticket-status {
  font-size: 10px;
  font-weight: 600;
}

.ticket-frame {
  position: relative;
}

.center {
  text-align: center;
  position: relative;
  padding: 50px 0px 50px 0px;
}



/* =====================================
   Info Css
======================================== */
.computer {
  font-size: 1em;
  line-height: 1.7rem;
}




/*======================================
	Section CSS
========================================*/
.prueba {
  flex-grow: 1; /* fill viewport when content is short, footer sticks at the end of viewport*/
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}

.section-title span {
  text-transform: capitalize;
  color: #fff;
  background: linear-gradient(45deg, var(--dark), var(--light));
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 4px;
}

.section-title h2 {
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 40px;
  position: relative;
  font-weight: 700;
  color: #081828;
}

.section-title p {
  font-size: 24px;
  line-height: 24px;
}


/*======================================
	Accordion CSS
========================================*/
.accordion-item .accordion-button{
  font-size:14px;
  font-weight:500;
  width:100%;
}

.badge_active_ticket {
  background-color: var(--light);
}

.badge_new_ticket {
  background-color: red;
}

.badge_no_active_ticket {
  background-color: #ADB5BD;
}

.accordion-button:focus {
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed){
  color:#fff;
  background:linear-gradient(45deg, var(--dark), var(--light));
}

.accordion-body {
  background: #fbfbfb;
}

.accordion-body p{
  margin:0px;
  font-size:14px;
}

.accordion-body p:last-child{
  margin:0px;
}



.report {
  margin: 0px;
  padding: 0px;
}

.report .single-info:last-child{
  margin-bottom:0px;
}

.report .single-head{
  position:relative;
  z-index:5;
  margin-top:20px;
}

.report .single-info{
  text-align:left;
  margin-bottom:0px;
  padding-left:0px;
  position:relative;
}

.msj {
  font-size: small;
  color: red;
  vertical-align:middle;
  display:inline;
  margin-bottom: 0px;
}

.quote {
  font-size: small;
  color: orange;
  vertical-align:middle;
  display:inline;
  margin-bottom: 0px;
}


.report .single-info ul{
  display:inline-block;
  width: 100%;
  padding-left: 0px;
}

.report .single-info ul li span{
  display:inline;
  margin-bottom:0px;
  font-size:14px;
  font-weight:600;
  color: #000;;
  vertical-align:middle;
}

.report .single-info ul li:last-child{
  margin-bottom:0px;
}
.report .single-info ul li{
  font-weight:normal;
  display:inline-block;
  font-size:14px;
  color:#333;
  display:block;
  margin: 0px;
  padding-top: 5px;
}

.report .single-info ul .list_header {
  background-color: #e2e3e5;
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  border-color: #d3d6d8;
}


.report .single-info .note {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0px;
}

/*======================================
	Form CSS
========================================*/
.form4 {
  width: 360px;
  margin: 0 auto;
}
.form-select,
.form-control {
  font-size: 14px;
  color:#333;
}

.form-label {
  font-weight: 700;
}

.form-control:focus, .form-select:focus {
  border-color: #6ea8fe;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(158, 197, 254, 0.6);
}

.input-note {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
  padding: 1rem 1rem;
}

.input-note:focus {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
  padding: 1rem 1rem;
}

.chat {
  max-width: 85%;
  margin-bottom: 15px;
}

.chat-start {
  float: left;
  background-color: #edeef0;
  padding: 1rem 1rem;
  border: 1px solid #d3d6d8;
  display: inline-block;
  -webkit-border-radius: 20px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius: 20px;
  -moz-border-radius-topleft: 0;
  border-radius: 20px;
  border-top-left-radius: 0;
}

.chat-end {
  float: right;
  background-color: #d6e8f4;
  padding: 1rem 1rem;
  border: 1px solid #b3c9d8;
  display: inline-block;
  -webkit-border-radius: 20px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius: 20px;
  -moz-border-radius-bottomright: 0;
  border-radius: 20px;
  border-bottom-right-radius: 0;
}

.notify {
  font-size: 0.75em;
  font-weight: 700;
  color: #fff;
  border-radius: 0.375em;
  display: inline-block;
  padding: 0.35em 0.65em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: var(--danger);
  border: 1px solid var(--danger);
}



/* =====================================
  View Device CSS
======================================== */
.view-device-actions {
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
  margin-top: 20px;
  white-space: nowrap;
}


/*======================================
	Footer CSS
========================================*/
.push {
  height: 65px;
}

.footer {
  height: 90px;
  position:relative;
  bottom:0;
  width:100%;
  z-index: 2;
  background: linear-gradient(45deg, var(--dark), var(--light));
}

.footer .footer-bottom {
  padding-top: 30px;
  background-color: transparent;
  border-top: 2px solid #eeeeee69;
}

.footer .footer-bottom .inner {
  text-align: center;
}

.footer .footer-bottom .inner p {
  color: #fff;
  font-size: 14px;
}

.footer-brand,
.footer-brand:hover {
  color: white;
  font-family: 'Poppins';
  font-size: 20px;
}

.footer-brand,
.footer-brand:hover {
  color: white;
  font-family: 'Poppins';
  font-size: 18px;
}

.footer .logo img {
  width: 21px;
  height: 21px;
}

/*info.php*/
.client-info {
  margin-bottom: 20px;
}



/*======================================
    Responsive CSS
========================================*/
/* Tablet Screen */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 1em;
  }

  .hero-area .hero-text .button .btn {
    /* text-align: center;
    display: inline-block;
    margin: 0; */
    margin-top: 10px !important;
    margin-bottom: 35px !important;
    /* font-size: 13px;
    width: 35%; */
  }


  .hero-area .hero-image {
    display: none;
  }

  .bulletin {
    display: none;
  }

  .small-bulletin {
    display: block !important;
  }
  
  .banner {
    height: 250px;
  }

  .banner .ad {
    background-color: bisque;
  }

  .banner .punch-heading {
    font-size: 1.4em;
  }

  .banner .punch-line {
    font-size: 3em;
  }

  .banner .punch-sub {
    font-size: 0.8em;
  }

  .banner .punch-desc {
    font-size: 0.8em;
    text-align: start;
  }

  .banner .cta {
    font-size: 0.7em;
    padding: 5px;
  }

  .banner .phone {
    font-size: 1em;
    font-weight: 500;
  }

  .banner img {
    width: 80%;
  }

     /* Menu */
     .navbar-collapse {
      position: absolute;
      font-size: 14px;
      top: 100%;
      width: 95%;
      color: #888;
      background-color: #fff;
      padding-left: 15px;
      padding-top: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    }
  
    .nav-item a.level1:link, 
    a.level1:visited, 
    a.level1:active {
    color: #888;
    font-weight: 500;
    font-size: 14px;
    background-color: transparent;
    text-decoration: none;
    padding-left: 10px;
    }
  
    .nav-item a.level1:hover {
      color: #333;
      background-color: transparent;
      text-decoration: none;
    }
    .nav-item a.level2 {
      color: #888;
      font-size: 14px;
      padding-left: 20px;
    }
  
    .nav-item a.level2:hover {
      color: #333;
      background-color: transparent;
      text-decoration: none;
    }

    .btn-notification {
      padding-left: 10px;
    }
  
    /* Submenu */
    .dropdown-top {
      margin-left: 10px;
      border-radius: 0px;
      border-left: 2px dotted #888;
      box-shadow: 0 0 0 0;
    }

    /* List in accordion for every ticket*/
    .report .single-info ul li{
      font-weight:normal;
      display:inline-block;
      font-size:14px;
      color:#333;
      display:block;
      margin: 0px;
      padding-top: 5px;
    }

    /* -- CHAT IN VIEWTICKET -- */
    .chat {
      max-width: 85%;
      margin-bottom: 25px;
    }
    
    .chat-start {
      float: left;
      background-color: #edeef0;
      padding: 1rem 1rem;
      border: 1px solid #d3d6d8;
      display: inline-block;
      -webkit-border-radius: 20px;
      -webkit-border-top-left-radius: 0;
      -moz-border-radius: 20px;
      -moz-border-radius-topleft: 0;
      border-radius: 20px;
      border-top-left-radius: 0;
    }
    
    .chat-end {
      float: right;
      background-color: #d6e8f4;
      padding: 1rem 1rem;
      border: 1px solid #b3c9d8;
      display: inline-block;
      -webkit-border-radius: 20px;
      -webkit-border-bottom-right-radius: 0;
      -moz-border-radius: 20px;
      -moz-border-radius-bottomright: 0;
      border-radius: 20px;
      border-bottom-right-radius: 0;
    }
    

}

@media only screen and (max-width: 767px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    color: rgb(82, 81, 81);
    overflow-x: hidden;
  }

  .view-device-actions {
    display: flex;
    flex-direction: row;
  }

  .view-device-actions a {
    width: 80px;
  }

  
  /* Nav and hero container */
  .full-height {
    height: 80%;
    padding: 0 20px;
    background: linear-gradient(45deg, var(--dark), var(--light));
  }

  .hero-area .hero-image {
    display: none;
  }

  .hero-area .hero-text .button .btn {
    margin-top: 10px !important;
    margin-bottom: 35px !important;
    margin-right: 10px;
    font-size: 1.2em;
  }


  .bulletin {
    display: none;
  }

  .small-bulletin {
    display: block !important;
  }

  
  .next-visit {
    display: none;  
  }
  
  .next-date {
    display: none;
  }
  
  .next-visit-client{
    display: none;
  }

  
   /* Menu */
   .navbar-collapse {
    position: absolute;
    font-size: 1em;
    top: 100%;
    width: 95%;
    color: #888;
    background-color: #fff;
    padding-left: 15px;
    padding-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
  }

  .nav-item a.level1:link, 
  a.level1:visited, 
  a.level1:active {
  color: #888;
  font-weight: 500;
  font-size: 1em;
  background-color: transparent;
  text-decoration: none;
  padding-left: 10px;
  }

  .nav-item a.level1:hover {
    color: #333;
    background-color: transparent;
    text-decoration: none;
  }
  .nav-item a.level2 {
    color: #888;
    font-size: 1em;
    padding-left: 20px;
  }

  .nav-item a.level2:hover {
    color: #333;
    background-color: transparent;
    text-decoration: none;
  }



  /* Submenu */
  .dropdown-top {
    margin-left: 10px;
    border-radius: 0px;
    border-left: 2px dotted #888;
    box-shadow: 0 0 0 0;

  }

  .prueba {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  
  
  /* Section */
  .section {
    padding: 50px 30px;
  }

  .sectionTablePending {
    padding: 50px 5px;
  }

  .section-title {
    margin-bottom: 30px;
    padding: 0px;
  }
  .section-title span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 20px;
    line-height: 28px;
  }

  /* .button .btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
  } */
  
  .hero-area .hero-inner {
    height: auto;
    padding-bottom: 60px;
  }
  .hero-area::after {
    z-index: 0;
  }
  .hero-area .hero-inner {
    padding-bottom: 80px;
  }
  .hero-area .hero-image {
    display: none;
  }
  .hero-area .hero-text {
    float: none;
    margin-top: 50px;
  }
  .hero-area .hero-text h1 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .hero-area .hero-text p {
    font-size: 16px;
    color: #fff;
  }
  .hero-area .hero-text .button {
    margin-top: 25px;
  }
  /* .hero-area .hero-text .button .btn {
    text-align: center;
    display: inline-block;
    margin: 0;
    margin-top: 10px !important;
    font-size: 16px;
  }

  .hero-area .hero-text .button .btn:last-child {
    margin-bottom: 25px !important;
  } */

  .tablePending {
    overflow-x:auto;
  }

  /* Accordion */
  .report .single-info{
    text-align:left;
    margin-bottom:0px;
    padding-left:10px;
    position:relative;
  }

  .report .single-info ul li span{
    display:block;
    margin-bottom:0px;
    font-size:16px;
    font-weight:600;
    color:#081828;
  }

  .report .single-info .msj {
  font-size: smaller;
  line-height: 13px;
  color: red;
  margin-left:0px;
  margin-bottom: 0px;
  margin-top: 0px;
}

  /* List in accordion for every ticket*/
  .report .single-info ul li{
    font-weight:normal;
    display:inline-block;
    font-size:16px;
    color:#333;
    display:block;
    margin: 0px;
    padding-top: 5px;
  }

  /* -- CHAT IN VIEWTICKET -- */
  .chat {
    max-width: 85%;
    margin-bottom: 25px;
  }
  
  .chat-start {
    float: left;
    background-color: #edeef0;
    padding: 1rem 1rem;
    border: 1px solid #d3d6d8;
    display: inline-block;
    -webkit-border-radius: 20px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 20px;
    -moz-border-radius-topleft: 0;
    border-radius: 20px;
    border-top-left-radius: 0;
  }
  
  .chat-end {
    float: right;
    background-color: #d6e8f4;
    padding: 1rem 1rem;
    border: 1px solid #b3c9d8;
    display: inline-block;
    -webkit-border-radius: 20px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 20px;
    -moz-border-radius-bottomright: 0;
    border-radius: 20px;
    border-bottom-right-radius: 0;
  }
      
  .ticket-info {
    margin: 30px 0px 0px 0px;
  }

  .center {
    text-align: center;
    position: relative;
    padding: 30px 0px 10px 0px;
  }
    
  .computer {
    font-size: 1em;
    line-height: 1.7rem;
  }

}
