body{
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    font: 0.8vw Arial;
}
/* ===== ID Styles ===== */
#wrapper_page{
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
#nav_top{
    position: fixed;
    height: 5%;
    width: 95%;
    left: 5%;
    display: table-cell;
    vertical-align: middle;
    align-items: center;
    padding-top: 0.2vh;
    padding-left: 1vw;
}
#nav_side{
    padding-top: 0.2vh;
    position: fixed;
    height: 100%;
    width: 5%;
}
#wrapper_content{
    position: fixed;
    top: 6%;
    left: 5%;
    height: 94%;
    width: 95%;

    max-height: 94%;
    overflow-y: auto;
}
#section_login{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;
    width: 30%;
    height: 30%;
    border-radius: 10px;
    border: 1px solid #3399ff;
    text-align: center;
}
#wrapper_popup{
    background: white;
    position: absolute;
    width: 30%;
    top: 50%;
    left: 50%;
    padding: 20px;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 15px;
    border: 1px solid black;
    display: block;

}
#wrapper_popup_internal{
    background: #c7ddef;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 15px;
    border: 1px solid black;
}

/* ===== Classes Styles ===== */
#vendor_list{
    width: 100%;
    max-height: 10vh;
    overflow-y: auto;
    visibility: hidden;
    width: 320%;
    display: block;
}

#vendor_list_table_row{
    visibility: hidden;
}

#hotel_list{
    width: 100%;
    max-height: 10vh;
    overflow-y: auto;
    visibility: hidden;
    width: 320%;
    display: block;
}

#hotel_list_table_row{
    visibility: hidden;
}

.section{
    padding: 5px 0px 5px 0px;
}
.wrapper_half{
    width: 100%;
    height: 10%;
    border: none;
    border-collapse: collapse;
}
.half_left{
    width: 50%;
    float: left;
    /*height: 10%;*/
    border: none;
    border-collapse: collapse;
}
.half_right{
    width: 50%;
    float: right;
    /*height: 10%;*/
    border: none;
    border-collapse: collapse;
}
.btn{
    text-decoration: none;
    display: inline-block;
    text-align: center;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    border: none;
    font-size: 0.8vw;
    padding: 0.5vh 0.5vw;
}
.btn_hid{
    width: 100%;
    height: 100%;
    font: 0.8vw Arial;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    background-color: #ffffff;
}
.btn_menu {
    border: none; /* Remove borders */
    color: white; /* Add a text color */
    padding: 1vh 1vw; /* Add some padding */
    cursor: pointer; /* Add a pointer cursor on mouse-over */
    font-size: 0.8vw;
    text-align: center;

}
.top_menu {background-color: #4CAF50;} /* Green */
.top_menu:hover {background-color: #46a049;}

/* ====== Colors ===== */
.cl_green{
    background-color: #3e8f3e;
    color: white;
}
.cl_green:hover{
    background-color: #006600;
}

.cl_blue{
    background-color: #3399ff;
    color: white;
}
.cl_orange{
    background-color: #FDA003;
    color: white;
}
.cl_orange:hover{
    background-color: darkorange;
}
.cl_red{
    background-color: #cd0a0a;
    color: white;
}
.cl_gray{
    background-color: #aaaaaa;
    color: white;
}
.cl_error{
    background-color: #FCDFFF;
    color: black;
}
.cl_success{
    background-color: #CCFB5D;
    color: black;
}
.cl_warn{
    background-color: #ffcc00;
    color: black;
}

/* ====== Text Align ===== */
.ta_ltf{
    text-align: left;
}
.ta_cnt{
    text-align: center;
}
.ta_rgt{
    text-align: right;
}

/* ====== Table Defaults ===== */
table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #3399ff;
}
.no_border{
    border-collapse: collapse;
    border: none;
}
tr{
    border-collapse: collapse;
    border: 1px solid #3399ff;
}
th{
    text-align: center;
    color: white;
    border-collapse: collapse;
    border: 1px solid #3399ff;
}
td{
    border-collapse: collapse;
    border: 1px solid #3399ff;
}

.td_input{
    width: 99%;
    height: 100%;
    border: none;
    border-collapse: collapse;
    display: inline-block;
    font-size: 0.8vw;
}
.rd_input{
    width: 100%;
    height: 100%;
    border: 1px solid black;
    /*border-radius: 3px;*/
    border-collapse: collapse;
    display: block;
    font-size: 0.8vw;
}

/* Hidden Details in Tables */
table tr.hid {
    display: none;
}
table tr.hidd {
    display: none;
}
table tr.hiddd {
    display: none;
}
table tr.show {
    display: block;
}
table tr.always_show{display: block;}
table tr td.always_show{display: block;}
table tr th.always_show{display: block;}


/* Proposal CSS */
.prop_label{
    display: inline-block;
    width: 30vw;
    margin-right: 5vw;
    text-align: right;
}
.prop_input{
    width: 60vw;
    margin: 0;
    display: inline-block;
}


/* Pages */
page {
    background: white;
    display: block;
    margin: 1% 1% 1% 1%;
    box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
    width: 29.7cm;
    height: 20cm; 
    font-size: 15px;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif; 
}

.tr_hover:hover td {
    background: #c7d4dd !important;
}

.tr_captured {
    background: seashell;
}


