*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face{
    font-family:'Poppins';
    src:url("/documents/d/global/poppins-regular") format("TrueType");
}
@font-face{
    font-family:'Poppins';
    src:url("/documents/d/global/poppins-bold") format("TrueType");
    font-weight:bold;
}

body {
    margin: 0;
}

img {
    max-width: 100%;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.page-editor__layout-viewport__resizer {
    max-width: 100%;
}

.category-area {
    background-color: #fff;
    padding: 16px;
  }
  
  .category-link-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .category-link {
    display: block;
    width: 100%;
    color: #018838;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 24px;
  }
  
  .category-link:hover {
      text-decoration: none;
      color: #016E2D;
      border-color: #016E2D;
      background-color: #F3F2EE;
  }
  
  @media screen and (min-width: 960) {
      .category-area {
          padding: 24px;
      }
  }


  .tag-area {
    background-color: #fff;
    padding: 16px;
  }
  
  .tag-link-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tag-link {
    color: #666;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 9999px;
    padding: 6px 12px;
  }
  
  .tag-link:hover{
      text-decoration: none;
      color: #333;
      border-color: #333;
      background-color: #F3F2EE;
  }
  
  @media screen and (min-width: 960px) {
      .tag-area {
          padding: 24px;
      }
  }



  :root {
    --reaction-form-color-wonderful: #018838;
    --reaction-form-color-good: #D3692D;
    --reaction-form-color-average: #C8A21D;
    --reaction-form-color-poor: #3A7CB8;
  }
  
  .reaction-form-heading {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
  }
  
  .reaction-form-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #F3F2EE;
    border-radius: 10px;
    padding: 40px 16px;
    margin: 20px 0;
  }
  
  .reaction-form-textarea {
    width: 100%;
    height: 188px;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
  }
  
  .reaction-form-choice-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .reaction-form-choice-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  
  .reaction-form-choice-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #018838;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 0 5px;
  }
  
  .wonderful .reaction-form-choice-counter {
    color: var(--reaction-form-color-wonderful);
  }
  
  .good .reaction-form-choice-counter {
    color: var(--reaction-form-color-good);
  }
  
  .average .reaction-form-choice-counter {
    color: var(--reaction-form-color-average);
  }
  
  .poor .reaction-form-choice-counter {
    color: var(--reaction-form-color-poor);
  }
  
  .reaction-form-choice-icon.active + .reaction-form-choice-counter {
    color: #fff;
    border: none;
  }
  
  .wonderful .reaction-form-choice-icon.active + .reaction-form-choice-counter {
    background-color: var(--reaction-form-color-wonderful);
  }
  
  .good .reaction-form-choice-icon.active + .reaction-form-choice-counter {
    background-color: var(--reaction-form-color-good);
  }
  
  .average .reaction-form-choice-icon.active + .reaction-form-choice-counter {
    background-color: var(--reaction-form-color-average);
  }
  
  .poor .reaction-form-choice-icon.active + .reaction-form-choice-counter {
    background-color: var(--reaction-form-color-poor);
  }
  
  .reaction-form-choice-icon {
    background-color: #fff;
    border-radius: 6px;
    padding: 9px;
  }
  
  .wonderful .reaction-form-choice-icon.active {
    border: 1px solid var(--reaction-form-color-wonderful);
  }
  
  .wonderful .reaction-form-choice-icon.active svg {
    animation: selectCheerAnimation 0.6s ease-in-out 0s 1 normal both running;
  }
  
  .good .reaction-form-choice-icon.active {
    border: 1px solid var(--reaction-form-color-good);
  }
  
  .good .reaction-form-choice-icon.active svg {
    animation: selectGoodAnimation 0.6s ease-in-out 0s 1 normal both running;
  }
  
  .average .reaction-form-choice-icon.active {
    border: 1px solid var(--reaction-form-color-average);
  }
  
  .average .reaction-form-choice-icon.active svg {
    animation: selectAlmostAnimation 1s ease-in-out 0s 1 normal both running;
  }
  
  .poor .reaction-form-choice-icon.active {
    border: 1px solid var(--reaction-form-color-poor);
  }
  
  .poor .reaction-form-choice-icon.active svg {
    animation: selectBadAnimation 1s ease-in-out 0s 1 normal both running;
  }
  
  .reaction-form-choice-icon.active ~ span {
    font-weight: bold;
  }
  
  .reaction-form-submit {
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    width: 100%;
    font-size: 1.25rem;
    text-align: center;
    color: #fff;
    background-color: #018838;
    border-radius: 9999px;
    padding: 15px;
  }
  
  .reaction-form-submit:hover {
    background-color: #016E2D;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  @media screen and (min-width: 960px) {
    .reaction-form-choice-wrapper {
      justify-content: center;
      gap: 60px;
    }
    
    .reaction-form-submit {
      width: 320px;
    }
  }
  
  @keyframes selectCheerAnimation {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    30% {
      -webkit-transform: rotate(20deg);
      transform: rotate(20deg);
    }
    60% {
      -webkit-transform: rotate(-20deg);
      transform: rotate(-20deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes selectGoodAnimation {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    30% {
      -webkit-transform: rotate(10deg);
      transform: rotate(10deg);
    }
    60% {
      -webkit-transform: rotate(-10deg);
      transform: rotate(-10deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes selectAlmostAnimation {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    30% {
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes selectBadAnimation {
    0% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
    10% {
      -webkit-transform: translateY(4px);
      transform: translateY(4px);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }