.standard_font
{
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: bold;
}

.login_inputs
{
    width: 250px;
    height: 30px;
}

.login_box
{
    display: block;
    border: solid black 2px;
    min-height: 100px;
    margin-top: 1%;
}

.login_table
{
    min-height: 100px;
}

.category_button
{
    width: 400px;
    height: 250px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    background: #333;
}

.category_button:hover
{
    background: silver;
    color: black;
}

.list_results_table
{
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.hover_pointer:hover
{
    cursor: pointer;
}

.overlay_div
{
    display: none;
    position: fixed;
    background: ghostwhite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    padding-top: 2%;
    z-index: 99;
}

.center 
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.success_message
{
    color: green;
    font-weight: bold;
    display: none;
}

.error_message
{
    color: red;
    font-weight: bold;
    display: none;
}

.bordered_black_1px
{
    border: 1px solid black;
}

.arrow
{
    font-size: 200%;
    margin: 1%;
    font-weight: bold;
    width: 5%;
}

.view_user_inputs
{
    width: 140%;
    height: 30px;
}

.close_overlay_x
{
    font-size: 200%;
    position: absolute;
    top: 0;
    left: 95%;
    font-weight: bold;
    color: red;
    width: 5%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close_overlay_x_fixed
{
    font-size: 200%;
    position: fixed;
    left: 95%;
    font-weight: bold;
    color: red;
    width: 5%;
    height: 10%;
    display: flex;
}

.bordered_div
{
    margin-left: 2.5%;
    margin-top: 1%;
    border: solid black 1px;
    width: 90%;
}

.create_customer_inputs
{
    width: 50%;
    height: 25px;
    font-size: 120%;
}

.create_customer_label
{
    font-size: 140%;
}

.add_document_abort
{
    font-size: 120%;
    font-weight: bold;
    color: red;
    cursor: pointer;
}

.add_button_contracts_customers_documents
{
    position: relative !important;
    width: 50% !important;
    height: 30px !important;
}

.div_list_select
{
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

.div_list_select:hover
{
    background-color: #e9e9e9;
    font-weight: bold;
}

.view_customer_inputs
{
    font-size: 120%;
    width: 90%;
    height: 30px;
}

.action_report_success
{
    display: none;
    color: green;
    font-size: 24px;
    font-weight: bold;
}

.action_report_fail
{
    display: none;
    color: red;
    font-size: 24px;
    font-weight: bold;
}

.list_even_row
{
    width: 75%;
    background: #333;
    color: #fff;
    border-right-color: #fff;
}

.list_odd_row
{
    width: 75%;
    background: #fff;
    border-right-color: #dddddd;
}

.list_even_row_25
{
    width: 25%;
    background: #333;
    color: #fff;
    border-right-color: #fff;
}

.list_odd_row_25
{
    width: 25%;
    background: #fff;
    border-right-color: #dddddd;
}

.edit_contract_div
{
    width: 90%;
    height: 90%;
    z-index: 101;
    overflow: scroll;
    border: 2px solid black;
}

.contract_edit_div
{
    text-align: center;
    margin-bottom: 30px;
    background: #d3d3d3;
    position: fixed;
    height: 90%;
    overflow: scroll;
    margin-top: -7%;
    padding-bottom: 4%;
}

.search_container
{
    margin-left: 2.5%;
    margin-top: 1%;
    border: solid black 1px;
    width: 90%;
    padding-left: 5%;
}

.dropdown-content
{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    cursor: pointer;
    text-align: center;
}

.dropdown-content p
{
    padding: 12px 16px;
    display: block;
}

.dropdown-content p:hover {background-color: #f1f1f1}

/********************************************************************/

/********************************** Loaders **********************************/

.loaderDP
{
    width: 48px;
    height: 48px;
    border: 3px solid #333;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loaderDP::after
{
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #FF3D00;
}
      
@keyframes rotation
{
    0%
    {
      transform: rotate(0deg);
    }
    100%
    {
      transform: rotate(360deg);
    }
  } 

  /********************************************************************/

/********************************** Settings **********************************/

.settings_container
{
    background-color: ghostwhite;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100%;
}

.settings_container_td
{
    margin-top: 5px;
    margin-bottom: 5px;
    border: 3px solid gray;
    height: 50px;
    padding: 5px;
    padding-left: 20px;
    font-size: 1.2em;
    color: darkslategray;
}

.settings_table
{
    width: 96%;
    margin: 2%;
    border-collapse: collapse;
}

.settings_questionmark
{
    width: 20px;
    height: 20px;
}

.settings_tooltip
{
    background-color: black;
    color: ghostwhite;
    display: none;
    padding: 10px;
    font-size: 0.7em;
}

/********************************************************************/

/********************************** Toggle switch **********************************/

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  /********************************************************************/

  /********************************** Tariff **********************************/

  .tariffContainer
  {
    border: 1px solid black;
    padding: 5px;
    width: 90%;
    margin-left: 5%;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    box-shadow: 1px 1px 3px 3px rgb(0, 0, 0, .2);
  }

  .tariffTypeSliderDiv
  {
    display: grid;
    grid-template-columns: 85px 60px 75px;
    align-items: center;
    width: 50%;
    justify-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  /********************************************************************/

/********************************** Document manager **********************************/

.documentManagerToolbarButtons
{
    height: 30px;
    width: 30px;
    padding: 0;
}

.documentManagerToolbarButtonImages
{
    height: 20px;
    width: 20px;
}

  /********************************************************************/

/********************************** Expand Collapse Arrow **********************************/

.ecArrowSmall
{
    margin: 1em;
}
  
  .ecArrowSmall::before
{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: .5em solid transparent;
    border-left-color: gray;
    transform-origin: 0 50%;
    transition: transform .25s;
}
  
  .ecArrowSmall.down::before
{
    transform: rotate(90deg);
    transition: transform .25s;
}

.ecArrowMid
{
    margin: 1em;
}
  
  .ecArrowMid::before
{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 1em solid transparent;
    border-left-color: gray;
    transform-origin: 0 50%;
    transition: transform .25s;
}
  
  .ecArrowMid.down::before
{
    transform: rotate(90deg);
    transition: transform .25s;
}

  /********************************************************************/

  /********************************** Create customer **********************************/

.createCustomerDuplicateGrid
{
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    justify-items: start;
    column-gap: 30px;
    row-gap: 10px;
}