  .extras {
    /* text-align: right; */
    display: flex;
    justify-content: space-evenly;
    -webkit-tap-highlight-color: transparent; /* for Chrome on Android */
    outline: none; /* for most browsers */
    box-shadow: none; /* for some browsers or if you are using Bootstrap */
  }
  
  /* Customize the label (the container) */
  .container {
    direction: rtl;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  .container input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  /* Create a custom checkbox */
  .checkmark {
    top: 0;
    left: 0;
    height: 25px;
    width: 100px;
    background-color: #eee;
    border-radius: 5px;
    line-height: 25px;
    text-align: center;
    color: #666;
    transition: background-color 0.3s ease;
  }

  /* When the checkbox is checked, add a blue background and white text */
  .container input:checked ~ .checkmark {
    background-color: var(--main-theme);
    color: white;
  }

  /* Add a checkmark icon when checked */
  .container input:checked ~ .checkmark:after {
    content: "\2713";
  }

  /* Move the checkmark to the right and the text to the left */
  .container input:checked ~ .checkmark:after {
    float: right;
    margin-right: 10px;
  }

  .container span {
    float: left;
    margin-left: 10px;
  }

  /* Make the text inside the blue button */
  .container input:checked ~ .checkmark:before {
    content: attr(data-text);
    color: white;
  }