/* Tabs container */
.r-tabs {
	position: relative;
	background: #fcfdfd;
	color: #222;
	border: 1px solid #c5c5c5;
	border-radius: 5px;
	padding: 0.2em;
}

/* Tabs navigational container */
.r-tabs .r-tabs-nav {
	margin: 0px;
	padding: 0.3em 0.2em 0px 0.2em;
	border-radius: 5px;
	border: 1px solid #ddd;
	background: #e9e9e9;
	color: #eaf5f7;
	font-weight: bold;
	min-height: 0px;
	border: 0px none;
	outline: 0px none;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: outside none none;
}

.r-tabs-nav::before, .r-tabs-nav::after {
	content: "";
	display: table;
	border-collapse: collapse;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	list-style: outside none none;
	/*float: left;*/
	position: relative;
	top: 0px;
	margin: 1px 0.2em -3px 0px;
	border-bottom-width: 0px;
	padding: 0px;
	white-space: nowrap;
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #222;
	border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	float: left;
	padding: 0.5em 1em;
	text-decoration: none;
  color: #222;
}

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

/* Active state tab */
.r-tabs .r-tabs-nav .r-tabs-state-active {
  padding-bottom: 1px;
	border: 1px solid #003eff;
	background: #3875d7;
	font-weight: normal;
	color: #fff;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #fff;
	/*text-shadow: none;

	background-color: white;

	border-top-right-radius: 4px;
	border-top-left-radius: 4px;*/
}

/* Hover state tab */
.r-tabs .r-tabs-nav .r-tabs-state-hover {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #222;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
	border-width: 0px;
	padding: 1em 1.4em;
	background: transparent none repeat scroll 0% 0%;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
	background: #fcfdfd;
	color: #222;
}

/* Accordion bar */
.r-tabs .r-tabs-accordion-title {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #222;
	outline: 0px none;
	line-height: 1.3;
	padding: 2px;
  margin-bottom: 2px;
	text-decoration: none;
	font-size: 100%;
	border-radius: 5px;
}

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 0.5em 1em;
	text-decoration: none;
  color: #222;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active {
  padding-bottom: 1px;
  margin-bottom: 0px;
	border: 1px solid #003eff;
	background: #3875d7;
	font-weight: normal;
	color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
	color: #fff;
}

/* Hovered accordion */
.r-tabs .r-tabs-accordion-title.r-tabs-state-hover {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #222;
}

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

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

	color: #fff;
	font-size: 14px;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	vertical-align: middle;
	font-weight: bold;
	
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #00c5ad;
	box-shadow: 0px 3px 0px 0px #00ab94;
	
	cursor: pointer;
}*/

/* Info bar */
.info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;

	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #00c5ad;
	border: 2px solid #00ab94;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;

	cursor: pointer;
} 


@media only screen and (max-width: 768px) {
  .r-tabs {
    border: 0px none;
  }
  
  .r-tabs .r-tabs-panel.r-tabs-state-active {
    border-top: 0px none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px solid #a6c9e2;
    margin-bottom: 2px;
  }
}


@media only screen and (min-width: 768px) {
  .r-tabs {
    border: 1px solid #a6c9e2;
  }
}
