.svg-preloader {
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}
.input-group label {
    font-size: .875em;
    width: 100%;
    color: #071202;
}
.input-group.has-error input {
    border-color: #EE5C5C;
}
.input-group.has-error .input-group-text {
    border-color: #EE5C5C;
}
.input-group .help-block {
    width: 100%;
    margin-top: .05rem;
    font-size: .875em;
    color: #dc3545;
}
input:disabled {
    color: initial !important;
}
ul.pagination li.disabled {
    display: none;
}


/* custom checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-container input {
    display: none;
}
.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #071202;
}
.checkbox-container:hover input ~ .checkmark {
    background-color: #fff;
}
.checkbox-container input:checked ~ .checkmark {
    background-color: #fff;
}
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 9px;
    height: 12px;
    border: solid #0E0E0C;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}