.error-message{
    color: red;
    text-align: center;
}
.step-form {
	width: 30%;
}
li {
	list-style-type: none;
}
input.claimcb[type="checkbox"] {
    clip: rect(0px, 0px, 0px, 0px);
    height: 18px;
    width: 18px;
}
input.css-checkbox[type="checkbox"]:checked + label.css-label {
    background-position: 0 -15px;
}
input.css-checkbox[type="checkbox"] + label.css-label {
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    height: 15px;
    line-height: 15px;
    padding-left: 20px;
    vertical-align: middle;
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid black;
  background: url('https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png') no-repeat 110% 60%;
  background-size: 32px 32px;
  border-radius: 0px;
  font-size: 20px;
}
::-ms-expand {
  display: none;
}
select {
  text-overflow: '';
  text-indent: 0.01px;
}
.modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.8);
z-index: 99999;
opacity:0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
overflow-y: scroll;
overflow-x:hidden;
}

.modalDialog:target {
opacity:1;
pointer-events: auto;
}

.modalDialog > div {
height: auto;
position: relative;
margin: 5% auto;
padding: 5px 20px 13px 20px;
background: #fff;
/*background: -moz-linear-gradient(#fff, #999);
background: -webkit-linear-gradient(#fff, #999);
background: -o-linear-gradient(#fff, #999);*/
}

.data{
    border: 1px solid #eeeeee;
}

@media only screen and (max-width: 480px){
    .modalDialog > div { width: 90%; }
}

@media only screen and (max-width: 1024px){
    .modalDialog > div { width: 90%;}
}

.close {
	margin-top: 5px;
}

.modalDialog > div > h4 {
    border-bottom: 1px solid #e5e5e5;
    color: #197be4;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

label {
    color: #29af8e;
    font-weight: 500;
}

.approval-form{
  width:90%;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url('/static/img/dropdown-sprite.png') no-repeat 98% center;
    background-size: 10px 14px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0) inset;
    line-height: 15px;
    transition: border-color 0s ease-in-out 0s, box-shadow 0s ease-in-out 0s;
    text-transform: capitalize;
}

.alert {
    border: 1px solid transparent;
    border-radius: 0px;
    margin-bottom: 20px;
    padding: 5px;
    width: 90%;
}

.warning-message{
    border: 1px solid transparent;
    border-radius: 0px;
    margin-bottom: 20px;
    padding: 5px;
    width: 100%;
}

.display-message{
    border: 1px solid transparent;
    border-radius: 0px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
}

.alert-dismissable .close {
    color: inherit;
    position: relative;
    right: 0px;
    top: -5px;
}


.ui-draggable .ui-dialog-titlebar
{
  background-color: #FF0000;
}

th{
  text-align: center;
}

.table-center{
  text-align: center;
}

.table-right{
  text-align: right;
}


/* Base for label styling */
.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.custom-checkbox [type="checkbox"]:not(:checked) + label,
.custom-checkbox [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

/* checkbox aspect */
.custom-checkbox [type="checkbox"]:not(:checked) + label:before,
.custom-checkbox [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 20px; height: 20px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 0px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}
/* checked mark aspect */
.custom-checkbox [type="checkbox"]:not(:checked) + label:after,
.custom-checkbox [type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 3px; left: 4px;
  font-size: 18px;
  line-height: 0.8;
  color: #4aa3df;
  transition: all .2s;
}
/* checked mark aspect changes */
.custom-checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.custom-checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
.custom-checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.custom-checkbox [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.custom-checkbox [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
.custom-checkbox [type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
.custom-checkbox [type="checkbox"]:checked:focus + label:before,
.custom-checkbox [type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}

/* hover style just for information */
.custom-checkbox label:hover:before {
  border: 1px solid #4778d9!important;
}
