/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* CSS Document */
/*:active, :hover, :focus {
  outline: none;
  outline-offset: 0;
}*/
input, textarea {
  outline: none;
}

input:active, textarea:active {
  outline: none;
}

:focus {
  outline: none;
}

textarea {
  resize: none;
}

textarea {
  resize: vertical;
}

textarea {
  resize: horizontal;
}

/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* const.css */
/*#DDDDDD*  #e6e6e6 */
/*#444*/
/* selected */
/* disabled */
/*eq #FF6600*/
/*eq #f4f4f4*/
/*$text : #999999;*/
/* table content background */
/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* calendar-combo.css */
.calendar {
  border-style: solid;
  border-width: 1px;
  border-collapse: collapse;
  border-color: black;
  background-color: #EDF2FC;
}

.dom_wd_name {
  border-style: solid;
  border-width: 1px;
  border-color: #6679AB;
  background-color: #7689BB;
  color: white;
  text-align: center;
  padding-left: 11px;
  padding-right: 11px;
  padding-top: 1px;
  padding-bottom: 1px;
  cursor: pointer;
  font-size: 7pt;
}

.cld_wd_name {
  border-style: solid;
  border-width: 1px;
  border-color: #6679AB;
  background-color: #7689BB;
  color: white;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 1px;
  padding-bottom: 1px;
  cursor: pointer;
  font-size: 7pt;
}

.cl_day {
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-color: #CDD2DC;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 7pt;
}

.cl_holiday {
  color: red;
}

.cl_sel_day {
  font-weight: bold;
  text-decoration: underline;
}

/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* The main calendar widget.  DIV containing a table. */
div.calendar {
  position: relative;
}

.calendar, .calendar table {
  border: 1px solid #556;
  font-size: 7pt;
  color: #000;
  cursor: default;
  background: white;
  font-family: tahoma, verdana, sans-serif;
}

/* Header part -- contains navigation buttons and day names. */
.calendar .button {
  /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  /* They are the navigation buttons */
  padding: 2px;
  /* Make the buttons seem like they're pressing */
}

.calendar .nav {
  background: white;
  border: solid 1px gray;
}

.calendar thead .title {
  /* This holds the current "month, year" */
  font-weight: bold;
  /* Pressing it will take you to the current date */
  text-align: center;
  background: #ff6600;
  color: white;
  padding: 2px;
}

.calendar thead .headrow {
  /* Row <TR> containing navigation buttons */
  background: white;
  color: black;
}

.calendar thead .daynames {
  /* Row <TR> containing the day names */
  background: #ff6600;
}

.calendar thead .name {
  /* Cells <TD> containing the day names */
  border-bottom: 1px solid #556;
  padding: 2px;
  text-align: center;
  color: white;
}

.calendar thead .weekend {
  /* How a weekend day name shows in header */
  color: white;
  font-weight: bold;
}

.calendar thead .hilite {
  /* How do the buttons in header appear when hover */
  background-color: #ff6600;
  color: white;
  border: 1px solid #04f;
  padding: 1px;
}

.calendar thead .active {
  /* Active (pressed) buttons in header */
  background-color: #ff6600;
  padding: 2px 0 0 2px;
}

/* The body part -- contains all the days in month. */
.calendar tbody .day {
  /* Cells <TD> containing month days dates */
  width: 2em;
  color: #456;
  text-align: right;
  padding: 2px 4px 2px 2px;
}

.calendar tbody .day.othermonth {
  font-size: 7pt;
  color: #bbb;
}

.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #bdf;
}

.calendar tbody .rowhilite td {
  background: lightgrey;
}

.calendar tbody .rowhilite td.wn {
  background: #eef;
}

.calendar tbody td.hilite {
  /* Hovered cells <TD> */
  background: #ff6500;
  padding: 1px 3px 1px 1px;
  border: 0 solid #bbb;
  color: white;
}

.calendar tbody td.active {
  /* Active (pressed) cells <TD> */
  background: #ff6500;
  padding: 2px 2px 0 2px;
  color: white;
}

