@font-face {
  font-family: Algerian; /* Имя шрифта */
  src: url(../Algerian_Regular.ttf);
  font-weight: Regular;
}
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  }
  
  body{
    /*min-height: 100vh;*/
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(120deg,#3498db,#8e44ad)no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  
  html, body {margin: 0; /*height: 100%;*/ overflow: hidden;will-change: transform;}
  
  /*Preloader*/
  #preloader {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  
  #loader {
    display: block;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  .loadbox {
    position: relative;
    left: 50%;
    top: 50%;
  }

  #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
  }
  
  #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  ::-webkit-scrollbar {
    width: 10px;
    height:5px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #fff;
    border-left: 1px solid #ccc;
  }
  
  ::-webkit-scrollbar-thumb {
      background-color: #ccc;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background-color: #aaa;
  }

  .all_center_content {
      min-height: 94vh;
      margin-top: 2vh;
      margin-right: 3vh;
      margin-left: 295px !important;
  }
  
  @media screen and (max-width: 1300px){
      .all_center_content {
        margin-left: 260px !important;
      }
      .btn {
        width: 49% !important;
      }
  }

  @media screen and (max-width: 1000px){
    .all_center_content {
      margin-right: 1vh !important;
      margin-left: 1vh !important;
      margin-top: 2vh !important;
    }
    .radio-group {
      margin-right: 0 !important;
    }
    .btn {
      font-size: 14px !important;
      width: 100% !important;
    }
    .div2_open_form_req {
      padding: 10% !important;
    }
    .helvet_text {
      font-size: 14px !important;
    }
    #rightbar_anim1 {
      display: none;
    }
  }

  /*@media screen and (max-width: 1400px){
    .btn {
      width: 34% !important;
    }
  }*/
  
  @media screen and (min-width: 1000px){
    .div2_open_form_req {
      padding-left: 30% !important;
      padding-right: 30% !important;
      padding-top: 7% !important;
    }
  }

  .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    line-height: 1.5;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    margin-bottom: 4px;
    width: 49%;
  }
  
  .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
  }
  .btn-success:hover {
    background-color: #00b92a;
    border-color: #00b92a;
  }
  .btn-success:active {
    background-color: #39854a;
    border-color: #39854a;
  }

  .btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
  }
  .btn-warning:hover {
    background-color: #ffd24d;
    border-color: #ffd24d;
  }
  .btn-warning:active {
    background-color: #daa300;
    border-color: #daa300;
  }

  .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }
  .btn-danger:hover {
    background-color: #ff3145;
    border-color: #ff3145;
  }
  .btn-danger:active {
    background-color: #d30015;
    border-color: #d30015;
  }

  .btn-primary {
    color: #fff;
    background-color: #a322ff;
    border-color: #a322ff;
  }
  .btn-primary:hover {
    background-color: #b64fff;
    border-color: #b64fff;
  }
  .btn-primary:active {
    background-color: #7300c5;
    border-color: #7300c5;
  }

  .btn-info {
    color: #fff;
    background-color: #1f42ff;
    border-color: #1f42ff;
  }
  .btn-info:hover {
    background-color: #4361ff;
    border-color: #4361ff;
  }
  .btn-info:active {
    background-color: #0023de;
    border-color: #0023de;
  }

  .btn-purple {
    color: #fff;
    background-color: #ff06b7;
    border-color: #ff06b7;
  }
  .btn-purple:hover {
    background-color: #ff29c2;
    border-color: #ff29c2;
  }
  .btn-purple:active {
    background-color: #d6009a;
    border-color: #d6009a;
  }

  .loader_text {
    top: 55%;
    display: block;
    position: relative;
    text-align: center;
    font-size: 17px;
    color: white;
  }

  .div1_open_form_req {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  
  #div2_open_form_req {
    display: block;
    position: relative;
    padding: 20%;
  }

  .form-control {
    background-color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 1px;
  }

  ::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    height: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
  }
  /* Optional: show position indicator in red */
  ::-webkit-scrollbar-thumb {
      background: #FF0000;
      border-radius: 10px;
  }

  .helvet_text {
    font-weight: bold;
    font-size: 16px;
  }

  .chat_mini_btn {
    float: right;
    width: 10% !important;
  }

  @media screen and (max-width: 1300px){
      .header {
          width: 15em !important;
      }
      .dropdown-content {
          margin: 0 0 0 25px !important;
      }
  }
  
  @media screen and (max-width: 1000px){
    #HEADER_leftbar_PC {
        display: none;
    }
    #ID_btn_close_leftbar {
      display: block;
    }
    .header {
        background: rgba(0, 0, 0, 0.8) !important;
    }
    .inp_chat_send_text {
      height: 35px !important;
      width: 78.5% !important;
    }
    .chat_mini_btn {
      width: 13% !important;
    }
  }

  @media screen and (max-width: 700px){
    .hide_mobile {
        display: none;
    }
    .show_mobile {
      display: block !important;
    }
    .tbl_scroll {
      max-height: 90vh !important;
    }
  }
  
  @media screen and (min-width: 1001px){
    #ID_btn_close_leftbar {
        display: none;
    }
    #HEADER_leftbar_PC {
        display: block  !important;
    }
  }
  
  .none {
    display: none !important;
  }

  .show_mobile {
    display: none;
  }
  
  :before,
  :after {
      box-sizing: border-box;
  }
  
  .unstyled {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .unstyled a {
      text-decoration: none;
  }
  
  .header {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      width: 17.5em;
      background: rgba(0, 0, 0, 0.5);
      overflow: auto;
  }
  
  .logo {
      text-align: center;
      padding: 0;
      margin: 0;
  }
  
  .logo a {
      display: block;
      padding-top: 10%;
      color: #DFDBD9;
      text-decoration: none;
      transition: .15s linear color;
      font-size: 40px;
      font-family: Algerian, 'Regular';
  }
  
  .logo a:hover {
      color: #00eeff;
      cursor: pointer;
  }
  
  .logo a:hover span {
      color: #d07aff;
      cursor: pointer;
  }
  
  .logo span {
      font-size: 40px;
      transition: .15s linear color;
      font-family: Algerian, 'Regular';
  }
  
  .project_h3 {
      display: block;
      color: #DFDBD9;
      text-decoration: none;
      font-size: 13px;
      text-align: center;
      font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
      padding-bottom: 10%;
      transition: .15s linear color;
  }
  .project_h3 a{
      transition: .15s linear color;
      color: #DFDBD9;
      text-decoration: none;
      font-size: 13px;
      text-align: center;
      font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  }
  
  .project_h3:hover a{
      color: #00eeff;
      cursor: alias;
  }
  
  .project_h3:hover {
      color: #d07aff;
      cursor: default;
  }
  
  .main-nav a {
      padding: 1.1em 0;
      color: #DFDBD9;
      font-size: 13pt;
      margin-left: 25px;
      text-align: left;
      font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  }
  
  .main-nav a:hover {
      color: #fff;
      cursor: pointer;
  }
  
  .list-hover-slide li {
      position: relative;
      overflow: hidden;
      transition: background-color 0.5s linear;
  }
  
  .list-hover-slide a {
      display: block;
      position: relative;
      z-index: 1;
      transition: .15s linear color;
  }
  
  .list-hover-slide li:hover {
      background: rgba(67, 137, 211, 0.5);
  }
  
  .dropdown-content {
      overflow: auto;
      margin: 0 0 0 50px;
  }

  .request_item, .archive_sms_item, .archive_requests_item, .archive_tasks_item, .archive_tickets_item, .buglist_item, .delayed_list_item {
    display: none;
  }
  
  .order {
      transition: 0.5s;
  }

  .order:hover {
      background: rgba(0, 255, 24, 0.3) !important;
      transition: 0.5s;
      cursor: pointer;
  }
  
  .centr_table_input[type=radio] {
      position: absolute;
      visibility: hidden;
      display: none;
  }

  .centr_table_label {
      display: inline-block;
      cursor: pointer;
      padding: 5px 20px;
      font-weight: bold;
      transition: 0.5s;
      width: 230px;
      text-align: center;
      color: white;
      font-size: 18px;
  }

  .centr_table_label:hover {
      background-color: #a7ff94;
      transition: 0.5s;
      color: black;
  }

  .centr_table_input[type=radio]:checked + .centr_table_label{
      background: #8bfdaa;
      color: black;
  }

  .sp {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 10px 20px 10px;
  }

  .radio-group {
    overflow: hidden;
    margin-right: 1px;
    color: black;
    text-align: center;
  }
  
  .table {
      background: #fff;
      width: 100%;
      border-spacing: 0;
  }
  
  .table thead td{
      color: #106090;
      cursor: default;
      font-weight: bold;
      text-align: center;
      font-size: 16px;
  }
  
  .table tbody th{
      color: #ae00ff;
      cursor: default;
      font-weight: bold;
      text-align: center;
  }
  
  .table_bordered {
      border-collapse: separate;
      border-collapse: collapse;
      border-left: 0;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
  }
  
  th, td {
      border: 1px solid #d9d9d9;
      padding: 4px;
      font-weight: bold;
      font-size: 16px;
  }
  
  @media screen and (max-width: 1000px){
      th, td {
          font-size: 14px;
      }
      .td_host {
          display: none;
      }
      .table_log {
          max-height: 60vh !important;
      }
    }
  
  .table tbody:nth-child(even) {
    background: rgba(192, 192, 192, 0.384);
  }
  
  .tr_order_info {
      display: none !important;
  }

  .tr_red {
    background-color: #ff000042 !important;
  }
  .tr_red:hover {
    background-color: #ff000094 !important;
  }
  .tr_orange {
    background-color: #ffa60045 !important;
  }
  .tr_orange:hover {
    background-color: #ffbb0094 !important;
  }
  .cr_red {
    color: red !important;
  }
  .inline_flex {
      display: inline-flex;
      display: -webkit-inline-box;
  }
  .select {
      font-size: 16px;
      padding: 2px;
      border: 1px solid;
      font-weight: bold;
  }
  option {
      font-weight: bold;
  }
  .div2_open_form_req {
      text-align: center;
  }

  .checkbox input[type="checkbox"] {
      display: none;
  }
  
  .checkbox label {
      color: #000;
      cursor: pointer;
      font-weight: normal;
      line-height: 30px;
      padding: 10px 0;
      vertical-align: baseline;
  }
  
  .checkbox label:before {
      content: " ";
      color: #000;
      display: inline-block;
      /* шрифт Awesome*/
      font: 15px/18px FontAwesome;
      margin-right: 15px;
      position: relative;
      text-align: center;
      text-indent: 0px;
      width: 20px;
      height: 20px;
      background: #FFF;
      border: 1px solid #e3e3e3;
      border-image: initial;
      vertical-align: text-bottom;
  }
  
  .checkbox input:checked + label:before {
      content: "\f00c";
  }
  
  .checkbox input:disabled + label:before {
      background: #eee;
      color: #aaa;
  }

  .table_mini {
      font-size: 13px !important;
      text-align: left !important;
  }

  .block_chat_msg_left{
    text-align: left;
    background-color: #ffe1fe;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 1%;
  }

  .block_chat_msg_right{
      text-align: right;
      background-color: #ccffcc;
      border-radius: 10px;
      padding: 12px;
      margin-bottom: 1%;
  }

  .chat_date_msg {
      font-size: 10px;
      color: #686868;
  }

  .block_chat_msg_left:nth-child(even) {
      background-color: #eaeaea;
  }

  .inp_chat_send_text {
    float: left;
    width: 84%;
    height: 38px;
  }

  .chat_msg {
    font-size: 14px;
  }

  .chat_user_msg {
    color: red;
  }

  .node_status {
    margin-top: 2px;
    text-align: center;
    padding-top: 2px;
    float: right;
    width: 70px;
    height: 20px;
    font-size: 14px;
    color: white;
  }

  .panel {  
    height:138px;
    width: 140px;
    background: whitesmoke;
    border: 1px solid black;
  }

  .search-box{
    opacity: 1;
    width: 200px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 30px;
    left: 50%;
    top: 50%;
    margin: 15 0 15 0;
  }

  .search-txt{
    border: 0;
    width: 100%;
    height: 100%;
    background: none;
    padding: 0 30px;
    color: #fff;
    outline: none;
    padding-right: 50px;
  }
  
  .search-txt::placeholder{
    color: #fff;
  }

  .search-icon{
    text-align: center;
    line-height: 60px !important;
    cursor: pointer;
    font-size: 18px;
  }
  
  .search-icon:hover{
    transform: scale(1.1);
  }
  
  .btn_search {
    position: absolute;
    padding: 0.3em;
    cursor: pointer;
    font-size: 1.6em;
    color: white;
    line-height: 1;
    z-index: 2;
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
    margin-left: -30px;
    transition: .2s linear;
}

.btn_search:after {
    content: '\2771';
    text-decoration: none;
}

:disabled {
  background-color: #aaa;
  color: black;
  border: 1px solid grey;
  cursor: not-allowed;
}

:disabled:hover {
  cursor: not-allowed;
  background-color: #aaa;
  color: black;
  border: 1px solid grey;
}

textarea {
  resize: vertical;
}

.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.color_green {
  color: rgb(0, 187, 0) !important;
}

.color_red {
  color: #ff2c2c !important;
}

.color_orange {
  color: orange !important;
}

.new_checkbox[type="checkbox"] {
  width: 40px;
  height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #c6c6c6;
  outline: none;
  border-radius: 50px;
  box-shadow: inset 0 2px 2px rgba(0,0,0, .5);
  transition: 0.5s;
  position: relative;
}

.new_checkbox:checked[type="checkbox"] {
  background: #02a9f4;
}

.new_checkbox[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 0;
  left: 0;
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 2px 2px rgba(0,0,0, .5);
  transition: 0.5s;
}

.new_checkbox[type="checkbox"]:disabled::before {
  background: rgb(155, 155, 155);
  cursor: not-allowed;
  border: 0 !important;
}

.new_checkbox[type="checkbox"]:hover{
  border: 0 !important;
}

.new_checkbox[type="checkbox"]:disabled{
  border: 0 !important;
}

.new_checkbox:checked[type="checkbox"]::before {
  left: 20px;
}

#settings_content > div > div {
  padding-bottom: 30px;
}

