/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

.pepso .progress-bar,
.pepso .navbar-toggle .icon-bar {
    background-color: #5c5c5e;
}

.pepso .btn-primary {
    border: 1px solid #5c5c5e;
    background-color: #5c5c5e;
}

.pepso .btn-primary:hover {
    background-color: grey;
    border: 1px solid darkgrey;
}

.pepso .text-primary,
.pepso .text-info,
.pepso a {
    color: #5c5c5e !important;
}

.pepso .btn-default,
.pepso .btn-default:hover,
.pepso .btn-default:focus,
.pepso .btn-default:active,
.pepso .btn-default.active,
.pepso .open .dropdown-toggle.btn-default {
    color: #5c5c5e;
    border: 1px solid #5c5c5e;
}

.pepso .navbar-toggle {
    border: 1px solid #5c5c5e;
}

.pepso #logos-container {
    width: 100%;
    text-align: justify;
    padding: 15px 15px 0 15px;
}

.pepso #logos-container > div {
    width: 33%;
    display: block;
    float: left;
    text-align: center;
    min-width: 190px;
    padding-top: 2em;
}

.pepso #logos-container:after {
    content: "";
    width: 100%;
    display: inline-block;
}

.pepso .footer-pepso-img {
    height: 50px;
}

/* Acordeon styles */
.accordion-tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.accordion-tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-tab label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #f1f2f3;
  color: black;
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  color: black;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
.accordion-tab input:checked ~ .tab-content {
  max-height: 40em;
}
/* Icon */
.accordion-tab label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.accordion-tab input[type=checkbox] + label::after {
  content: "+";
}
.accordion-tab input[type=radio] + label::after {
  content: "\25BC";
}
.accordion-tab input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
.accordion-tab input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}