.calendar tbody td.selected {
  /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #000;
  padding: 1px 3px 1px 1px;
}

.calendar tbody td.weekend {
  /* Cells showing weekend days */
  color: black;
  font-weight: bold;
}

.calendar tbody td.today {
  /* Cell showing selected date */
  font-weight: bold;
  color: black;
  background-color: #ff6600;
}

.calendar tbody .disabled {
  color: #999;
}

.calendar tbody .emptycell {
  /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow {
  /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */
.calendar tfoot .footrow {
  /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #556;
  color: #fff;
}

.calendar tfoot .ttip {
  /* Tooltip (status bar) cell <TD> */
  background: #ff6600;
  color: white;
  border-top: 1px solid #556;
  padding: 1px;
}

.calendar tfoot .hilite {
  /* Hover style for buttons in footer */
  background: #aaf;
  border: 1px solid #04f;
  color: #000;
  padding: 1px;
}

.calendar tfoot .active {
  /* Active (pressed) style for buttons in footer */
  background: #77c;
  padding: 2px 0 0 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #ff6600;
  color: white;
  font-size: 7pt;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: white;
  color: black;
  font-weight: bold;
}

.calendar .combo .active {
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  background: #eef;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0 3px 0 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0 2px 0 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #667;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}

.combo_date, .combo_date:hover {
  text-decoration: underline;
  cursor: pointer;
  border: 0;
  min-width: 100px;
}

/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* menu.css */
.tx_menu_btn {
  cursor: pointer;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  padding-right: 15px;
}

.tx_menu_act, .tx_menu:hover {
  cursor: pointer;
  text-decoration: none;
  color: #ff6600;
}

/*#left_menu .tx_menu_btn {
    color: white;
}*/
#right_menu .admin_login {
  color: #ff6600;
}

/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* voicemenu.css */
.node, .node:hover {
  font-family: Courier New;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  width: 15px;
  padding: 5px 10px 5px 30px;
}

.leaf_img, .leaf_img:hover {
  /*font-family: Verdana, Arial, Helvetica, sans-serif;*/
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  width: 10px;
  padding: 5px 0 5px 30px;
}

.leaf,
.node_s {
  vertical-align: middle;
  text-align: left;
}

.xb {
  /*font-family: Verdana, Arial, Helvetica, sans-serif;*/
  font-size: 10pt;
  color: #ff6600;
  vertical-align: middle;
  text-align: left;
  padding: 3px 0 5px 0;
}

.root_node {
  background-color: #D6D6D6;
  vertical-align: middle;
  text-align: left;
}

.top_leaf {
  vertical-align: middle;
  width: 800px;
  text-align: left;
}

/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* style.css */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
}

html, body {
  width: 100%;
  min-width: 1250px;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: normal;
  font-size: 12px;
}

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

a:link, a:visited, a:focus, a:hover, a:active {
  text-decoration: none;
}

img {
  border: none;
}

.hide {
  display: none;
}

h4, h5, h6 {
  text-decoration: none;
  font-weight: normal;
}

table {
  border: 0;
  border-collapse: collapse;
}

tr {
  height: 25px;
}
tr .disabled {
  background-color: #e6e6e6;
}

td, th, tr {
  border-color: #999999;
  text-align: center;
  padding: 2px 3px;
}

th {
  padding: 2px 3px;
}

select {
  background: #fff;
  height: 28px;
  padding: 2px 5px 2px 2px;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
}

input {
  height: 28px;
  padding: 2px 5px;
}

select, input, textarea {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: #aaaaaa 1px solid;
  background: white;
}

select:focus, input:focus, textarea:focus {
  border: 1px solid #ff6600;
}

textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #666666;
  padding: 2px 5px;
  word-break: normal;
  white-space: normal;
  min-height: 70px;
}

span {
  border-radius: 0 !important;
  /*color: #444;*/
}

H1 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ff6600;
  padding: 0;
  margin: 0;
}

H1 .only_h1 {
  padding-left: 220px;
}

.header-uppercase {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.padding-tl-10 {
  padding-top: 10px;
  padding-left: 10px;
}

#header {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 5px;
}

