/* ------- Progress Menu used in Add/ Edit Application in Public Portal ------ */

.cd-breadcrumb, .cd-multi-steps {
  width: 100%;
  max-width: 1400px; /* Default used to be 768px, for Public we have used: 1160, for Staff we have used: 1400 */
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #edeff0;
  border-radius: 8px;
  justify-content: center;
  display: flex;
}
.cd-breadcrumb:after, .cd-multi-steps:after {
  content: "";
  display: table;
  clear: both;
}
.cd-breadcrumb li, .cd-multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.cd-breadcrumb li::after, .cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after, .cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}
.cd-breadcrumb li > *, .cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 1.5rem; /* Commenting this Effects Public portal default size to 1.3 */
  color: #2c3f4c;
}

.cd-breadcrumb .menuSeparator {
    display: none;
}

.cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
  /* selected step */
  color: #96c03d;
  font-weight: 700;
}
.no-touch .cd-breadcrumb a:hover, .no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}

  .cd-breadcrumb li a {
    text-decoration:none;
  }
  .cd-breadcrumb li a:hover {
    background-color: #ffd812;
    border-color: #ffd812;    
  }  
  .cd-breadcrumb li.current a:hover {
  	background-color: #edeff0;
  	border-color: #edeff0;
  }

@media only screen and (min-width: 1160px) {
  .cd-breadcrumb, .cd-multi-steps {
    padding: 0 1.2em;
  }
  .cd-breadcrumb li, .cd-multi-steps li {
    margin: 1.2em 0;
  }
  .cd-breadcrumb li::after, .cd-multi-steps li::after {
    margin: 0 1em;
  }
  .cd-breadcrumb li > *, .cd-multi-steps li > * {
    /* font-size: 1.3rem; */ /* This is causing default font size to 1.3 in Public Portal for screen size of 1400 & above */
  }
  
  .cd-breadcrumb .menuSeparator{
  	display: none;
  }
 
}

/* -------------------------------- 
Triangle breadcrumb
-------------------------------- */

@media only screen and (min-width: 1160px) {
  .cd-breadcrumb.triangle {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
  }
  .cd-breadcrumb.triangle li {
    position: relative;
    padding: 0;
    margin: 4px 4px 4px 0;
  }
  .cd-breadcrumb.triangle li:last-of-type {
    margin-right: 0;
  }
  .cd-breadcrumb.triangle li > * {
    position: relative;
    /* padding: 1em .8em 1em 2.5em; */
    padding: 12px 1px 15px 26px;
    color: #2c3f4c;
    background-color: #edeff0;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #edeff0;
  }
  
  .cd-breadcrumb.triangle li a {
    text-decoration:none;
  }
  .cd-breadcrumb.triangle li a:hover {
    background-color: #ffd812;
    border-color: #ffd812;    
  }
    
  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #ffffff;
    background-color: #5cb85c; /* #96c03d */
    border-color: #5cb85c;
  }
  .cd-breadcrumb.triangle li.current a:hover {
  	background-color: #5cb85c; /* #96c03d */
  	border-color: #5cb85c; 
  }
  
 
  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 1.6em;
    border-radius: .25em 0 0 .25em;
  }
  .cd-breadcrumb.triangle li:last-of-type > * {
    padding-right: 1.6em;
    border-radius: 0 .25em .25em 0;
  }
  .no-touch .cd-breadcrumb.triangle a:hover {
    /* steps already visited */
    color: #ffffff;
    background-color: #2c3f4c;
    border-color: #2c3f4c;
  }
  .cd-breadcrumb.triangle li::after, .cd-breadcrumb.triangle li > *::after {
    /* 
    	li > *::after is the colored triangle after each item
    	li::after is the white separator between two items
    */
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    height: 0;
    width: 0;
    /* 48px is the height of the <a> element */
    border: 24px solid transparent;
    border-right-width: 0;
    border-left-width: 20px;
   
  }
  .cd-breadcrumb.triangle li::after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
    border-left-color: #ffffff;
    /* reset style */
    margin: 0;
    
  }
  .cd-breadcrumb.triangle li > *::after {
    /* this is the colored triangle after each element */
    z-index: 2;
    border-left-color: inherit;
  }
  .cd-breadcrumb.triangle li:last-of-type::after, .cd-breadcrumb.triangle li:last-of-type > *::after {
    /* hide the triangle after the last step */
    display: none;
  }
  .cd-breadcrumb.triangle.custom-separator li::after {
    /* reset style */
    background-image: none;
  }
  .cd-breadcrumb.triangle.custom-icons li::after, .cd-breadcrumb.triangle.custom-icons li > *::after {
    /* 50px is the height of the <a> element */
    border-top-width: 25px;
    border-bottom-width: 25px;
  }

  @-moz-document url-prefix() {
    .cd-breadcrumb.triangle li::after,
    .cd-breadcrumb.triangle li > *::after {
      /* fix a bug on Firefix - tooth edge on css triangle */
      border-left-style: dashed;
    }
  }
}

