@charset "UTF-8";
.swipe {
  overflow: hidden;
  visibility: hidden;
  position: relative; }

.swipe-wrap {
  overflow: hidden;
  position: relative; }

.swipe-wrap > div {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden; }

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, del, dfn, em, img, ins, kbd, q, samp, small, strong, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, footer, header, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background-color: transparent; }

article > section > * + * {
  margin: 1.5em 0; }

body {
  font-family: 'Arial', Courier, monospace;
  font-size: 14px;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 200; }
  h1:after, h2:after, h3:after, h4:after, h5:after, h6:after {
    content: '';
    display: block;
    width: 1.5em;
    height: 2px;
    margin: 0.2em 0;
    background-color: currentColor; }

h1 {
  font-size: 3em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.4em; }

h4 {
  font-size: 1.15em; }

pre code {
  display: block;
  padding: 1em; }

code {
  padding: 0.2em;
  font-family: 'Arial', Courier, monospace;
  border-radius: 3px; }

.container {
  max-width: 45em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1em; }

header, footer {
  padding: 2em; }

.list-unstyled {
  list-style: none outside none; }
  .list-unstyled li {
    display: inline; }
  .list-unstyled li + li:before {
    content: ' • '; }

.demo-controls {
  text-align: center;
  padding: 1.5em; }

.swipe-wrap > div {
  margin: 0; }
  .swipe-wrap > div b {
    display: block;
    margin: 0 1.5em;
    padding: 4em 1em;
    font-size: 2em;
    text-align: center; }

::selection {
  background-color: #27AAE1;
  color: #eee; }

::-moz-selection {
  background-color: #27AAE1;
  color: #eee; }

body {
  background-color: #ffffff;
  color: #111; }

a {
  color: #EE3769; }
  a:visited {
    color: #5099b8; }

.btn-secondary {
  background-color: #EE3769;
  color: #eee; }
  .btn-secondary:hover {
    background-color: #ef4574; }
  .btn-secondary:active {
    background-color: #ed295e; }

code {
  background-color: #f2f2f2;
  color: #111;
  border: 1px solid #e6e6e6; }

.swipe div b {
  background-color: #EE3769;
  color: #eee;
  border-radius: 3px;
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.1); }

h1:after, h2:after, h3:after, h4:after, h5:after, h6:after {
  background-color: #27AAE1; }

footer {
  border-top: 1px solid #f2f2f2; }

  .ckbox {
	position: relative;
}
.ckbox input[type="radio"] {
	opacity: 0;
}
.ckbox label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.ckbox label:before {
	content: '';
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	border-radius: 2px;
	border: 1px solid #bbb;
	background-color: #fff;
}
.ckbox input[type="radio"]:checked + label:before {
	border-color: #2BBCDE;
	background-color: #2BBCDE;
}
.ckbox input[type="radio"]:checked + label:after {
	top: 3px;
	left: 3.5px;
	content: '\e013';
	color: #fff;
	font-size: 11px;
	font-family: 'Glyphicons Halflings';
	position: absolute;
}