/*======== BODY */
body{
    background-color: #EEF3FD;
    font-size: 1rem;
}

/*======== SQUARE EVERYTHING 
* {
    border-radius: 0 !important;
  }

*/

/*======== BRANDING  */
.brand-header{
    color: #5D87FF;
    font-weight: 300;
    font-family:  "Roboto",  sans-serif;
}

/*======== SIDEBAR */
.navbar, .app-header{
    background-color: #EEF3FD;
}

/*======== SIDEBAR */
.left-sidebar{
    /*background-color: #EEF3FD;*/
    border-right: 1;
    background-color: #FFFFFF;
}


/*======== CARDS */
.card{
    border-width:0px;
    border-radius: 0;     
}

.card-border{
    border-width:1px; 
}

.card-body{
    border-top: 0px !important;
}

/*-- Make Card Headers Overrides */
.card-header{
    border-bottom: 0px !important;
    font-weight: bold;  
    /* background-color: #EEF3FD; */
    /* background-color: #EBF1F6; */
    background-color: #F6F9FC;
}

/*-- Custom Light Cards */
.card-custom-light{
    border-width: 0px; 
    border-color: #F1F2F3; 
}

/*-- Custom Light Cards */
.card-trial{
    /*background-color: #FFAE1F;*/
    background-color: #ECF2FF;
}

/*-- Custom Card Selected */
.custom-card-selected{
    border: 1px solid #5D87FF;
}


/*======== FORMS */
/*-- Remove Bold From Form Lables */
.col-form-label{
    font-weight: normal;
}

/*-- Checkbox Label 
.form-check-label{
    font-weight: normal;
    color: #2A3547;
} */

/*-- Checkbox White Background  */
input[type="checkbox"]:not(:checked):not(:disabled),
input[type="radio"]:not(:checked):not(:disabled) {
  background: white;
}

/*-- Mark Required */
.mark-required{
    color: red;
}


/*======== BORDERS */
.border-warning{
    border-color: #D9941A;
    border: 1px;
}

/*======== TABLES */
td{
    vertical-align: middle;
    border: 0px;
}
th{
    white-space: nowrap;
}
.table-striped-custom > tbody > tr:nth-child(2n+1) > td, .table-striped-custom > tbody > tr:nth-child(2n+1) > th {
    background-color: #F6F9FC;
}
.table-hover-custom tbody tr:hover td, .table-hover-custom tbody tr:hover th {
    background-color: #EEF3FF;  
}
.table-row-selected {
    /*background-color: #FFF2CC !important;*/
    color: #5D87FF;
}
.table-custom-fixedrowheight {
    line-height: 38px;
}
.table-nowrap{
    white-space: nowrap;
}
.productdb-leadrow{
    vertical-align: middle;
    border-top: 1px solid #DFE5EF;
}

/*======== BUTTONS */
.btn-search{
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    height: 39px;
}
.btn-search-sm{
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    border-top: 1px solid #DFE5EF;
    border-right: 1px solid #DFE5EF;
    border-bottom: 1px solid #DFE5EF;    
    border-left: 0px solid #DFE5EF; 
}

/*======== HEADINGS */
.custom-subheader{
    color: #7D7D7D;
}

/*======== ALERTS */
.custom-alert-note{
    background-color: #FFF2CC;
    margin: 0px;
    padding: 10px;
}

.custom-alert-info{
    border-color: #49BEFF;
    background-color:rgba(73, 190, 255, 0.10);
    margin: 0px;
    padding: 8px;
    border: none;
}

/*======== CONTAINERS */
.container-wide{
    min-width: 95%;
}

/*======== TEXT */
.text-black-form{
    color: #2A3547;
}
.text-mri-blue{
    color: #5D87FF;
}

/*======== BS5 LIGHTBOX */
.lightbox-carousel.carousel {
    padding: 10px;
    border-radius: 15px;
    background: #FFFFFF;;
}

/*======== STYLE EFFECTS - SHIMMER */
.shimmer {
    display: inline-block;
    color: #2A3547;
    
    background: #000000 -webkit-gradient(linear, 100% 0, 0 0, from(#000000), color-stop(0.5, #FFFFFF), to(#000000));
    
    background-position: -4rem top; /*50px*/
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-name: shimmer;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-iteration-count: 2; /*infinite*/
    -webkit-background-size: 4rem 100%; /*50px*/   
}
 
.shimmer-primary {
    display: inline-block;
    color: #FFFFFF;
    
    background: #FFFFFF -webkit-gradient(linear, 100% 0, 0 0, from(#FFFFFF), color-stop(0.5, #D8D7DC), to(#FFFFFF));
    
    background-position: -4rem top; /*50px*/
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-name: shimmer;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-iteration-count: 2; /*infinite*/
    -webkit-background-size: 4rem 100%; /*50px*/   
}
 
@-webkit-keyframes shimmer {
    0% {
        background-position: -4rem top; /*50px*/
    }

    70% {
        background-position: 12.5rem top; /*200px*/
    }

    100% {
        background-position: 12.5rem top; /*200px*/
    }
} 

/*======== STYLE EFFECTS - WIGGLE */
@keyframes wiggle {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(5deg); }
   95% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.badge.wiggle {
  display: inline-block;
  animation: wiggle 2.5s infinite;
}

/*======== STYLE EFFECTS - PULSE */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.btn-pulse {
    animation: pulse 2s 3;
}


/*======== ACCORDIAN */
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: inherit;
  }

button.accordion-button:focus{
    box-shadow: inherit;
}
