/*
// Examples Stylesheet
// -------------------
*/
body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 0;
}
a {
  color: #08c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  padding: 1em;
}
.footer {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding: 20px 0;
  font-size: 12px;
  color: #999;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-weight: 100;
  margin: 0.5em 0;
}
label {
  color: #999;
  display: inline-block;
  font-size: 0.85em;
  font-weight: bold;
  margin: 1em 0;
  text-transform: uppercase;
}
.hint {
  margin: 15px 0;
  font-style: italic;
  color: #999;
}
.react-slide-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.react-slide-list {
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.react-slide-list-horizontal,
.react-slide-list-vertical {
  display: flex;
}
.react-slide-list-vertical {
  flex-direction: column;
}
.react-slide-item {
  position: relative;
  flex: 1 0 auto;
}
.react-slide-item-fade {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.react-slide-item-fade.react-slide-item-active {
  opacity: 1;
  visibility: visible;
}
.react-slide-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.react-slide-item-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-family: Helveitca Neue, Arial, sans-serif;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(105%);
}
.react-slide-container:hover .react-slide-item-caption {
  transform: translateY(0);
}
.react-slide-button {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 10px;
  font-family: Helveitca Neue, Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
}
.react-slide-button-prev {
  left: 0;
  transform: translateX(-105%);
}
.react-slide-button-next {
  right: 0;
  transform: translateX(105%);
}
.react-slide-container:hover .react-slide-button-next,
.react-slide-container:hover .react-slide-button-prev {
  transform: translateX(0);
}
