.hideMe {
    -moz-animation: cssAnimation 0s ease-in 3s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 4s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 4s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 4s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    padding: 0 !important;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        padding: 0 !important;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        padding: 0 !important;
        visibility:hidden;
    }
}
.form-control:focus {
    background-color:#fff;
    border-color: #3e4248 !important;
    box-shadow:0 0 0 2px #495057 !important;
    color:#495057 !important;
    outline:0;
}
.select2-container {
    width: 100% !important;
    padding: 0;
}
