@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");

body{
  background-color: #215557;
  /* height: 800px;  */
}

.badge-successo{
  background-color: rgb(226,239, 218); 
  color: rgb(74,116, 67)
}

.badge-warning{
  background-color: rgb(251, 248, 229); 
  color: rgb(134, 110, 66)
}

.badge-error{
  background-color: rgb(239, 223, 222); 
  color: rgb(157, 75, 69)
}

.header {
  position: sticky;
  top: 0;
}

.hiddenRow {
  padding: 0 !important;
}

tr:hover.main-row td.inside-row{
  background-color: #32a8a4;
}

tr.t-active.main-row td.inside-row{
  background-color: #32a8a4;
  color: #fff;
}

input[type="file"] {
  display: none;
}

.custom-file-upload, .custom-file-upload_2{
  border: 1px solid gray;
  background-color: #4CAF50;
  box-shadow: 2px 2px;  
  padding: 6px 12px;
  width: 75px;    
}

.custom-file-upload:hover, .custom-file-upload_2:hover{  
  background-color: #388E3C ;  
}

.bg-file-sent{
  background-color: #FFB300;    
}

.bg-file-sent:hover{
  background-color: #c48b04;    
}

tr.accordion-toggle th:hover {  
  background-color: gray;  
}

.tooltip-inner {
  background-color: #1e4368;  
  /* max-width: 350px; */
  text-align: left;
  padding: 15px;
  opacity: 0.9;
  
}

.form-radio{
  display: flex;
  align-items: center;
}

.form-radio .form-check-input{
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 3rem;
  /* background-color: rgba(176, 171, 171, 0.979); */
  border-color: black;
}

.navbar-icon-top .navbar-nav .nav-link > .fa {
  position: relative;
  width: 50px;
  font-size: 25px;
  top: 3px;
  line-height: 12px;
}

.navbar-icon-top .navbar-nav .nav-link > .fa > .badge {
  font-size: 0.75rem;
  position: absolute;
  right: 0;
  font-family: sans-serif;
  top: -10px;
}

/* .navbar-icon-top .navbar-nav .nav-link > .fa {
  top: 3px;
  line-height: 12px;
} */

/* .navbar-icon-top .navbar-nav .nav-link > .fa > .badge {
  top: -10px;
} */

@media (min-width: 576px) {
  .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 50;
    line-height: 24px;
  }

  .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}

@media (min-width: 768px) {
  .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }

  .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}

@media (min-width: 992px) {
  .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }

  .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}

@media (min-width: 1200px) {
  .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }

  .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }

  
}

.progressbar-wrapper {
  /* background: #fff; */  
  width: 200%;
  /* padding-top: 10px;
  padding-bottom: 5px;     */
  padding-left: 10px;
  padding-right: 20px; 
}

.progressbar li {
  list-style-type: none;
  width: 20%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  /* text-transform: uppercase; */
  color: #7d7d7d;
  left: -13%;   
}
.progressbar li:before {
  width: 25px;
  height: 25px;
  content: "";
  line-height: 25px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 3px auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background-color: #fff;

}
.progressbar li:after {
   width: 120%;
   height: 2px;
   content: '';
   position: absolute;
   background-color: #7d7d7d;
   top: 12.5px;
   left: -50%;
   z-index: 0;
}
.progressbar li:first-child:after {
   content: none;
}
.progressbar li.active {
  color: green;
  /* font-weight: bold;   */
}
.progressbar li.rejected {
  color: red
  /* font-weight: bold;   */
}
.progressbar li.current {
  color: #1e39d3
  /* font-weight: bold;   */
}
.progressbar li.ended {
  color: #606167
  /* font-weight: bold;   */
}
.progressbar li.active:before {
  border-color: #55b776;
  background: green;
}
.progressbar li.current:before {
  border: 4px solid #1e39d3;
  /* background: green; */
}
.progressbar li.rejected:before {
  border-color: #920000;
  background: red;
}
.progressbar li.ended:before {
  border-color: #606167;
  background: #606167;
}
.progressbar li.active + li:after {
  background-color: #55b776;
}



.step {
  position: relative;
  max-height: 100px;
  color: #606167;
  left: 45%;
  padding: 10px;
  z-index: 0;  
}
.title {
  line-height: 1.5em;
  font-weight: bold;  
}
.caption {
  font-size: 0.8em;
}
.step + .step {
  margin-top: 1.5em
}
.step > div:first-child {
  position: static;
  height: 0;
}
.step > div:not(:first-child) {
  margin-left: 1.5em;
  padding-left: 1em;
}
.circle {
  background: white;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border-radius: 100%;
  /* color: #fff; */
  text-align: center;
  /* box-shadow: 0 0 0 3px #fff; */
  border: 2px solid #606167;
  
}
/* Vertical Line */
.circle:after {
  content: ' ';
  position: absolute;
  display: block;
  background-color: #606167;
  top: 0px;
  
  bottom: -10px;
  left: 43%;

  height: 130px;
  width: 3px;
  
  /* transform: scale(1, 2); */
  transform-origin: 50% -100%;  
  z-index: -1;
}
.step:last-child .circle:after {
  display: none;  
}
.step.active .circle {
  background-color: green;
  border: 2px solid #55b776; 
}
.step.active .circle:after {
  background-color: green;
  width: 3px;
}
.step.current .circle {
  background-color: white;
  border: 4px solid #1e39d3;
}
.step.rejected .circle {
  background-color: red;
  border: 2px solid #920000;
}
.step.ended .circle {
  border-color: #606167;
  background: #606167;
}

.step.active {
  color: green
}
.step.current {
  color: blue
}
.step.rejected {
  color: red
}
