:root {
    --outline-color: rgb(85, 84, 84);
    /* --main-color: #164485; */
    --main-color: #164485;
    /* --main-color: var(--primary); */
}

/* 
@font-face {
    font-family: "Roboto";
    src: url("/fonts/Roboto-Light.eot");
    src: url("/fonts/Roboto-Light.ttf");
    src: url("Roboto-Light.woff2");
    src: url("/fonts/Roboto-Thin.eot");
    src: url("/fonts/Roboto-Thin.ttf");
    src: url("/fonts/Roboto-Thin.woff");
    src: url("/fonts/Roboto-Light.eot?#iefix") format('embedded-opentype');
    font-weight: 900;
    font-style: normal;
} */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    /* font-family: 'Roboto'; */
    font-size: 14px;
}

*:focus {
    outline: none;
}

/* .forms {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
} */

.custom-form {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

label {
    font-size: 13px;
    margin: 0 !important;
}

input,
textarea {
    /* width: 100%; */
    border-radius: 2px;
    text-align: left;
    padding-left: 5px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--outline-color);
}

select {
    width: 100%;
    border-radius: 2px;
    border: 0;
    border-bottom: 1px solid var(--outline-color);
    text-align: left;
}

.custom-label {
    padding-top: 10px;
}

.autoHeight {
    height: auto !important;
}

.dateControl {
    position: relative;
}

.dateControl-label {
    position: absolute;
    top: 7px;
    left: 2rem;
    opacity: 1;
    background-color: #FFF;
    width: 55%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
}

.file-link {
    text-align: left;
    color: #007bff !important;
    cursor: pointer;
}

.file-link:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}

.disabled {
    background-color: #e9ecef !important;
    opacity: 1;
}

.dateControl-button {
    position: absolute;
    top: 8px;
    right: 44px;
    font-size: 20px;
    background: white;
}

.file-control {
    width: 100%;
    /* border-radius: 2px; */
    border: 0;
    border-bottom: 1px solid var(--outline-color) !important;
    display: flex;
    align-items: center;
    padding-left: 5px;
    padding-right: 10px;
    justify-content: space-between;
}

.file-upload-icon {
    font-size: 20px;
}

.file-text {
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.formfieldset {
    border: 1px solid #dbdbdb;
    margin: 0.25rem;
    padding: 1rem;
}

.formlegend {
    padding-left: 5px;
    width: auto;
    font-weight: bold;
    margin-right: 5px;
}


.iformfieldset {
    border: 1px solid #dbdbdb;
    padding: 0px 0.5rem;
    width: 100%;
}

.iformlegend {
    padding-left: 5px;
    width: auto;
    font-size: 15px;
    font-weight: 600;
    margin-right: 5px;
}

.validation-sign {
    color: var(--red);
    font-size: 15px;
    font-weight: bold;
    margin-right: 5px;
}

.validation-error>*,
.validation-error>div>* {
    border-color: rgb(207, 87, 87) !important;
}

.backdrop {
    position: fixed;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgb(177 177 177 / 25%);
    z-index: 3;
}

.validationWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 10%;
    top: 85px;
    right: 5px;
    position: fixed;
    z-index: 10;
}

.validationErrors {
    width: 100%;
    background-color: rgb(255 225 225);
    color: rgb(145 82 82);
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 5px;
    border: 1px solid rgb(138, 1, 1);
    display: flex;
    flex-direction: column;
}

.validation-text-messsage {
    color: black;
    font-size: 13px;
    font-weight: bold;
}

.validation-list-messsage {
    padding-left: 3rem;
    margin-top: 1rem;
}

.validationErrors li {
    list-style-type: square;
    font-size: 12px;
}




.userImage {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid lightgray;
}

label.form-control {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

input[type="date"]::-webkit-clear-button {
    display: none;
}

input[type="date"]::-ms-clear {
    display: none;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}