/**
 * Font Awesome Icon Tabs - Core Styles.
 *
 * Compile styles with:
 * `sass wp-content/themes/understrap-child/font-awesome-icon-tabs/core/style.scss wp-content/themes/understrap-child/font-awesome-icon-tabs/core/style.css`;
 *
 * See: https://github.com/sass/sass?tab=readme-ov-file#install-sass
 */
.fa-icon-tabs__container {
  padding: 2rem 0;
  width: 100%;
  overflow: hidden;
}
.fa-icon-tabs__top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .fa-icon-tabs__top {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
  }
}
.fa-icon-tabs__top-heading, .fa-icon-tabs__top-button {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .fa-icon-tabs__top-heading, .fa-icon-tabs__top-button {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }
}
.fa-icon-tabs__top-button {
  padding: 0 1rem 0 0;
  min-height: 40px;
  height: 100%;
  background-color: transparent;
  border: none;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .fa-icon-tabs__top-button {
    padding: 2rem 0;
  }
}
.fa-icon-tabs__top-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.fa-icon-tabs__top-button i {
  min-width: 3rem;
  font-size: 1rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fa-icon-tabs__top-button i {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.fa-icon-tabs__top-button p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fa-icon-tabs__top-button p {
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1024px) {
  .fa-icon-tabs__top-button p {
    font-size: 12px;
  }
}
.fa-icon-tabs__top-button.is-active-tab {
  background-color: #fff;
}
.fa-icon-tabs__top-button.is-active-tab:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.fa-icon-tabs__top-button.is-active-tab i,
.fa-icon-tabs__top-button.is-active-tab p {
  color: #000;
}
.fa-icon-tabs__bottom {
  padding: 2rem 0;
  width: 100%;
  overflow: hidden;
}
.fa-icon-tabs__bottom-content {
  display: none;
  opacity: 0;
  width: 100%;
}
.fa-icon-tabs__bottom-content,
.fa-icon-tabs__bottom-content p {
  color: #fff;
}
.fa-icon-tabs__bottom-content a {
  font-weight: 700;
  color: inherit;
}
.fa-icon-tabs__bottom-content a:hover {
  color: inherit;
  text-decoration: underline !important;
}
.fa-icon-tabs__bottom-content.is-active-tab {
  display: block;
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