#settings_content > div > div > span {
  float: left;
}

#settings_content > div > div > input, #settings_content > div > div > select {
  float: right;
  margin-right: 4px;
}

#stuff_edit_permissions > div > div {
  padding-bottom: 30px;
}

#stuff_edit_permissions > div > div > span {
  float: left;
}

#stuff_edit_permissions > div > div > input, #stuff_edit_permissions > div > div > select {
  float: right;
  margin-right: 4px;
}

.stuff_edit_permissions_borders {
  border: black solid 2px;
  padding: 5px 5px 0 5px;
  margin-bottom: 5px;
}

.right_nav_panel_btn_slide {
  height: 100%;
  width: 20px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  background: rgb(34, 68, 105, 0.8);
  cursor: pointer;
}

.right_nav_panel_btn_slide > span {
  display: block;
  margin-top: 49.5vh;
  color: white;
  font-size: 18px;
  transition: transform 0.3s;
}

.right_nav_panel_content {
  width: 250px;
  display: block;
  height: 100%;
  top: 0;
  right: -250px;
  position: absolute;
  background: rgb(34, 68, 105, 0.8);
}

.active_list_act {
  width: 230px;
  border: 3px solid white;
  overflow: scroll;
  max-height: calc(100% - 180px);
  margin: 10px 0px 0px 10px;
}

