input[type=radio],
input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0; }

.radio-label,
.checkbox-label {
  cursor: pointer;
  padding-left: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.radio-label::before, .radio-label::after,
.checkbox-label::before,
.checkbox-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.radio-label::before,
.checkbox-label::before {
  background: url("../img/radio-check.svg") no-repeat center center; }

.radio-label::after,
.checkbox-label::after {
  background: url("../img/radio-checked.svg") no-repeat center center;
  display: none; }

.radio-label::before {
  border-radius: 50%; }

.checkbox-label::before {
  border-radius: 3px; }

input[type=radio]:checked + label::before,
input[type=checkbox]:checked + label::before {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  display: block; }

.input-wrapper {
  margin: 50px 0 0;
  position: relative;
  display: inline-block; }

.bg-pink {
  background-color: #f437d1; }

.bg-blue {
  background-color: #97d9eb; }

body {
  font-family: "Roboto", Arial, Helvetica, "Open Sans", "Lucida Grande", Tahoma, Verdana, sans-serif;
  line-height: 1.6;
  color: #878787;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
  font-size: 13px;
  font-weight: 300;

  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#e5e5e5',GradientType=1 ); }

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", Arial, Helvetica, "Open Sans", "Lucida Grande", Tahoma, Verdana, sans-serif; }

.font-heading {
  font-family: "Roboto Condensed", Arial, Helvetica, "Open Sans", "Lucida Grande", Tahoma, Verdana, sans-serif; }

h3 {
  font-family: "Roboto Condensed";
  font-size: 24px;
  font-weight: 400;
  color: #58595b;
  margin: 0;
  text-align: center; }

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.main {
  position: relative;
  width: 1200px;
  min-height: 380px; }

.page {
  width: 800px;
  padding: 20px 0;
  margin: 0 auto;
  display: none; }
  .page.active {
    display: block; }

.logo {
  background: url(../img/logo.svg) no-repeat;
  background-size: 100%;
  width: 80px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: 0px; }

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.flex-item {
  padding: 5px;
  width: 300px;
  text-align: center; }
  .flex-item.item--vs {
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-item .image {
    position: relative;
    height: 190px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .flex-item .image img {
      cursor: pointer;
      -ms-flex-item-align: end;
      align-self: flex-end; }

.result {
  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-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-25px, -36px);
  -ms-transform: translate(-25px, -36px);
  transform: translate(-25px, -36px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f437d1;
  border-radius: 80px 80px 80px 80px / 40px 40px 40px 40px;
  border: 3px solid #fff;
  font-family: "Roboto Condensed", Arial, Helvetica, "Open Sans", "Lucida Grande", Tahoma, Verdana, sans-serif;
  line-height: 1;
  width: 50px;
  height: 72px;
  color: #211E1F;
  text-align: center;
  padding: 2px;
  margin: 10px; }
  .result.voted {
    opacity: 1; }
  .result.pink {
    background-color: #f437d1; }
  .result.blue {
    background-color: #97d9eb; }
  .result .val1 {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase; }
  .result .val2 {
    font-size: 27px;
    font-weight: 700; }
  .result .val3 {
    font-size: 17px;
    font-weight: 300; }

.final-result {
  text-align: center; }

.register-text {
  font-size: 11px;
  font-weight: 300;
  margin: 20px 0 80px 0; }

.special-input {
  font-family: "Roboto Condensed", Arial, Helvetica, "Open Sans", "Lucida Grande", Tahoma, Verdana, sans-serif;
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: 0;
  outline: 0;
  background: #ec008c;
  background: -webkit-gradient(linear, left top, left bottom, from(#ec008c), to(#d41059));
  background: -webkit-linear-gradient(top, #ec008c 0%, #d41059 100%);
  background: -o-linear-gradient(top, #ec008c 0%, #d41059 100%);
  background: linear-gradient(180deg, #ec008c 0%, #d41059 100%);
  width: 320px;
  height: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4); }
  .special-input::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */ }
  .special-input:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */ }
  .special-input::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */ }
  .special-input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */ }


.link{
    text-decoration: underline;
}