:root {
  --bottle: #00192e;
  --bottle_light: #173752;
  --buz: #f2f7fa;
  --w: #FFF;
  --greyb: #dce4e9;
  --blue: #062159;
  --lblue: #06296e;
  --green: #1f7837;
  --red: #cf240a;
  --verylight: #f2f6f7;
}

* {
  box-sizing: border-box;
}

html {
   height: 100vh;
}

body {
  padding:0px;
  margin:0px;
  height: 100vh;
  font-family: Ubuntu;
}

.nothing {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.nothing A {
  color:var(--bottle);
}

.comblok {
  display: flex;
  align-items: center;
  gap:10px;
}

.nrep {
  border-radius: 10px;
  border:1px solid #009933;
  font-size: 12px;
  color: #009933;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding:5px;
}

.fat A{
  font-weight: 700 !important;
}

.logout {
  color: #9c0f08 !important;
  font-weight: 600;
}

.comblok A {
  display: none;
}

.nothing A:hover {
  color:var(--lbottle);
}

INPUT[type="submit"] {
  border: 0px;
  border-radius: 10px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--w);
  font-weight: 700;
  font-size: 16px;
  background: var(--blue);
  text-decoration: none;
  width:100%;
  cursor: pointer;
}

INPUT[type="submit"]:hover {
  background: var(--lblue);
}

.container_auth {
  display: flex;
  height: 100vh;
  width: 100vh;
}

.mainform {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width:600px;
}

.formrow {
  margin-bottom: 20px;
}

.ttl_center {
  text-align: center;
}

.size24 {
  font-size: 24px;
  font-weight: 600;
}

.ticket_row {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap:20px;
}

.ticket_row:last-child {
  margin-bottom: 0px;
  border-radius: 10px;
}


.ticket_row_head div {
  font-size: 16px;
  font-weight: 600;
}

.ticket_row_head {
  display: flex;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  gap:20px;
}

.ticket_status {
  width:10%;
}

.ticket_subject {
  width:70%;
  display: flex;
  gap:20px;
}

.ticket_replies {
  margin-top: 20px;
  margin-bottom: 20px;
}

.loader {
  display: none;
  width:30px;
  height: 30px;
}

.ticket_box > DIV {
  padding-left: 20px;
  padding-right: 20px;
}

