/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 4 Eyl 2023, 15:57:59
    Author     : MeasyTech
*/
:root {
    --bs-body-color: #000;
}


.flex-center{
    display: flex;
    justify-content: center;
    align-items: center
}

/*Logo size*/
.login-logo-size{
    width:auto;
    height: 125px;
}

.header-logo-size{
    width:200px;
    height: auto;
}
/*end Logo size*/

/*preloader*/
.rotate {
    animation: rotation 2s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
/*end preloader*/

/*Form label*/
.profile-form .form-label{
    color: #321F69;
    font-weight: 500;
}
/*end Form label*/
/*Form card title*/
.profile-card .card-header .title {
    position: relative;
    margin-bottom: 0;
    color: #321F69;
    font-size: 1.25rem;
    font-weight: 600;
}
/*end Form card title*/


/*Select2 remove*/

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    background: var(--primary);
    color: white !important ;
    padding: 1px 5px;
}
/*end Select2 remove*/


.pull-right{
    float: right
}

.dt-button{
    background: var(--primary) !important;
    color: #fff !important;
    border: 1px solid #dee2e6 !important;
}

#neonShadow{
    border:none;
    border-radius:50px;
    transition:0.5s;
    background-color:rgba(156, 161, 160,0.3);
    animation: glow 1s infinite ;
    transition:10s;
}



@keyframes glow{
    0%{
        box-shadow: 3px 3px 20px rgb(105,100,247),-3px -3px 20px rgb(105,100,247);
    }
    25%{
        box-shadow: 3px 3px 20px rgb(105,100,247),-3px -3px 20px rgb(105,100,247);
    }
}

.autocomplete-suggestions{
    background: var(--primary);
    color: #fff;
}
.autocomplete-suggestions div{
    padding: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.disabled{
    pointer-events: none;
    cursor:none
}

.barcode-image{
    width: auto;
    height: 150px;
}
.md-w-50vw{
    width: 50vw !important;
}
   @media (max-width: 768px) {
    .md-w-50vw{
    width: 100vw !important;
}   
   }