select option {
    font-family: Ubuntu;
}

body {
        font-family: 'Ubuntu', sans-serif;
    }
    
/* Menu General Styles */
.menuBackground {
    background: rgb(92,148,197);
    background: linear-gradient(180deg, rgba(92,148,197,1) 0%, rgba(26,87,131,1) 100%);
    text-align: left;
    font-size: 11px;
    border-top: 1px solid #48748f;
    border-bottom: 1px solid #48748f;
    border-left: 1px solid #48748f;
    border-right: 1px solid #48748f;
    border-radius: 10px;
    font-weight: 700;
    padding-left: 20px;
}
.dropDownMenu a {
	color: white;
    text-align: center;
    padding: 10px 12px;
}
.dropDownMenu,
.dropDownMenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.dropDownMenu li {
	position: relative;
}
.dropDownMenu a {
	display: block;
	text-decoration: none;
	color: white;
    text-align: left;
    padding: 10px 12px;
}
.dropDownMenu a:hover {
	background: rgb(82,119,164);
background: linear-gradient(180deg, rgba(82,119,164,1) 0%, rgba(50,70,94,1) 100%);
}

/* Level 1 Drop Down Menu */
.dropDownMenu > li {
	display: inline-block;
	vertical-align: top;
	margin-left: -4px; /* solve the 4 pixels spacing between list-items */
}
.dropDownMenu > li:first-child {
	margin-left: 0;
}
.dropDownMenu > li > a {}
.dropDownMenu > li > a:hover {}

/* Level 2 */
.dropDownMenu > li > ul {
	text-align: left;
	width: auto; /* change auto value with 200px if you want a bigger menu */
	display: none;
	background: #666666;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999999; /* if you have YouTube iframes, is good to have a bigger z-index so the video can appear above the video */
	min-width: 180px;
}
.dropDownMenu > li:hover > ul {
	display: block;
}
.dropDownMenu ul li a {}
.dropDownMenu ul li a:hover {}

/* Level 3 */
.dropDownMenu > li > ul > li > ul {
	text-align: left;
	display: none;
	background: #666666;
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 9999999;
	min-width: 180px;
}
.dropDownMenu > li > ul > li:hover > ul {
	display: block;
}
.dropDownMenu ul ul li {}
.dropDownMenu ul ul li a {}
.dropDownMenu ul ul li a:hover {}

a.menu_active {
	background-color: #4198db;
}


img.header_logo {
    display: inline-block;
    height: 40px;
}

p.header_login_info {
    display: inline-block;
    float: right;
    margin-top: 12px;
    font-size: 12px;
}

span.header_text {
    font-size: 18px;
    position: absolute;
    left: 150px;
    top: 10px;
    color: #5b5b5b;
}

div.menu {

}

div.header {
    position: relative;
}

#logout_button {
    background-color: #ffffff;
    border: none;
    color: #5b5b5b;
    padding: 4px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    cursor: pointer;
    margin-left: 10px;
}

table.styled_table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

table.styled_table th {
    text-align: left;
    padding: 8px;
}

table.styled_table td {
    text-align: left;
    padding: 8px;
}