.line {
  background-color: #dddddd;
  width: 100%;
  height: 3px;
  border: none;
}

.color_line {
  background-color: #ff6600;
  width: 100%;
  height: 3px;
  border: none;
}

UL {
  list-style-image: url(../images/list_2-1.gif);
  list-style-position: outside;
}

.user {
  color: #999999;
  text-align: right;
}

/*================ style for forms ===========*/
.select_nums {
  width: 50px;
}

.select_days {
  width: 50px;
}

.select_timezone {
  width: 55px;
}

.select_telnums {
  width: 100px;
}

.select_listnums {
  width: 150px;
}

.select_voisemes {
  width: 150px;
}

.form_select {
  border: #ffcc99 1px solid;
}

.service.input_telnums, .service.select_listnums {
  width: 80%;
}

/*Main block*/
/*============== style for links =================*/
a:link {
  text-decoration: underline;
  color: #666666;
}

a:visited {
  text-decoration: underline;
  color: #666666;
}

a:hover {
  color: #ff6600;
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
  color: #666666;
}

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

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

a.close:hover {
  color: #000000;
  text-decoration: none;
  background-color: #ff3300;
}

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

/*--------------------------root-----------------*/
.wrapper {
  display: table;
  width: 98%;
  margin: 0 auto;
  height: 100%;
}

#root {
  display: table-row;
  height: 100%;
}

div.title {
  color: #ff6600;
}
div.title a {
  color: #ff6600;
  text-decoration: none;
}

#auth {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  padding: 0 30px;
  width: 300px;
  background: none;
  border: 1px solid #c6c6c6;
}
#auth div.head_logo {
  position: absolute;
  top: -135px;
}
#auth div.title {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  font-size: 1.5em;
  text-align: center;
}
#auth p {
  padding: 15px 0 10px 0;
  line-height: 18px;
  font-size: 1.2em;
  text-align: center;
}
#auth p span {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 500;
}
#auth p small {
  font-size: 0.8em;
  color: gray;
}
#auth .auth_field {
  display: block;
  margin: 20px auto;
}
#auth .auth_field select {
  width: 100%;
}
#auth .auth_field input[type="text"], #auth .auth_field input[type="password"] {
  width: 100%;
  padding-right: 0\9;
}
#auth .auth_field i {
  position: absolute;
  right: 35px;
  padding-top: 7px;
  font-size: 12px;
}
#auth .auth_field input.check_box {
  position: relative;
  margin: 0;
  vertical-align: middle;
  height: 1em;
  width: 1em;
  font-size: 1.1em;
}
#auth .auth_field a.forget {
  text-decoration: none;
  font-size: 0.95em;
}
#auth .auth_btn {
  background-color: #e6e6e6;
  color: #999999 !important;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  width: 100%;
  border: 1px solid #999999;
}
#auth .auth_btn:hover {
  cursor: pointer;
  text-decoration: none !important;
  color: #ff6600 !important;
  border: 1px solid #ff6600;
}
#auth .auth_btn:disabled {
  cursor: default;
  background-color: grey;
}

.half-opacity {
  opacity: 0.5;
}

.go_to_an {
  position: relative;
  top: -20px;
  left: 400px;
  max-width: 700px;
  line-height: 28px;
}

/*--------------------end of root---------------*/
/*--------------------------top-----------------*/
#top {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
}
#top div.title {
  font-size: 3em;
}

/*---------------------end of top---------------*/
/*---------------------top_menu-----------------*/
#top_menu {
  width: 100%;
  height: 30px;
  background-color: #e8e8e8;
}

#left_menu {
  float: left;
  padding: 8px 15px;
}
#left_menu a {
  text-decoration: none;
  color: #000000;
  padding-right: 15px;
  font-weight: bold;
}
#left_menu a:hover {
  color: #ff6600;
}
#left_menu .tx_menu_btn:hover {
  color: #ff6600;
  text-decoration: none;
}

