/* 
    App : TRHAL
    Description : project for code.kw ( TRHAL ) 
    About this file : Simple Forms Control ( buttons, label , .... )
    Other : --> Everything created from scratch
    Ofcourse with some help ( sources : google - w3s - csstricks )
    and last but not least ( app.code.kw )
*/

/* -------------------------- Forms Input --------------------------  */

.input-search {
  font-family: HiveFont;
  margin: 15px 0;
  padding: 15px 10px;
  width: 75%;
  outline: none;
  border: 1px solid #bbb;
  border-radius: 10px;
  display: inline-block;
  box-sizing: border-box;
  transition: 0.2s ease all;
  flex-grow: 1;
}

.button-search {
  font-family: HiveFont;
  padding: 10px 35px;
  width: auto;
  height: 50px;
  background: #3b3085;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s ease all;
}

.button {
  font-family: HiveFont;
  padding: 7px 8px;
  background: #3b3085;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s ease all;
}

.datepicker {
  font-family: HiveFont;
  margin: 15px 0;
  padding: 15px 10px;
  /* width: 75%; */
  outline: none;
  border: 1px solid #bbb;
  border-radius: 10px;
  display: inline-block;
  box-sizing: border-box;
  transition: 0.2s ease all;
  flex-grow: 1;
}

.button-regular {
  font-family: HiveFont;
  padding: 5px 35px;
  font-size: 13px;
  width: auto;
  height: 34px;
  background: rgba(26, 16, 28, 0.6);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.2s ease all;
}

.button-regular:hover {
  background: rgba(26, 16, 28, 0.288);
}
/* -------------------------- Autocomplete Input --------------------------  */

.autocomplete {
  position: relative;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  padding: 3px;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
/* -------------------------- Backgrounds Colors --------------------------  */

.cl-lightpurple {
  background-color: #3b3850 !important;
}

.cl-darkblue {
  background-color: #222741 !important;
}

.cl-shadow {
  background-color: #fff ;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.cl-niceone {
  background-color: #312d35 !important;
}

.tip-danger {
  background-color: #c50606 !important;
}

.tip-success {
  background-color: #057426 !important;
}