#div_duble_active_list {
  margin: 10px;
  background: white;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.div_mute_icn_bd {
  display: none;
  position: absolute;
  z-index: 1;
  text-align: right;
  top: 90%;
  left: 90%;
}

.mute_icn_bd {
  width: 50px;
}

.cls-context-menu ul, #context-menu li {
  list-style:none;
  margin:0; padding:0;
  background:white;
}

.cls-context-menu {
  border:solid 2px rgb(98, 0, 255);
  width: 150px;
  display:none;
  position:absolute;
  cursor: pointer;
}

.cls-context-menu li {
  display:block;
  padding:5px 12px;
  text-decoration:none;
  color:rgb(0, 0, 0);
  transition: 0.5s;
}

.cls-context-menu li:hover{
  background: rgb(25, 0, 255);
  color: rgb(255, 255, 255);
}

.cls-context-menu li:last-child {
  border:none;
}

.context-menu-icon {
  top: 1px;
  position: relative;
  margin-right: 2px;
}

.cls-context-menu-item {
  cursor: pointer;
  display:block;
  padding:20px;
  background:#ECECEC;
}

#loader_SI_text > span {
  font-family: Algerian, 'Regular';
  text-shadow: 
    1px 1px 0px #9a9a9a,
    2px 2px 0px #898989,
    3px 3px 0px #7e7e7e,
    4px 4px 0px #6f6f6f,
    5px 5px 0px #696969,
    6px 6px 5px #5f5f5f,
    6px 6px 10px #404040;
}

