/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  label.option-img>input {
    /* Menyembunyikan radio button */
    visibility: hidden;
    position: absolute;
  }
  
  label.option-img>input+img {
    /* style gambar */
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.5s;
  }
  
  label.option-img>input:checked+img {
    /* (RADIO CHECKED) style gambar */
    border: 2px solid var(--bs-primary);
  }


  /* JQuery Confirm */

  .jconfirm-buttons {
    text-align: right !important;
    border-top: none !important;
    padding-bottom: 15px !important;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box {
    border: 0px solid transparent !important;
    border-radius: 1em !important;
    box-shadow: none;
    -webkit-box-shadow: none;
}