/* Tabs container */
.r-tabs {
	position: relative;
}

/* Tabs content */
.r-tabs-content {
	font-size: 18px;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	position: relative;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 25px;
	width: 100%;
	text-decoration: none;
	color: #4d4d4d;
	font-weight: 400;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
    background-color: #14b3c4;
    color: #FFF;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
    border-bottom: 8px solid #e8f6f7;
}

.r-tabs .tabs-row-content:nth-child(even) {
	background-color: #e8f6f7;
}

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title {
	box-shadow: 
    0px 0 0 0 #dedfdf, 
    0 0px 0 0 #dedfdf, 
    1px 1px 0 0 #dedfdf,
    1px 0 0 0 #dedfdf inset, 
    0 1px 0 0 #dedfdf inset;
}

.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 25px;
	width: 100%;
	text-decoration: none;
	color: #4d4d4d;
	font-weight: 400;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
    background-color: #14b3c4;
    color: #FFF;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

/* Buttons */
.r-tabs button {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	line-height: 100%;

	text-align: center;
	vertical-align: middle;
	font-weight: bold;
	
	border: 0;
	
	cursor: pointer;
}

/* Info bar */
.r-tabs .info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;
	border: 2px solid #00ab94;

	cursor: pointer;
} 
