.flex-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.color-primary {
  color: #001c47;
}

.color-secondary {
  color: #002a52;
}

.color-gray {
  color: #999999;
}

.color-gray-clean {
  color: #edeff0;
}

.img-responsive {
  max-width: 100%;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-xs {
    display: none;
  }
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
}

a {
  color: #002a52;
}

.card-header {
  background: none !important;
  border: none !important;
  padding: 15px;
}

.card {
  background: none !important;
  border: none !important;
}

.has-submenu{
  padding-right: 20px;
  list-style: none;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}

.has-submenu::after{
  content: '';
  background-image: url('/assets/legacy/img/seta-direita.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .5;
  height: 15px;
  width: 15px;
  position: absolute;
  right: 0;
}