.white_font{
	color: #FFFFFF !important;
}

.red_font{
	color: #ff0000 !important;
}
.error{	
	color: #ff0000 !important;
}

.green_font{
	color: #008000 !important;
}
.div_clear_both{
	clear:both;
}


/* Start for dropdown scroll*/
.list { 
  max-height: 200px; /* or whatever the height you want*/
  overflow-y: scroll !important;
}
/* End for dropdown scroll*/

.default_ddl{
    width: 100%;
	
	border: 2px solid;
    border-color: var(--border-color-1);
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    height: 65px;
    line-height: 60px;
    width: 100%;
    margin-bottom: 30px;
}

.green-bg{
  background-color: #00FF00;
  color: black;
 }
 .blue-bg{
     background-color: #00FFFF;
     color: black;
 }
 .red-bg{
     background-color: red;
     color: black;
 }
 .yellow-bg{
     background-color: yellow;
     color: black;
 }

 .orange_heading{
     color:#FF5A3C; 
     font-weight:bold;     
 }

 ol {
    margin: 0 0 1.5em;
    padding: 0;
    counter-reset: item;
  }
  
  ol > li {
    margin: 0;
    padding: 0 0 0 3em;
    text-indent: -2em;
    list-style-type: none;
    counter-increment: item;
  }
  
  ol > li:before {
    display: inline-block;
    width: 1em;
    padding-right: 0.5em;
    font-weight: bold;
    text-align: right;
    content: counter(item) ".";
  }