:root {
    --mainColor: #1a3668;
    --bgColorStartGradient: #1a3668;
    --bgColorEndGradient: #7891dc;
    --h4StepColor: #990000;
    --h4StepBGColor: lightgray;
    --selectedRow: #1cc88a;
    --messageError: red;
    --formFieldsColor: #1E1E1E;

    
}

/* COLOR OF BACKGROUND IN MENU */
.bg-gradient-primary {
    background-color: var(--bgColorStartGradient);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(10%,var(--bgColorStartGradient)),to(var(--bgColorEndGradient))) !important;
    background-image: linear-gradient(180deg,var(--bgColorStartGradient) 10%, var(--bgColorEndGradient) 100%) !important;
    background-size: cover
}

/* ************************************ MENU RELATED START ****************************************************** */
.menu_new_label {
    top: -10px;
    right: -10px;
    padding: 5px 10px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-weight: bold;
}

/* ************************************ MENU RELATED END ****************************************************** */

/*footer.sticky-footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 1.5rem 0 !important;
}*/

/*****************************************************************************************************************/
.modal-title {
    color: var(--mainColor);
}

h4.modal-title {
    padding-top: 0.5rem !important;
    font-size: 17px !important;
    font-weight: bold !important;
}

.modal-header {
    padding-top: 0.1rem !important;
}

.modal-logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.1rem;
    border: 0px ;
    padding-left: 15px;
    padding-top: 15px;
}

.modal-title, .modal-header, .modal-body {
    padding-bottom: .3rem !important;
}

/*****************************************************************************************************************/
h4.step {
    display: block;
    color: var(--h4StepColor) !important;
    background-color: var(--h4StepBGColor) !important;
    padding: 10px !important;
    margin-top: 20px !important;
    border: 1px solid var(--h4StepBGColor);
    border-radius: .4rem !important;
    font-size: 18px !important;
    font-weight: bold;
}

h4.stepSmall {
    display: block;
    color: var(--h4StepColor) !important;
    background-color: var(--h4StepBGColor) !important;
    padding: 10px !important;
    margin-top: 20px !important;
    border: 1px solid var(--h4StepBGColor);
    border-radius: .4rem !important;
    font-size: 15px !important;
    font-weight: bold;
}

h5.breadcrumbs {
    display: block;
    color: var(--h4StepColor) !important;
    padding: 10px !important;
    font-size: 14px !important;
    font-weight: bold;
    font-style: italic;
}

button.rounded-controls {
    font-weight: bold !important;
    border-radius: .4rem !important;
}

.rounded-controls {
    width: 100%;
    padding: 5px;
    font-size: .9rem;

    /* border-radius: 1rem;*/
}


input.rounded-controls, select.rounded-controls, label.customFormControl, date.rounded-controls {
    color: var(--formFieldsColor);
}

.customFormControl {
    font-size: .9rem;
}


.control-error-check {
    border-color: var(--red) !important;
}

#noAccessFormName {
    color: red !important;
    margin-bottom: 15px !important;
}

.navbar {
    margin-bottom: 20px;
}

.form-group-row-actions {
    margin-bottom: 1rem !important;
}


.notes-header {
    font-size: 17px !important;
    font-weight: bold;
}

.notes-body {

}

/******************************************************/

.hasAssets {
    color: red !important;
    font-weight: bold;
}

.selectedRow {
    background-color: var(--selectedRow) !important;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

.selectedRowToDelete {
    background-color: #e61010 !important;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}



.lblClass  {
    font-size: 13px !important;
    color: #000000 !important;
}

.custom-checkbox {
    top: 30px !important;
    left: 0px !important;
}

div.specialCheckbox {
    top: auto !important;  
    text-align: left !important;  
}

input[type=checkbox]:not(.defaultCheckbox) {
    display: inline-block !important;
    width: 13px;
    height: 13px;
    padding: 0;
    margin:0 5px 0 0;
    vertical-align: middle;
    position: relative;
    *overflow: hidden;
}

input[type=checkbox].defaultCheckbox {
    margin: 0 auto;
    display: block;
}


.btn-grey {
    color: #ffffff;
    background-color: #4b5d67;
    border-color: #475861;
}

.btn-info {
    background-image: -webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);
    background-image: -o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));
    background-image: linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #28a4c9;
}

.btn-sm {
    padding: 0px !important;
}

.bannedUntil, .require {
    font-weight: bold !important;
    color: var(--messageError);
}


/**************************CSS ABOUT OVERLAY - START****************************/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#overlay-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

    .dot:nth-child(1) {
        animation-delay: 0s;
    }

    .dot:nth-child(2) {
        animation-delay: 0.5s;
    }

    .dot:nth-child(3) {
        animation-delay: 1s;
    }

@keyframes dot-pulse {
    0% {
        background-color: rgba(255, 255, 255, 1);
        transform: scale(1);
    }

    50% {
        background-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.2);
    }

    100% {
        background-color: rgba(255, 255, 255, 1);
        transform: scale(1);
    }
}


#overlay-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    text-align: center;
}

/**************************CSS ABOUT OVERLAY - END****************************/

/**************************CSS ABOUT OVERLAY - START****************************/

#overlaySessionDialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

#sessionDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 2;
    padding: 20px;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #sessionDialog h2 {
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }


#refreshPageButton {
    margin: auto;
}

.logo {
    width: 50px; /* adjust the width as needed */
    height: 50px; /* adjust the height as needed */
    margin-right: 10px; /* add some space between the image and the h2 tag */
}

/********************************************** MOBILE SETTINGS *********************************/

/**************************** TEMPLATE PAGE ********************************/

.gridTemplateLabel {
    font-size: 10px !important;
}

.clAssetImportant {
    font-weight: bold !important;
}

.errorMessageTemplate {
    font-style: italic;
}

.errorMessageIcon {
    color: red !important;
    vertical-align: middle !important;
}

.successIcon {
    color: green !important;
    vertical-align: middle !important;
}

.notSelectedRowLabel {
    color: red !important;
}

.selectedRowLabel {
    color: green !important;
}

.smallActionButtons {
    padding: 10px !important;
    border-radius: .4rem !important;
    border-width: 0px !important;
}

.buttonFaIcon {
    font-size: 16px !important;
    font-weight: bold !important;
    color: white !important;
}

.bannerToShowHideGrid {
    background-color: #66183F;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    cursor: move;
    margin-bottom: 10px;
}

/********************************************* GRID *******************************************/

.k-grid-header .k-header {
    font-weight: bold !important;
    text-align: center;
}

.progressBarClass {
    font-size: 15px !important;
    font-weight: bold;
    vertical-align: middle !important;
    color: var(--h4StepColor);
}

.adjustIcon {
   
}

.smallDate {
    font-size: 12px !important;
}

.recordsFound {
    font-size: 15px !important;
    font-weight: bold !important;
    color: var(--h4StepColor);
}

span.formLabel {
    font-size: 13px !important;
}

.importantDataLabel {
    font-size: 14px !important;
    font-weight: bold !important;
    color: var(--h4StepColor);
}

input.validResult {
    border-color: green !important;
    border-width: 2px !important;
}

input.invalidResult {
    border-color: red !important;
    border-width: 2px !important;
}