﻿/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #f00;
    display: block;
    margin-top: 8px;
    text-align: center;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 0px solid #f00;
    background-color: #5db8f3;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}


/* jQuery mobile styles
-----------------------------------------------------------*/

/* Make listview buttons fill the whole horizontal width of the screen */
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li {
    padding-right: 15px;
}

.ui-bar-a, .ui-body-a, .ui-btn-up-a, .ui-btn-hover-a, .ui-btn-down-a,
.ui-bar-b, .ui-body-b, .ui-btn-up-b, .ui-btn-hover-b, .ui-btn-down-b,
.ui-bar-c, .ui-body-c, .ui-btn-up-c, .ui-btn-hover-c, .ui-btn-down-c,
.ui-bar-d, .ui-body-d, .ui-btn-up-d, .ui-btn-hover-d, .ui-btn-down-d,
.ui-bar-e, .ui-body-e, .ui-btn-up-e, .ui-btn-hover-e, .ui-btn-down-e,
.ui-btn-active  {
    text-shadow: none;
}


@media print{
   .noprint{
       display:none;
   }
   body{
       background-color:white;
       zoom: 60%;
   }
}

.ui-listview>li>a.ui-btn {background-color: white; color: black; text-shadow:none}


/* to prevent dropdown from creating a dialog */

.ui-selectmenu{ max-height: 80vh; }


select {
    text-align-last: center !important;
}

select > option {
    background-color:white;
    color:black;
}

.dropdown-menu .dropdown-header {
    color: #868e96;
}

.white {
    color: #fff !important;
}

.tm {
    margin-top: 10px !important;
}

ui-dialog-titlebar {
    background-color: springgreen !important;
}

.info > p {
    margin-bottom: 0.5rem !important;
}

.size-4 {
    font-size: 1.25rem !important;
}

.form-control {
    font-size: 1.25rem;
}

.btn {
    font-weight:600 !important;
}


.btn-primary {
    background-image: linear-gradient(#1984ea, #007dd0 60%, #007dd0) !important;
}

.btn-success {
    background-image: linear-gradient(#73a839, #55964c 60%, #55964c) !important;
}

.btn-admin-portal {
    color: white !important;
    background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(5,4,75,1) 22%, rgba(8,7,103,1) 38%, rgba(9,9,121,1) 48%, rgba(5,103,183,1) 56%, rgba(5,111,188,1) 66%, rgba(3,146,211,1) 83%, rgba(2,158,219,1) 86%, rgba(1,185,237,1) 93%, rgba(0,212,255,1) 100%);
}

.btn-employee-portal {
    color: white !important;
    background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(5,49,43,1) 15%, rgba(5,57,44,1) 20%, rgba(6,73,47,1) 30%, rgba(9,121,54,1) 40%, rgba(24,150,42,1) 60%, rgba(35,172,33,1) 70%, rgba(42,185,28,1) 85%, rgba(65,231,37,1) 100%);
}

    .btn-green {
    color: white !important;
    background-color: #48b41d !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #007dd0 !important;
}

body {
    color: #212529 !important;
    background-color: #e6e6e6 !important;
}


#loader {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 255, 255, 255, .8 ) url('/Content/images/ajax-loader.gif') 50% 50% no-repeat;
}

#loader.loading {
    display: block;
}

#footer {

    width: 100%;
    left: 0;
    color: black;
}

.btn-box {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0.5rem !important;
    height: 160px !important;
    display: inline-block;
    width: 120px !important;
}


.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 6.39rem;
    /*    height: calc(2.5em + 1rem + 3px);*/
    /*    height: calc(1.5em + 0.75rem + 2px);*/
    margin-bottom: 0;
    border-style: dashed;
    border-width: 3px;
    border-radius: 0.25rem;
    border-color: #868e96;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 6rem;
/*    height: calc(2.5em + 1rem + 3px);*/
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #a1d6f4;
    box-shadow: 0 0 0 0.2rem rgba(47, 164, 231, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
}


.custom-file-label {
    position: absolute;
    vertical-align: middle;
    text-align: center;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 6rem;
    /*    height: calc(2.5em + 1rem + 3px);*/
    /*    height: calc(1.5em + 0.75rem + 2px);*/
    padding: 1.5rem 0.75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 2.5;
    color: #495057;
    background-color: #e9ecef;
    /*    background-color: #fff;*/
/*    border: 1px solid #ced4da;
    border-radius: 0.25rem;*/
    border: none;
}

    .custom-file-label::after {
        margin-right:1px;
        padding: 1.5rem;
        position: absolute;
        vertical-align: middle;
        text-align: center;
        font-weight: bold;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: block;
        height: 6rem;
        /*        height: calc(2.5em + 1rem + 3px);*/
        /*        height: calc(1.5em + 0.75rem);*/
        /*        padding: 0.375rem 0.75rem;*/
        line-height: 2.5;
        color: #fff;
        /*color: #495057;*/
        content: "Browse";
        background-color: #007dd0;
        /*background-color: #e9ecef;*/
/*        border-left: inherit;
        border-radius: 0 0.25rem 0.25rem 0;*/
    }

.custom-file--over {
    border-style: dashed;
    border-color: #007dd0;
    border-width: 3px;
    border-radius: 0.25rem;
}

/*Making radio buttons larger than default*/
input[type="radio"] {
    border: 0px;
    width: 100%;
    height: 2em;
    transform: scale(.7) !important;
    box-sizing: border-box;
    padding: 0;
}


.custom-dropdown {
    background-color: #1984ea;
    color: white;
    text-align: center;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px; 
}

.custom-dropdown-2 {
    background-color: #dddddd;
    color: black;
    text-align: center;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
}





.small-text {
    font-size: 1rem; /* Adjust the size as needed */
}

.padBottom {
    padding-bottom: 3px; /* for padding above textbox */
}
/*#region Scrollbar*/
::-webkit-scrollbar {
    width: 30px;
    height: 30px;
}

::-webkit-scrollbar-track {
    background-color: darkgray;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 20px;
    border: 5px solid transparent;
    background-clip: content-box;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: black;
    }
/*#endregion*/
