input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active{
    background-color: rgb(255, 255, 255) !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.mnr-textfield {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border: 1px solid #EEEEEE;
    padding: 3px 5px;
}
.mnr-textfield-rounded-circle {
    border-radius: 30px;
}
.mnr-textfield-rounded {
    border-radius: 5px;
}
.mnr-textfield-adornment {
    padding: .25rem .5rem;
    font-size: .875rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.25;
    color: #464a4c;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.mnr-textfield-adornment > i{
    color: #9E9E9E;
}
.mnr-textfield-adornment.mnr-textfield-loading,
.mnr-textfield-adornment.mnr-textfield-cancel-input{
    opacity: 0;
    transition: opacity 50ms linear;
}
.mnr-textfield-lg > .mnr-textfield-adornment,
.mnr-textfield-lg > .mnr-input{
    padding: .5rem .75rem;
    font-size: 1rem;
}
.mnr-textfield > .mnr-input {
    display: inline-block;
    position: relative;
    z-index: 2;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: none;
}
.mnr-input {
    display: block;
    width: 100%;
    color: #464a4c;
    background-color: #fff;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.25;
    outline: none;
    border: 1px solid #EEEEEE;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.mnr-input-rounded {
    border-radius: 5px;
}
.mnr-input-rounded-circle {
    border-radius: 30px;
}
.mnr-input:focus {
    box-shadow: none;
}
.mnr-input-sm {
    padding: .15rem .30rem;
    font-size: .8rem;
}
.mnr-input-lg {
    padding: .5rem .75rem;
    font-size: 1rem;
}

.hide-adornment {
    opacity: 0!important;
}
.show-adornment {
    opacity: 1!important;
}