﻿.jsNote{
    font-size: 11px !important;
    font-weight: lighter !important;
    color: #1ab394 !important;
}

.jsErrorColor{
    background: #ffd6d6;
}

.selectedSetup{
    border-radius: 0px 33px 33px 0px;
    -moz-border-radius: 0px 33px 33px 0px;
    -webkit-border-radius: 0px 33px 33px 0px;
    border: 0px solid #18A689;
    background: #18A689;
    padding-left:10px;
}

.middle-box h1 {
  font-size: 100px !important;
}

.selectedSetup > a {
    color:white !important;
}

.selectedSetup > a > i {
    color: white !important;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

/* Check Box */
/*https://www.w3schools.com/howto/howto_css_custom_checkbox.asp*/
/* Customize the label (the container) */
.jscontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /*font-size: 22px;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.jscontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  border: 1px solid #e5e6e7;
}

/* On mouse-over, add a grey background color */
.jscontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.jscontainer input:checked ~ .checkmark {
  background-color: #1AB394;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.jscontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.jscontainer .checkmark:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.text-uppercase {
  text-transform: uppercase;
}

.Centerdropdownmenu {
    left: -65px;
    right: -65px;
}

.actionPadLeft5 {
    padding-left: 5px !important;
    padding-right: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin: 0px !important;
}

.actionIconFont {
    font-size: 18px !important;
    margin-right: 5px !important;
}

.datatable-pull-left{float:left!important;}
.datatable-pull-right{float:right!important;}

.selectedRow{
    background-color:#f7ffb2 !important;
}