#right_menu {
  float: right;
  padding: 8px 5px;
  height: 10px;
  text-align: right;
}
#right_menu h5 {
  font-size: 12px;
  color: #999999;
}
#right_menu .tx_menu_btn:hover {
  color: #ff6600;
  text-decoration: none;
}
#right_menu a {
  text-decoration: none;
  color: #000000;
  padding-left: 30px;
  font-size: 12px;
  font-weight: bold;
}
#right_menu a:hover {
  color: #ff6600;
}

#account {
  width: 100%;
  height: 20px;
  text-align: left;
  margin: 10px 0 5px 0;
}
#account h5 {
  padding-left: 5px;
  color: #666666;
}
#account span.anum {
  color: #ff6600;
  font-weight: bold;
}
#account span.black, #account span.white {
  padding-left: 29px;
}
#account span.black_dis, #account span.white_dis {
  padding-left: 29px;
  background-color: #ffcc99;
}
#account a {
  text-decoration: underline;
  color: #666666;
}
#account a:hover {
  color: #ff6600;
}
#account img {
  height: 3px;
  margin-top: 6px;
}

.black_dis, .white_dis {
  padding-left: 29px;
  background-color: #999999;
  color: white;
}

.blist_change, .wlist_change {
  border-color: #909090;
  /*  border: 1px solid;*/
  color: #909090;
  background-color: #eeeeee;
}

/*--------------------end of top_menu---------------*/
/*----------------------center_box--------------*/
#center_box {
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
}
#center_box td {
  padding-top: 2px;
  padding-bottom: 1px;
}
#center_box table {
  margin-top: 20px;
  text-align: left;
  width: 100%;
  border: #999999 1px solid;
  border-collapse: collapse;
}
#center_box img.arrow, #center_box img.arrow:hover {
  width: 10px;
  height: 12px;
  cursor: pointer;
}

/*--------------------end of center_box---------------*/
/*------------------------bottom----------------*/
#bottom {
  height: 20px;
  border-top: solid 5px #dddddd;
  text-align: left;
  margin: 10px 0 0 0;
  padding: 10px 0 0 0;
}
#bottom .support {
  color: #999999;
}

/*--------------------end of bottom---------------*/
/*------------------------------------styles of main_page--------------------*/
#main_page filter {
  margin: 5px;
  text-align: left;
  margin-left: 0;
}
#main_page filter h5 {
  margin-left: 0;
}
#main_page filter table {
  width: 100%;
  border: 0;
}
#main_page filter td.left_type {
  padding-left: 5px;
  padding-right: 5px;
  text-align: left;
  width: 200px;
}
#main_page filter td.sort {
  line-height: 28px;
}

#main_page {
  width: 100%;
  margin: 5px auto;
  text-align: left;
}
#main_page h5 {
  margin-left: 0;
}
#main_page td.left_nav {
  text-align: left;
  line-height: 28px;
}
#main_page td.right_nav {
  text-align: right;
  width: 150px;
  line-height: 28px;
}

/*------------------------------------end main_page------------*/
/*------------------------------------page_3------------*/
#redirection table {
  width: 90%;
}
#redirection .one {
  margin-top: 20px;
}
#redirection .two {
  width: 90px;
}
#redirection button {
  margin-top: 39px;
  margin-left: 1px;
  height: 33px;
}

/*------------------------------------end page_3------------*/
/*------------------------------------page_4------------*/
#add_string {
  margin-top: 15px;
}
#add_string .img_1 {
  width: 100%;
  height: 3px;
}

#black_list, #white_list {
  margin-top: 13px;
  margin-left: 0;
  float: left;
}
#black_list input, #white_list input {
  height: 18px;
  width: 73px;
}

#result {
  margin-top: 7px;
  margin-left: 5px;
}
#result input {
  height: 18px;
  width: 73px;
}

#end {
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 0;
}

ul.one {
  margin-left: 40px;
}

li {
  list-style-image: url(../images/list_2-1.gif);
  list-style-position: outside;
}

/*------------------------------------end page_4------------*/
/*----------------------------------page_6--------*/
#tel_num {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}
#tel_num h3, #tel_num h5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#tel_num h5.sel {
  padding-left: 20px;
}