#file_chatbox{
    display: none;
}

.pulse_red {
  -webkit-animation: pulse_red 2s linear infinite;
  animation: pulse_red 2s linear infinite;
}

@keyframes pulse_red{
  0%{color: unset;}
  50%{color: red;}
  100%{color: unset;}
}

.online_lists {
  z-index: 9999;
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 180px;
  background-color: #5b72c6;
  color: white;
  border: 1px solid #888;
  border-radius: 2px;
  box-shadow: 0 1px 2px #555;
  font-size: 16px;
  text-align: center;
}

.log_downl {
  cursor: pointer;
  color: black;
}

.log_downl:hover {
  color: blue;
}

.online_list_color_green:after {
  content: '\2714';
  color: #00ee00 !important;
}

.online_list_color_red:after {
  content: '\2716';
  color: #FF0000 !important;
}

.copy_to_buffer {
  cursor: pointer;
  text-decoration: underline;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.tbl_scroll {
  overflow: scroll;
  max-height: 95vh;
}

.modal_window_layer_1 {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_window_layer_2 {
  margin: 3vh 8%;
  background-color: white;
  padding: 10px;
}

.modal_inside_layer_left {
  word-break: break-all;
  padding-right: 4px;
}

.modal_inside_layer_right {
  word-break: break-all;
  margin-left: 40%;
  padding-left: 5px;
  border-left: 5px solid #000000;
}

.modal_inside_content {
  overflow: scroll;
  max-height: calc(90vh - 26px);
}

.modal_window_no_layer_left {
  width: 60%;
  margin: 3vh auto;
}

.modal_window_no_layer_right {
  width: 40%;
  margin: 3vh auto;
}

.modal_window_float_left_fix {
  float: left;
  width: 40%;
}

.modal_window_width_left_fix {
  margin-left: unset !important;
  border: unset !important;
}

.back_color_green {
  background-color: #00da0b;
}

.back_color_yellow {
  background-color: #f8ff4f;
}

.display_none {
  display: none;
}

.display_block {
  display: block;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown-two {
  position: relative;
  display: inline-block;
}

.dropdown-content-two {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content-two a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown-content-two .dropdown-a-two:hover {background-color: rgb(101, 255, 147);}

.dropdown-two:hover .dropdown-content-two {display: block;}

.dropdown-two:hover .dropbtn-two {background-color: #6100a7;}

.order-tickets-up > th {
  border: unset;
  border-top: 3px solid rgb(123, 0, 180) !important;
  border-bottom: 3px solid rgb(123, 0, 180) !important;
}

.order-tickets-up > td{
  border-top: 3px solid rgb(123, 0, 180) !important;
}

.order-tickets-down > td {
  border-bottom: 3px solid rgb(123, 0, 180) !important;
}

.ticket-search {
  width: 100%;
  background: unset;
  padding: 4px;
  font-size: 15px;
  color: white;
  outline: unset;
  border-color: white;
  border-style: solid;
  font-weight: bold;
}

.ticket-search::placeholder {
  color: rgb(214, 214, 214);
}

.tickets-types {
  text-align: center;
  display: flex;
}

.tickets-types > input {
  cursor: pointer;
  padding: 5px 20px;
  font-weight: bold;
  transition: 0.5s;
  width: 50%;
  color: white;
  font-size: 18px;
  outline: none;
  background: rgb(34, 68, 105, 0.8);
  border: unset;
  margin: 0;
}

.tickets-types-selected {
  background: rgb(40 117 154) !important;
}



#sipDragWindow {
  display: none;
  background-color: #0b3689;
  cursor:move;
  width: 215px;
  color: white;
  padding: 0 5px;
  border: black solid 2px
}

#sipDragWindow > hr{
  border: none;
  background-color: white; 
  color: white;
  height: 2px;
  margin-top: 2px;
}

.sipDragWindowBtnCloseWindow {
  position: absolute;
  right: 16px;
  width: 16px;
  height: 16px;
  opacity: 0.7;
  cursor: pointer;
  color: white;
}
.sipDragWindowBtnCloseWindow:hover {
  opacity: 1;
}

.sipDragWindowBtnCloseWindow:before, .sipDragWindowBtnCloseWindow:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 18px;
  width: 2px;
  background-color: white;
}

.sipDragWindowBtnCloseWindow:before {
  transform: rotate(45deg);
}

.sipDragWindowBtnCloseWindow:after {
  transform: rotate(-45deg);
}

#sipDragWindowBottom {
  background-color: #0b3689;
  width: 200px;
  color: white;
  padding: 2px 5px;
  border-radius: 10px 10px 0 0;
  left: 0;
  bottom: 0;
  position: fixed;
  cursor: move;
}

#sipDragWindowBtnCall {
  background-color: #25c43d;
  color: white;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
  border: 0;
  margin-top: 5px;
  transition: 0.3s;
  outline: none;
}

