

.c-tabs {
  display: flex;
  justify-content: center;
  text-align: center;
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0;
  flex-wrap: wrap;
}

.c-tab {
  cursor: pointer;

  width: 100%;
  margin: 0;
  padding: var(--padding-300);

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--grey-75);
  
  font-weight: var(--fw-bold);
  min-width: 200px;
  max-width: 20%;
}

@media(max-width:750px){
  .c-tab {
    max-width: 30%;
  }
}

.c-tab.active {
  background-color: var(--brand-lighter-blue);
}

.clean-base.tab-content,
.tab-content,
.tab-content.show-mobile,
.tab-content.show-tablet
{
  display: none !important;
}

.c-tab {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  
}


.tab-content.active,
.clean-base.tab-content.active {
  display: flex !important;
}

.c-tab-mobile-head {
  display:none;
}

@media (max-width: 575px) {
  {# Hide the c-tabs and show the select menu #}
  .c-tabs {
/*     display: none; */
  }
  .c-tab-mobile-head {
/*     display:block;
    margin-bottom: 15px; */
  }
  select {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10.293 3.293L6 7.586 1.707 3.293a1 1 0 011.414-1.414L6 5.758l3.879-3.879a1 1 0 011.414 1.414z' fill='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
  }

  select:focus {
    outline: none;
    border-color: #0078d7;
    box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.3);
  }
}