/*----------------------------------end page_6--------*/
/*----------------------------------page_8--------*/
#add_el {
  margin-left: 450px;
  margin-top: 5px;
}

#ok_el {
  float: left;
  margin-right: 10px;
}

/*----------------------------------end page_8--------*/
/*----------------------------------page_10--------*/
#sound {
  float: left;
  background-color: #CCCCCC;
  width: 300px;
  margin-top: 15px;
}
#sound span.line {
  text-decoration: underline;
  background-color: #CCCCCC;
  width: 100%;
}

#inf {
  width: 300px;
  margin-top: 15px;
  float: left;
  background-color: #dddddd;
}
#inf span.line {
  text-decoration: underline;
  background-color: #dddddd;
  width: 100%;
}

#left_table {
  float: left;
  margin-right: 10px;
}

#right_table {
  padding-top: 50px;
  float: right;
}

/*----------------------------------end page_10--------*/
#first {
  float: left;
  margin-right: 10px;
}

#second {
  float: left;
  margin-right: 10px;
}

#date {
  margin-top: 10px;
}

input.inmax {
  width: 50px;
}

#test {
  border-style: solid;
  border-width: 1px;
  border-color: #000000;
}

PRE.comment {
  word-wrap: break-word;
  overflow: auto;
  white-space: pre-wrap;
  width: 220px;
  text-align: left;
}

.notice {
  margin-top: 20px;
  text-align: left;
  font-size: 0.95em;
  font-style: italic;
  color: #555;
}

.load_file {
  border: none;
  width: 250px;
}

td div {
  margin-left: -.3em;
}
td div:first-child {
  margin-left: 0;
}
td .download_input_container {
  display: inline-block;
  width: 60%;
}
td .download_button_container {
  display: inline-block;
  width: 20%;
}
td .clear_list_button_container {
  display: inline-block;
  width: 20%;
  text-align: right;
}

.holiday-table {
  width: 400px !important;
  margin: 20px !important;
}

.holiday-option {
  text-align: left;
  padding-left: 50px;
  width: 250px;
}

/*
 * @license
 * Copyright (C) PROTEI protei.com
 */
/* app.css */
/* buttons */
.web_btn {
  background-color: #e6e6e6;
  color: #ff6600;
  padding: 3px 5px;
  font-weight: bold;
  width: 150px;
  border: solid 1px #909090;
}

.web_btn:hover {
  border: solid 1px #ff6600;
}

.web_btn_dis, .web_btn:disabled {
  cursor: default;
  background-color: #e6e6e6;
  padding: 3px 5px;
  width: 150px;
  font-weight: bold;
}

.small_btn {
  /*    min-height: 25px;*/
  padding: 3px 5px;
  /*    margin: 5px;*/
  width: 100px;
  color: #ff6600;
  background-color: #e6e6e6;
  border: solid 1px #999999;
  font-weight: bold;
}
.small_btn.journal_btn {
  width: 95px;
}
.small_btn.disabled {
  cursor: unset;
  color: #999999;
  background-color: #999999;
}

.small_btn:hover {
  border: solid 1px #ff6600;
}

.web_btn:hover, .small_btn:hover, .clear_btn:hover {
  cursor: pointer;
}

.bot {
  cursor: pointer;
}

.tx_btn {
  cursor: pointer;
  text-decoration: underline;
}

.tx_btn_act, .tx_btn:hover, .bot:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #ff6600;
}

.tx_btn_dis, .tx_btn:disabled {
  cursor: default !important;
  text-decoration: none !important;
  /*color:$bg_mid;*/
}

.close {
  cursor: pointer;
  text-decoration: none;
}

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

/* button container */
.buttons {
  float: left;
  clear: left;
  text-align: left;
  width: 100%;
  margin: 20px 0;
}

/* input, select etc... */
.compare_field {
  width: 50px;
}

.short_input_field {
  width: 100px;
}

.input_field {
  width: 200px;
}

.long_input_with_checkbox {
  width: 377px;
}

.long_input_field {
  width: 400px;
}

.domain_input_field {
  width: 130px;
}

