/**
 * Copyright (c) 2020, Consultation Kevork Aghazarian
 * All rights reserved.
 */
html, body
{
    font: 15px 'ralewayregular', Arial, sans-serif;
    line-height: 1.5;
}

div.table
{
    display: table;
    width: 100%;
    border-collapse: collapse;
}

div.tr
{
    display: table-row;
}

div.thead
{
    display: table-row;
    font-weight: bold;
}

div.td
{
    display: table-cell;
    padding: 2px 0;
}

div.td_align_right
{
    text-align: right;
}


div.td_align_center
{
    text-align: center;
}

div.td_valign_middle
{
    vertical-align: middle;
}

div.td_style_1
{
    border:1px solid #000;
    padding: 5px;
}

div.col
{
    display: table-cell;
}

div.col_auto
{
    width: auto;
}

div.col_25
{
    width: 25%;
}

div.col_10
{
    width: 10%;
}

div.col_15
{
    width: 15%;
}

div.col_30
{
    width: 30%;
}

div.col_70
{
    width: 70%;
}

div.col_35
{
    width: 35%;
}

div.col_45
{
    width: 45%;
}

div.col_5
{
    width: 5%;
}

div.col_20
{
    width: 20%;
}

div.col_80
{
    width: 80%;
}

div.col_33
{
    width: 33.33%;
}

div.col_50
{
    width: 50%;
}

div.col_75
{
    width: 75%;
}

div.table_600
{
    width: 600px;
}
div.table_800
{
    width: 800px;
}

.form_error
{
    border:red 1px solid;
    background-color: yellow;
    color: #A40122;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    font-size: 17px;
}

.form_success
{
    border:green 1px solid;
    background-color: lightgreen;
    color: #000;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
}

#adminLoginForm
{
    width: 305px;
    margin: 100px auto;
    -webkit-box-shadow: -1px 2px 21px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 2px 21px 3px rgba(0,0,0,0.75);
    box-shadow: -1px 2px 21px 3px rgba(0,0,0,0.75);
    padding:10px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 0px solid #000000;
}

footer
{
    text-align: center;
    padding: 20px;
    font-size:12px;
}

.admin_menu_ul
{
    list-style-type: none;
    margin: 10px 0;
    padding: 0 0 10px;
    border-bottom: 1px solid lightgrey;
}

.admin_menu_ul li
{
    list-style-type: none;
    display: inline;
    margin: 0 10px;
}

.standard_input
{
    width: 295px;
    height: 25px;
    margin: 2px 0;
}

.standard_textarea
{
    width: 295px;
    height: 100px;
    margin: 2px 0;
}

#adminAddUserForm
{
    width: 700px;
}

#adminPaginationPages
{
    text-align: center;
    padding: 5px;
}

#adminPaginationCurrentPage
{
    font-weight:  bold;
}

.admin_pagination_page
{
    margin:0 5px;
}

#adminSearchBar
{
    text-align: center;
}

#goodSessionAlerts
{
    border:green 1px solid;
    background-color: lightgreen;
    color: #000;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 0px solid #000000;
}

#badSessionAlerts
{
    border:red 1px solid;
    background-color: yellow;
    color: #A40122;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 0px solid #000000;
}

.blue_link
{
    text-decoration: none;
    color: dodgerblue;
    white-space:nowrap;
}

.blue_link:hover, .blue_link:active
{
    color:deepskyblue;
    font-weight: bold;
}

.white_link
{
    color: white;
}

.white_link:hover, .white_link:active
{
    color:whitesmoke;
    font-weight: bold;
}

.red_link
{
    color: red;
    text-decoration: none;
    white-space:nowrap;
}

.red_link:hover, .red_link:active
{
    color: indianred;
    font-weight: bold;
}

.blue_submit
{
    box-shadow:inset 0px 1px 0px 0px #54a3f7;
    background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
    background-color:#007dc1;
    border-radius:3px;
    border:1px solid #124d77;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    padding:8px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #154682;
}

a.blue_submit
{
    padding:6px 24px;
}

input.blue_submit,button.blue_submit
{
    padding:8px 24px;
}

.blue_submit:hover
{
    background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
    background-color:#0061a7;
}

.blue_submit:active
{
    position:relative;
    top:1px;
}
.red_submit
{
    box-shadow:inset 0px 1px 0px 0px #f55656;
    background:linear-gradient(to bottom, #A40122 5%, #a60000 100%);
    background-color:#A40122;
    border-radius:3px;
    border:1px solid #751313;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    text-decoration:none;
    text-shadow:0px 1px 0px #801616;
}

a.red_submit
{
    padding:6px 24px;
}

input.red_submit,button.red_submit
{
    padding:8px 24px;
}

.red_submit:hover
{
    background:linear-gradient(to bottom, #A40122 5%, #bf0000 100%);
    background-color:#A40122;
}

.red_submit:active
{
    position:relative;
    top:1px;
}

.green_submit
{
    box-shadow:inset 0px 1px 0px 0px #56f556;
    background:linear-gradient(to bottom, #0abf00 5%, #16a600 100%);
    background-color:#0abf00;
    border-radius:3px;
    border:1px solid #137513;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    padding:4px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #3d8016;
}

a.green_submit
{
    padding:6px 24px;
}

input.green_submit,button.green_submit
{
    padding:8px 24px;
}

.green_submit:hover
{
    background:linear-gradient(to bottom, #16a600 5%, #0abf00 100%);
    background-color:#16a600;
}

.green_submit:active
{
    position:relative;
    top:1px;
}

.admin_pagination_option
{
    margin:0 0 0 10px;
    float: right;
}

.clear
{
    clear: both;
    height:1px;
}

.float_left
{
    float: left;
}

.float_right
{
    float:right;
}

.underline
{
    text-decoration: underline;
}

.modal
{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.88);
    animation-duration: 0.35s;
    animation-fill-mode: both;
    animation-name: fadeIn;
    z-index: 9999999;
}

.modal_hidden_content_div
{
    display: none;
}

.modal_dialog
{
    position: relative;
    max-width: 800px;
    min-width: 300px;
    padding: 20px;
    margin: auto;
    border-radius: 4px;
    background-color: #fff;
}

.modal_close
{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    border: none;
    color: #ccc;
    background-color: transparent;
    background-image: none;
}

.modal_close:focus
{
    outline: 0;
}

.modal_header
{
    border-bottom: 1px solid #e2e2e2;
}

.modal_title
{
    margin: 0 0 15px;
}

.modal_content
{
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.modal_footer
{
    padding-top: 20px;
    border-top: 1px solid #e2e2e2;
    text-align: right;
}

.modal_fullscreen
{
    padding: 5px;
}

.modal_fullscreen .modal_dialog
{
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: 0;
}

.modal.is-modal-active
{
    display: flex;
}

.modal_button
{
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #333;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    background-color: transparent;
    transition: all .25s linear;
    margin-bottom: 10px;
    cursor: pointer;
}

.modal_button:hover
{
    background-color: rgba(0, 0, 0, 0.1);
}

.modal_button:focus,
.modal_button:active
{
    outline: 0;
}

@keyframes fadeIn
{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}