/** {
  box-sizing: border-box;
}*/

.ootb-tabcordion {
	/*background: #fff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  max-width: 680px;
  padding: 1rem;
  margin: 1rem auto 4rem auto;
  border-radius: 3px;*/
	display: contents;
}
.ootb-tabcordion.has-tabs .ootb-tabcordion--tabs {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.ootb-tabcordion.has-tabs .ootb-tabcordion--entry {
  min-height: 0;
}
.ootb-tabcordion.has-tabs .ootb-tabcordion--entry::before {
  display: none;
}
.ootb-tabcordion.has-tabs .ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
  opacity: 1;
  transition: opacity 400ms ease-in-out;
}
.ootb-tabcordion.has-tabs .ootb-tabcordion--entry .ootb-tabcordion--entry-content {
  opacity: 0;
  transition: opacity 400ms ease-in-out;
}

.ootb-tabcordion--tabs {
  opacity: 0;
  height: 0;
  visibility: hidden;
  display: flex;
  flex-flow: wrap;
  margin: 0;
  list-style: none;
  padding: 0;
}
	.ootb-tabcordion--tabs .tab {
		display: block;
		/*background: #444;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  margin: 0 0 1px 0;
  border: none;
  border-right: 1px solid #fff;
  cursor: pointer;*/

		background: #000000;
		border: none;
		/*border-radius: 3px 3px 3px 3px;*/
		border-radius: 0;
		border: 1px solid #9f0304;
		//box-shadow: 0 -4px 8px -2px #00000020;
		color: #ffffff;
		cursor: pointer;
		/*display: inline-block;*/
		font-family: 'Segoe UI', Arial, Verdana, Helvetica, Sans-Serif;
		font-size: 0.875em;
		font-weight: 600;
		margin: 0px 2px;
		padding: 10px 20px;
	}
	.ootb-tabcordion--tabs .tab:hover, .ootb-tabcordion--tabs .tab:focus {
		background: #630e0f;
		outline: none;
	}
	.ootb-tabcordion--tabs .tab.is-active {
		background: #630e0f;
	}
		.ootb-tabcordion--tabs .tab.is-active:hover, .ootb-tabcordion--tabs .tab.is-active:focus {
			background: #630e0f;
		}

.ootb-tabcordion--entry {
  overflow: hidden;
}
	.ootb-tabcordion--entry::before {
		position: relative;
		content: attr(data-title);
		cursor: pointer;
		z-index: 1;
		border-radius: 0;
		border: 1px solid #9f0304;
		background: #000000;
		color: #fff;
		padding: 0.5rem 1rem;
		display: block;
		border-radius: 3px;
		width: 80%;
		margin-bottom: 0.25em;
	}
.ootb-tabcordion--entry:hover, .ootb-tabcordion--entry:focus {
  outline: none;
}
	.ootb-tabcordion--entry:hover::before, .ootb-tabcordion--entry:focus::before {
		background: #630e0f;
	}
.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
  margin-top: 0;
  height: auto;
  opacity: 1;
  transition: margin 400ms ease-out -100ms;
}
	.ootb-tabcordion--entry.is-active::before {
		background: #630e0f;
	}
	.ootb-tabcordion--entry.is-active:hover::before, .ootb-tabcordion--entry.is-active:focus::before {
		background: #630e0f;
	}

.ootb-tabcordion--entry-container {
  overflow: hidden;
  margin-bottom: 1px;
}

.ootb-tabcordion--entry-content {
  position: relative;
  margin-top: -100%;
  height: 0;
  opacity: 0;
  transition: margin 500ms ease-in;
  padding: 1rem;
}
.ootb-tabcordion--entry-content a.more {
  color: #444;
}
.ootb-tabcordion--entry-content a.more:hover {
  color: #3bacff;
}