body {
}

li {
  padding: 0 0 1em 1em;
}

.container {
  text-align: justify;
}

.error-message {
  font-weight: bold;
  color: red;
}

.warning-message {
  font-weight: bold;
  color: orange;
}

.emotion-container {
  max-width: 600px;
  padding: 20px 0;
}

.emotion-group {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.emotion {
  flex-basis: calc(33% - 9px);
  margin: 4px;
  cursor: pointer;
  padding: 0;
  border: 1px solid lightgrey;
  box-shadow: 2px 2px #999;
  transition: all 0.25s
}

.emotion.selected {
  background-color: #0054A5;
  color: #fff;
  transform: translateY(1px) translateX(1px);
  box-shadow: none;
}

.emotion-img {
  width: 64px;
  height: 64px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 8% auto 5%;
}

.emotion-label {
  text-align: center;
  margin: 7% 0 8%;
  font-size: 20px;
  text-transform: capitalize;
}

@media screen and (max-width: 400px) {
  .emotion-label {
    font-size: 0.9em;
  }
}

@media screen and (min-height: 1200px) {
  .emotion-container {
    max-width: 840px;
  }
  
  .emotion {
    padding: 30px 0;
  }
}

.question-emotion {
  max-width: 150px;
  font-size: 20px;
  margin: 0 auto 12px;
  text-align: center;
  width: 30%;
}

.disclaimer {
  margin: 8px 0;
  font-size: 12px;
}

.disclaimer a {
  cursor: pointer;
}

.event-group {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.event {
  background-color: #fff;
  padding: 11px;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
  /*border: 4px solid #fff;*/

  border: 1px solid lightgrey;
  border-radius: 4px;
  box-shadow: 2px 2px #999;
  transition: all 0.25s
}

.event.selected {
  /*border-color: #f6bd39;*/
  background-color: #0054A5;
  transform: translateY(1px) translateX(1px);
  color:#fff;
  box-shadow: none;
}

.manager-field {
  border: 1px solid blue;
  padding: 1em;
}

.attention-field {
  border: 3px solid red;
  border-style: dotted;
  padding: 1em;
}

.long-label {
  display: block;
  margin-bottom: 8px;
}

.main-btn {
  transition: all 0.5s;
  min-width: 120px;
  font-size: var(--main-font-size);
  font-family: var(--main-font-style);
}

.main-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.right-btn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.right-btn:hover span {
  padding-right: 25px;
}

.right-btn:hover span:after {
  opacity: 1;
  right: 0;
}

.left-btn span:before {
  content: '\00ab';
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}

.left-btn:hover span {
  padding-left: 25px;
}

.left-btn:hover span:before {
  opacity: 1;
  left: 0;
}

*:not(.form-field-radio) > button:not(.left-btn):after {
  content: none;
}

*:not(.form-field-radio) > button:not(.right-btn):before {
  content: none;
}

.secondary-btn {
  display: inline;
  background: linear-gradient(transparent,rgba(0,0,0,0.3)) top/100% 800%;
  background-color: #f1c744;
  transition:0.5s;
  border: none;
  border-radius: 4px;
  outline: none;
  color: #000000;
  padding: 10px 20px;
  cursor: pointer;
  min-width: 120px;
  font-size: var(--main-font-size);
  font-family: var(--main-font-style);
}

.secondary-btn:hover {
  background-position: bottom;
}

.js-snackbar {
  font-family: var(--main-font-style);
}