#sipCragWindowBtnCall:hover {
  background-color: #0be32c;
}

#sipDragWindowBtnCall:active {
  background-color: #249635;
}

#sipDragWindowBtnHangUp {
  background-color: #db1010;
  color: white;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
  border: 0;
  margin-top: 5px;
  transition: 0.3s;
  outline: none;
}

#sipDragWindowBtnHangUp:hover {
  background-color: #ff2525;
}

#sipDragWindowBtnHangUp:active {
  background-color: #b91414;
}

.sipDragWindowCallTimerPulceRed {
  -webkit-animation: sipDragWindowCallTimePulceRed 1s linear infinite;
  animation: sipDragWindowCallTimePulceRed 1s linear infinite;
}
@-webkit-keyframes sipDragWindowCallTimePulceRed {
  0% { color: white; }
  50% { color: red; }
  100% { color: white; }
}
@keyframes sipDragWindowCallTimePulceRed {
  0% { color: white; }
  50% { color: red; }
  100% { color: white; }
}


.sipDragWindowIncomingPulse {
  -webkit-animation: sipDragWindowIncomingPulse 1s linear infinite;
  animation: sipDragWindowIncomingPulse 1s linear infinite;
}
@-webkit-keyframes sipDragWindowIncomingPulse {
  0% {
      box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -moz-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -webkit-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
  }
  50% {
      box-shadow: rgb(255, 0, 0, 1) 0 0 2px 2px;
      -moz-box-shadow: rgb(255, 0, 0, 1) 0 0 2px 2px;
      -webkit-box-shadow: rgb(255, 0, 0, 1) 0 0 2px 2px;
  }
  100% {
      box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -moz-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -webkit-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
  }
}
@keyframes sipDragWindowIncomingPulse {
  0% {
      box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -moz-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -webkit-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
  }
  50% {
      box-shadow: rgb(255, 0, 0, 1) 0 0 2px 2px;
      -moz-box-shadow: rgb(255, 0, 0, 1) 0 0 2px 2px;
      -webkit-box-shadow: rgb(255, 0, 0, 1) 0 0 2px 2px;
  }
  100% {
      box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -moz-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
      -webkit-box-shadow: rgb(255, 0, 0, 1) 0 0 20px 20px;
  }
}

