/* body {
  background-color: #03427f03;
}
 */

 /* .viewer-download::before {
  content: "Prueba";
} */


.error_dialog .ui-widget-header {
  /* rgb(180, 36, 36); */
  background: rgb(239, 191, 193);
}

.ui-widget-overlay {
  background: #AAA url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: .30;
  filter: Alpha(Opacity=30);
}

/* fin custom dialog */

/* .floating-label:disabled{
  color:red;
} */

.floating-label {
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
}

.floating-label-field {
  color: rgba(26, 25, 25, 0.84);
  border-width: 0;
  z-index: 2000;
}

.floating-label-field:focus {
  outline: 0;
  box-shadow: 0;
}

.floating-label-field::placeholder {
  color: rgba(44, 62, 80, .5);
}

.floating-label,
.floating-label-field {
  font-size: 16px;
  line-height: 1;
  display: block;
  width: 100%;
  padding-top: 27px;
  padding-left: 18px;
}

.floating-label-field,
.floating-label-wrap {
  position: relative;
  /* width: 230px; */
  width: 30%;
  /* padding: 10px 10px 10px 10px; */
  margin: 0px 10px 5px 10px;
}

.floating-label-field--s1 {
  transition: border-color .25s ease-in-out;
  color: rgba(26, 25, 25, 0.84);
  border-bottom: 1px solid rgb(212, 212, 212);
  background-color: transparent;
}

.floating-label-field--s1+.floating-label {
  transition: transform .25s, opacity .25s ease-in-out;
  transform-origin: 0 0;

  opacity: .6;
}

.floating-label-field--s1:focus,
.floating-label-field--s1:not(:placeholder-shown) {
  border-color: rgba(2, 59, 113, 0.41);
}

.floating-label-field--s1:focus+.floating-label,
.floating-label-field--s1:not(:placeholder-shown)+.floating-label {
  transform: translate(.25em, -30%) scale(.8);
  color: #023463;
  opacity: .9;
}

/* .floating-label-field--s1:focus+.floating-label:disabled, 
.floating-label-field--s1:not(:placeholder-shown)+.floating-label:disabled {
  transform: translate(.25em, -30%) scale(.8);
  color: #023463;
  opacity: .9;
} */

.floating-label-field--s1:valid:not(:placeholder-shown) {
  border-color: #02417dc7;
}

.floating-label-field--s1:invalid {
  border-color: rgba(255, 71, 87, .3);
}

.floating-label-field--s1:not(textarea) {
  max-height: 4em;
  width: 90%;
  z-index: auto;
}


input[type="text"]:disabled,
select:disabled {
  background: #f1f1f178;
}

input[type="text"]:disabled+label{
  transform: translate(.25em, -30%) scale(.8);
  color: #bcbcbc;
  opacity: .9;
}

.floating-select:disabled~label, .floating-select:not([value=""]):valid~label{
  top: -25px;
  font-size: 14px;
  color: #d2d2d2;
}

.floating-label-field--s1,
.floating-label-field--s1+.floating-label {
  padding: 1.5em 0em 1em 1em;
}

/* .floating-label-field--s1+.floating-label {
  z-index: 1500;
} */

.floating-label-field--s1::placeholder {
  color: transparent;
}

/* ***********************************************/

.floating-select {
  position: relative;
  font-size: 16px;
  height: 61px;
  display: block;
  width: 90%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  margin: 0px 61px 0px 11px;
  padding: 7px 2px 1px 11px;
}


.floating-select:focus {
  outline: none;
  border-bottom: 1px solid rgba(2, 59, 113, 0.41);
  ;
} 


.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
  top: -25px;
  font-size: 14px;
  color: #054572;
}

.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
  width: 50%;
}

.highlight {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  pointer-events: none;
  opacity: 0.5;
}

.floating-select:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #202020;
  -webkit-box-shadow: 0 0 0px 1000px #fcfcfd inset;
  transition: background-color 5000s ease-in-out 0s;
}


/****** TEXT AREA  ***/  

.floating-input {
  margin-top: 20px;
  padding: 3px 5px;
  display:block;
  width:90%;
  background-color: transparent;
  border:none;
  border-bottom: 1px solid #d4d4d4;
  z-index: auto;
}

.floating-input:focus  {
     outline: none;
     border-bottom: 1px solid rgba(2, 59, 113, 0.41); 
}

.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after{
  width:50%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
   min-height: 30px;
   max-height: 260px; 
   overflow:hidden;
  overflow-x: hidden; 
}

/***** FIN TEXT AREA  ****/

@-webkit-keyframes inputHighlighter {
  from {
    background: #d4d4d4;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #d4d4d4;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #d4d4d4;
  }

  to {
    width: 0;
    background: transparent;
  }
}

/* MODAL */
.modal2 {
  display: none; 
   /* display: flex; */
  position: fixed; 
  z-index: 1;
  /* padding-top: 100px; */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
 
}

.modal2-content2 {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  width: 350px;
}


@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.close2 {
  color: white;
  float: right;
  font-size: 22px;
  font-weight: bold;
}

.close2:hover,
.close2:focus {
  color: #e4e4e4;
  text-decoration: none;
  cursor: pointer;
}

.modal2-header2 {
  padding: 15px 15px;
  background-color: #0a0a0ae8;
  color: white;
  font-size: 19px;
}

.modal2-body2 {
  padding: 21px 15px;
  text-align: center;
  color: #231d20;
}

/* .modal2-footer2 {
  padding: 2px 16px;
  background-color: #ececec;
  color: white;
} */