@font-face {
    font-family: 'PWSignature';
    src: url('../fonts/pwsignature/PWSignature.ttf');
}

.signature-input {
  font-family: 'PWSignature', serif !important;
}

select {
  -webkit-appearance: none;
	background-color: #212121 !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #ff9100 50%),
    linear-gradient(135deg, #ff9100 50%, transparent 50%),
    linear-gradient(to right, #ff9100, #ff9100);
  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-color: #ff9100;
}

select:focus {
  background-image:
    linear-gradient(45deg, #ff9100 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #ff9100 50%),
    linear-gradient(to right, #ff9100, #ff9100);
  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: #ff9100;
  outline: 0;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  main {
    flex: 1 0 auto;
  }
  
  /* label color 
   .input-field label {
     color: #333 !important;
   }
   */

   input:focus {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: none !important;
   }

   /* label focus color */
   .input-field input[type=text]:focus + label {
     color: #ff9100 !important;
   }

   /* label focus color */
   .input-field input[type=password]:focus + label {
     color: #ff9100 !important;
   }
   
   /* label focus color */
   .input-field input[type=email]:focus + label {
     color: #ff9100 !important;
   }

    /* label underline focus color */
   .input-field input[type=password]:focus {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   
   /* label underline focus color */
   .input-field input[type=text]:focus {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   
    /* label underline focus color */
   .input-field input[type=email]:focus {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   
    /* label underline focus color */
   .input-field input[type=number]:focus {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   
 
   /* valid color */
   .input-field input[type=text].valid {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }

   /* valid color */
   .input-field input[type=password].valid {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   
   /* valid color */
   .input-field input[type=email].valid {
     border-bottom: 1px solid #ff9100 !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   
   /* invalid color */
   .input-field input[type=email].invalid {
     border-bottom: 1px solid red !important;
     box-shadow: 0 1px 0 0 #333 !important;
   }
   /* icon prefix focus color */
   .input-field .prefix.active {
     color: #ff9100 !important;
   }

   .modal {
     border: 1px solid #ff9100;
   }

   .ui-datepicker-year, .ui-datepicker-month {
     display: inline !important;
     background-color: black;
     color: #ff9100;
   }

.switch label input[type=checkbox]:checked + .lever:after {
    background-color: #fe800e !important;
}
   /* tool tips */

   .tooltip {
     display: none;
     padding: 2px 2px 2px 2px;
     border: 1px solid black;
     background-color: #333;
     color: #ff9100;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 12px;
     line-height: 12px;
   }

   .tooltip-parent:hover .tooltip {
     display: block;
   }


   .loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #fe800e;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