@media (max-width: 1600px) {
  .long_input_field {
    width: 350px;
  }
}
.memo_input_field {
  word-break: break-all;
  width: 600px;
  height: 50px;
  padding: 2px 5px;
}

.wrong_value {
  background-color: red;
}

.fill {
  background: #eee;
  background: linear-gradient(#ffffff, #eeeeee);
  background: -webkit-linear-gradient(white, #eeeeee);
  background: -o-linear-gradient(white, #eeeeee);
  background: -moz-linear-gradient(white, #eeeeee);
  height: 35px;
}

.radio_butt {
  border: 0;
  vertical-align: middle;
  margin: 0 3px 0 0;
  width: 1em;
  font-size: 1.1em;
}

.check_box {
  border: 0;
  vertical-align: middle;
  height: 1em;
  width: 1em;
  font-size: 1.1em;
}

.check_box:hover, .radio_butt:hover {
  cursor: pointer;
}

.options .check_box {
  margin: 7px 0 0 0;
}

table.table_ps {
  border: solid 1px #999999 !important;
  text-align: center !important;
  width: 100% !important;
}
table.table_ps th {
  border-top: solid 1px #999999;
  padding-top: 5px;
}
table.table_ps td.value {
  text-align: center !important;
}

table.progressbar {
  min-width: 600px;
  width: 100%;
  border: solid 1px #999999;
  line-height: 20px;
}
table.progressbar tr {
  height: 5px;
  line-height: 5px;
  background: #e6e6e6;
}
table.progressbar td {
  padding: 0;
  margin: 0;
}
table.progressbar td.progressbar {
  background: #ff6600;
}
table.progressbar td.exceed {
  background: red;
}

/*----------- A.F. 09.11.07 -----------*/
#main_page table {
  margin: 0;
  border-width: 0;
}
#main_page table.main {
  /*        margin-top: 20px;*/
  border-width: 0;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
}
#main_page table.data {
  margin-top: 10px;
  border: solid 1px #999999;
  padding: 2px;
  width: 100%;
}
#main_page table.data.no-margin {
  margin: 0;
}
#main_page table.priorities {
  border-width: 0;
  padding-left: 5px;
  padding-right: 5px;
  width: 70%;
  margin: 0 auto;
}
#main_page table.half_main {
  margin-top: 10px;
  margin-bottom: 10px;
  border-width: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-align: left;
  width: 50%;
}
#main_page table.half_data {
  margin-top: 20px;
  border: solid 1px #999999;
  padding: 2px;
  text-align: left;
  width: 100%;
}
#main_page td.left_type {
  padding-left: 5px;
  padding-right: 5px;
  text-align: left;
}

#left_block {
  float: left;
  clear: left;
  margin-right: 1%;
  width: 53%;
  min-width: 500px;
}
#left_block table.main {
  margin-top: 5px;
}

#right_block {
  float: left;
  margin-left: 1%;
  width: 45%;
  min-width: 450px;
}
#right_block table.main {
  margin-top: 5px;
}

#filter {
  margin: 5px 0 10px 0;
}
#filter table.table {
  width: 90%;
  border: 0;
}
#filter td {
  text-align: left;
}
#filter td.sort {
  line-height: 28px;
}
#filter .ok {
  margin-top: 20px;
}
#filter.black-list-filter {
  height: 40px;
  padding: 15px 0 10px 0;
}

#simple_edit {
  margin-left: 20px;
  margin-top: 20px;
}
#simple_edit table.table {
  border: 0;
}
#simple_edit td {
  text-align: left;
  height: 25px;
  line-height: 25px;
}
#simple_edit h3, #simple_edit h5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.valign-top {
  vertical-align: top;
}

/*----------- SVPN -----------*/
#an_setup table {
  padding: 2px;
  text-align: left;
  border: 0;
}
#an_setup td {
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
}

#svpn {
  /*width: 970px;*/
  width: 98%;
  min-width: 970px;
  margin: 0;
  padding: 0;
}

#svpn_scen_setup {
  float: right;
  margin-top: -36px;
}

