.container-breadcrumb {
    display: flex; 
    width: 100%; 
    gap: 20px; 
    padding-top: 30px;
    font-size: 24px; 
    flex-wrap: wrap;
    font-weight: 500; 
    text-decoration: none;
}

.breadcrumb-content {
    color: #475467dd;
    gap: 10px;
}

.breadcrumb-content > fa {
    color: #475467dd;
    opacity: 0.4;
}

.breadcrumb-content .breadcrumb-inactive {
    color: #475467dd;
}

.breadcrumb-content .breadcrumb-active {
    color: #F39C12;
}

.container-category {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px; 
    width: 24%;
    min-width: 250px;
    padding: 25px;
    border: 1px solid #cacaca;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}  


  .checkbox-wrapper-1 *,
  .checkbox-wrapper-1 ::after,
  .checkbox-wrapper-1 ::before {
    box-sizing: border-box;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted {
    margin: 0;
    width: 0;
    height: 0;
    display: inline;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted + label:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    height: 1.15em;
    width: 1.15em;
    margin-right: 0.6em;
    color: rgba(0, 0, 0, 0.275);
    border: solid 0.06em;
    box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em inset, 0 0 0 0.07em transparent inset;
    border-radius: 0.2em;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>') no-repeat center, white;
    background-size: 0;
    will-change: color, border, background, background-size, box-shadow;
    transform: translate3d(0, 0, 0);
    transition: color 0.1s, border 0.1s, background 0.15s, box-shadow 0.1s;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:enabled:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted:enabled + label:active:before {
    box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset;
    background-color: #f0f0f0;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:checked + label:before {
    background-color: #F39C12;
    background-size: 0.75em;
    color: rgba(0, 0, 0, 0.075);
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled + label:active:before {
    background-color: #F39C12;
    color: rgba(0, 0, 0, 0.275);
  }
  .checkbox-wrapper-1 [type=checkbox].substituted:disabled + label:before {
    opacity: 0.5;
  }

  .checkbox-wrapper-1 [type=checkbox].substituted.dark + label:before {
    color: rgba(255, 255, 255, 0.275);
    background-color: #222;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="rgba(34, 34, 34, 0.999)" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>');
  }
  .checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled + label:active:before {
    background-color: #444;
    box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(255, 255, 255, 0.1) inset;
  }
  .checkbox-wrapper-1 [type=checkbox].substituted.dark:checked + label:before {
    background-color: #a97035;
    color: rgba(255, 255, 255, 0.075);
  }
  .checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled:active + label:before,
  .checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled + label:active:before {
    background-color: #c68035;
    color: rgba(0, 0, 0, 0.275);
  }
  .checkbox-wrapper-1 [type=checkbox].substituted + label {
    -webkit-user-select: none;
    user-select: none;
  }
  
  .radio {
    margin: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .radio input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  
  .radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f4f4f4; /* $color1 */
    border-radius: 100%;
    border: 1px solid #d1d1d1; /* darken($color1, 25%) */
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    margin-right: 1em; 
    vertical-align: top;
    text-align: center;
    transition: all 250ms ease;
  }
  
  .radio input[type="radio"]:checked + .radio-label:before {
    background-color: #F39C12; /* $color2 */
    box-shadow: inset 0 0 0 4px #f4f4f4; /* $color1 */
  }
  
  .radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4; /* $color1 */
    border-color: #d1d1d1; /* darken($color1, 25%) */
    background: #d1d1d1; /* darken($color1, 25%) */
  }
  
  .radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
  }

  #full-stars-example .rating-group {
    display: inline-flex;
  }
  
  #full-stars-example .rating__input {
    position: absolute !important;
    left: -9999px !important;
  }
  
  #full-stars-example .rating__label {
    padding: 0 0.1em;
    font-size: 2rem;
  }

  .radio input[type="radio"]:checked + label { 
    color: #f39c12;
}
  .radio input[type="radio"]:checked + label svg path {
    stroke: #f39c12;
  }
  
  #full-stars-example .rating__icon--star {
    color: orange;
  }
  
  #full-stars-example .rating__icon--none {
    color: #eee;
  }
  
  #full-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
    color: red;
  }
  
  #full-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  
  #full-stars-example .rating-group:hover .rating__label .rating__icon--star {
    color: orange;
  }
  
  #full-stars-example .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  
  #full-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
    color: #eee;
  }
  
  #full-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
    color: red;
  }
  
  #half-stars-example .rating-group {
    display: inline-flex;
  }
  
  #half-stars-example .rating__input {
    position: absolute !important;
    left: -9999px !important;
  }
  
  #half-stars-example .rating__label {
    padding: 0 0.1em;
    font-size: 2rem;
  }
  
  #half-stars-example .rating__label--half {
    padding-right: 0;
    margin-right: -0.6em;
    z-index: 2;
  }
  
  #half-stars-example .rating__icon--star {
    color: orange;
  }
  
  #half-stars-example .rating__icon--none {
    color: #eee;
  }
  
  #half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
    color: red;
  }
  
  #half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  
  #half-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
    color: #eee;
  }
  
  #half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
    color: red;
  }
  
  #full-stars-example-two .rating-group {
    display: inline-flex;
  }
  #full-stars-example-two .rating__input {
    position: absolute !important;
    left: -9999px !important;
  }
  
  #full-stars-example-two .rating__input--none {
    display: none;
  }
  
  
  #full-stars-example-two .rating__icon--star {
    color: orange;
  }
  
  #full-stars-example-two .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  
  #full-stars-example-two .rating-group:hover .rating__label .rating__icon--star {
    color: orange;
  }
  
  #full-stars-example-two .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
  }