table.styled_table tr:nth-child(even){background-color: #f2f2f2}

table.styled_table th {
    background-color: #f5f5f5;
    color: #000000;
}

table.styled_table tr:hover {
    background-color: #f5f5f5 !important;
}

h1 {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

button.table_button {
    background-color: #4198db;
    border: none;
    color: white;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

#login_button {
    background-color: #4198db;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
}

input.login_form {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
}

div.login_form {
    width: 400px;
    text-align: center;
    padding: 30px;
    border: 1px #e4e4e4 solid;
    position: absolute;
    left: 50%;
    margin-top: 200px;
    margin-left: -200px;
    background: #ffffff;
}

.width_input_400px {
    width: 400px;
}

.width_input_200px {
    width: 200px;
}
.table_row_right_align {
    text-align: right;
}

.table_row_right_align button {
    background-color: #4198db;
    border: none;
    color: white;
    padding: 8px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('https://i.stack.imgur.com/FhHRx.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}

button.add_button {
    background-color: #4198db;
    border: none;
    color: white;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

a.styled_link {
    text-decoration: none;
    color: #000000;
}

a.styled_link:hover {
    text-decoration: underline;
    color: #000000;
}

div.big-width-table-out { 
    overflow-x: scroll;
    width: 100%;
    font-size: 11px;
    height: 600px;
    background-color: #eff0f2;
}

table.big-width-table {
    table-layout: fixed;
    border-collapse:collapse;
}

table.big-width-table td { 
    border-collapse:collapse;
    white-space: nowrap;
    padding: 2px;
    text-align: center;
    border: 1px #bfbfbf solid;
    background-color: #ffffff;
}

table.big-width-table th { 
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #f5f5f5;
    color: #000000;
    border-collapse:collapse;
    white-space: nowrap;
    border: 1px #bfbfbf solid;
    border-bottom: 1px #a50034 solid;
}

/* table.big-width-table tr:nth-child(even){background-color: #f2f2f2} */

table.big-width-table tr:hover {background-color: #f5f5f5}

input.ftl_input_1 {
    margin: 0;
}

.line_background {
    background-color: yellow !important;
}

.line_background td {
    background-color: yellow !important;
}

a.sort_link {
    color: #000000;
    text-decoration: underline;
}

img.sort_arrow {
    height: 7px;
    margin-left: 5px;
}

div.search_bar {
    font-size: 11px;
    margin-bottom: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background: #ffffff;
    border-bottom: 2px solid #e1e1e1;
}

div.search_bar input {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 11px;
}

button.search_button {
    background-color: #f1f1f1;
    color: #5b5b5b;
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    height: 24px;
}

button.reset_button {
    background-color: #f1f1f1;
    color: #5b5b5b;
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    height: 24px;
}

div.bottom_bar {
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-right: 60px;
}

button.bottom_bar_button {
    background-color: #f1f1f1;
    color: #5b5b5b;
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    height: 24px;
}

div.bottom_bar p {
    display: inline-block;
    text-align: right;
    float: right;
    margin-right: 10px;
}

.load_edit_buttons {
    background-color: #4198db;
    border: none;
    color: white;
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
}

a.pagination_arrow {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    padding-left: 7px;
    padding-right: 7px;
}

n
a.pagination_links {
    text-decoration: none;
    color: #000000;
    padding-left: 5px;
    padding-right: 5px;
}

table.big-width-table-security {
    border-collapse:collapse;
    font-size: 14px;
}

table.big-width-table-security td { 
    border-collapse:collapse;
    white-space: nowrap;
    padding: 2px;
    text-align: center;
    border: 1px #f5f5f5 solid;
    padding-top: 5px;
    padding-bottom: 5px;
}

table.big-width-table-security th { 
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #f5f5f5;
    color: #000000;
    border-collapse:collapse;
    white-space: nowrap;
    border: 1px #f5f5f5 solid;
}

table.big-width-table-security tr:hover {
    background-color: #f5f5f5 !important;
}

table.big-width-table-customer {
    border-collapse:collapse;
    font-size: 12px;
    width: 100%;
}

table.big-width-table-customer td { 
    border-collapse:collapse;
    white-space: nowrap;
    padding: 0px;
    text-align: center;
    border: 1px #f5f5f5 solid;
    padding-top: 5px;
    padding-bottom: 5px;
}

table.big-width-table-customer th { 
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #f5f5f5;
    color: #000000;
    border-collapse:collapse;
    white-space: nowrap;
    border: 1px #f5f5f5 solid;
}

table.big-width-table-customer tr:hover {
    background-color: #f5f5f5;
}

.ui-autocomplete.ui-menu { 
    font-size: 14px;
}

.table_td_var_1 {
    min-width: 50px !important;
}

.table_td_var_1 input {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_1 select {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_2 {
    min-width: 100px !important;
}

.table_td_var_2 input {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_2 select {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_3 {
    min-width: 180px !important;
}

.table_td_var_3 input {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_3 select {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_4 {
    min-width: 400px !important;
}

.table_td_var_4 input {
    min-width: 98% !important;
    width: 98% !important;
    max-width: 98% !important;
}

.table_td_var_4 select {
    min-width: 98% !important;
    width: 98% !important;
    max-width: 98% !important;
}

.table_td_var_5 {
    min-width: 600px !important;
}

.table_td_var_6 {
    min-width: 300px !important;
}

.table_td_var_7 {
    min-width: 130px !important;
    width: 130px !important;
    max-width: 130px !important;
}
.table_td_var_7 input {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_8 {
    min-width: 140px !important;
    width: 140px !important;
    max-width: 140px !important;
}
.table_td_var_8 input {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}
.table_td_var_8 select {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_9 {
    min-width: 100px !important;
    width: 100px !important;
    max-width: 100px !important;
}
.table_td_var_9 input {
    min-width: 90% !important;
    width: 90% !important;
    max-width: 90% !important;
}

.table_td_var_10 {
    min-width: 800px !important;
}

.fixed_table tbody{
  display:block;
  overflow: visible;
  height:400px;
  width:100%;
}
.fixed_table thead tr{
  display:block;
  padding-left: 0px !important;
  padding-right: 0px !important;
  position: sticky;
  top: 0;
  z-index: 99;
}

.fixed_table th, td{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.sticky_1 {
    position: sticky;
    left: -1px;
    top: 0px;
    z-index: 9;
}

.sticky_2 {
    position: sticky;
    left: 49px;
    top: 0px;
    z-index: 9;
}

td.sticky_1, td.sticky_2 {
    background: #ffffff;
}

#dock_scheduling_table {
  border-collapse: collapse;
}

#dock_scheduling_table th,
#dock_scheduling_table td {
  border: 1px #bfbfbf solid;
  padding: 5px;
  text-align: center;
  font-size: 10px;
  min-width: 150px;
  background-color: #ffffff;
  white-space: nowrap;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

#dock_scheduling_inside_table {
  border-collapse: collapse;
}

#dock_scheduling_inside_table th,
#dock_scheduling_inside_table td {
  border: 1px solid black;
  padding: 5px;
  text-align: center;
  font-size: 11px;
  min-width: 25px;
}

.booking {
    cursor: pointer;
}

.booking:hover {
    cursor: pointer;
    background: #f5f5f5 !important;
}

#location_open_map {
    background-color: #4198db;
    border: none;
    color: white;
    padding: 8px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 15px;
    margin-bottom: 15px;
}

#faxes_table td {
    padding-top: 5px;
    padding-bottom: 5px;
}

#faxes_table input[type=text] {
    width: 100%;
}

#faxes_table textarea {
    width: 100%;
    height: 200px;
}

span.show_file {
    text-decoration: none;
    color: #000000;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

span.show_file:hover {
    text-decoration: underline;
}

span.delete_file {
    text-decoration: none;
    color: red;
    cursor: pointer;
}

span.delete_file:hover {
    text-decoration: underline;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    font-size: 14px;
    color: #ffffff;
    background-color: black;
    display: inline-block;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #4198db;
}

.login_body {
    background: url(https://admin.synotask.com/src/Template/Default/Images/bg_login.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    background-attachment: fixed;
}

.top_bar_1 {
    position: relative;
    margin-bottom: 30px;
}

.top_nav_2 {
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    display: inline-block;
    width: 75%;
}

.top_nav_3 {
    background: rgb(242,248,248);
    background: linear-gradient(180deg, rgba(242,248,248,1) 0%, rgba(255,255,255,1) 37%, rgba(255,255,255,1) 100%);
    color: #666664;
    font-weight: 700;
    width: 100%;
    border-top: 2px solid #e1e1e1;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    box-sizing: border-box;
    border-bottom: 2px solid #c4c8cb;
    /*
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    */
}

.top_nav_4 {
    background-color: #b1b2b3;
    color: #ffffff;
    font-weight: 700;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 11px;
    border-bottom: 2px solid #6b6b6b;
    box-sizing: border-box;
}

.top_nav_5 {
    background: rgb(242,248,248);
    background: linear-gradient(180deg, rgba(242,248,248,1) 0%, rgba(255,255,255,1) 37%, rgba(255,255,255,1) 100%);
    color: #666664;
    font-weight: 700;
    width: 100%;
    border-top: 2px solid #e1e1e1;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    box-sizing: border-box;
    border-bottom: 2px solid #c4c8cb;
}

.top_nav_6 {
    background-color: #b1b2b3;
    color: #ffffff;
    font-weight: 700;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 11px;
    border-bottom: 2px solid #6b6b6b;
    box-sizing: border-box;
}

.nav_1_hide {
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 70px;
    background: rgb(95,123,147);
    background: linear-gradient(180deg, rgba(95,123,147,1) 0%, rgba(132,155,177,1) 100%);
    margin: 0;
    padding: 0;
    height: 12px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    font-size: 3px;
}

i {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin-top: 5px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.arrow_right_title{
    height: 12px;
    margin-right: 10px;
}

.left_nav {
    width: 12%;
    display: inline-block;
    vertical-align: top;
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    border-top: 2px solid #e1e1e1;
    margin-right: 15px;
    height: 83vh;
    background-color: #eff0f2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.left_nav_item {
    height: 27px;
    padding: 5px;
    background-color: #ffffff;
    border-bottom: 2px solid #e1e1e1;
    position: relative;
    font-size: 10px;
}

.left_nav_item_2 {
    height: 30px;
    padding: 5px;
    background-color: #ffffff;
    border-top: 2px solid #e1e1e1;
    position: relative;
    font-size: 10px;
}

.middle_content {
    max-width: 86%;;
    display: inline-block;
}

.left_nav_icon{
    height: 15px;
    max-width: 30px;
    position: absolute;
    top: 13px;
    left: 10px;
}

.left_nav_icon_2{
    width: 15px;
    position: absolute;
    top: 16px;
    left: 10px;
}

.left_nav_icon_3{
    width: 25px;
    position: absolute;
    top: 8px;
    left: 5px;
}

.left_nav_link {
    position: absolute;
    top: 14px;
    left: 45px;
    font-size: 12px;
}

.left_nav_link_2 {
    position: absolute;
    top: 8px;
    left: 45px;
    font-size: 12px;
}

.left_nav_link_3 {
    position: absolute;
    top: 14px;
    left: 15px;
    font-size: 12px;
}

.top_nav_9 {
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    display: inline-block;
    width: 83%;
    float: right;
}

.nav_left {
    display: inline-block;
    width: 15%;
    vertical-align: top;
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    float: left;
    position: relative;
}

.nav_left_content {
    overflow-y: hidden;
    padding: 5px;
}

.nav_left_content_2 {
    overflow-y: hidden;
    padding: 0px;
}

.nav_right {
    display: inline-block;
    width: 23%;
    vertical-align: top;
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    float: right;
    position: relative;
}

.nav_right_content {
    overflow-y: scroll;
    padding: 5px;
}

.nav_right_hide {
    position: absolute;
    top: 40%;
    left: -12px;
    width: 12px;
    background: rgb(95,123,147);
    background: linear-gradient(180deg, rgba(95,123,147,1) 0%, rgba(132,155,177,1) 100%);
    margin: 0;
    padding: 0;
    height: 40px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    padding-top: 30px;
    font-size: 3px;
}

.nav_right_hide_2 {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 12px;
    background: rgb(95,123,147);
    background: linear-gradient(180deg, rgba(95,123,147,1) 0%, rgba(132,155,177,1) 100%);
    margin: 0;
    padding: 0;
    height: 40px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    padding-top: 30px;
    font-size: 3px;
}

.nav_left_hide {
    position: absolute;
    top: 30%;
    right: -12px;
    width: 12px;
    background: rgb(95,123,147);
    background: linear-gradient(180deg, rgba(95,123,147,1) 0%, rgba(132,155,177,1) 100%);
    margin: 0;
    padding: 0;
    height: 40px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    padding-top: 30px;
}

.left_nav_a {
    color: #000000;
    text-decoration: none;
}

.left_nav_item:hover {
    background-color: #e5f3fb;
}

.right_side_table {
    font-size: 11px !important;
    border: 1px solid #a6a6a6;
    border-collapse: collapse;
}

.right_side_table td {
    font-size: 11px !important;
    text-align: left;
    border: 1px solid #a6a6a6;
    border-collapse: collapse;
    padding: 3px;
    width: 33%;
}

.top_nav_7 {
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    display: inline-block;
    width: 49%;
    position: relative;
}

.nav_right_2 {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    float: right;
    position: relative;
}

.top_nav_7_2 {
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    display: block;
    width: 100%;
    position: relative;
    height: 27vh;
    margin-top: 10px;
    margin-bottom: 10px;
}

.nav_right_2_2 {
    display: block;
    width: 100%;
    vertical-align: top;
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    position: relative;
    height: 27vh;
}

.ar_popup_table {
    border-collapse: collapse;
   border: 1px solid #bfbfbf;
}

.ar_popup_table th {
    padding: 3px;
   border: 1px solid #bfbfbf;
}

.ar_popup_table td {
    padding: 3px;
   border: 1px solid #bfbfbf;
}

.settlement_popup_table {
    border-collapse: collapse;
   border: 1px solid #bfbfbf;
}

.settlement_popup_table th {
    padding: 3px;
   border: 1px solid #bfbfbf;
}

.settlement_popup_table td {
    padding: 3px;
   border: 1px solid #bfbfbf;
}

.right_side_table select {
    margin-left: 5px;
}

.right_side_table input {
    margin-left: 5px;
}

.right_side_table textarea {
    margin-left: 5px;
}

.right_side_table input {
    width: 93%;
}

.right_side_table textarea {
    width: 93%;
    height: 100px;
}

/*
#main_table tr:nth-child(even) {
    background: #ffcccc;
}

#main_table tr:nth-child(odd) {
    background: #ffffff;
}
*/

.toc_details_button_tab {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid #a6a6a6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    bottom: -1px;
}

.menuBackground2 {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(214,214,214,1) 100%);
    text-align: left;
    font-size: 11px;
    border-top: none;
    border-bottom: 1px solid #cbcbcb;
    border-left: 1px solid #cbcbcb;
    border-right: 1px solid #cbcbcb;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: 700;
    padding-left: 20px;
    color: #284e65;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

span.top_date {
    color: #7e7f81;
    font-weight: 400;
}

.top_bar_header {
    color: #000000;
    background: rgb(242,248,248);
    background: linear-gradient(0deg, rgba(242,248,248,1) 0%, rgba(255,255,255,1) 37%, rgba(255,255,255,1) 100%);
    font-weight: 700;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    box-sizing: border-box;
     border-bottom: 2px solid #e1e1e1;
}

.right_side_table a {
    text-decoration: none;
    color: #000000;
    padding-left: 3px;
    padding-right: 3px;
}

.right_side_table a:hover {
    text-decoration: underline;
}

.right_side_styles {
    background-color: rgb(242,248,248);
    background: linear-gradient(180deg, rgba(242,248,248,1) 0%, rgba(255,255,255,1) 37%, rgba(255,255,255,1) 100%);
    padding-top: 5px;
    padding-bottom: 5px;
    color: #666664;
}

.own_fleet_table {
    background-color: #d8d8d8 !important;
}

.own_fleet_table_weekend {
    background-color: #538ED5 !important;
}

.own_fleet_table_active {
    background-color: #92d050 !important;
}

.own_fleet_table_svc {
    background-color: #F3F781 !important;
}

.own_fleet_table_active_white {
    background-color: #ffffff !important;
}

.table_own_fleet_style td {
    width: 100px !important;
    min-width: 100px !important;
}

.chart-container {
    position: relative;
    height:33vh;
    width: 27vw;
    display: inline-block;
    border-left: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
}

/* CHAT */

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-image: url("https://admin.synotask.com/src/Template/Default/Images/chat.png");
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 50px;
  height: 50px;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-color: transparent;
  z-index: 9999999999;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  width: 300px;
  padding: 10px;
  background-color: white;
  min-height: 500px;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.iframe_chat {
    height: 450px;
    overflow: hidden;
    border: none;
    outline: none;
    width: 290px;
    max-width: 290px;
}

.closebtn {
  background-image: url("https://admin.synotask.com/src/Template/Default/Images/close.png");
  width: 20px;
  height: 20px;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 25px;
  right: 20px;
}

.order_status_div_table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.order_status_div_table table, .order_status_div_table th, .order_status_div_table td {
  border: 1px solid black;
  width: 17%;
  padding: 2px !important;
}

.week_stat_table {
    border-collapse: collapse;
    text-align: center;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.week_stat_table th, .week_stat_table td {
  border: 1px solid black;
  padding: 1px !important;
}

.week_stat_table td {
  width: 40px;
}

.new_delivery_row {
    display: none;
}

.stats_table {
    border-collapse: collapse;
    text-align: center;
    color: #ffff00;
    font-size: 3vw;
}

.stats_table th, .stats_table td {
  border: 2px solid #ffff00;
}

.stats_table_2 {
    border-collapse: collapse;
    color: #ffffff;
    font-size: 1vw;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stats_table_2 th, .stats_table_2 td {
  border: none;
}

.stats_table_3 {
    border-collapse: collapse;
    text-align: center;
    color: #ffff00;
    font-size: 1.8vw;
}

.stats_table_3 th, .stats_table_3 td {
  border: 2px solid #ffff00;
}

.stats_table_4 {
    border-collapse: collapse;
    color: #ffffff;
    font-size: 1vw;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stats_table_4 th, .stats_table_4 td {
  border: none;
}

@media screen and (min-width: 601px) {
  .stats_table {
    font-size: 3.1vw;
  }
}

@media screen and (max-width: 640px) {
  .left_nav {
    display: none;
  }
  .open-button {
    display: none;
  }
}



.week_stat_table_mobile {
    border-collapse: collapse;
    text-align: center;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.week_stat_table_mobile th, .week_stat_table_mobile td {
  border: 1px solid #909090;
  padding: 1px;
}

.week_stat_table_mobile td {
}

.week_stat_table_mobile_header {
    color: #c20047;
    text-align: left;
    padding-left: 5px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 14px;
    background: rgb(179,198,214);
    background: linear-gradient(180deg, rgba(179,198,214,1) 0%, rgba(247,249,250,1) 100%);
}

.login_form select {
    width: 50%;
    height: 30px;
    margin-bottom: 15px;
    margin-left: 10px;
}

.new_wh_mobile_div {
    width: 100%;
    height: 75vh;
    max-height: 75vh;
    position: relative;
    overflow: scroll;
    overflow-x: hidden;
}

@media screen and (max-width: 600px) {
    div.login_form {
        width: 100%;
        text-align: center;
        padding: 30px;
        border: 0px #e4e4e4 solid;
        margin-top: 20px;
        margin-left: 0px;
        position: relative;
        left: 0;
        box-sizing: border-box;
    }
    input.login_form {
        display: block;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        text-align: center;
    }
    .login_body {
        background: none;
    }
    .new_wh_mobile_div {
        width: 100%;
        height: 70vh;
        max-height: 70vh;
        position: relative;
        overflow: scroll;
        overflow-x: hidden;
    }
}

.ui-dialog { z-index: 1000 !important ;}