label {
    display: block;
    color: #888;
    font-size: 11px;
    user-select: none;
    margin-bottom: 5px;
}

select {
  padding: 8px 36px 8px 8px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 13px;
  /*
  transition: 0.3s all;
  */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  background-image: url('../i/expand.svg');
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

select:focus,
select:active {
  outline: 2px solid #000000;
  border-radius: 3px;
  outline-offset: -1px;
}

input[type="text"] {
    box-sizing: border-box;
    padding: 8px 8px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    transition: 0.3s all;
}

input[type="email"] {
    box-sizing: border-box;
    padding: 8px 8px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    transition: 0.3s all;
}

input[type="number"] {
  box-sizing: border-box;
  padding: 8px 8px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  transition: 0.3s all;
}

input[type="email"]:focus,
input[type="email"]:active {
  outline: 2px solid #000000;
  border-radius: 3px;
  outline-offset: -1px;
}

input[type="password"] {
    box-sizing: border-box;
    padding: 8px 8px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    transition: 0.3s all;
}

input[type="date"] {
  box-sizing: border-box;
  padding: 8px 8px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  transition: 0.3s all;
  width: 108px;
}

input[type="datetime-local"] {
  box-sizing: border-box;
  padding: 8px 8px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  transition: 0.3s all;
  width: 152px;
}

input[type="checkbox"]:checked:before {
  background-color: #FF0000;
}


/* The container */
.checkB {
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    min-height: 20px; 
    line-height: 20px;
    user-select: none;
}
  
  /* Hide the browser's default checkbox */
  .checkB input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #EFEFEF;
    border-radius: 3px;
  }
  
  /* On mouse-over, add a grey background color */
  .checkB:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkB input:checked ~ .checkmark {
    background-color: #5a6acf;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkB input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
.checkB .checkmark:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

textarea {
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  padding: 11px 12px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  transition: 0.3s all;
  resize: none;
}

input[type=search] {
  border: 1px solid #d7d7d7;
  padding: 8px 10px 8px 35px;
  border-radius: 3px;
  font-size: 13px;
  background-image: url('../i/search.svg');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 9px center;
}

input[type="search"]:active,
input[type="search"]:focus {
  outline: 2px solid #000000;
  border-radius: 3px;
  outline-offset: -1px;
}

input[type="search"]::-webkit-search-cancel-button {
  position:relative;
  right: -6px;  
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background-image: url('../i/close.svg');
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 23.5px;
  margin: 0;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D7D7D7;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 36px;
  min-width: 42px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #1252a1;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.asideEditItemToolbar {
  position: relative;
  height: 56px;
}

.btnFilterItem {
  border: 1px solid #d7d7d7;
  width: 32px;
  height: 32px;
  font-size: 18px;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.btnFilterItem:hover {
  background-color: #EFEFEF;
}

.inputTwoCol {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  width: 100%;
}

.inputTwoColItem {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
}