input {height: 20px;padding: 2px;}
input[type=checkbox] {    
    -webkit-appearance: none;
}
input[type=submit],input[type=button] {
    border: 1px solid white;
    background-color: #540505;
    color: white;
    font-family: 'NotoSans', Verdana, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 35px;
    padding: 5px 10px;    
    width: 120px;
}
input[type=text],[type=number],[type=password] {  
    border: 1px solid #c7c7c7;
    border-radius: 5px;
    font-family: "NotoSans";
    font-size: 14px;
    height: 36px;
    outline: none;
    padding: 5px 10px;    
    width: 262px;
}
input:focus{outline: none}
input.small{width: 100px}
input[type=search]{
    background-image: url('public/images/icons/3669253-48-2.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position-x: 225px;
    background-position-y: 2px;
    border: 1px solid #c7c7c7;
    border-radius: 5px;
    font-family: "NotoSans";
    font-size: 14px;
    height: 36px;
    outline: none;
    padding: 5px 10px;    
    width: 262px;
}
input[type=search]:focus{
 background-image:none;
}
input.date{width: 144px}
input.user {width: 200px}
input.pass {width: 200px}
select {
    background-color: white;
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    border: thin solid #c7c7c7;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 2.5em 0.5em 1em;
}
select:focus {
    background-image:
        linear-gradient(45deg, green 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, green 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
}
select.date {width: 80px;} 
select.small  {width: 95px;} 
select.medium {width: 263px;}
select.large {width: 350px;}
textarea {
    border: 1px solid #e0e0e0;
    font-family: 'NotoSans', Verdana, sans-serif;
    font-size: 14px;
    height: 250px;
    margin:3px 0px;
    outline:none;
    padding: 10px;
    resize: none;
    width: 450px
}
.radiobutton {
    display: block;
    font-weight: bold;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.radiobutton input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
.radiobutton:hover input ~ .checkmark {
    background-color: #ccc;
}
.radiobutton input:checked ~ .checkmark {
    background-color: rgb(84,5,5);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.radiobutton input:checked ~ .checkmark:after {
    display: block;
}
.radiobutton .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}





/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox {
  background-color: rgb(84,5,5);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}