/* Firefox */ input[type=number] { -moz-appearance: textfield; } ::-webkit-scrollbar { width: 20px; } ::-webkit-scrollbar-track { background-color: transparent; } ::-webkit-scrollbar-thumb { background-color: #d6dee1; border-radius: 20px; border: 6px solid transparent; background-clip: content-box; } ::-webkit-scrollbar-thumb:hover { background-color: #a8bbbf; } input[type='checkbox']{ border-radius: 0px; // background-color: white; border-color: #707070; &:checked{ border-color: #707070; background-image: url(/images/icon-checked.svg); background-color: white; background-size: 14px; } &:focus{ box-shadow: none; } } input[type="date"].hide-calender{ &::-webkit-inner-spin-button,&::-webkit-calendar-picker-indicator{ display: none; -webkit-appearance: none; } }