html,
body {
  height: 100%;
}
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  background-color: #eee;
}
i {
  font-family: FontAwesome;
  font-style: normal;
}
.mobile-hidden {
  display: none;
}
.desktop-only {
  display: none;
}
.wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.forcereg {
  position: relative;
  cursor: pointer;
}
.container {
  max-width: 540px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.pink {
  color: #ff0096;
  font-weight: bold;
}
.header {
  background: #222;
  color: #fff;
}
.header .logo {
  max-height: 25px;
  vertical-align: middle;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}
.header .container > div > * {
  margin: 10px;
  cursor: pointer;
}
.header .container .fa-bars {
  font-size: 28px;
  vertical-align: middle;
}
.header .container .counter {
  background-color: #ff0096;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 2px;
  padding: 1px 3px;
  font-size: 80%;
  z-index: 1;
}
.main-content .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  color: #666;
  font-weight: bold;
}
.main-content .categories .category {
  margin: 0 10px;
  cursor: pointer;
}
.main-content .categories .category:first-child {
  margin-left: 0;
}
.main-content .categories .category:last-child {
  margin-right: 0;
}
.main-content .sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-content .sorting > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5px;
  padding: 5px 7px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  background-color: #fff;
  cursor: pointer;
}
.main-content .sorting > div:first-child {
  margin-left: 0;
}
.main-content .sorting > div span {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  margin-right: 3px;
}
.main-content .sorting > div p {
  margin: 0;
  font-weight: bold;
}
.main-content .sorting > div img {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}
.main-content .girls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0;
}
.main-content .girls .girl {
  width: 100%;
  height: 40vh;
  margin: 5%;
  -webkit-box-shadow: 0 0 10px 0px #666;
  box-shadow: 0 0 10px 0px #666;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.main-content .girls .girl .girl-img {
  background-size: cover;
  background-position: center;
  height: 80%;
}
.main-content .girls .girl .girl-img[data-girl='1'] {
  background-image: url("../../images/1.png");
}
.main-content .girls .girl .girl-img[data-girl='2'] {
  background-image: url("../../images/2.png");
}
.main-content .girls .girl .girl-img[data-girl='3'] {
  background-image: url("../../images/3.png");
}
.main-content .girls .girl .girl-img[data-girl='4'] {
  background-image: url("../../images/4.png");
}
.main-content .girls .girl .girl-img[data-girl='5'] {
  background-image: url("../../images/5.png");
}
.main-content .girls .girl .girl-img[data-girl='6'] {
  background-image: url("../../images/6.png");
}
.main-content .girls .girl .girl-img[data-girl='7'] {
  background-image: url("../../images/7.png");
}
.main-content .girls .girl .girl-img[data-girl='8'] {
  background-image: url("../../images/8.png");
}
.main-content .girls .girl .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  color: #999;
}
.sign-up .registration-step {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 400px;
  width: 100%;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.2s -webkit-transform ease;
  transition: 0.2s -webkit-transform ease;
  -o-transition: 0.2s transform ease;
  transition: 0.2s transform ease;
  transition: 0.2s transform ease, 0.2s -webkit-transform ease;
  background-color: rgba(17,17,17,0.8);
}
.sign-up .registration-step > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 40px;
}
.sign-up .registration-step[data-step='1'] .step-counter:after {
  width: 0%;
}
.sign-up .registration-step[data-step='2'] .step-counter:after {
  width: 50%;
}
.sign-up .registration-step[data-step='3'] .step-counter:after {
  width: 100%;
}
.sign-up .registration-step .step__button {
  width: 100%;
  line-height: 50px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  background-color: #ff0096;
  border: none;
  cursor: pointer;
}
.sign-up .registration-step .label {
  margin: 0;
}
.sign-up .registration-step .form-control {
  width: 100%;
  line-height: 25px;
  margin: 5px 0;
}
.sign-up .registration-step .form-control.step__field__input_error {
  border-color: #8a0000;
}
.sign-up .registration-step .messages {
  display: none;
  color: #f00;
}
.sign-up .registration-step .step-counter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80%;
  z-index: 1;
}
.sign-up .registration-step .step-counter:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 2px solid #bbb;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.sign-up .registration-step .step-counter:after {
  content: '';
  position: absolute;
  top: 50%;
  border-bottom: 2px solid #ff0096;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.sign-up .registration-step .step-counter .step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  color: #ff0096;
  background-color: #fff;
}
.sign-up .registration-step .step-counter .step-number.step-number-active {
  color: #fff;
  background-color: #ff0096;
}
@media (min-width: 576px) {
  .mobile-hidden {
    display: inline;
  }
  .header .logo {
    max-height: 30px;
  }
  .container {
    max-width: 540px;
  }
  .main-content .girls .girl {
    width: 48%;
    margin: 1%;
  }
}
@media (min-width: 768px) {
  .desktop-only {
    display: inline;
  }
  .container {
    max-width: 720px;
  }
  .main-content .girls .girl {
    width: 29%;
    margin: 2%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 900px;
  }
  .main-content .girls .girl {
    width: 23%;
    margin: 1%;
  }
}
