/* Material Icons from google icons */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/css/icons/material-design-icons/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/css/icons/material-design-icons/MaterialIcons-Regular.woff2) format('woff2'),
    url(/css/icons/material-design-icons/MaterialIcons-Regular.woff) format('woff'),
    url(/css/icons/material-design-icons/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';

  vertical-align: middle;
  padding-bottom: 3px;
}

/* Rules for sizing the icon. */
.material-icons.md-12 { font-size: 12px; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-56 { font-size: 56px; }
.material-icons.md-64 { font-size: 64px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* General style for app ******************************************************/

/* general backgroud */
body {
    background-color:#f5f5f5!important;
    height: 100% !important;
/*    font-family: 'Arial' !important;*/
}
/* Laravel main bar style */
.navbar-cfusa{
    background-color:#fff;
    -webkit-box-shadow:0 2px 4px rgba(0,0,0,.1);
    box-shadow:0 2px 4px rgba(0,0,0,.2)
}
/* form */
.module_form {
    padding: 15px !important;
}
/* fix bug on bootstrap4 */
.btn-block + .btn-block {
    margin-top: 0rem !important;
}

.btn-block + .btn-block {
    margin-top: 0rem !important;
}
/* show widget launcher under any modal */
#launcher{
    z-index:1 !important;
}
/*label required marked*/
label.required:after {
    color: red;
    content: " *";
}

/* card effects */
.card{
    border: none !important;
    padding:0px !important;
}
.card-header{
    background: white !important;
    border-bottom: 2px solid #f5f5f5 !important;
    font-weight: 900 !important;
    color: #555 !important;
    padding: 0px 0px 0px 7px !important;
}
/* inside a form to style the fields */
.module_card {
    line-height: 1;
    color: #555 !important;
    border-left: 4px solid #fff !important;
    border-bottom: 1px solid #f5f5f5 !important;
}
.module_card:hover {
    border-left: 4px solid #205ba5 !important;
}

footer {
	background: #1C4B83 !important;
	color: white !important;
	font-size: 14px;
}
footer a {
	color: white !important;
}
footer a:hover {
	color: whitesmoke !important;
}

#container-main {
  background: #1C4B83;
  min-width: 100%;
  min-height: 100%;
  padding: 0px !important;
}
#content-left {
  font-size:3.5vw !important;
  line-height: 1.1;
  color: white !important;
  margin: auto!important;
}
#batch_countdown b {
    font-size: 30px;
    font-weight: bold;
}
/*input range style*/
input[type="range"] {
	margin: auto;
	-webkit-appearance: none;
	position: relative;
	overflow: hidden;
	height: 20px;
	width: 100%;
	cursor: pointer;
	border-radius: 3; /* iOS */
}

::-webkit-slider-runnable-track {
	background: #ddd;
}
/*
 * 1. Set to 0 width and remove border for a slider without a thumb
 */
::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px; /* 1 */
	height: 40px;
	background: #fff;
	box-shadow: -100vw 0 0 100vw #205ba5;
	border: 2px solid #999; /* 1 */
}
::-moz-range-track {
	height: 40px;
	background: #ddd;
}
::-moz-range-thumb {
	background: #fff;
	height: 40px;
	width: 20px;
	border: 3px solid #999;
	border-radius: 0 !important;
	box-shadow: -100vw 0 0 100vw dodgerblue;
	box-sizing: border-box;
}
::-ms-fill-lower {
	background: dodgerblue;
}
::-ms-thumb {
	background: #fff;
	border: 2px solid #999;
	height: 40px;
	width: 20px;
	box-sizing: border-box;
}
::-ms-ticks-after {
	display: none;
}
::-ms-ticks-before {
	display: none;
}
::-ms-track {
	background: #ddd;
	color: transparent;
	height: 40px;
	border: none;
}
::-ms-tooltip {
	display: none;
}
