@import "https://fonts.useso.com/css?family=Roboto:400,500&subset=latin,cyrillic";
/* -- Box model ------------------------------- */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* -- Demo style ------------------------------- */
html,
body {
  position: relative;
  min-height: 100%;
  height: 100%;
}
html {
  position: relative;
  overflow-x: hidden;
  margin: 16px;
  padding: 0;
  min-height: 100%;
}
body {
  /*font-family: 'Roboto', 'Helvetica Neue, Helvetica, Arial', sans-serif;*/
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  /*color: #212121;
  background-color: #f5f5f5;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.main {
  margin: 20px auto;
  max-width: 960px;
}
strong {
  font-wieght: 500;
}
h1 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: inherit;
  margin-bottom: 8px;
}
h2 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.1px;
  font-weight: 400;
  color: #D5D6E2;
}
#demo {
  position: relative;
  margin: 30px auto;
  width: 620px;
  padding: 0;
}
#demo > * {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  background-color: #e91e63;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#demo > *:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
#demo > *.active {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}