<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	margin: 0;
	padding: 0;
}

.text {
	max-width: 700px;
	margin: 0 0 30px;
	background: #FFF;
	border: 1px solid blue;
	border-radius: 5px;
	padding: 7px 15px;
	box-sizing: border-box;
}

.tabs {
	max-width: 100%;
	margin: 0px;
}
.tabs__caption {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	list-style: none;
	position: relative;
	margin: -1px 0 0 -1px;
}
.tabs__caption li:last-child:before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: -2px;
	z-index: -1;
	height: 5px;
	background: blue;
}

.tabs__caption:after {
	content: '';
	display: table;
	clear: both;
}
.tabs__caption li {
	padding: 9px 15px;
	margin: 1px 0 0 1px;
	background: blue;
	color: #FFF;
	position: relative;
	border: solid blue;
	border-width: 1px 1px 0;
	border-radius: 5px 5px 0 0;
	text-align: center;
}
.tabs__caption li:not(.active) {
	cursor: pointer;
}
.tabs__caption li:not(.active):hover {
	background: blue;
	border-color: blue;
}
.tabs__caption .active {
	background: rgb(240, 240, 240);
	color: blue;
	border-color: blue;
}
.tabs__caption .active:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 5px;
	background: rgb(240, 240, 240);
}
.tabs__content {
	display: none;
	background: rgb(240, 240, 240);
	border: 1px solid blue;
	border-radius: 0;
	padding: 20px;
}
.tabs__content.active {
	display: block;
}

.vertical .tabs__caption {
	float: left;
	display: block;
}
.vertical .tabs__caption li {
	float: none;
	border-width: 1px 0 1px 1px;
	border-radius: 5px 0 0 5px;
}
.vertical .tabs__caption li:last-child:before {
	display: none;
}
.vertical .tabs__caption .active:after {
	left: auto;
	top: 0;
	right: -2px;
	bottom: 0;
	width: 2px;
	height: auto;
}
.vertical .tabs__content {
	overflow: hidden;
}


.tabs__caption__green li:last-child:before {
	background: #169302;
}

.tabs__caption__green .active {
	color: #169302;	
	border: 1px solid #169302;	
}

.tabs__caption__green li {
	border: solid #169302;	
	background: #169302;	
}

.tabs-green .tabs__content {
	border: 1px solid #169302;
}

.tabs-green .fusion-button.button-7 {
	background: #169302 !important;
}

.tabs__caption__green li:not(.active):hover {
	background: #169302;
	border-color: #169302;
}

.tabs__caption__green .active.li_videos {
	color: #169302 !important;
}

.tabs__caption__green .active a {
  color: #169302 !important;
  border-color: #169302 !important;
}

.tabs-green .btn-success {
	background-color: #169302 !important;
	border-color: #169302 !important;
}


@media screen and (max-width: 650px) {

	.tabs__caption li {
		-webkit-flex: 1 0 auto;
		    -ms-flex: 1 0 auto;
		        flex: 1 0 auto;
	}
	.vertical .tabs__caption {
		float: none;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.vertical .tabs__caption li {
		border-width: 1px 1px 0;
		border-radius: 5px 5px 0 0;
	}
	.vertical .tabs__caption li:last-child:before {
		display: block;
	}
	.vertical .tabs__caption .active:after {
		top: auto;
		bottom: -5px;
		left: 0;
		right: 0;
		width: auto;
		height: 5px;
		background: #FFF;
	}

}</pre></body></html>