
.group {
  border-radius: 12px;
  background: #F4F5F5;
  padding: 12px;
  border: 1px solid #E7E7E7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.choice-option {
  border-radius: 6px;
  background: #CECECE;
  padding: 5px 8px;
  color: #858585;
  font-size: 12px;
  font-weight: 500;
}

h3 {
    color: #F5B451 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.group small {
  color: #212121;
  font-weight: 400 !important;
  font-size: 10px;
}

.choice-group {
  border-radius: 24px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.choice-group label {
  color: #212121;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.price {
  color: #212121;
  font-weight: 500;
  font-size: 12px;
  margin: 0;
}

.choice-group input[type="checkbox"] {
  border-radius: 3px !important;
  background: #FFF;
  box-shadow: 0px 4.154px 6.923px 0px rgba(85, 85, 85, 0.10), 0px 0px 0px 1.385px #555, 0px -5.538px 2.769px 0px rgba(85, 85, 85, 0.02) inset !important;
  width: 18px !important;
  height: 16px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.choice-group input[type="checkbox"]:checked {
  background-color: #EEE !important; 
  border-color: #E7E7E7 !important;
}

.choice-group input[type="checkbox"]::after {
  content: "" !important;
  display: block !important;
  width: 11px !important;
  height: 6px !important;
  border-left: 3px solid #D88D1F !important;
  border-bottom: 3px solid #D88D1F !important;
  filter: drop-shadow(0px 2.769px 5.538px rgba(0, 0, 0, 0.25)) !important;
  transform: rotate(-50deg) !important;
  opacity: 0 !important;
  margin: 4px auto !important;
}

.choice-group input[type="checkbox"]:checked::after {
  opacity: 1 !important;
}

.choice-group input[type="checkbox"]:focus {
    outline: none !important;
}
