.article-feelings-conatiner {
  background-color: var(--paletteColor5);
  border-radius: 5px;
  padding: 3rem 1.5rem;
  text-align: center;
  margin: 6rem auto;
}
.article-feelings-conatiner hr {
  background-color: var(--paletteColor1);
  margin: 3rem auto;
}

.article-feelings-conatiner__wrapper {
  max-width: 500px;
  margin: auto;
}

#vote-container {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 2rem auto;
}

#vote-background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#vote-knob {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  outline: none;
  margin-bottom: -20%;
}

.article-felings__title {
  margin: 0 auto 2rem auto;
}

.voting-point {
  cursor: pointer;
}

#feeling-form {
  display: flex;
  gap: 0.25rem;
}
#feeling-form input[type=text] {
  background-color: var(--paletteColor6);
  border: 2px solid var(--paletteColor1);
}

.feeling-container__words {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  gap: 1rem;
}
.feeling-container__words .feeling-btn {
  border: 2px solid #eee;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: block;
  transition: all 0.3s ease-out;
  cursor: pointer;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #333;
}
.feeling-container__words .feeling-btn.orange {
  border-color: #FF5722;
  color: #FF5722;
}
.feeling-container__words .feeling-btn.orange:hover, .feeling-container__words .feeling-btn.orange.active {
  background-color: #FF5722;
  color: #fff;
}
.feeling-container__words .feeling-btn.blue {
  border-color: #2196F3;
  color: #2196F3;
}
.feeling-container__words .feeling-btn.blue:hover, .feeling-container__words .feeling-btn.blue.active {
  background-color: #2196F3;
  color: #fff;
}
.feeling-container__words .feeling-btn.yellow {
  border-color: #FFA000;
  color: #FFA000;
}
.feeling-container__words .feeling-btn.yellow:hover, .feeling-container__words .feeling-btn.yellow.active {
  background-color: #FFA000;
  color: #fff;
}
.feeling-container__words.no-hover .feeling-btn:hover {
  background-color: inherit !important;
  color: inherit !important;
  cursor: inherit;
}

.article-container__article {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  align-items: center;
  background-color: #fff;
  flex-wrap: wrap;
  margin: 1.5rem auto;
}
.article-container__article .article-container__img {
  flex: 1 1 5rem;
  align-self: stretch;
}
.article-container__article .article-container__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-container__article .article-container__title {
  flex: 1 1 10rem;
  text-align: left;
  color: #333;
  font-weight: 700;
  padding: 1rem;
}
.article-container__article .article-container__title p {
  margin-bottom: 0;
}/*# sourceMappingURL=kojo.css.map */