.horizontal-tabs {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.horizontal-tabs:after {
  content: "";
  display: table;
  clear: both;
}

.horizontal-tabs input[type=radio] {
  display: none;
}

.horizontal-tabs label {
  display: inline-block;
  min-width: 25%;
  flex: 1 1 25%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  /* Safari 3.1 to 6.0 */
  transition: all 0.5s;
  font-weight: 600;
}
.horizontal-tabs label img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.horizontal-tabs label span {
  display: none;
  font-size: 1rem;
}

.horizontal-tabs label:hover .icon-wrapper {
  box-shadow: 0 0 8px #00000065;
  background: var(--palette-attention);
}

.horizontal-tabs .tab__content {
  display: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ffffff;
  margin-top: 0.5rem;
}

.horizontal-tabs .tab__content * {
  -webkit-animation: scale 0.2s ease-in-out;
  -moz-animation: scale 0.2s ease-in-out;
  animation: scale 0.2s ease-in-out;
}

@keyframes scale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.01);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.horizontal-tabs [id^=tab]:checked + label {
  color: var(--palette-text);
}
.horizontal-tabs [id^=tab]:checked + label .icon-wrapper {
  box-shadow: 0 0 8px #00000065;
  background: var(--palette-attention);
}

.horizontal-tabs.icons-tabbed [id^=tab]:checked + label {
  color: var(--palette-text);
  position: relative;
}
.horizontal-tabs.icons-tabbed [id^=tab]:checked + label .icon-wrapper {
  box-shadow: 0 0 8px #00000065;
  background: var(--palette-attention);
}
.horizontal-tabs.icons-tabbed [id^=tab]:checked + label::after {
  content: "";
  border-bottom: 4px solid #FFB81C;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 4px;
}

.horizontal-tabs.icons-tabbed .tab__content {
  border-top: 2px solid #BBBCBC;
}

@media (min-width: 768px) {
  .horizontal-tabs label span {
    display: block;
  }
}
.horizontal-tabs .icon {
  margin-top: 1rem;
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 2px solid #CACFD6;
  background-size: 100px 50px;
  box-sizing: border-box;
}

.horizontal-tabs .tab1:checked ~ .tab__content--1, .horizontal-tabs .tab2:checked ~ .tab__content--2, .horizontal-tabs .tab3:checked ~ .tab__content--3, .horizontal-tabs .tab4:checked ~ .tab__content--4, .horizontal-tabs .tab5:checked ~ .tab__content--5, .horizontal-tabs .tab6:checked ~ .tab__content--6, .horizontal-tabs .tab7:checked ~ #tab__content--7, .horizontal-tabs .tab8:checked ~ .tab__content--8 {
  display: block;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 8px #00000025;
  position: relative;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
  background: #fff;
}
.icon-wrapper img {
  max-width: 40px;
}
