.select {
	position: relative;
	z-index: 1;
	display: inline-block;
  //margin: 80px 0 0 200px;
}

select::-ms-expand {
    display: none;
}

.select__field {
	position: relative;
	display: block;
	padding: 0.7em;
	//border: none !important;
  border-color: #A085D0;
	border-radius: 7px;
	background: #f4f2f9;
	color: #aaa;
  height: 50px;
  font-size: 18px;
	-webkit-appearance: none; /* for box shadows to show on iOS */
	-khtml-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
  appearance: none;
  
  min-width: 120px;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url("../../../../../../almacen/estructura/imagenes/FlechaSelect-12px.png"); 
}

.select__field:focus {
	outline: none;
}

.select__label {
	display: inline-block;
	width: 40%;
	color: #6a7989;
	font-weight: bold;
  font-size: 70.25%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.select__label-content {
	position: relative;
	display: block;
	padding-left: 8px;
  padding-top:
	width: 100%;
  font-family: Nunito;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.5;
  color: rgba(91, 41, 174, 0.38);
}

/* Hoshi */
.select--hoshi {
  overflow: hidden;
  height: 52px;
}

.select__field--hoshi {
  //margin-top: 0.85em;
	//padding: 0.85em 0.15em;
	width: 100%;
	//background: transparent;
	color: #595F6E;
  //padding-left: 25px;
  padding-left: 8px;
  top: 0px;
  height: 52px;
}

.select__label--hoshi {
	position: absolute;
  top: 0;
	left: 0;
	width: 100%;
	//height: 98%;
  height: 50px;
	text-align: left;
	pointer-events: none;
}

.select__label-content--hoshi {
	position: absolute;
  padding-left: 8px;
  padding-top: 12px;
}

.select__label--hoshi::before,
.select__label--hoshi::after {
   content: '';
    position: absolute;
    top: 0;
    width: 97%;
    height: calc(100% - 0px);
    //border-bottom: 2px solid #B9C1CA;
}

.select__label--hoshi::after {
	//border-bottom: 1px solid red;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.select__label--hoshi-color-1::after {
	border-color: #9e8ac8; /* hsl(200, 100%, 50%); */
}

.select__field--hoshi:focus + .select__label--hoshi::after,
.select--filled + .select__label--hoshi::after {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
        padding-top: 25px;
}

.select__field--hoshi:focus + .select__label--hoshi .select__label-content--hoshi,
.select--filled + .select__label--hoshi .select__label-content--hoshi {
	-webkit-animation: anim-1 0.3s forwards;
	animation: anim-1 0.3s forwards;
        padding-top: 25px;
}


/* Codigo modificado para aplicar el efecto cuando aparezca el label de validacion del campo */
  .select__field--hoshi:focus 
  + 
  .error +
  .select__label--hoshi 
  .select__label-content--hoshi 

  ,
  .select--filled + .error + .select__label--hoshi .select__label-content--hoshi 
   {
    -webkit-animation: anim-1 0.3s forwards;
    animation: anim-1 0.3s forwards;
          padding-top: 25px;
  }

  @media screen and (min-width:0\0) { 
  .select__field--hoshi:focus + .select__label--hoshi .select__label-content--hoshi, .select--filled + .select__label--hoshi .select__label-content--hoshi
       {
        -webkit-animation: anim-1 0.3s forwards;
        animation: anim-1 0.3s forwards;
             padding-top: 0px;
      }
  }

@-webkit-keyframes anim-1 {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(1em, 0, 0);
		transform: translate3d(1em, 0, 0);
	}
	51% {
		opacity: 0;
		-webkit-transform: translate3d(-1em, -55%, 0);
		transform: translate3d(-1em, -55%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, -55%, 0);
		transform: translate3d(0, -55%, 0);
	}
}