#svpn_scen table.svpn_scen {
  min-width: 900px;
  border: 0;
  margin: 0;
  padding: 0;
}
#svpn_scen select.prompt {
  width: 200px;
}
#svpn_scen select.action {
  width: 200px;
}
#svpn_scen td.left {
  text-align: left;
  padding-left: 3px;
  padding-right: 3px;
  border: 0;
}
#svpn_scen td.center {
  text-align: center;
  padding-left: 3px;
  padding-right: 3px;
  border: 0;
}
#svpn_scen .small_comment {
  font-size: 10px;
  color: #666666;
  text-align: left;
}
#svpn_scen td.border {
  border-bottom: #999999 1px solid;
}

/*----------------------scenario_box--------------*/
#scenario_box {
  margin: 0;
  padding: 0;
  min-width: 1200px;
}
#scenario_box table {
  min-width: 200px;
  margin-top: 20px;
  text-align: left;
  border: #999999 1px solid;
  border-collapse: collapse;
}
#scenario_box table .select_telnums {
  width: 80%;
}
#scenario_box td {
  padding: 2px 3px;
}
#scenario_box img.arrow {
  width: 10px;
  height: 12px;
  cursor: pointer;
}
#scenario_box .delete_item {
  background-color: #e8e8e8;
}
#scenario_box .test_item {
  background-color: #909090;
  color: white;
  font-weight: bold;
}
#scenario_box .create_change_item {
  background-color: #ffcc99;
}
#scenario_box .simple_item {
  background-color: #FFFFFF;
}
#scenario_box .edit_item {
  border: solid #ffcc99 2px;
  height: 30px;
}

/*------ highlite of CgPN/CdPN/Black/White-------*/
tr.new_row {
  background: #ffcc99;
}

tr.del_row {
  background: #e8e8e8;
}

td.chg_cell {
  background: #ffcc99;
}

#center_box {
  /*----------- RP -----------*/
}
#center_box table {
  border: 0;
  text-align: left;
  margin-top: 0;
  width: 100%;
}
#center_box td {
  text-align: left;
}
#center_box td.mailbox {
  border: #999999 1px solid;
  padding: 2px;
}

.c {
  text-align: center !important;
}

/* lang */
.img_lang {
  padding: 0;
  margin: 0;
  border: 0;
}

.img_lang:hover {
  cursor: pointer;
}

.flag {
  width: 16px;
  height: 11px;
  background: url(../images/flags.png) no-repeat;
  margin-top: 3px;
  display: inline-block;
}

.flag.flag-us {
  background-position: -144px -154px;
}

.flag.flag-ru {
  background-position: -224px -121px;
}

.flag.flag-uz {
  background-position: -176px -154px;
}

/*   icons   */
i.fa, i.fas, i.far {
  font-size: 1.1em;
}

/*   file upload  */
input[type=file] {
  font-family: Verdana, Arial, Helvetica Neue, sans-serif;
  color: maroon;
  font-weight: normal;
  font-size: 11.5px;
  padding: 1px 5px;
  border: 0;
}

/*   placeholders   */
input::-webkit-input-placeholder {
  text-overflow: ellipsis;
  font-size: 10px;
  color: grey;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
  font-size: 10px;
  color: grey;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
  font-size: 10px;
  color: grey;
}

input:-ms-input-placeholder {
  text-overflow: ellipsis;
  font-size: 10px;
  color: grey;
}

/* hide on focus */
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

.call_counter {
  padding: 1px 5px;
  border: 1px solid maroon;
  text-align: right;
  color: maroon;
  font-weight: bold;
}

.wt_sum {
  font-weight: bold;
}

.marked {
  color: maroon;
}

.num_err {
  color: red;
  font-style: italic;
  font-size: 10px;
}

.locked, .invalid, .limit_exceed {
  color: red;
}

.select2-container {
  vertical-align: top;
}

.action-mode-selector + .select2 {
  width: 203px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border: none;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #aaa 1px;
}

.limit_exceed {
  color: red;
}

