.form-control-l-s select,input {
    width: 50px;
    height: 30px;
    font-size:small;
}
.form-control-l-m select, input {
    width: 150px;
    height: 30px;
    font-size: small;
}
.form-control-l-l select, input {
    width: 250px;
    height: 30px;
    font-size: small;
}
.form-control-l-xl select, input {
    width: 400px;
    height: 30px;
    font-size: small;
}
.form-control-l-xxl {
    width: 600px;
    height: 30px;
    font-size: small;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
