﻿
/*بزرگ کردن یک آیتم با حرک ماوس*/
.select-uint-big:hover {
    transform: scale(1.5);
}

.card-items-header {
    background-color: rgb(217, 217, 217);
}

.border-card {
    border: 1px solid #6c757d;
}

.border-card-body-head {
    border-radius: 1rem;
}

.border-radiuse {
    border-radius: .75rem;
}

.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important
}

.border-card-radiuse {
    border-radius: 1rem 1rem 0 0;
}

.bg-items {
    background-color: rgba(179, 147, 210, 0.30);
}

.overflow-hiden {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* استایل های واحد تولید*/
/*قسمت فرم های ثبت*/
.border-form-engineer {
    border: 1px solid #FAEBD7;
    margin: .25rem 0 .25rem 0;
    padding: .25rem 0 .5rem 0;
    border-radius: .25rem .25rem .25rem .25rem;
}
/*ایجاد پالس*/
.live-icon {
/*    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e07979;*/
    animation: pulse 1000ms infinite;
}
@keyframes pulse{
    0%{
        box-shadow:#FF0000 0 0 0 0;
    }
    100% {
        box-shadow: #F0FF0000 0 0 0 16px;
    }
}

.live-icon-warning {
    /*    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e07979;*/
    animation: pulse-warning 1000ms infinite;
}

@keyframes pulse-warning {
    0% {
        box-shadow: #FFA500 0 0 0 0;
    }

    100% {
        box-shadow: #F0FFA500 0 0 0 16px;
    }
}