.hedearconimagen {
    margin: 10px;
    width: 100%;
    max-width:200px;
    height: auto;
}

/* Para resoluciones > xs */
@media (min-width: 600px) {
    .divERROR {
        width: 300px;
        height: 100px;
        background: rgba(255,255,255,0.85);;
        animation-name: errorframe;
        animation-duration: 5s;
        animation-fill-mode: forwards;
        position: absolute;
    }
}

/* Para resoluciones xs */
@media (max-width: 599px) {
    .divERROR {
        width: 300px;
        height: 100px;
        background: rgba(255,255,255,0.85);;
        animation-name: errorframe;
        animation-duration: 5s;
        animation-fill-mode: forwards;
        margin-left: calc(50% - 150px);
        margin-right: 50%;
        position: absolute;
    }
	
    .md-select-menu-container {
        width:95%;
    }
	
    md-select {
        display: grid !important;
    }
}

@keyframes errorframe {
    from {bottom: 0px;}
    to {bottom: 200px; opacity: 1;}
    0% {opacity: 1;}
    66% {opacity: 1;}
    100% {opacity: 0;}
}

/* CSS para los autocomplete */
.autocomplete-custom-template li {
    border-bottom: 1px solid #ccc!important;
    height: auto!important;
    padding-top: 8px!important;
    padding-bottom: 8px!important;
    white-space: normal!important;
}

.autocomplete-custom-template li:last-child {
    border-bottom-width: 0!important;
}

.autocomplete-custom-template .item-title {
    display: block!important;
    line-height: 2!important;
}