@font-face {
  font-family: Axiforma;
  src: url("/fonts/Kastelov-Axiforma_SemiBold.otf") format("opentype"); }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Axiforma", Arial;
  font-size: 24px;
  text-transform: uppercase;
  background: white;
  -webkit-overflow-scrolling: touch; }

*, *:before, *:after {
  box-sizing: inherit; }

.screen {
  min-height: 100%;
  background: #47BA02;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch; }

.geo-question {
  flex: 0;
  margin: 40px;
  max-width: 650px; }

.geo-permission {
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  background: white; }

.geo-permission button {
  margin: 40px 40px 10px 40px;
  padding: 10px 0 10px 0;
  text-align: left;
  font-family: "Axiforma";
  font-size: 24px;
  color: #47BA02;
  background: none;
  border: none;
  text-transform: uppercase;
  outline: none;
  cursor: pointer; }

.header {
  margin: 40px 40px 0px 40px; }

.header img {
  width: 150px;
  height: 30px;
  animation-name: fadeIn;
  animation-duration: 0.65s; }

.product-info {
  flex: 1;
  max-width: 650px;
  margin: 40px; }

.product-info a {
  text-decoration: none;
  color: white; }

.question {
  margin: 40px 40px 20px 40px; }

.question p {
  margin: 20px 40px 0px 0;
  font-size: 12px; }

.answers {
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  background: white; }

.answer {
  padding: 10px 20px 10px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  min-height: 80px;
  animation-name: hide, fadeIn;
  transition-timing-function: ease-in; }

@keyframes hide {
  from {
    opacity: 0; }
  to {
    opacity: 0; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.answer:hover {
  cursor: pointer;
  opacity: 0.85; }

.answer .checkbox {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: white;
  margin-right: 10px; }

.answer.checkbox--selected .checkbox {
  border: 6px solid white;
  background: none; }

.answer__text {
  max-width: 500px; }

.submit-answer {
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  background: white; }

.submit-answer button {
  margin: 0 20px 20px 20px;
  font-family: "Axiforma";
  font-size: 24px;
  padding: 20px;
  background: none;
  color: #47BA02;
  border: none;
  outline: none;
  text-transform: uppercase; }

.submit-answer button:hover {
  color: #2B6F02;
  cursor: pointer; }

.submit-answer button:disabled {
  color: #959595; }

#error {
  margin-left: 40px;
  color: red; }

.footer {
  margin: 40px; }

.footer a {
  font-size: 16px;
  color: black;
  text-decoration: none; }

.footer a:hover {
  color: #23356A; }

.footer.footer--white {
  color: #000;
  font-size: 16px; }

.disclaimer {
  margin-top: 20px;
  max-width: 650px;
  color: #000;
  font-size: 12px; }

.adminlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  -moz-justify-content: stretch;
  justify-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.adminlist__menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 80px;
  padding: 20px;
  background: #000;
  color: white; }

.adminlist__menu button {
  font-family: "Axiforma";
  font-size: 16px;
  color: white;
  background: none;
  border: none;
  text-transform: uppercase;
  cursor: pointer; }

.adminlist__list {
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  width: 250px; }

.adminlist__question {
  padding: 10px;
  font-size: 16px; }

.adminlist__question:hover {
  background: #eee; }

.adminlist__question--selected {
  background: gray; }

.adminlist__edit {
  position: fixed;
  top: 80px;
  bottom: 0;
  right: 0;
  overflow: auto;
  width: calc(100% - 250px);
  padding: 40px;
  background: #47BA02; }

.adminlist__edit input {
  font-family: "Axiforma";
  font-size: 24px;
  color: white;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin: 10px 0 10px 0; }

.adminlist__edit input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5); }

.adminlist__edit input.question {
  width: 650px; }

.adminlist__edit textarea {
  width: 650px;
  font-family: "Axiforma";
  font-size: 24px;
  color: white;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin: 10px 0 10px 0; }

.adminlist__edit textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5); }

.adminlist__edit input.edit__answer {
  width: 450px; }

.adminlist__edit input.edit__color {
  width: 120px;
  margin: 0 10px 0 10px; }

.adminlist__edit button {
  font-family: "Axiforma";
  font-size: 24px;
  color: #000;
  background: none;
  border: none;
  text-transform: uppercase;
  cursor: pointer; }

.adminlist__edit button.add-answer {
  font-size: 16px;
  color: #000; }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  body {
    font-size: 20px; }
  .geo-permission button {
    padding: 5px 0 5px 0;
    font-size: 20px; } }
