/*
=====================================================
					Tabs Style
=====================================================
*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 300px;
}

.tabs__label {
  padding: 10px 16px;
  font-size: inherit;
  cursor: pointer;
  border: solid 1px rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  margin-right: 15px;
  border-bottom: 3px solid rgb(255, 255, 255);
  border-right: 3px solid rgb(255, 255, 255);	
}

.tabs__radio {
  display: none;
}

.tabs__content {
  order: 1;
  width: 100%;
  line-height: 1.5;
  display: none;
  margin-top: 50px;
}

.tabs__radio:checked + .tabs__label {
  font-weight: bold;
  background-color: rgb(255, 255, 255);
  color: #0c171f;
  border: solid 1px rgb(255, 255, 255);
  border-bottom: 3px solid rgb(166, 55, 236);
  border-right: 3px solid rgb(166, 55, 236);	
}

.tabs__radio:checked + .tabs__label + .tabs__content {
  display: initial;
}
