/*
 *  Copyright 2018 Adobe
 *
 *  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
 *
 *      http://www.apache.org/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;
}
.cmp-tabs__tab {
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  padding: .5rem 1rem;
  cursor: pointer;
}
.cmp-tabs__tab--active {
  border-color: inherit;
}
.cmp-tabs__tabpanel {
  display: none;
}
.cmp-tabs__tabpanel--active {
  display: block;
}

.cmp-tabs {
  margin-left: 16px;
  margin-right: 16px;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.cmp-tabs__tabpanel {
  padding: 20px;
  background: #FFFFFF;
}
.cmp-tabs__tablist {
  margin-bottom: 0;
}
.cmp-tabs__tab {
  flex: 1;
  font-family: 'aspira-regular';
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  padding: 12px 0;
  border-bottom: none;
  text-align: center;
  background: #512D6D;
  color: #FFFFFF;
  margin-right: 1px;
}
.cmp-tabs__tab:last-child {
  margin-right: 0;
}
.cmp-tabs__tab--active {
  margin-right: 0;
  background: #FFFFFF;
  color: #512D6D;
  cursor: default;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cmp-tabs {
    margin-left: 8px;
    margin-right: 8px;
  }
  .cmp-tabs__tab {
    font-size: 16px;
    padding: 15px 0;
  }
}
@media only screen and (min-width: 375px) and (max-width: 767px) {
  .cmp-tabs {
    margin-left: 8px;
    margin-right: 8px;
  }
  .cmp-tabs__tab {
    font-size: 14px;
  }
  .cmp-tabs__tabpanel {
    padding: 20px 10px;
  }
  .cmp-tabs__tabpanel-error {
    padding: 15px 12px;
  }
}

