/*
  Author: Vadim Shymko
  Autor URI: http://ninjadev.pw/
*/

/* css reset */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, select, button, textarea, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
audio,
canvas,
progress,
video,
legend {
  display: block;
}

[hidden],
template {
  display: none;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
}

a {
  background: transparent;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

dfn,
em {
  font-style: italic;
}

ol,
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

img {
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

legend {
  width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  height: 0;
}

pre {
  overflow: auto;
}

button {
  background: transparent;
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input,
textarea,
input:focus,
textarea:focus {
  font-size: 16px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}
/* /css reset */

/* helper classes */
/* border-radius */
.round {
  border-radius: 50%;
}
/* /border-radius */

/* display */
.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-table {
  display: table;
}

.display-table-cell {
  display: table-cell;
}

.display-none {
  display: none;
}
/* /display */

/* float */
.float-left {
  float: left;
}

.float-right {
  float: right;
}
/* /float */

/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}
/* /clearfix */

/* height */
.height-auto {
  height: auto;
}

.height-full {
  height: 100%;
}
/* /height */

/* position */
.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

.position-static {
  position: static;
}
/* /position */

/* text align */
.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}
/* /text align */

/* text transform */
.text-capitalize {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}
/* /text transform */

/* vertical align */
.vertical-bottom {
  vertical-align: bottom;
}

.vertical-middle {
  vertical-align: middle;
}

.vertical-top {
  vertical-align: top;
}
/* /vertical align */

/* width */
.width-one-fifth {
  width: 20%;
}

.width-quarter {
  width: 25%;
}

.width-third {
  width: 33.333%;
}

.width-half {
  width: 50%;
}

.width-three-quarter {
  width: 75%;
}

.width-full {
  width: 100%;
}
/* /width */

/* z-index */
.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}
/* z-index */
/* /helper classes */

.pure-js-carousel-container {
  margin: 50px auto;
  overflow: hidden;
  position: relative;
  width: 240px;
}

@media (min-width: 480px) {
  .pure-js-carousel-container {
    width: 360px;
  }
}

@media (min-width: 768px) {
  .pure-js-carousel-container {
    width: 600px;
  }
}

.pure-js-carousel-container:before,
.pure-js-carousel-container:after {
  content: "";
  display: table;
}

.pure-js-carousel-container:after {
  clear: both;
}

.pure-js-carousel-list {
  float: left;
}

.pure-js-carousel-item {
  background: #000;
  border: 10px solid #fff;
  color: #fff;
  float: left;
  font-size: 20px;
  height: 120px;
  line-height: 5;
  text-align: center;
  width: 120px;
}

.pure-js-carousel-btn {
  background: #f00;
  height: 20px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.pure-js-carousel-btn-next {
  right: 0;
}

.pure-js-carousel-btn-prev {
  left: 0;
}

.pure-js-carousel-dot-list {
  float: left;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.pure-js-carousel-dot-item {
  display: inline-block;
  margin: 0 5px;
}

.pure-js-carousel-dot-btn {
  background: green;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

.active > .pure-js-carousel-dot-btn {
  background: blue;
}
