/* =========================================
TABS
ESTILOS GENERALES REUTILIZABLES
========================================= */

.tabs-module{
  width: 40%;
}

.tabs-nav{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-btn{
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  padding: 0 0 8px 0;
  margin: 0 22px 0 0;
  border-bottom: 2px solid transparent;
  font-family: soleil, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #6f7f88;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.tab-btn:last-child{
  margin-right: 0;
}

.tab-btn:hover{
  color: #1f1f1f;
}

.tab-btn.is-active{
  color: #1f1f1f;
  border-bottom-color: #5f8596;
}

.tabs-content{
  width: 100%;
}

.tab-panel{
  display: none;
}

.tab-panel.is-active{
  display: block;
}