.tkb_body {
  border-top: 1px solid var(--blue);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.tkb_ttl {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ticket_box > DIV:first-child {
  padding-top: 20px;
}

FORM {
  margin: 0px;
  padding: 0px;
}

.ticket_box > DIV:last-child {
  padding-bottom: 20px;
}

.ticket_subject A {
  text-decoration: none;
  color: var(--blue);
  font-weight: 500;
}

.ticket_subject A:hover {
  text-decoration: none;
  color: var(--lblue);
  font-weight: 500;
}

.panel_right_head A {
  color: var(--blue);
  text-decoration: none;
}

.panel_right_head A:hover {
  color: var(--lblue);
  text-decoration: none;
}

.ticket_row .ticket_dd {
  font-size: 12px;
  color: var(--lblue);
}

.ticket_row .ticket_lcd {
  font-size: 12px;
  color: var(--lblue);
}

.cbuz {
  background: var(--buz);
}

.ticket_lcd {
  width:10%;
}

.ticket_dd {
  width:10%;
}

.ttl_ddl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  gap:20px;
  align-items: center;
}

.ticket_ddl {
  font-size: 15px;
  font-weight: 500;
  color: var(--bottle);
}

.formrowflex {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.box {
  width:50%;
  display: flex;
  flex-direction: column;
  gap:10px;
  justify-content: center;
}

INPUT[type="text"], INPUT[type="password"], INPUT[type="tel"] {
  height: 60px;
  width:100%;
  border:2px solid var(--greyb);
  border-radius: 10px;
  background: var(--w);
  font-size: 16px;
  padding: 10px;
  font-weight: 600;
}

TEXTAREA {
  height: 150px;
  width:100%;
  border:2px solid var(--greyb);
  border-radius: 10px;
  background: var(--w);
  font-size: 16px;
  padding: 10px;
  font-weight: 600;
}

.container {
  display: flex;
  height: 100vh;
}

.panel_left {
  background: var(--bottle);
  background-size: cover;
  overflow: auto;
  height: 100vh;
  width: 20%;
}

.panel_right {
  background: var(--buz);
  height: 100vh;
  background-size: cover;
  overflow: auto;
  width: 80%;
}

.panel_right_main {
  display: flex;
  gap:20px;
}

.menu {
  margin-top: 40px;
}

.left_title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 40px;
  margin-left: 10px;
  color: var(--w);
}

.panel_right_head {
  margin-left: 40px;
  margin-top: 40px;
  font-size: 30px;
  font-weight: 700;
}

.mb40 {
  margin-bottom: 40px;
}

.panel_right_subhead {
  margin-top: 20px;
  font-size: 16px;
  margin-left: 40px;
  font-weight: 500;
  margin-bottom: 40px;
}

.ttl {
  margin-bottom: 20px;
  font-weight: 500;
}

.text_block {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.prm_left {
  display: flex;
  gap:20px;
  flex-direction: column;
  width:60%;
}

.baton {
  border-radius: 10px;
  height: 60px;
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--w);
  font-weight: 500;
  font-size: 16px;
  background: var(--blue);
  text-decoration: none;
  border:0px;
  cursor: pointer;
}

.noflex {
  display: block;
}

.fa-shield {
  margin-right: 10px;
}

.fa-message {
  margin-right: 10px;
  color: var(--w);
}

.fa-envelope-open {
  margin-right: 10px;
  color: var(--w);
}

.text-center {
  text-align: center;
}

.formrow LABEL {
  color: var(--bottle);
  font-weight: 500;
  display: flex;
  margin-bottom: 5px;
}

.errorbox {
  font-size: 12px;
  font-weight: 500;
  color: red;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.blue {
  color: var(--lblue);
  margin-right: 5px;
}

.crow {
  display: flex;
  gap:20px;
}

.mark {
  display: flex;
  width:30px;
  justify-content: center;
}

.mt40 {
  margin-top: 40px;
}

.cirle {
  border-radius: 50%;
  width:20px;
  height:20px;
  color: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cblue {
  background: var(--blue);
  border: 2px solid var(--blue);
}

.cwhite {
  background: var(--w);
  border: 2px solid var(--blue);
}

.fa-circle {
  font-size:10px;
  color: var(--blue);
  margin-right: 5px;
}

.palka {
  width:2px;
  height: 20px;
  background: var(--blue);
}

.circle {
  border-radius: 50%;
  width:20px;
  height: 20px;
}

.st_open {
  background: var(--green);
}

.st_closed {
  background: var(--red);
}

.weight600 {
  font-weight: 600;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.weight500 {
  font-weight: 500;
}

.baton:hover {
  background: var(--lblue);
}

.prm_right {
  display: flex;
  gap:20px;
  flex-direction: column;
  width:40%;
}

.sblock {
  padding: 20px;
  border:2px solid var(--greyb);
  border-radius: 10px;
  background: var(--w);
}

.ticket_body {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}

.menu_el {
  margin-bottom: 20px;
  margin-right: 30px;
  display: flex;
  gap:20px;
}

.menu_el A IMG {
  width:20px;
  height: 20px;
}

.menu_el A {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 20px;
  color: var(--w);
  font-size: 15px;
  text-decoration: none;
}

.menu_el A:hover {
  background: var(--bottle_light);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.menu_active A {
  background: var(--bottle_light);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.prm_left {
  margin-left: 40px;
}

.prm_right {
  margin-right: 40px;
}

.nolrpad {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.combody_admin {
  background: var(--verylight);
}


/********Chat*************/
.dialog_box {
  overflow: auto;
  display: flex;
  flex-direction: column-reverse;
  max-height: 500px;
  scrollbar-color: var(--hli) var(--llg);
}

.dialog_box DIV:first-child {
  border-bottom: 0px;
}

.dialog_box DIV:last-child {
}

.chaticon IMG {
  width:50px;
  height:50px;
}

.filecombut {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.filecombut A {
  display: flex;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
}

.filecombut A:hover {
  color: var(--lblue);
}

.filecombut A SVG {
  width:20px;
  height:20px;
}

.blyamba {
  display: flex;
  gap:50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.dialog_box:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.admin_mes_pl {
  background: var(--verylight);
}

.admin_mes_pl > DIV:first-child{
  order:1;
}

.admin_mes_pl > DIV:last-child{
  order:2;
}

.user_mes_pl > DIV:first-child{
  order:2;
}

.user_mes_pl > DIV:last-child{
  order:1;
}

.cbody {
  font-size: 20px;
  font-weight: 500;
}

.ddandtext {
  margin-top: 10px;
}

.ddandtext SPAN {
  color: var(--bottle);
  font-weight: 500;
}

.nopadatall {
  padding:0px;
}

.dialog_form {
  padding: 20px;
}

.indic {
  background: none !important;
  padding:0px !important;
}

.indic:hover {
  background: none !important;
}

.mobmenu {
  display: none;
}

.mobbody {
  display: none;
}

.copyrow {
  display: flex;
  gap:20px;
  align-items: center;
}

.copybtn IMG {
  width:60px;
  height: 60px;
  cursor: pointer;
}

.copybtn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:5px;
}

.smallhiden {
  font-size: 10px;
  text-align: center;
  color:var(--blue);
  display: hidden;
}

@media (max-width: 480px) {
  .mobmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    background: var(--blue);
    height: 60px;
    width: 100%;
  }

  .mobbody {
    flex-direction: column;
    position: fixed;
    margin-top: 60px;
    background: var(--blue);
    width:100%;
    border-top: 2px solid var(--lblue);
    padding-top: 20px;
  }

  .flex {
    display: flex;
  }

  .panel_right_head {
    font-size: 14px;
  }

  .ticket_row_head div {
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .ticket_status, .ticket_subject, .ticket_lcd, .ticket_dd {
    width:25%;
  }

  .menu_el A {
    padding-left: 20px;
  }

  .mobmenu_left {
    font-weight: 600;
    color: #FFF;
  }

  .burger {
    cursor: pointer;
  }

  .burger IMG {
    width:40px;
    height: 40px;
  }

  .mobbody {

  }

  .panel_left {
    display: none;
  }

  .panel_right {
    height: auto;
    width: 100%;
    margin-top: 60px;
  }

  .panel_right_subhead {
    margin-left: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .panel_right_main {
    flex-direction: column;
  }

  .prm_left {
    width:100%;
    margin-left: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .prm_right {
    width:100%;
    margin-left: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container_auth {
    height: auto;
    width:auto;
  }

  .mainform {
    width:100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