.sipDragWindowBtnMute {
  background-image: url(/core/assets/svg/microphone.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  width: 40px;
  height: 26px;
  background-color: green;
  border-radius: 10px;
  background-position: 13px;
  outline: none;
  border: none;
  transition: 0.1s;
}

.sipDragWindowBtnUnMute {
  background-image: url(/core/assets/svg/microphone-slash.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  width: 40px;
  height: 26px;
  background-color: red;
  border-radius: 10px;
  background-position: 8px;
  outline: none;
  border: none;
  transition: 0.1s;
}


.email_templates {
  border: 1px solid black;
  padding: 2px;
  cursor: pointer;
  transition: 0.5s;
}

.email_templates:hover {
  background-color: #00ee006b;
}

.email_templates_lang {
  display: inline;
  border: 1px solid #8100ff;
  padding: 3px;
  border-radius: 4px;
  background-color: bisque;
  margin: 0 5px;
}


.modal-form {
  display: inline-block;
  padding: 15px;
  width: 40%;
  background: white;
  vertical-align: middle;
}

.modal-form textarea[name="text"] {
  width: 100% !important;
  font-size: 15px;
  padding: 6px;
  font-weight: bold;
}

.modal-form input[name="text"] {
  width: 100% !important;
  font-size: 15px;
  padding: 3px;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

.modal-container:before {
  display: inline-block;
  height: 100%;
  content: '';
  vertical-align: middle;
  margin-top: -70vh;
}

@media screen and (max-width: 1200px){
  .modal-form {
    width: 50%;
  }
}

@media screen and (max-width: 1000px){
  .modal-form {
    width: 60%;
  }
}

@media screen and (max-width: 600px){
  .modal-form {
    width: 85%;
  }
}

.sipDragWindowBtnInputPhone {
  background-image: url(/core/assets/svg/phone-square-alt-solid.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  vertical-align: sub;
  width: 41px;
  height: 26px;
  background-color: white;
  background-position: 8px;
  outline: none;
  border: none;
}

/*.stats_table tr {
  border: 1px black solid;
  float: left;
}

.stats_table td {
  display: block;
  font-weight: unset;
}*/

.stats_table > div {
  display: inline-block;
  width: 205px;
  border: black 2px solid;
}

.stats_table span {
  display: block;
  padding: 8px 0;
  border: rgb(184, 184, 184) solid;
  border-width: 1px 0;
}

.stats_table {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.stats_table::-webkit-scrollbar {
  height: 10px;
}

.stats_table::-webkit-scrollbar-thumb {
  background: #FF0000;
  border-radius: 10px;
}


@keyframes snow {
  0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
  100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}

#snow-container, .snow-container {
  background-image: url(images/snowflake.png), url(images/snowflake3.png), url(images/snowflake2.png);
  height: 100%;
  animation: snow 20s linear infinite;
}

@media screen and (max-width: 1300px) {
  .shapka {
    background-position: -2px 19px !important;
  }
}

.shapka {
  background-image: url(images/shapka.png);
  background-position: 15px 24px;
  background-repeat: no-repeat;
  background-size: 42px;
}