body {
  display: flex;
  justify-content: center;
  margin: 0;
  font-family: Helvetica Neue;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 460px;
  margin-top: 20px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.language {
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
}

.language a {
  text-decoration: none;
}

.language a.active {
  text-decoration: underline;
}

.language a:link {
  color: #AD3449;
}

.language a:visited {
  color: #AD3449;
}

.logo {
  width: 200px;
  margin-bottom: 15px;
}

.company {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin: 0 0 30px;
  white-space: nowrap;
}

.thanks {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 28.5px;
  margin: 0;
}

.answer {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 28.5px;
  margin: 0;
}

.cta {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  margin: 40px 0 0 0;
}

.stars {
  display: flex;
  margin: 15px auto;
  width: 210px;
  height: 30px;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}

.star {
  fill: #d8d8d8;
  cursor: pointer;
}

.star:hover,.star:hover~.star {
  fill: #fdd835;
}

.star.selected, .star.selected:before, .star.selected:after {
  fill: #fdd835;
}

.star.small {
  display: block;
}

.star.big {
  display: none;
}

.description {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 30px 0 5px;
}

.message {
  margin-top: 5px;
  padding: 10px;
  font-family: open sans,sans-serif;
  font-size: 14px;
  border-color: #c9c8c8;
  border-radius: 3px;
  resize: none;
}

.submit {
  display: block;
  margin: 15px auto 0;
  padding: 10px 0;
  width: 190px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  border: 1px solid #306ca2;
  background-color: #3579b5;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .15s ease;
  -o-transition: all .15s ease;
  transition: all .15s ease;
}

.submit[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #3579b5;
  border-color: #306ca2;
  opacity: .5;
}

.feedback {
  widht: 100%;
  display: flex;
  justify-content: center;
}

.link {
  margin: 10px;
  cursor: pointer;
}

.link.big {
  display: none;
}

.link.small {
  display: block;
}

.icon:hover {
  fill: #A93649;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bootom: 50px;
  height: auto;
  transition: opacity 0.6s ease-out;
}

.links {
  width: 100%;
  margin-top: 20px;
  transition: opacity 0.6s ease-out;
}

.choose-link {
  font-size: 18px;
  text-align: center;
}

.links-list {
  display: flex;
  justify-content: center;
}

.hidden {
  opacity: 0;
}

.display-none {
  display: none;
}

@media screen and (orientation: portrait) {
  .container {
    width: 85%;
    margin-top: 50px;
  }

  .language {
    font-size: 60px;
  }

  .logo {
    width: 500px;
    margin-bottom: 30px;
  }

  .company {
    font-size: 55px;
    margin: 0 0 60px;
  }

  .thanks {
    font-size: 60px;
    line-height: 52px;
  }

  .answer {
    font-size: 40px;
    line-height: 52px;
  }

  .cta {
    font-size: 40px;
    line-height: 1.2;
    margin: 80px 0 0 0;
  }

  .stars {
    margin: 100px auto;
    width: 90%;
    height: 100px;
  }

  .form {
    width: 90%;
  }

  .description {
    font-size: 36px;
    margin: 30px 0 30px;
  }

  .message {
    font-size: 28px;
    padding: 15px;
    border-radius: 9px;
  }

  .submit {
    font-size: 36px;
    padding: 20px 0;
    width: 425px;
    margin: 30px auto 0;
  }

  .link {
    margin: 10px 40px 0 40px;
  }

  .link.big {
    display: block;
  }

  .link.small {
    display: none;
  }

  .star {
    cursor: auto;
  }

  .star.small {
    display: none;
  }

  .star.big {
    display: block;
  }
  
  .choose-link {
    font-size: 50px;
  }
}

@media screen and (orientation: landscape) and (max-height: 560px) {
  .logo {
    display: none;
  }

  .company {
    margin: 0 0 15px;
  }

  .cta {
    margin: 15px 0 0 0;
  }

  .description {
    margin: 0px 0 5px;
  }
}

@media screen and (max-height: 410px) {
  .thanks {
    display: none;
  }

  .company {
    margin: 0;
  }

  .cta {
    margin: 10px 0 0 0;
  }

  .stars {
    margin: 10px auto;
  }
}


