﻿
/***********************************************************************************/
/****Login                                                                      ****/
/***********************************************************************************/
.Login_row {
    display: flex;
    justify-content: center;
}

.Login_col-md-5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logon_main_Container {
    width: 575px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Login_FormContainer {
    width: 475px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Login_FormMargin {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.Login_Div_Rounded {
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -khtml-border-radius: 15px;
    border-radius: 15px;
    background: #fff;
    overflow-y: auto;
    box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.5);
}

.Login_Text {
    width: 300px;
}

.ForgotPassword_FormContainer {
    width: 440px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/***********************************************************************************/
/****Form Container                                                             ****/
/***********************************************************************************/
.FormContainer {
    margin-top: 10px;
    margin-bottom: 10px;
}

.FormMargin {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.Div_Rounded {
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -khtml-border-radius: 15px;
    border-radius: 15px;
    background: #fff;
    overflow-y: auto;
    box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.5);
    /*  background: #f6f5f3;
    border: 1px solid;*/
}
/***********************************************************************************/
/***** Table general                                                            ****/
/***********************************************************************************/
.table {
    background: #fff;
    overflow-y: auto;
    box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 5rem;
}

table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

    table thead th,
    table tbody td {
        padding: 6px;
        border: none;
        font-weight: 600;
        font-size: 14px;
    }

    table thead th {
        background: #1861ac;
        color: white;
        font-size: 16px;
        position: sticky;
        top: -1%;
    }

    table tbody td {
        /*
border-bottom: 1px solid rgba(0,0,0,0.1);
     */
    }

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.no-border {
    border: 0;
    border-width: 0;
    border-style: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
}
/***********************************************************************************/
/***  Dropdown                                                                   ***/
/***********************************************************************************/
select {
    -webkit-appearance: listbox !important;
}
/***********************************************************************************/
/*** checkbox-with-label                                                         ***/
/***********************************************************************************/
.custom-checkbox-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

    .custom-checkbox-label label {
        margin-bottom: 2px;
        font-size: 1.2em;
    }

#checkboxActive {
    transform: scale(1.5); /* increase the size of the checkbox */
    margin: 3px; /* add some margin to make it look better */
}

#checkboxInActive {
    transform: scale(1.5); /* increase the size of the checkbox */
    margin: 3px; /* add some margin to make it look better */
}
/***********************************************************************************/
/*** Spacers                                                                     ***/
/***********************************************************************************/
.td_Spacer {
    width: 30px;
}

.td_Head_Text_Spacer {
    width: 120px;
}

.td_Bold {
    font-weight: bold;
}
/***********************************************************************************/
/*** modal                                                                       ***/
/***********************************************************************************/
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.custom-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.custom-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .custom-close:hover,
    .custom-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
/***********************************************************************************/
/*** reset style                                                                 ***/
/***********************************************************************************/
#ResetCss {
    all: initial;
}

    #ResetCss * {
        all: unset
    }
