/* LIGHTBOX WIDTH */
.LB100 {
    width: 100% !important;
}

.LB90 {
    width: 90% !important;
}

.LB80 {
    width: 80% !important;
}

.LB70 {
    width: 70% !important;
}

.LB60 {
    width: 60% !important;
}

.LB40 {
    width: 40% !important;
}

.LB30 {
    width: 30% !important;
}

.LBSmall {
    width: 450px !important;
}

.noMargin {
    margin: 0px;
}

.confirmation-green > .modal-header {
  background-color: #36aa47;
  color: #ffffff;
}

.confirmation-red > .modal-header {
  background-color: #c63927;
  color: #ffffff;
}

.confirmation-yellow > .modal-header {
  background-color: #ffaa24;
  color: #ffffff;
}
/* */

/* LIGHTBOX WIDTH */

.LBH100 {
    height: 100%;
}

/* */

/* LIGHTBOX WIDTH */

.mbHeight {
    display: inline-block !important;
    height: calc(100% - 215px) !important;
}

/* */

/* FOOTER */

.fixedFooter {
    width: 100%;
    bottom: 0px;
    position: fixed;
    left: 0px;
}
    
/* */    

/* FOOTER - TIMER */

.floatLeft {
    float: left;
}

/* */    

.inputFile {
    height: 42px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

#inputFile-btn a{
    font-weight: 400;
    font-size: 14px;
}

.removeAnexo {
    padding: 3px 0 3px 10px;
    float: right;
}

.removeAnexo:hover {
    cursor: pointer;
    color: #f3565d;
}

.boxLI {
    border: 1px solid #e5e5e5;
    overflow-y: scroll;
    overflow-x: hidden;
}

.boxLI ul {
    list-style-type: none;
    padding: 0px;
}

.boxLI ul li {
    border: 1px solid #e5e5e5;
    font-size: 15px;
    padding: 7px 10px 7px 10px;
    cursor: pointer;
}

.boxLI ul li:hover {
    background-color: #F1F3FA;
}

/* INPUT SEARCH */

.inputSearch95 {
    width: 95% !important;
}

.inputSearch90 {
    width: 90% !important;
}

.inputSearch85 {
    width: 85% !important;
}

.inputSearch80 {
    width: 80% !important;
}

.inputSearch75 {
    width: 75% !important;
}

/* CLOSE ICON */

.closeIcon {
    float: right;
    margin-top: 5px;
    cursor: pointer;
}

/* STEPS */

.steps {
  padding-left: 0;
  list-style: none;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  line-height: 1;
  margin: 30px auto;
  border-radius: 3px;
}

.steps strong {
  font-size: 14px;
  display: block;
  line-height: 1.4;
}

.steps>li {
  position: relative;
  display: block;
  /* border: 1px solid #ddd; */
  padding: 12px 50px 8px 50px; 
  width: 33%;
  height: 60px;
}

@media (min-width: 768px) {
  .steps>li { float: left; }
  .steps .step { 
    color: #666; 
    background: #ececec; 
  }

  .steps >li.step.active {
    color: #fff !important; 
    background: #85d5f9 !important;
  }

  .steps li > span:after,
  .steps li > span:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    position: absolute;
    top: 0;
    left: 0;
    border: solid transparent;
    border-left-color: #f0f0f0;
    border-width: 30px;
  }

  .steps li > span:after {
    top: -5px;
    z-index: 1;
    border-left-color: white;
    border-width: 34px;
  }

  .steps li > span:before { z-index: 2; }

  .steps li.step + li > span:before { border-left-color: #ececec; }
  .steps li.step.active + li > span:before { border-left-color: #85d5f9 !important;; }

  .steps li:first-child > span:after,
  .steps li:first-child > span:before { display: none; }

  /* Arrows at start and end */
  .steps li:first-child i,
  .steps li:last-child i {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: solid transparent;
    border-left-color: white;
    border-width: 30px;
  }

  .steps li:last-child i {
    left: auto;
    right: -30px;
    border-left-color: transparent;
    border-top-color: white;
    border-bottom-color: white;
  }
}

/* Input Loader */

.inputLoader-icon {
  position: absolute;
  right: 10px;
  z-index: 10;
  font-size: 18px;
  top: 9px;
  opacity: 0.8;
  animation-name: spin;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}