.input-group.error-group {
    border: 1px solid red;
    border-radius: 0px !important;
}

@keyframes loading-skeleton {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.loading-skeleton {
    pointer-events: none;
    animation: loading-skeleton 1s infinite alternate;
}

.loading-skeleton img {
    filter: grayscale(100%) contrast(0%) brightness(1.8);
}

.loading-skeleton h1,
.loading-skeleton h2,
.loading-skeleton h3,
.loading-skeleton h4,
.loading-skeleton h5,
.loading-skeleton h6,
.loading-skeleton p,
.loading-skeleton li,
.loading-skeleton .btn,
.loading-skeleton label,
.loading-skeleton span {
    color: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-color: #eee;
    border-color: #eee;
    opacity: 0.15;
}

.loading-skeleton h1::placeholder,
.loading-skeleton h2::placeholder,
.loading-skeleton h3::placeholder,
.loading-skeleton h4::placeholder,
.loading-skeleton h5::placeholder,
.loading-skeleton h6::placeholder,
.loading-skeleton p::placeholder,
.loading-skeleton li::placeholder,
.loading-skeleton .btn::placeholder,
.loading-skeleton label::placeholder,
.loading-skeleton span::placeholder {
    color: transparent;
}

.loading-skeleton .form-control {
    color: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-color: #eee;
    border-color: #eee;
}

.loading-skeleton .form-control::placeholder {
    color: transparent;
}


.ajaxLoader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background: #00000045;
    z-index: 99999;
}

.ajaxLoader .loader {
    z-index: 999999;
    height: 4vw;
    width: 4vw;
    border: 0.3vw solid #d7d7d7;
    border-radius: 50% !important;
    border-bottom-color: transparent !important;
    animation: rotate infinite 1s linear;
}

@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.ui-timepicker-wrapper {
    max-width: 250px;
    width: 100% !important;
}

.ui-timepicker-wrapper ul li:hover {
    background: #e05e0f;
    color: #fff;
}

li.ui-timepicker-selected {
    background: #e05e0f;
    color: #fff;
}