/* GENERAL FORMAT */
.cbtabs, .cbtabs_r, .cbtabs_m, .cbtabs_b { 
	display:block;
	list-style-type:none;
	padding:0;
	font-size:13px;
	font-weight:600;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	white-space:nowrap;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.cbtabs li, .cbtabs_r li, .cbtabs_m li { 
	position:relative;
	display:inline-block;
	text-decoration:none;
	position:relative;
	z-index:1;
	border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	cursor:pointer;
}

/* STANDARD TABS */
.cbtabs { 
	margin:0;
	text-align:right;
}
.cbtabs li { 
	padding:5px 6px 12px;
	background:#ffffff;
	border-bottom:solid 3px #ffffff;
	margin:6px;
}

/* RIGHT TABS */
.cbtabs_r { 
	padding-bottom:20px;
}
.cbtabs_r li { 
	padding:7px 0;
	margin:0;
	margin-right:12px;
	font-size:13px;
	font-weight:600;
	text-transform:uppercase;
}

/* MEDIA TABS */
.cbtabs_m { 
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 700;
}
.cbtabs_m li { 
	padding: 10px 17px;
	background: #f5f5f5;
	margin: 0;
	margin-right: 7px;
	border: 1px solid #f5f5f5;
	border-radius: 50px;
	transition: 0.4s all;
}
@media (hover: hover) {
	.cbtabs_m li:hover {
		border-color: #f32444;
		background-color: #f32444;
		color: #ffffff;
	}
}

/* BUTTON TABS */
.cbtabs_b { 
	padding-bottom: 20px;
}
.cbtabs_b li { 
	position: relative;
	display: inline-block;
	padding: 8px 12px;
	margin-right: -4px;
	border: 2px solid #ff3a3a;
	border-radius: 0;
	background-color: #ffffff;
	color: #000000;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}
.cbtabs_b li:first-child { 
	border-radius: 50px 0 0 50px;
}
.cbtabs_b li:last-child { 
	border-radius: 0 50px 50px 0;
}

/* GENERAL */ 
.cbtabs li.selected { 
	border-bottom:3px solid #f32444;
}
.cbtabs_r li.selected { 
	border-bottom: 4px solid #f32444;
}
.cbtabs_m li.selected { 
	background: #f32444;
	border: 1px solid #f32444;
	color: #ffffff;
}
.cbtabs_b li.selected { 
	background-color: #ff3a3a;
	border: 2px solid #ff3a3a;
	color: #ffffff;
}

.cbcontent { 
	display:none;
	width:100%;
	height:100%;
	margin:0;
	color:#858a8d;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	overflow-x:hidden;
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
}
.cbwrapper_r .cbcontent { 
	padding:20px 0 0;
}

@media print {
	.cbcontent { 
		display:block !important;
	}
}


/* MEDIA QUERIES - 603PX */
@media screen and (max-width: 603px) { 
	.cbtabs { 
		text-align:center;
	}
	.cbtabs_m li { 
		padding: 5px 12px;
		margin-right: 5px;
	}
}