
/*###########################################################################*/
/* general                                                                   */
/*###########################################################################*/

html, *
{
    margin: 0;
    padding: 0;
}

/*###########################################################################*/
/* header                                                                    */
/*###########################################################################*/

.header
{
    display: flex;
    justify-content: space-between;

    background-color: burlywood;
}

.header div
{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

/*###########################################################################*/
/* top menu                                                                  */
/*###########################################################################*/

.topmenu
{
    overflow: auto;
    background-color: antiquewhite;
}

.topmenu a
{
    float: left;
    text-align: center;
    padding: 14px 16px;
}

/*###########################################################################*/
/* side menu                                                                 */
/*###########################################################################*/

.sidemenu
{
    width: 200px;
    /* position: fixed; */
    float: left;
    height: 700px;
    overflow: auto;
    background: #eee;
}

.sidemenu a
{
    display: block;
}

/*###########################################################################*/
/* main part of the page                                                     */
/*###########################################################################*/

.main
{
    /* background-color: #fbeee6; */
}

table, td, th
{
    border: 1px solid black;
}
  
table
{
    border-collapse: collapse;
}

/*###########################################################################*/
/* footer                                                                    */
/*###########################################################################*/



/*###########################################################################*/
/* other ?                                                                   */
/*###########################################################################*/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 70%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    border-color: transparent;
    background-color: transparent;
}

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  form i {
    margin-left: -30px;
    cursor: pointer;
}
.icon {
    /* padding: 10px; */
    min-width: 40px;
}
  
.input-field {
    width: 100%;
    padding: 10px;
    text-align: center;
}
.input_height_width{
    height: 27px;
    width: 231px;
  }
  .color-red{
      color: red;
  }
  .color-green{
      color: green;
  }

.borderless td,tr,table {
    border: none !important;
    border-spacing:0 !important;
}
.input_row{
    display: flex;
    align-items: center;
}
.select_row{
    display: flex;
    flex-direction:column;
}
.disable-links{
    pointer-events: none;
}
.select_width{
    width: 120px;
}
.modal-height
{
    height:100%;
    width: 100%;
}