.Urgent{
	background-color:#FFDC9B;
}
.Very-Urgent{
	background-color:#FF7D7D;
}

.brdr{
	border: medium dashed #CCCCCC;
}

.brdr2{
	border: medium solid #CCCCCC;
	margin: 9px;
	padding: 9px;
	background-color: #FFF4EA;
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
}
.tim-typo {
  padding-left: 25%;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.tim-typo .tim-note {
  bottom: 5px;
  color: #c0c1c2;
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  left: 0;
  margin-left: 20px;
  position: absolute;
  width: 260px;
}

/* offline-doc */

.offline-doc .navbar.navbar-transparent {
  padding-top: 25px;
  border-bottom: none;
}

.offline-doc .navbar.navbar-transparent .navbar-minimize {
  display: none;
}

.offline-doc .navbar.navbar-transparent .navbar-brand,
.offline-doc .navbar.navbar-transparent .collapse .navbar-nav .nav-link {
  color: #FFFFFF !important;
}

.offline-doc .footer {
  z-index: 3 !important;
}

.offline-doc .page-header .container {
  z-index: 3;
}

.offline-doc .page-header:after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

#map {
  z-index: 2;
  height: calc(100vh - 70px);
  margin-top: 70px;
}

/*form styles*/
#msform {
    width: 100%;
    position: relative;
    border-radius: 0;
}
#msform .card-body{
  padding: 0px;
}
#msform fieldset {
  background: white;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  
  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/

/*buttons*/
#msform .action-button {
  width: 100px;
  background: #9c27b0;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #9c27b0;
}
/*headings*/
/*progressbar*/
#progressbar {
  margin-bottom: 0px;
  overflow: hidden;
    text-align: center;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 33px;
    line-height: 33px;
    display: block;
    font-size: 14px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 10px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #710d82;
  color: white;
}

.repeat .dimension{
  width:100px;
  display: inline-block;
  margin: 0 5px;
}