/* -------------------------------- 
Regular breadcrumb
-------------------------------- */

.menuBg{
	 background-color: darkturquoise;
	 border-radius: .25em .25em .25em .25em;
}


@media only screen and (min-width: 1400px) {
  .cd-breadcrumb.regular {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
    min-width: 1380px;
    display: initial;
    
  }
  .cd-breadcrumb.regular li {
    position: relative;    
    margin: 4px 2px 4px 2px;
  }
  .cd-breadcrumb.regular li:last-of-type {
    margin-right: 0;
  }
  .cd-breadcrumb.regular li > * {
    font-size: 1.5rem;
    position: relative;    
    padding: 4px 2px 4px 2px;
    color: #2c3f4c;   
    border-color: #edeff0;
    border-radius: .25em .25em .25em .25em;
  }
  
   .cd-breadcrumb .menuSeparator{
  	display: initial;
  }
  
  .cd-breadcrumb.regular li a {
    text-decoration:none;
  }
  .cd-breadcrumb.regular li a:hover {
    background-color: #ffef97; /* #ff8c00; */
    border-color: #ffef97;    
  }
    
  .cd-breadcrumb.regular li.current > * {
    /* selected step */
    color: #000080;
    background-color: #ffe96a; 
    border-color: #ffe96a;
  }
  .cd-breadcrumb.regular li.current a:hover {
  	background-color: #ffe96a; /* #96c03d , #5cb85c*/
  	border-color: #ffe96a; 
  }
  
 
  .cd-breadcrumb.regular li:first-of-type > * {    
    border-radius: .25em .25em .25em .25em;
    margin-left: 2px;
  }
  .cd-breadcrumb.regular li:last-of-type > * {   
    border-radius: .25em .25em .25em .25em;
    margin-right: 2px;
  }
  .no-touch .cd-breadcrumb.regular a:hover {
    /* steps already visited */
    color: #ffffff;
    background-color: #2c3f4c;
    border-color: #2c3f4c;
  }
  .cd-breadcrumb.regular li::after, .cd-breadcrumb.regular li > *::after {
    /* 
    	li > *::after is the colored regular after each item
    	li::after is the white separator between two items
    */
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    height: 0;
    width: 0;
    /* 48px is the height of the <a> element */
    /* border: 24px solid transparent; */
    border-right-width: 0;
    border-left-width: 20px;
   
  }
  .cd-breadcrumb.regular li::after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
    border-left-color: #ffffff;
    /* reset style */
    margin: 0;
    
  }
  .cd-breadcrumb.regular li > *::after {
    /* this is the colored regular after each element */
    z-index: 2;
    border-left-color: inherit;
  }
  .cd-breadcrumb.regular li:last-of-type::after, .cd-breadcrumb.regular li:last-of-type > *::after {
    /* hide the regular after the last step */
    display: none;
  }
  .cd-breadcrumb.regular.custom-separator li::after {
    /* reset style */
    background-image: none;
  }
  .cd-breadcrumb.regular.custom-icons li::after, .cd-breadcrumb.regular.custom-icons li > *::after {
    /* 50px is the height of the <a> element */
    border-top-width: 25px;
    border-bottom-width: 25px;
  }

  @-moz-document url-prefix() {
    .cd-breadcrumb.regular li::after,
    .cd-breadcrumb.regular li > *::after {
      /* fix a bug on Firefix - tooth edge on css regular */
      border-left-style: dashed;
    }
  }
}


