.custom-checkbox{display:flex;align-items:center}.custom-checkbox.colored{border-radius:.25rem;background-color:#8f13f1}.custom-checkbox.colored>input{border:none!important}.custom-checkbox input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:1.125rem;height:1.125rem;border-radius:.25rem;border:.0625rem solid #fff;outline:none;cursor:pointer;position:relative;background-color:transparent}.custom-checkbox input[type=checkbox]:checked:after{content:"";position:absolute;left:.35em;top:.05em;width:.3em;height:.6em;border:solid #fff;border-width:0 .15em .15em 0;transform:rotate(45deg);animation:checkmarkAnimation .3s ease forwards}.custom-checkbox input[type=checkbox]:disabled{border-color:silver;background-color:silver;cursor:not-allowed}.custom-checkbox input[type=checkbox]:disabled+span{color:silver}@keyframes checkmarkAnimation{0%{opacity:0;transform:rotate(0deg)}to{opacity:1;transform:rotate(45deg)}}