.web_btn_iconed {
  font-variant-caps: all-petite-caps;
  font-size: 1.4em;
  color: #444;
  letter-spacing: -0.7px;
  padding: 3px 10px 3px 30px;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  background: white url("../images/list_3.gif") no-repeat 10px center;
  cursor: pointer;
}

.privilege-entity-container, .privilege-entity-container > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.privilege-entity-container > label {
  width: 60%;
  margin-left: 10px;
  padding-top: 10px;
  border-right: 1px solid #999999;
}

.privilege-entity-container > div {
  width: 39%;
}

.privilege-entity-container > div > span {
  margin: auto;
  text-align: center;
}

.privilege-entity-container > span {
  margin-left: 10px;
  padding-top: 10px;
  width: 100%;
}

ul.privileges {
  padding: 0;
  margin: 0;
}

.privilege-entity-container {
  border-bottom: 1px solid #e6e6e6;
  height: 31px;
}

.privilege-entity-container.list > label {
  width: 100%;
  border-right: 0;
}

.privilege-entity-container:first-child {
  font-weight: bold;
}

.btn.privilege-btn {
  padding: 0;
  min-width: 30px;
  border-left: 0;
  font-size: 1.3em;
  cursor: pointer;
}

.btn.privilege-btn.btn-down:after,
.btn.privilege-btn.btn-up-hovering:after {
  font-family: "FontAwesome";
  content: "\f00c";
  color: #ff6600 !important;
}

.btn.privilege-btn.btn-up:after,
.btn.privilege-btn.btn-down-hovering:after {
  font-family: "FontAwesome";
  content: "\f00d";
  color: #999999 !important;
}

.btn.privilege-btn.btn-up-disabled:after,
.btn.privilege-btn.btn-down-disabled:after {
  font-family: "FontAwesome";
  content: "\f068";
  color: #999999 !important;
}

.col-md-3 {
  width: 25%;
}

.col-md-4 {
  width: 33.33333333%;
}

.col-md-7 {
  width: 58.33333333%;
}

.col-md-3,
.col-md-4,
.col-md-7 {
  float: left;
}

.select2-container {
  vertical-align: top;
  text-align: left;
}

.select2-container--default .select2-selection--multiple {
  border-radius: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: white;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  padding: 3px 10px;
  font-size: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: white;
  border: none;
  padding: 2px 10px;
  font-size: 1em;
  line-height: 12px;
}

.select2-container .select2-search--inline {
  clear: left;
  border: 1px solid rgba(206, 210, 215, 0.5);
  width: 94%;
  padding: 2%;
  margin: 2%;
  line-height: 15px;
  height: 15px;
}

.select2-container .select2-search--inline .select2-search__field {
  /*    margin: 0;
      height: 20px;*/
  width: 93% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: maroon;
  font-size: 1.2em;
  border-right: none;
}

/*@media (max-width: 1600px) {
    .select2-container {
        width: 350px !important;
    }
}*/
.p-l-5 {
  padding-left: 5px;
}

.p-l-15 {
  padding-left: 15px;
}

.privilege-group {
  background: #e6e6e6;
}

.journal_btns {
  padding-top: 10px;
}

.audit_data {
  text-align: left;
  word-break: break-all;
}

.ui-tabs {
  padding: 1em .2em;
}

.ui-tabs .ui-widget-header {
  background: none;
  border: none;
  border-bottom: 1px solid #dddddd;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  font-weight: bold;
  cursor: pointer;
  padding: 1em;
  /*border: 1px solid $focus_brd;*/
  border-bottom: none;
}

.ui-tabs .ui-tabs-nav {
  display: flex;
  border-bottom: 1px solid #ff6600;
}

.ui-tabs .ui-tabs-nav li {
  flex: 1;
  display: flex;
  /* If placed in a small width sidebar or something like that disabling nowrap will fix the overflow issue */
  white-space: normal;
  color: #333333;
}

.ui-tabs .ui-tabs-nav li a {
  flex: 1;
}

.ui-state-active {
  color: #ff6600 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
.ui-tabs-tab-a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #ff6600;
  background: white;
  font-weight: normal;
  color: #ff6600;
}
