/*
.row-flex {
  display:flex;
}
.row-flex .col {
    flex:1;
  }
.row-flex .col:last-child {
      margin-left: 1em;
    }


 .tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0,0,0,0.5);
}
.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
  .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background:var(--color-primario);
     font-weight: bold;
     cursor: pointer;
     color: #f5f5f5;
     font-family:var(--font-h2);
     font-size: 1.5em;
         letter-spacing: .5px;
  }
    .tab-label:hover {
      background:#72a68e;
    }
  .tab-label::after {
      content: "\276F";
      width: 1em;
      height: 1em;
      text-align: center;
      transition: all .35s;
    }

  .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: var(--color-primario);
    background: white;
    transition: all .35s;
  }
  .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background:var(--color-primario);
    cursor: pointer;
  }
    .tab-close:hover {
      background:var(--color-secundario);
    }

input.tab-label:checked {
    background: #72a68e;
  }

  input.tab-label::after {
      transform: rotate(90deg);
      -webkit-transform: rotate(90deg);
    }
  }
  ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
  } */
  .panel {
    background-color: #f5f5f5;
  }
  .panel-group .panel {
        border-radius: 0;
        box-shadow: none;
        border-color: #EEEEEE;
        margin-bottom: 18px;
    }

    .panel-default > .panel-heading {
        padding: 0;
        border-radius: 0;
        color: #f5f5f5;
            background-color: #025157;
            border-color: #EEEEEE;
            font-family: 'Chivo';
    }
    .panel-heading:hover {
      background:#67b54b;
    }
    .panel-title {
      font-size: 1.5em;
    letter-spacing: .5px;
    font-weight: 600;
        line-height: 27px;
    }

    .panel-title > a {
        display: block;
          padding: 22px 15px;
        text-decoration: none;
    }
    .more-less {
        float: right;
        color: #f5f5f5;
    }

    .panel-default > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #EEEEEE;
        font-size: 1.4em;
        line-height: 30px;
        font-weight: 300;
        font-family: Helvetica;
    }
