/* -------------------------------------------------------------------------- */

/*	Tabs
/* -------------------------------------------------------------------------- */

.tabs .tab{
  background-color: #EEEEEE;
  color: var(--clr-black);
  cursor: pointer;
  border-radius: 30px;
}

.tabs .tab.active{
  background: #FFDE59;
  color: white;
}

.tabs .tab{
  margin-bottom: 1.5rem;
}

.tabs .tab:last-child{
  margin-bottom: 0;
}

.tabs .tab .title{
  font-size: 1rem;
}

.icon{
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.tabs .tab-content .background{
  background: #FFDE59;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 30px;
}

.tabs .tab-content, .tabs .tab-img{
  z-index: 1;
}

.tabs .tab-content .tab-img img{
  object-fit: cover;
  border-radius: 30px;
}

@media screen and (max-width: 991px){
  .tabs .titles{
    text-align: left;
    display: flex !important;
    overflow: auto;
    flex-wrap: nowrap;
    flex-direction: row !important;
    gap: 20px;
    margin-bottom: 2rem;
    height: 100%;
  }

  .tabs .tab{
    width: max-content;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
  }

  .titles .icon{
    width: 64px;
    height: 64px;
    margin-bottom: 0 !important;
  }

  .tabs .tab-content{
    width: 100%;
    margin: auto;
  }

  .tabs .tab .title{
    max-width: 200px;
  }

  .tabs .tab-content .tab-img{
    height: auto !important;
    width: 100%;
    padding: 0;
  }

  .tabs .tab-content .tab-img img{
    height: auto !important;
    width: 100%;
    margin-top: 2rem;
  }
}
