@font-face {
  font-family: 'markPro';
  src: url('/assets/MarkPro.otf');
}
@font-face {
  font-family: 'markProBold';
  src: url('/assets/MarkPro-Black.otf');
}
body{
    font-family: 'markPro'!important;
}
.custom-text{
    font-family: 'markPro'!important;
}

.poll{
    display: flex;
    align-items: center;
    height: 100%;
}
.poll-align{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s;
    width: 100%;
}
.opacity-transition{
    transition: opacity 0.2s;
}
.question{
    text-align:center;
    font-size: 37px;
    margin-bottom: 20px;
    padding: 0 20px;
}
@media screen and (max-width: 600px) {
  .question{
        font-size: 26px;
  }
}
.emoji-answers{
    width: 85%;
    margin: 0px 7.5%;
}
.emoji-answer{
    width: calc(20% - 30px);
    margin: 10px 15px;
    float:left;
}
.emoji-answer:hover{
    cursor:pointer;
}
.emoji-answer h2{
    text-align: center;
    font-size: 42px;
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
    margin-top: 2px;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ff6791;
    position: absolute;
    top: 5px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.radio-box{
    text-align: left;
    width: 350px;
    margin: 16px calc(50% - 175px);
}

.container-c {
  display: block;
  position: relative;
      padding-left: 41px;
    padding-top: 2px;
    margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #e2becc;
}

/* On mouse-over, add a grey background color */
.container-c:hover input ~ .checkmark {
  background-color: #e8536e
}

/* When the checkbox is checked, add a blue background */
.container-c input:checked ~ .checkmark {
  background-color: #e8536e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-c input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-c .checkmark:after {
    left: 9px;
    top: 4px;
    width: 8px;
    height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

textarea {
  width: 70%;
  margin-left: 15%;
  height: 150px;
  padding: 12px 20px;
  font-size: 16px;
  resize: none;
  border: 0.5px solid #ff6791;
  border-radius: 12px;
}

.button {
  background-color: #ff6791;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  margin-left: calc(50% - 50px); 
  border-radius: 12px;
}
.thanks{
    padding: 80px 20px;
    width: 80%;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
}
.thanks h3{
    font-size: 32px;
}
