.input-success input,
.input-success select {
    padding-right: 35px;
    border: 1px solid rgb(75,184,122) !important;
}

.input-success input:focus,
.input-success select:focus {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(75,184,122,.6) !important;
}

.input-success::after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 0;
    right: 7px;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    content: "\f00c";
    color: rgb(75,184,122);
    font-size: 1.7rem;
} 

.input-danger input,
.input-danger select {
    border-color: #ee3b4c !important;
    animation: shake 1s both ease-out;
}

.input-danger input:focus,
.input-danger select:focus {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(238,76,76,.6) !important;
}

.input-danger::after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 0;
    right: 7px;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    content: "\f00d";
    color: #ee3b4c;
    font-size: 1.7rem;
} 

.input-noSymbol::after {
    content: '';
}

.noTransform {
    /* transform: translateX(0) translateY(0) !important; */
    position: relative;
}
.noTransform::after {
    transform: none !important;
}