.bold_options{
  .bold_option_set{
    .bold_option_radio{
      .bold_option_element{
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        .bold_option_value{
          margin-bottom: 2.4rem;
          label{
            padding: 1.2rem 1rem;
            background: #F5F8FA;
            border-radius: 1rem;
            font-weight: bold;
            input[type="radio"]{
              display: none;
            }
            &:has(input:checked){
              background: black;
              color: white;
            }
            .bold_option_value_price{
              display: none;
            }
          }
        }
      }
    }
    .bold_option_swatch{
      .bold_option_element{
        margin-top: 1rem;
        display: flex;
        .bold_option_value {
          text-align: center;
          label{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }
  }
}