@import url("https://fonts.googleapis.com/css2?family=Fasthand&family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;400;600&family=Open+Sans");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  font-family: "Fira Sans", sans-serif;
  border: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  background: #ccc;
  height: auto;
  overflow-x: hidden;
}

.loginbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loginbox .logo {
  max-height: 120px;
  margin: 20px auto;
  display: block;
}
.loginbox .div {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loginbox .div input, .loginbox .div button {
  font-size: 130%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  width: 300px !important;
  margin: 3px 0px;
}
.loginbox .div input[type=submit], .loginbox .div button[type=submit] {
  color: white;
  margin-top: 10px;
  border: none;
  background: #ccc;
}

.ch_input {
  display: block;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  background: #eaeaea;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ch_input input {
  display: none;
  position: absolute;
}
.ch_input input[type=checkbox]:checked + span {
  background: #009900;
  color: white;
}
.ch_input:hover {
  background: #ccc;
}
.ch_input span {
  padding: 5px 20px;
}

.deletelabel {
  display: none;
}

.userlabels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hidden {
  display: none !important;
}

.stname span {
  opacity: 0.6;
  font-size: 60%;
}

.mobile_header {
  display: none;
}

.select_question_base {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.select_question_base .accorhHeader {
  font-size: 130%;
  font-weight: bold;
  color: blue;
  cursor: pointer;
}
.select_question_base .quest {
  display: none;
}
.select_question_base .quest > label {
  display: block;
  background: #eaeaea;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 80%;
}

.n_0 .number {
  display: none !important;
}

.setlabel select {
  border: none;
  width: 200px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
}

.addedItem input {
  background: #fff;
  padding: 10px;
  border: none;
  margin-left: 10px;
  outline: none;
  opacity: 0.6;
}
.addedItem input:focus {
  opacity: 1;
}

.notification_item {
  margin-bottom: 6px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #eaeaea;
  padding: 5px 20px;
  border-radius: 10px;
}
.notification_item.read_0 {
  background: #ccc;
  color: white;
}
.notification_item:hover {
  background: #444;
  color: #fff;
}
.notification_item h3 {
  margin: 0;
  font-weight: 100;
  padding: 0;
}

.noLeft {
  -ms-grid-columns: 0px 1fr 46px !important;
  grid-template-columns: 0px 1fr 46px !important;
}

.opener {
  position: absolute;
  width: 70vw;
  background: #fff;
  height: 100vh;
  top: 0;
  right: -70vw;
  z-index: 100;
  padding: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow: auto !important;
}

.opener_open .maincontent {
  pointer-events: none;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.opener_open .opener {
  right: 0;
  -webkit-box-shadow: -13px 1px 50px -20px rgba(0, 0, 0, 0.25);
          box-shadow: -13px 1px 50px -20px rgba(0, 0, 0, 0.25);
}

.maingrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 15px 1fr 15px 1px;
  grid-template-columns: 240px 1fr 1px;
  height: calc(100vh - 40px);
  margin-top: 20px;
  gap: 15px;
}
.maingrid .maincontent {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  overflow-y: auto;
  overflow-x: hidden;
}
.maingrid .maincontent .headerline {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ccc;
  font-size: 130%;
}
.maingrid .maincontent .headerline div {
  white-space: nowrap;
}
.maingrid .maincontent .headerline > div:first-child {
  font-weight: bold;
}
.maingrid .leftmenu .userzone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 40px 10px 1fr;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-left: 30px;
  color: #444;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 90%;
  margin-bottom: 20px;
}
.maingrid .leftmenu .userzone .profile {
  background: #444;
  width: 35px;
  height: 35px;
  border-radius: 100px;
}
.maingrid .leftmenu .userzone .profile img {
  width: 100%;
  border-radius: 100px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maingrid nav.nav {
  position: relative;
  background: #009900;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 82vh;
  padding: 30px;
  min-height: 500px !important;
}
.maingrid nav.nav .new_folder {
  cursor: pointer;
  padding-left: 20px;
  font-size: 80%;
  margin-top: -14px;
  margin-bottom: 10px;
}
.maingrid nav.nav .new_folder:hover {
  color: #ccc;
  opacity: 0.6;
}
.maingrid nav.nav .sub {
  padding-left: 20px;
}
.maingrid nav.nav .sub .nnm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maingrid nav.nav .sub .sep {
  height: 1px;
  background: #ccc;
  margin: 10px 0px;
}
.maingrid nav.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.maingrid nav.nav ul li.blline {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.maingrid nav.nav ul li .userlabels:hover .deletelabel {
  display: block;
  cursor: pointer;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.maingrid nav.nav ul li .userlabels:hover .deletelabel:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.maingrid nav.nav ul li.selected > a, .maingrid nav.nav ul li.selected > .nnm > a {
  color: #ccc;
  font-weight: bold;
  font-size: 100%;
  opacity: 1 !important;
}
.maingrid nav.nav ul li.selected > a:hover, .maingrid nav.nav ul li.selected > .nnm > a:hover {
  opacity: 1 !important;
}
.maingrid nav.nav ul li.button {
  margin-top: 30px;
  background: #ccc;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  padding-left: 15px;
  display: inline-block;
  padding-right: 15px;
}
.maingrid nav.nav ul li a {
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  display: block;
  font-size: 80%;
  padding: 6px 0px;
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
  white-space: nowrap;
}
.maingrid nav.nav ul li a:hover {
  opacity: 0.6;
}
.maingrid .icons_top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.maingrid .icons_top ul li a {
  text-align: center;
  width: 30px;
  height: 55px;
  color: white;
  display: block;
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.maingrid .icons_top ul li a:hover {
  opacity: 1;
}
.maingrid .icons_top ul li .n_0 a {
  opacity: 0.7 !important;
}
.maingrid .icons_top ul li.notification {
  position: relative;
}
.maingrid .icons_top ul li.notification a {
  background: url("../images/icons/Notification.png") no-repeat center;
  background-size: 100%;
  opacity: 1;
}
.maingrid .icons_top ul li.notification .number {
  position: absolute;
  font-size: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: red;
  border-radius: 100px;
  width: 15px;
  height: 15px;
  bottom: 10px;
  right: 15px;
}
.maingrid .icons_top ul li.mail a {
  background: url("../images/icons/Mail.png") no-repeat center;
  background-size: 100%;
}
.maingrid .icons_top ul li.settings a {
  background: url("../images/icons/Settings.png") no-repeat center;
  background-size: 100%;
}
.maingrid .line {
  position: absolute;
  right: 30px;
  top: 225px;
  height: calc(100vh - 530px);
  width: 2px;
  background: #fff;
}
.maingrid .logo_au {
  color: white;
  white-space: nowrap;
  -webkit-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
  position: absolute;
  right: -35px;
  font-size: 120%;
  bottom: 160px;
}

.inside_content {
  margin: 30px 0px 0px 0px;
}

.deletedoc {
  -webkit-transform: scale(1.5) !important;
          transform: scale(1.5) !important;
  opacity: 0 !important;
}

div.logout {
  width: 180px;
  position: absolute;
  left: 20px;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
div.logout .logo {
  width: 100%;
  text-align: center;
}
div.logout .logo img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
div.logout .prName {
  padding: 20px;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}
div.logout svg {
  width: 20px;
  fill: #ccc;
  height: 20px;
}
div.logout a {
  color: #ccc;
  text-decoration: none;
  font-size: 90%;
}

.msg_ok {
  padding: 20px;
  background: rgba(0, 153, 0, 0.3137254902);
  margin: 30px auto;
  max-width: 400px;
  border-radius: 10px;
}

.msg_notok {
  padding: 20px;
  background: rgba(153, 0, 0, 0.3137254902);
  margin: 30px auto;
  max-width: 400px;
  border-radius: 10px;
}

.notes {
  background-attachment: local;
  background-image: linear-gradient(to right, white 10px, transparent 10px), linear-gradient(to left, white 10px, transparent 10px), repeating-linear-gradient(white, white 30px, #ccc 30px, #ccc 31px, white 31px);
  line-height: 31px;
  padding: 8px 10px;
  font-family: "Fira Sans", sans-serif;
  width: 100%;
  border-radius: 20px;
  font-size: 100%;
  border: none;
}

.copy,
.copied {
  margin-bottom: 30px;
}

.copyanchor {
  border: none;
  margin-bottom: 3px;
  background: none;
  outline: none;
  text-align: center;
}

.adds_form .trumbowyg-editor {
  min-height: 30vh !important;
}

.trumbowyg-editor {
  min-height: 40vh !important;
  background: #fff;
}

.trumbowyg-editor img {
  max-width: 300px;
  max-height: 300px;
}

.bigbtn {
  text-align: center;
}
.bigbtn button {
  font-size: 120%;
  padding: 20px 50px;
  background: #ccc;
  color: white;
  border: none;
  cursor: pointer;
}
.bigbtn button:hover {
  background: #b3b3b3;
}

.eleveheader {
  font-size: 80%;
  padding-left: 10px;
}

.editorM {
  background: #fff;
  position: fixed;
  width: calc(100% - 565px);
}

.trumbowyg-editor table {
  width: 100%;
}

.trumbowyg-editor table td {
  border: 1px dotted #e7eaec;
  padding: 8px;
}

.trumbowyg-dropdown-table table {
  margin: 10px;
  display: inline-block;
}

.trumbowyg-dropdown-table table td {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 1px;
  padding: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #cecece inset;
          box-shadow: 0 0 0 1px #cecece inset;
}

.trumbowyg-dropdown-table table td.active {
  background-color: #00b393;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

.adds_form {
  max-width: 900px;
  margin: 40px auto;
  border-radius: 30px;
  background: #eaeaea;
  padding: 40px;
}
.copy .rem {
  display: none;
}

.copied .add {
  display: none;
}

.hidden {
  display: none;
}

li .number {
  background: #f50000;
  color: white;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  font-weight: normal;
  font-size: 70%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
li .number.n_0 {
  display: none;
}

.main_add_form {
  border-radius: 30px;
  max-width: 900px;
  background: #eaeaea;
  margin: 40px auto;
  padding: 40px;
}
.main_add_form .grid.grid2 {
  gap: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
}
.main_add_form label {
  display: block;
  margin-bottom: 40px;
}
.main_add_form label textarea {
  height: 130px;
  width: 100%;
  resize: none;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
}
.main_add_form label input,
.main_add_form label textarea,
.main_add_form label select {
  resize: none;
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  outline: none;
}
.main_add_form label input:focus,
.main_add_form label textarea:focus,
.main_add_form label select:focus {
  border: 1px solid #ccc;
}
.main_add_form label span {
  display: block;
  font-size: 80%;
  margin-bottom: 3px;
  padding-left: 10px;
}

.newbutton {
  position: absolute;
  right: 40px;
  z-index: 10000;
  top: 40px;
  cursor: pointer;
  color: white;
  text-decoration: none;
  background: #009900;
  padding: 10px 0px;
  text-align: center;
  border-radius: 10px;
  width: 200px;
}
.newbutton:hover {
  background: #006600;
}
.newbutton:hover .addnewlinks {
  display: block;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0px 0px 0px;
  background: #006600;
  width: 200px;
  border-radius: 10px;
  margin-top: -3px;
  z-index: 100;
}
.newbutton:hover .addnewlinks a {
  color: white;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
  display: block;
  padding: 15px;
}
.newbutton:hover .addnewlinks a:hover {
  background: #003300;
}
.newbutton:hover .addnewlinks a:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.newbutton .addnewlinks {
  display: none;
}

.file_list {
  width: 100%;
}
.file_list .headers {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.file_list .headers .tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.file_list .headers .tabs ul li {
  cursor: pointer;
  white-space: nowrap;
}
.file_list .headers .tabs ul li:hover {
  opacity: 0.6;
}
.file_list .headers .tabs ul li.selected {
  font-weight: bold;
  color: #ccc;
}
.file_list .headers .file_view_format UL {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.file_list .headers .file_view_format UL li {
  cursor: pointer;
  opacity: 0.4;
}
.file_list .headers .file_view_format UL li.selected {
  opacity: 1;
  color: #ccc;
}

.nofiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  opacity: 0.6;
  font-size: 90%;
}

.des_main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5px;
}
.des_main.mainpage .block {
  background: #eaeaea;
  padding: 40px 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.des_main.mainpage .block:hover {
  background: #ccc;
}
.des_main.mainpage .block:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.des_main.mainpage .block:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.des_main.mainpage .block h2,
.des_main.mainpage .block h3,
.des_main.mainpage .block h4 {
  margin: 0;
  padding: 0;
  font-weight: lighter;
}
.des_main.mainpage .block h3 {
  font-size: 200%;
}
.des_main.mainpage .block h4 {
  margin-top: 10px;
}
.des_main.mainpage .block h4 a {
  color: black;
  text-decoration: none;
}
.des_main.mainpage .block h2 {
  font-size: 300%;
}
.des_main.links a {
  text-align: center;
  padding: 16px 10px;
  font-size: 130%;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background: #ccc;
}
.des_main.links a:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.des_main.links a:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.des_main.links a:hover {
  background: #b3b3b3;
}

.file_browser:empty {
  outline: 2px solid deeppink;
  height: 1em;
}

.file_browser.telebname .emr,
.file_browser.telebname .erize,
.file_browser.telebname .teqdimat {
  display: none;
}

.file_browser.teqdimat .emr,
.file_browser.teqdimat .erize,
.file_browser.teqdimat .telebname {
  display: none;
}

.file_browser.emr .telebname,
.file_browser.emr .erize,
.file_browser.emr .teqdimat {
  display: none;
}

.file_browser.erize .telebname,
.file_browser.erize .emr,
.file_browser.erize .teqdimat {
  display: none;
}

.erize .umumi_erize {
  display: block;
}
.erize .umumi_emr,
.erize .umumi_teqdimat {
  display: none;
}

.emr .umumi_emr {
  display: block;
}
.emr .umumi_erize,
.emr .umumi_teqdimat {
  display: none;
}

.teqdimat .umumi_teqdimat {
  display: block;
}
.teqdimat .umumi_erize,
.teqdimat .umumi_emr {
  display: none;
}

.telebname .umumi_teqdimat {
  display: block;
}
.telebname .umumi_erize,
.telebname .umumi_emr {
  display: none;
}

.sub li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.colorCircle {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  display: inline-block !important;
}

.view_boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0px;
}
.view_boxes .steps_line {
  display: none;
}
.view_boxes .doc {
  text-decoration: none;
  color: black !important;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  position: relative;
  width: 260px;
  height: 340px;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 10px 10px 61px -24px rgba(0, 0, 0, 0.15);
          box-shadow: 10px 10px 61px -24px rgba(0, 0, 0, 0.15);
}
.view_boxes .doc .label_color {
  position: absolute;
  bottom: 0px !important;
  left: 0px;
  width: 100%;
  height: 3px;
}
.view_boxes .doc .checkbox {
  position: absolute;
  left: 65px;
  top: 5px;
}
.view_boxes .doc:hover {
  z-index: 2;
  -webkit-box-shadow: 10px 10px 30px -24px rgba(0, 0, 0, 0.55);
          box-shadow: 10px 10px 30px -24px rgba(0, 0, 0, 0.55);
}
.view_boxes .doc.new_1 {
  border: 2px solid #ccc;
}
.view_boxes .doc.new_0 {
  border: 2px solid #fff;
}
.view_boxes .doc .doc_burger_menu {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ccc;
  padding: 10px;
  border-radius: 5px;
  width: 40px;
  height: 35px;
}
.view_boxes .doc .doc_burger_menu:hover .menu_items {
  display: block;
}
.view_boxes .doc .doc_burger_menu .menu_items {
  display: none;
  background: #eaeaea;
  width: 41px;
  -webkit-transform: translateX(-10px) translateY(8px);
          transform: translateX(-10px) translateY(8px);
  border-radius: 10px;
}
.view_boxes .doc .doc_burger_menu .menu_items ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.view_boxes .doc .doc_burger_menu .menu_items ul li {
  padding: 10px 9px;
}
.view_boxes .doc .doc_burger_menu .menu_items ul li.send {
  color: #00bb00;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.view_boxes .doc .doc_burger_menu .menu_items ul li.edit {
  color: #009900;
}
.view_boxes .doc .doc_burger_menu .menu_items ul li.dublicate {
  color: orange;
}
.view_boxes .doc .doc_burger_menu .menu_items ul li.delete {
  color: red;
}
.view_boxes .doc .doc_burger_menu .menu_items ul li:hover {
  background: #444;
  color: white !important;
  opacity: 1 !important;
}
.view_boxes .doc .doc_burger_menu .dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.view_boxes .doc .doc_burger_menu .dots div {
  width: 20px;
  height: 3px;
  background: #fff;
}
.view_boxes .doc .doc_body .doclogo {
  width: 60px;
  height: 60px;
  background: url("../images/logo_b_doc_c.svg");
  margin: 30px auto;
}
.view_boxes .doc .doc_body .docname {
  color: #ccc;
  font-size: 140%;
  margin: 30px 0px 0px 0px;
}
.view_boxes .doc .doc_icons {
  position: absolute;
  z-index: 1;
  color: white;
  top: 20px;
  left: 16px;
}
.view_boxes .doc .doc_status {
  position: absolute;
  left: 10px;
  top: -18px;
}
.view_boxes .doc .doc_status .lbl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33px 3px;
  grid-template-columns: 33px 3px;
}
.view_boxes .doc .qaralama {
  display: none;
}
.view_boxes .doc.s_1 .send {
  display: none;
}
.view_boxes .doc.s_1 .doc_status {
  padding: 10px;
}
.view_boxes .doc.s_1 .doc_status .lbl_svg {
  fill: #25BA00;
}
.view_boxes .doc.s_1 .doc_status .lbl_tr {
  fill: #00702D;
}
.view_boxes .doc.s_1 .doc_status .icoschedule,
.view_boxes .doc.s_1 .doc_status .icoclose {
  display: none;
}
.view_boxes .doc.s_4 .send {
  display: block;
}
.view_boxes .doc.s_4 .qaralama {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.view_boxes .doc.s_4 .qaralama div {
  display: inline-block;
}
.view_boxes .doc.s_4 .qaralama span {
  font-size: 110%;
  margin-top: 2px;
  margin-right: 4px;
}
.view_boxes .doc.s_4 .qaralama .qar {
  padding: 4px;
  display: inline-block;
  background: #444;
  color: white;
  font-size: 80%;
}
.view_boxes .doc.s_4 .qaralama .show_doc {
  color: #ccc;
  font-size: 80%;
  padding-left: 20px;
}
.view_boxes .doc.s_4 .doc_status {
  padding: 10px;
}
.view_boxes .doc.s_4 .doc_status .lbl_svg {
  fill: #ccc;
}
.view_boxes .doc.s_4 .doc_status .lbl_tr {
  fill: #444;
}
.view_boxes .doc.s_4 .doc_status .icoschedule,
.view_boxes .doc.s_4 .doc_status .icocheck,
.view_boxes .doc.s_4 .doc_status .icoclose {
  display: none;
}
.view_boxes .doc.s_2 .send {
  display: none;
}
.view_boxes .doc.s_2 .doc_status {
  padding: 10px;
}
.view_boxes .doc.s_2 .doc_status .lbl_svg {
  fill: #FF0000;
}
.view_boxes .doc.s_2 .doc_status .lbl_tr {
  fill: #990000;
}
.view_boxes .doc.s_2 .doc_status .icoschedule,
.view_boxes .doc.s_2 .doc_status .icocheck {
  display: none;
}
.view_boxes .doc.s_3 .send {
  color: dimgray !important;
  opacity: 0.6;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.view_boxes .doc.s_3 .doc_status {
  padding: 10px;
}
.view_boxes .doc.s_3 .doc_status .lbl_svg {
  fill: #FD9801;
}
.view_boxes .doc.s_3 .doc_status .lbl_tr {
  fill: #702F00;
}
.view_boxes .doc.s_3 .doc_status .icocheck,
.view_boxes .doc.s_3 .doc_status .icoclose {
  display: none;
}

.docheader_data .flex {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.docheader_data .flex h3 {
  margin: 0;
  padding: 0;
}
.docheader_data .flex span {
  font-size: 80%;
}
.docheader_data .flex div:nth-child(2) {
  text-align: right;
}

.view_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 60px 0px;
}
.view_list .steps_line {
  width: 100%;
}
.view_list .steps_line ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.view_list .steps_line ul li {
  font-size: 80%;
}
.view_list .steps_line ul li span {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 2px 10px;
  border-radius: 10px;
}
.view_list .steps_line ul li.selected {
  font-weight: bold;
  border: 2px solid #444;
  border-radius: 100px;
}
.view_list .steps_line ul li.s_1 {
  color: dark #009900;
}
.view_list .steps_line ul li.s_2 {
  color: darkred;
}
.view_list .steps_line ul li.s_3 {
  color: orange;
}
.view_list .steps_line ul li.s_4 {
  color: gray;
}
.view_list .steps_line ul li.s_5 {
  opacity: 0.5;
  color: #333;
}
.view_list .steps_line ul li .material-symbols-outlined,
.view_list .steps_line ul li .ddt {
  display: none;
}
.view_list .doc {
  text-decoration: none;
  color: black !important;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  position: relative;
  position: relative;
  background: #eaeaea;
  padding: 10px;
}
.view_list .doc .checkbox {
  z-index: 1000;
  position: absolute;
  left: 5px;
  top: 7px;
}
.view_list .doc .label_color {
  position: absolute;
  bottom: 0px !important;
  left: 0px;
  width: 100px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%);
  border-bottom-left-radius: 10px;
}
.view_list .doc.new_1 {
  border: 1px solid #ccc;
}
.view_list .doc.new_0 {
  border: 1px solid #eaeaea;
}
.view_list .doc:hover {
  background: #f1f1f1;
}
.view_list .doc .doc_burger_menu {
  width: auto;
  position: absolute;
  top: -2px;
  right: 3px;
}
.view_list .doc .doc_burger_menu .menu_items ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.view_list .doc .doc_burger_menu .menu_items ul li {
  padding: 10px 9px;
}
.view_list .doc .doc_burger_menu .menu_items ul li.send {
  color: #00bb00;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.view_list .doc .doc_burger_menu .menu_items ul li.edit {
  color: #009900;
}
.view_list .doc .doc_burger_menu .menu_items ul li.dublicate {
  color: orange;
}
.view_list .doc .doc_burger_menu .menu_items ul li.delete {
  color: red;
}
.view_list .doc .doc_burger_menu .menu_items ul li:hover {
  background: #444;
  color: white !important;
  opacity: 1 !important;
}
.view_list .doc .doc_burger_menu .dots {
  display: none;
}
.view_list .doc .doc_body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 100px 100px 1fr;
  grid-template-columns: 70px 100px 100px 1fr;
}
.view_list .doc .doc_body .doclogo svg {
  display: none;
}
.view_list .doc .doc_body .docname {
  color: #ccc;
  font-size: 100%;
  margin: 0px 0px 0px 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view_list .doc .doc_icons {
  position: absolute;
  z-index: 1;
  color: white;
  top: 15px;
  left: 20px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.view_list .doc .doc_status {
  position: absolute;
  left: 10px;
  top: -15px;
}
.view_list .doc .doc_status .lbl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33px 3px;
  grid-template-columns: 33px 3px;
}
.view_list .doc .qaralama {
  display: none;
}
.view_list .doc.s_1 .doc_status {
  padding: 10px;
}
.view_list .doc.s_1 .doc_status .lbl_svg {
  fill: #25BA00;
  height: 38px;
  width: 43px;
}
.view_list .doc.s_1 .doc_status .lbl_tr {
  fill: #00702D;
}
.view_list .doc.s_1 .doc_status .icoschedule,
.view_list .doc.s_1 .doc_status .icoclose {
  display: none;
}
.view_list .doc.s_4 .send {
  display: block;
}
.view_list .doc.s_4 .qaralama {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.view_list .doc.s_4 .qaralama div {
  display: inline-block;
}
.view_list .doc.s_4 .qaralama span {
  font-size: 110%;
  margin-top: 2px;
  margin-right: 4px;
}
.view_list .doc.s_4 .qaralama .qar {
  padding: 4px;
  display: inline-block;
  background: #444;
  color: white;
  font-size: 80%;
}
.view_list .doc.s_4 .qaralama .show_doc {
  color: #ccc;
  font-size: 80%;
  padding-left: 20px;
}
.view_list .doc.s_4 .doc_status {
  padding: 10px;
}
.view_list .doc.s_4 .doc_status .lbl_svg {
  fill: #ccc;
  height: 38px;
  width: 43px;
}
.view_list .doc.s_4 .doc_status .lbl_tr {
  fill: #444;
}
.view_list .doc.s_4 .doc_status .icoschedule,
.view_list .doc.s_4 .doc_status .icocheck,
.view_list .doc.s_4 .doc_status .icoclose {
  display: none;
}
.view_list .doc.s_2 .send {
  display: none;
}
.view_list .doc.s_2 .doc_status {
  padding: 10px;
}
.view_list .doc.s_2 .doc_status .lbl_svg {
  fill: #FF0000;
  height: 38px;
  width: 43px;
}
.view_list .doc.s_2 .doc_status .lbl_tr {
  fill: #990000;
}
.view_list .doc.s_2 .doc_status .icoschedule,
.view_list .doc.s_2 .doc_status .icocheck {
  display: none;
}
.view_list .doc.s_3 .send {
  color: dimgray !important;
  opacity: 0.6;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.view_list .doc.s_3 .doc_status {
  padding: 10px;
}
.view_list .doc.s_3 .doc_status .lbl_svg {
  fill: #FD9801;
  height: 38px;
  width: 43px;
}
.view_list .doc.s_3 .doc_status .lbl_tr {
  fill: #702F00;
}
.view_list .doc.s_3 .doc_status .icocheck,
.view_list .doc.s_3 .doc_status .icoclose {
  display: none;
}

.searchbox {
  position: relative;
}
.searchbox input {
  width: 100%;
  background: #eaeaea;
  border: none;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-rigt-radius: 10px;
  outline: none;
}

.sugg {
  -webkit-box-shadow: 0px 18px 14px 0px rgba(0, 3, 0, 0.1);
          box-shadow: 0px 18px 14px 0px rgba(0, 3, 0, 0.1);
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  gap: 4px;
  background: #fff;
}
.sugg div {
  color: black;
  text-decoration: none;
  padding: 10px 15px;
  white-space: initial;
  font-size: 13px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  #calendar table tbody,
  #calendar table tfoot,
  #calendar table thead {
    width: 100% !important;
    min-width: 100% !important;
  }
  #calendar table {
    width: 100% !important;
    min-width: 100% !important;
  }
  #calendar .fc-header .fc-button {
    margin: 0 !important;
  }
  #calendar .fc-header-center {
    margin: 10px 0px;
  }
  #calendar .fc-header .fc-header-right,
  #calendar .fc-header .fc-header-center,
  #calendar .fc-header .fc-header-left {
    width: 100%;
    text-align: center;
  }
  #calendar .fc-header tr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  #calendar .fc-content .fc-year-main-table > tbody > tr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .sm_news_list_in_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  ._3rows {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .newsPage h2 {
    margin-bottom: 40px !important;
  }
  .event_date {
    margin-top: 0px;
    text-align: center;
  }
  .tabs {
    -ms-grid-columns: 20px 1fr 1fr 20px;
    grid-template-columns: 20px 1fr 1fr 20px;
  }
  .news_body_flex {
    gap: 0px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news_body_flex .only_news_img {
    width: 100%;
  }
  .news_body_flex img {
    width: 100% !important;
    height: 230px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .opened .maincontent {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.7;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    pointer-events: none;
  }
  .opened .burger_menu div:nth-child(2) {
    opacity: 0;
  }
  .opened .burger_menu div:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(6px) translateX(8px);
            transform: rotate(45deg) translateY(6px) translateX(8px);
  }
  .opened .burger_menu div:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-4px) translateX(7px);
            transform: rotate(-45deg) translateY(-4px) translateX(7px);
  }
  .opened .leftmenu {
    left: 0;
  }
  .opened .leftmenu nav.nav {
    position: relative;
    z-index: 3;
    height: 100%;
  }
  .opened .leftmenu nav.nav ul li a {
    font-size: 110%;
  }
  .mobile_header {
    display: -ms-grid;
    display: grid;
    color: white;
    height: 70px;
    width: calc(100vw - 20px);
    top: 10px;
    margin-left: 10px;
    border-radius: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0px 5px 0px 15px;
  }
  .mobile_header .logo {
    font-size: 160%;
    z-index: 10;
    position: fixed;
    left: 50px;
    border-bottom-right-radius: 20px;
    width: 70px;
    background: #ccc;
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .mobile_header .burger_menu {
    z-index: 10;
    background: #ccc;
    position: fixed;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 60px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
  .mobile_header .burger_menu div {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 3px;
    border-radius: 100px;
    width: 30px;
    background: #fff;
  }
  .mobile_header div,
  .mobile_header a {
    text-decoration: none;
    height: 70px;
    color: white !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mobile_header .userzone {
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .mobile_header .userzone .profile {
    width: 36px;
    border-radius: 100px;
    height: 36px;
    background: #fff;
  }
  .mobile_header .userzone .profile img {
    border-radius: 100px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .leftmenu {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 300px;
    z-index: 10;
    position: fixed;
    left: -300px;
    top: 80px;
    height: calc(100vh - 80px);
  }
  .leftmenu .userzone {
    display: none !important;
  }
  .leftmenu nav.nav {
    height: 100%;
  }
  .maingrid {
    gap: 0px;
    margin-top: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .maingrid .icons .icons_top {
    position: absolute;
    right: 77px;
    top: 8px;
  }
  .maingrid .icons .icons_top ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px 15px 40px;
    grid-template-columns: 40px 40px;
    gap: 15px;
  }
  .maingrid .icons .icons_top li a {
    opacity: 1;
  }
  .maingrid .icons .icons_top .mail {
    display: none;
  }
  .maingrid .icons .line,
  .maingrid .icons .logo_au {
    display: none;
  }
  .maingrid .maincontent {
    margin-top: -6px;
    overflow: inherit !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 40px;
    padding: 10px;
    border: 10px solid #ccc;
    height: auto;
  }
  .maingrid .maincontent .inside_content {
    margin-top: 0px;
  }
  .maingrid .maincontent .contentin {
    min-height: 80vh;
    padding: 0 !important;
    background: #fff;
    height: auto !important;
    overflow: inherit !important;
  }
  .maingrid .maincontent .contentin .txt img {
    width: 90%;
    height: auto;
  }
  .maingrid .maincontent .contentin .info_blocks,
  .maingrid .maincontent .contentin .gr-2 .info_blocks {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .maingrid .maincontent .contentin .sep {
    width: 50px !important;
    margin: 15px auto;
  }
  .maingrid .maincontent .contentin .sep:before, .maingrid .maincontent .contentin .sep:after {
    display: none;
  }
  .maingrid .maincontent .headerline {
    text-align: center;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    font-size: 150%;
  }
  .maingrid .maincontent .headerline div {
    display: none;
  }
  .maingrid .maincontent .headerline div:nth-child(1) {
    text-align: center;
    display: block;
    font-weight: lighter !important;
  }
  .lesson .lessonperiod {
    font-size: 120%;
    opacity: 1;
  }
  .lesson .lsn .lessonname {
    font-size: 100%;
    margin-top: 3px;
    width: 100%;
  }
  .timeline {
    height: auto;
    border-radius: 20px;
    padding: 10px;
  }
  .timeline .timeline_body {
    -ms-flex-preferred-size: calc(100% - 30px);
        flex-basis: calc(100% - 30px);
    margin-left: 10px;
    font-size: 80%;
  }
  .timeline .hours {
    -ms-flex-preferred-size: 40px;
        flex-basis: 40px;
    width: 40px;
    font-size: 90%;
  }
  #button-excel {
    position: fixed;
    right: auto;
    left: 20px;
    width: calc(100vw - 40px);
    top: auto;
    bottom: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .tq_form tr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30px 90px 3fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 30px 90px 3fr 1fr 1fr 1fr 1fr;
  }
  .ftp_form table {
    margin-bottom: 55px;
  }
  .newcalist {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .newcalist .events {
    padding-top: 0px !important;
  }
  .newcalist .newcalendar {
    margin-bottom: 0 !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .ctable table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    max-width: calc(100vw - 40px);
  }
  .ctable table tbody,
  .ctable table tfoot,
  .ctable table thead {
    white-space: pre-wrap;
    display: table;
    width: 100%;
    min-width: 900px;
  }
  .week {
    font-size: 70%;
  }
  .week ul li a {
    padding: 5px;
    text-align: center;
  }
  .week span {
    margin-top: 3px;
    display: inline-block !important;
  }
  .week span.dt {
    white-space: nowrap;
    display: block !important;
  }
  .week .dt_name {
    display: none !important;
  }
}
.docview {
  padding: 0 !important;
}

.doc {
  text-decoration: none !important;
}

.lock_1 {
  background: #ccc !important;
  opacity: 0.5;
  pointer-events: none;
}

.status_of {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 70%;
}
.status_of .st_1 {
  padding: 3px 5px;
  border-radius: 3px;
  background: #009900;
  color: white;
}
.status_of .st_2 {
  padding: 3px 5px;
  border-radius: 3px;
  background: #009900;
  color: white;
}
.status_of .st_3 {
  padding: 3px 5px;
  border-radius: 3px;
  background: red;
  color: white;
}

.lightup {
  -webkit-animation: salam 1s;
          animation: salam 1s;
  padding: 10px;
  border-radius: 10px;
}

@-webkit-keyframes salam {
  0% {
    background: #fff;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    background: rgba(0, 0, 200, 0.3);
  }
  100% {
    background: #fff;
  }
}

@keyframes salam {
  0% {
    background: #fff;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    background: rgba(0, 0, 200, 0.3);
  }
  100% {
    background: #fff;
  }
}
.priority_of {
  position: absolute;
  right: 5px;
  top: 3px;
  font-size: 70%;
}
.priority_of .pri_1 {
  padding: 3px 9px;
  opacity: 0.5;
  border-radius: 10px;
  background: #009900;
  color: white;
}
.priority_of .pri_1:hover span {
  width: 70px;
}
.priority_of .pri_1 span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 0px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
}
.priority_of .pri_2 {
  padding: 3px 9px;
  border-radius: 10px;
  opacity: 0.7;
  background: orange;
  color: white;
}
.priority_of .pri_2:hover span {
  width: 70px;
}
.priority_of .pri_2 span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 0px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
}
.priority_of .pri_3 {
  padding: 3px 9px;
  border-radius: 10px;
  background: red;
  color: white;
}
.priority_of .pri_3:hover span {
  width: 70px;
}
.priority_of .pri_3 span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 0px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
}

.notification, .preventing {
  position: relative;
}
.notification .dateadded, .preventing .dateadded {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 80%;
  opacity: 0.6;
}
.notification .name, .preventing .name {
  font-size: 120%;
  margin-bottom: 60px;
}
.notification .steps ul, .preventing .steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.notification .steps ul li, .preventing .steps ul li {
  padding: 3px 9px;
  background: rgba(204, 204, 204, 0.41);
  font-size: 80%;
  border-radius: 5px;
}
.notification .steps ul li.selected, .preventing .steps ul li.selected {
  background: #009900;
  color: white;
}

.priority_2 {
  position: relative;
  -webkit-box-shadow: 10px 10px 61px -24px rgba(100, 0, 0, 0.2) !important;
          box-shadow: 10px 10px 61px -24px rgba(100, 0, 0, 0.2) !important;
}
.priority_2 .name {
  color: #bd5858;
}
.priority_2:after {
  content: "";
  width: 30px;
  height: 30px;
  background: #bd5858;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.priority_3 {
  position: relative;
  -webkit-box-shadow: 10px 10px 61px -24px rgba(200, 0, 0, 0.2) !important;
          box-shadow: 10px 10px 61px -24px rgba(200, 0, 0, 0.2) !important;
}
.priority_3 .name {
  color: #f00;
}
.priority_3:after {
  content: "";
  width: 30px;
  height: 30px;
  background: #f00;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.jquery-word-export {
  position: fixed;
  right: 100px;
  bottom: 100px;
  z-index: 100;
  border-radius: 100px;
  background: #fff;
  -webkit-transform: scale(2);
          transform: scale(2);
  color: #13017C;
  padding: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.jquery-word-export:hover {
  -webkit-transform: scale(2.5);
          transform: scale(2.5);
}

.telebname_table {
  padding: 5px;
  border: 2px solid #ccc;
}
.telebname_table tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 4px 1fr 4px 1fr 4px 70px 4px 50px;
  grid-template-columns: 20px 1fr 1fr 70px 50px;
  gap: 4px;
}
.telebname_table tr:nth-child(2n) td {
  background: rgba(68, 68, 68, 0.062745098) !important;
}
.telebname_table tr td {
  text-align: center;
  background: #eaeaea;
  min-height: 30px;
  vertical-align: middle;
  padding: 5px;
}
.telebname_table tr td.left {
  padding-left: 10px;
  text-align: left !important;
}

.telebname_table_add {
  margin-bottom: 50px;
  width: 100%;
}
.telebname_table_add .addnewfield {
  background: #ccc;
  border: none;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.telebname_table_add .addnewfield:hover {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  background: #e6e6e6;
}
.telebname_table_add .removefield {
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0;
  opacity: 0.2;
}
.telebname_table_add label {
  margin: 0 !important;
}
.telebname_table_add tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 5px 1fr 5px 1fr 5px 100px 5px 100px 5px 30px;
  grid-template-columns: 20px 1fr 1fr 100px 100px 30px;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
}
.telebname_table_add tr:hover .removefield {
  opacity: 1;
}
.telebname_table_add tr:first-child .removefield {
  display: none;
}
.telebname_table_add th {
  font-size: 100%;
  font-weight: normal;
  text-align: left;
  font-size: 80%;
}

.telebname_footer .sign_group {
  padding: 20px 0px;
  margin: 20px 0px;
  border-bottom: 1px solid #ccc;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.telebname_footer .sign_group .sign {
  border-bottom: 1px solid #444;
}
.telebname_footer .sign_group .sign:after {
  content: "imza";
  font-size: 70%;
  color: gray;
  width: 100%;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  text-align: center;
  display: inline-block;
  margin: auto;
}

.telebnamebody,
.telebname_footer2 {
  margin-bottom: 50px;
  margin-top: 40px;
  font-size-adjust: 70%;
}
.telebnamebody .grid,
.telebname_footer2 .grid {
  display: -ms-grid;
  display: grid;
}
.telebnamebody .grid4,
.telebname_footer2 .grid4 {
  -ms-grid-columns: 2fr 2fr 3fr 1fr;
  grid-template-columns: 2fr 2fr 3fr 1fr;
}
.telebnamebody .grid2,
.telebname_footer2 .grid2 {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.mug {
  position: relative;
}

.mug:hover .comment_box {
  opacity: 0;
}

.by_rektor {
  background: rgba(217, 239, 249, 0.7019607843) !important;
}

.comment_box {
  -webkit-transition: 1s;
  transition: 1s;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comment_box .comment {
  position: relative;
  font-size: 80%;
  -webkit-box-shadow: 10px 10px 28px -14px rgba(0, 0, 0, 0.58);
          box-shadow: 10px 10px 28px -14px rgba(0, 0, 0, 0.58);
  width: 150px;
  min-height: 150px;
  padding: 10px;
  background: #fff;
  border: 1px solid #eaeaea;
  -webkit-transform: rotateZ(2deg);
          transform: rotateZ(2deg);
  margin-bottom: 3px;
}

.comment_by {
  margin-top: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.comment_date {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 80%;
  opacity: 0.5;
}

.comment_box .comment:nth-child(2) {
  -webkit-transform: rotateZ(-2deg);
          transform: rotateZ(-2deg);
}

.comment_box .comment:nth-child(3) {
  -webkit-transform: rotateZ(4deg);
          transform: rotateZ(4deg);
}

.comment_box .comment:nth-child(4) {
  -webkit-transform: rotateZ(-2deg);
          transform: rotateZ(-2deg);
}

.text table {
  display: block;
  overflow-y: auto;
}

.mug_telebname svg {
  height: 70px !important;
}
.mug_telebname .logo_h1 {
  font-size: 100% !important;
}

.sendThisDocTo {
  border-top: 1px solid #ccc;
  background: #eaeaea;
  padding: 20px;
}
.sendThisDocTo input,
.sendThisDocTo textarea,
.sendThisDocTo select {
  padding: 10px;
  border: none;
  background: #fff;
  resize: none;
  width: 100%;
}
.sendThisDocTo label {
  margin-bottom: 20px;
  display: block;
}
.sendThisDocTo label h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 3px;
}

.doc_finished_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.doc_finished_header.color_1 {
  color: dark #009900;
}
.doc_finished_header.color_2 {
  color: darkred;
}
.doc_finished_header.color_3 {
  color: orange;
}
.doc_finished_header h1 {
  font-size: 100%;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.docpreview {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-grid-columns: minmax(350px, 2fr) 5fr;
  grid-template-columns: minmax(350px, 2fr) 5fr;
}
.docpreview .left_side {
  height: 100%;
  background: #fff;
  height: calc(100vh - 80px);
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  position: sticky;
  top: 0px;
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.docpreview .left_side .doclist {
  padding: 20px;
  height: 100%;
  overflow: auto;
}
.docpreview .left_side .doclist ul.links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.docpreview .left_side .doclist ul.links:after {
  content: "";
  width: 130px;
  height: 1px;
  background: #444;
  display: block;
  margin: 20px auto;
}
.docpreview .left_side .doclist ul.links li.s_1 span {
  color: #009900;
}
.docpreview .left_side .doclist ul.links li.s_2 span {
  color: #990000;
}
.docpreview .left_side .doclist ul.links li.s_3 span {
  color: #FD9801;
}
.docpreview .left_side .doclist ul.links li.s_4 span {
  color: #CCCCCC;
}
.docpreview .left_side .doclist ul.links li.selected {
  background: #eaeaea;
  border-radius: 10px;
}
.docpreview .left_side .doclist ul.links li.selected a {
  color: #ccc !important;
}
.docpreview .left_side .doclist ul.links li.selected a .nnm .nnm_label {
  color: #ccc !important;
}
.docpreview .left_side .doclist ul.links li a {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 10px;
  color: black;
  text-decoration: none;
}
.docpreview .left_side .doclist ul.links li a .nnm {
  font-size: 90%;
  gap: 10px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -ms-grid-columns: 20px 10px 1fr;
  grid-template-columns: 20px 1fr;
}
.docpreview .left_side .doclist ul.links li a .nnm .nnm_label {
  display: block;
  color: black !important;
  overflow: hidden;
  min-width: 160px;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.docpreview .left_side .doclist ul.links li a .ddt {
  white-space: nowrap;
  font-size: 70%;
  font-weight: normal;
}
.docpreview .left_side .doclist ul.links li a:hover {
  color: #ccc;
}
.docpreview .left_side .doclist ul.links li a:hover .nnm .nnm_label {
  color: #ccc !important;
}
.docpreview .left_side .doclist ul.step {
  list-style: none;
  padding: 0;
  margin: 0;
}
.docpreview .left_side .doclist ul.step:after {
  content: "";
  width: 130px;
  height: 1px;
  background: #444;
  display: block;
  margin: 20px auto;
}
.docpreview .left_side .doclist ul.step li {
  position: relative;
  border-radius: 10px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 10px;
  margin-bottom: 40px;
}
.docpreview .left_side .doclist ul.step li.s_1 {
  background: rgb(0, 200, 0);
}
.docpreview .left_side .doclist ul.step li.s_1 span {
  color: #FFF;
}
.docpreview .left_side .doclist ul.step li.s_2 {
  background: rgb(200, 0, 0);
}
.docpreview .left_side .doclist ul.step li.s_2 span {
  color: #FFF;
}
.docpreview .left_side .doclist ul.step li.s_3 {
  background: orange;
}
.docpreview .left_side .doclist ul.step li.s_3 span {
  color: #FFF;
}
.docpreview .left_side .doclist ul.step li.s_4 {
  background: gray;
}
.docpreview .left_side .doclist ul.step li.s_4 span {
  color: #FFF;
}
.docpreview .left_side .doclist ul.step li.s_5 {
  background: lightgray;
  color: rgba(0, 0, 0, 0.4) !important;
}
.docpreview .left_side .doclist ul.step li.s_5 .ddt {
  color: rgba(0, 0, 0, 0.4) !important;
}
.docpreview .left_side .doclist ul.step li.s_5 span {
  color: rgba(0, 0, 0, 0.4) !important;
}
.docpreview .left_side .doclist ul.step li:last-child:after {
  display: none;
}
.docpreview .left_side .doclist ul.step li:after {
  content: "";
  width: 1px;
  height: 22px;
  background: #b5b5b5;
  display: block;
  margin: 20px auto;
  position: absolute;
  left: 50%;
  bottom: -53px;
  margin-left: -1px;
}
.docpreview .left_side .doclist ul.step li .nnm {
  font-size: 90%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.docpreview .left_side .doclist ul.step li .ddt {
  font-size: 70%;
  font-weight: normal;
  color: white;
}
.docpreview .left_side .doclist ul.step li .ddt .ttime {
  font-size: 200%;
}
.docpreview .left_side .bottom_side {
  padding: 10px 20px;
  background: #f2f2f2;
  border-top: 1px solid #ccc;
}
.docpreview .left_side .bottom_side label {
  margin-bottom: 20px;
  display: block;
}
.docpreview .left_side .bottom_side label h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 3px;
}
.docpreview .left_side .bottom_side input,
.docpreview .left_side .bottom_side textarea {
  padding: 10px;
  border: none;
  background: #fff;
  resize: none;
  width: 100%;
}
.docpreview .left_side .bottom_side .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3px;
}
.docpreview .left_side .bottom_side .buttons button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 8px 15px 8px 10px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 90%;
}
.docpreview .left_side .bottom_side .buttons button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.docpreview .left_side .bottom_side .buttons button.decline {
  background: #B4B4B4;
}
.docpreview .left_side .bottom_side .buttons button.accept {
  background: #ccc;
  color: white;
}
.docpreview .docmargin {
  background: rgba(192, 210, 227, 0.3137254902);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
}
.docpreview .docmargin .docbase {
  margin: 10px 50px;
}
.docpreview .list_docs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.docpreview .list_docs ul li {
  font-size: 90%;
  cursor: pointer;
  padding: 10px 14px;
}
.docpreview .list_docs ul li:hover {
  color: #ccc;
}
.docpreview .list_docs ul li.selected {
  background: #eaeaea;
  border-radius: 14px;
}

.docbody {
  position: relative;
}
.docbody:hover .sticker {
  opacity: 0;
}

.sticker_1 {
  -webkit-transform: rotateZ(-5deg);
          transform: rotateZ(-5deg);
}

.sticker_2 {
  top: 140px;
  -webkit-transform: rotateZ(3deg);
          transform: rotateZ(3deg);
}

.sticker {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 200px;
  padding: 20px;
  height: 200px;
  background: #fff;
  -webkit-box-shadow: 10px 10px 42px -16px rgba(0, 0, 0, 0.37);
          box-shadow: 10px 10px 42px -16px rgba(0, 0, 0, 0.37);
}
.sticker .stickerheader {
  padding: 10px 0px;
  font-size: 70%;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.elevecontent table {
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}
.elevecontent table td,
.elevecontent table th {
  padding: 4px;
  border: 1px solid #ccc;
}
.elevecontent table td p,
.elevecontent table th p {
  padding: 0 !important;
  margin: 0 !important;
}

.docbase_inside a {
  text-decoration: none;
  font-style: oblique;
  color: #444;
}
.docbase_inside a:hover {
  color: #13017C;
}
.docbase_inside .text {
  min-height: 350px;
}
.docbase_inside .text table {
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}
.docbase_inside .text table td,
.docbase_inside .text table th {
  padding: 4px;
  border: 1px solid #ccc;
}
.docbase_inside .text table td p,
.docbase_inside .text table th p {
  padding: 0 !important;
  margin: 0 !important;
}
.docbase_inside .fly_buttons {
  position: fixed;
  font-family: Arial;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  display: none;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.docbase_inside .fly_buttons .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.docbase_inside .fly_buttons .btn button {
  background: none;
  border: none;
  border-radius: 10px;
  font-size: 140%;
  padding: 15px 60px;
  background: #009900;
  color: white;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.docbase_inside .fly_buttons .btn button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.docbase_inside .fly_buttons .btn button.approve {
  -webkit-box-shadow: 0px 0px 60px -10px rgba(0, 200, 0, 0.75);
          box-shadow: 0px 0px 60px -10px rgba(0, 200, 0, 0.75);
}
.docbase_inside .fly_buttons .btn button.approve:hover {
  background: rgb(0, 160, 0);
}
.docbase_inside .fly_buttons .btn button.decline {
  -webkit-box-shadow: 0px 0px 60px -10px rgba(200, 0, 0, 0.75);
          box-shadow: 0px 0px 60px -10px rgba(200, 0, 0, 0.75);
}
.docbase_inside .fly_buttons .btn button.decline:hover {
  background: rgb(160, 0, 0);
}
.docbase_inside .fly_buttons .imtina_txt {
  padding: 20px;
}
.docbase_inside .fly_buttons .imtina_txt textarea {
  width: 400px;
  border-radius: 10px;
  resize: none;
  padding: 20px;
  font-family: Arial;
  -webkit-box-shadow: 0px 0px 60px -10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 60px -10px rgba(0, 0, 0, 0.15);
}
.docbase_inside #tesdig {
  margin: auto;
  padding: 20px;
  resize: none;
  display: block;
  margin-bottom: 22px;
  border: none;
  width: 560px;
}
.docbase_inside .center_save_button {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 100px !important;
}
.docbase_inside .center_save_button button {
  color: #009900;
  cursor: pointer;
  border-radius: 10px;
  font-size: 120%;
  padding: 20px;
  width: 300px;
  border: 1px solid #009900;
}
.docbase_inside .center_save_button button:hover {
  background: #006600;
}
.docbase_inside h1 {
  color: #13017C;
}
.docbase_inside .logo_h1 {
  margin: 0;
}
.docbase_inside #logo {
  height: 100px;
}
.docbase_inside .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #13017C;
}
.docbase_inside .st1 {
  fill: #13017C;
}
.docbase_inside .text_doc {
  line-height: 1.7;
}
.docbase_inside .text_doc li {
  margin-bottom: 20px;
}
.docbase_inside ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}
.docbase_inside ul li {
  padding: 3px;
  padding-left: 10px;
  border-left: 2px solid #ccc;
  margin-bottom: 3px;
  display: block;
}
.docbase_inside p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
@media print {
  .docbase_inside body,
  .docbase_inside html {
    background: none !important;
  }
  .docbase_inside .pagebreak {
    clear: both;
    page-break-after: always;
  }
  .docbase_inside .noprint {
    display: none;
  }
  .docbase_inside .mug {
    background: none;
    border: none !important;
    widows: 10;
  }
}
.docbase_inside .mug {
  background: #fff;
  font-family: Arial !important;
  font-size: 90%;
  page-break-after: always;
  width: 210mm;
  padding: 247mm;
  margin: 20px auto;
  min-height: 1100px;
  border: 1px solid #ccc;
  padding: 50px;
  -webkit-box-shadow: 10px 10px 19px -11px rgba(0, 0, 0, 0.41);
          box-shadow: 10px 10px 19px -11px rgba(0, 0, 0, 0.41);
}
.docbase_inside .mug svg {
  width: 160px;
  margin: auto;
  text-align: center;
  display: block;
}
.docbase_inside .mug h1 {
  font-size: 180%;
  text-align: center;
  font-weight: normal;
  display: block;
}
.docbase_inside .mug h2 {
  text-align: center;
  font-weight: normal;
  display: block;
  margin: 50px auto 20px auto;
}
.docbase_inside .mug p {
  display: block;
  margin-bottom: 20px;
}
.docbase_inside g {
  fill: rgb(0, 24, 168);
}
.docbase_inside .graycolor {
  fill: #bbb !important;
}
.docbase_inside .center {
  text-align: center;
}
.docbase_inside .group {
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px 0px;
}
.docbase_inside .group h3 {
  font-weight: normal;
  font-size: 130%;
}
.docbase_inside .line {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.docbase_inside .line + span {
  font-size: 80%;
  color: gray;
  text-align: center;
  display: block;
}
.docbase_inside span {
  font-size: 80%;
  color: gray;
  display: block;
}
.docbase_inside .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.docbase_inside .emr_b {
  margin-bottom: 20px;
}
.docbase_inside .name {
  text-align: center;
  font-size: 120%;
  font-weight: bold;
}
.docbase_inside .text {
  line-height: 1.6;
}
.docbase_inside .padding {
  padding: 10px 0px;
}
.docbase_inside .sm {
  width: 80%;
  margin: auto;
  font-size: 120%;
}
.docbase_inside .sm div {
  max-width: 200px;
}
.docbase_inside .selectworker {
  margin: 20px 0px;
  text-align: center;
}
.docbase_inside .selectworker select {
  padding: 10px;
}
.docbase_inside .padding_right {
  margin: 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.docbase_inside .padding_right p {
  text-align: right;
  max-width: 400px;
}

.shtamp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 50px;
  font-size: 90%;
  position: relative;
  width: 150px;
}
.shtamp * {
  pointer-events: none;
}
.shtamp .sdate {
  position: absolute;
  left: 10px;
  z-index: 10;
  top: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 23px 12px 53px 12px 26px;
  grid-template-columns: 23px 53px 26px;
  gap: 10px 12px;
  color: #00123d;
}
.shtamp img {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: -58px;
}
.shtamp div {
  text-align: center;
  font-family: "Fasthand", cursive;
}

@media print {
  body, html {
    background: none !important;
  }
  .leftmenu, .icons, .headerline {
    display: none !important;
  }
  .maingrid {
    margin: 0 !important;
    height: auto !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .mug {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .contract_grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .contract_grid .worker_list {
    display: none !important;
  }
}
.clr {
  background: #c4e5e9 !important;
}

.closebutton {
  background: #673ab7 !important;
  font-size: 120%;
}

.group_notifications {
  border: 2px solid #009900;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px;
  gap: 3px;
  position: relative;
}
.group_notifications .grouptime {
  background: #009900;
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  padding: 10px;
  font-size: 80%;
  color: white;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.ch_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ch_group > label {
  cursor: pointer;
  position: relative;
  background: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ch_group > label:hover {
  background: #eaeaea;
}
.ch_group > label:first-child {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.ch_group > label:last-child {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.ch_group > label input {
  position: absolute;
  opacity: 0;
}
.ch_group > label input[type=radio]:checked + span {
  background: #009900;
  color: white;
}
.ch_group > label span {
  cursor: pointer;
  padding: 10px 20px;
  margin-bottom: 0 !important;
  display: inline-block;
}

.group_add {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  position: relative;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.group_add.copied {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 10px;
}
.group_add .remove {
  position: absolute;
  right: 0;
  top: 0;
}
.group_add > label:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: 1/1/2/6;
}
.group_add > label:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.group_add > label:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}
.group_add > label:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
}
.group_add > label:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 2/4/3/5;
}
.group_add > label:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 2/5/3/6;
}
.group_add label span {
  font-size: 80%;
  display: block;
}
.group_add textarea {
  height: 60px !important;
}

.proc_group {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
}
.proc_group > label {
  grid-area: inherit !important;
}

.label_span_color span {
  color: #868686;
}

.procflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.planningtable {
  border-collapse: separate;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}
.planningtable .job_desc {
  background: #ccc;
  border-radius: 10px;
  margin-bottom: 6px;
  overflow: hidden;
}
.planningtable .job_desc .gr {
  padding: 12px;
  background: #444;
  color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 80%;
}
.planningtable .job_desc .job {
  padding: 12px;
  font-size: 140%;
}
.planningtable thead {
  color: #ccc;
  font-weight: bold;
}
.planningtable thead tr {
  background: rgba(204, 204, 204, 0.2) !important;
}
.planningtable tr {
  background: #f1f1f1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 1fr 200px 2fr 200px;
  grid-template-columns: 30px 1fr 200px 2fr 200px;
}
.planningtable tr:nth-child(2n) {
  background: #eaeaea;
}
.planningtable td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 90%;
}
.planningtable td .edit {
  color: #009900;
}
.planningtable td .delete {
  color: red;
}

.creategroupbutton {
  display: none;
  padding: 20px;
  background: rgba(0, 153, 0, 0.1);
  border-radius: 10px;
}
.creategroupbutton form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 20px 3fr 20px 2fr;
  grid-template-columns: 2fr 3fr 2fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.creategroupbutton form .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.creategroupbutton form input {
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.creategroupbutton form input[type=submit] {
  background: dark #009900;
  color: white;
  max-width: 100px;
}
.creategroupbutton form label span {
  font-size: 80%;
  display: block;
}

.schedulertable {
  border-collapse: separate;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}
.schedulertable .job_desc {
  background: #ccc;
  border-radius: 10px;
  margin-bottom: 6px;
  overflow: hidden;
}
.schedulertable .job_desc .gr {
  padding: 12px;
  background: #444;
  color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 80%;
}
.schedulertable .job_desc .job {
  padding: 12px;
  font-size: 140%;
}
.schedulertable thead {
  color: #ccc;
  font-weight: bold;
}
.schedulertable thead tr {
  background: rgba(204, 204, 204, 0.2) !important;
}
.schedulertable tr {
  background: #f1f1f1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 30px 1fr 200px 2fr 300px;
  grid-template-columns: 80px 30px 1fr 200px 2fr 300px;
}
.schedulertable tr:nth-child(2n) {
  background: #eaeaea;
}
.schedulertable td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 90%;
}
.schedulertable td .edit {
  color: #009900;
}
.schedulertable td .delete {
  color: red;
}

.notification {
  cursor: pointer;
}

.noMaterials span {
  color: gray !important;
  opacity: 0.5;
}

.listOfMaterials {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: #eaeaea;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr 1fr;
  grid-template-columns: 3fr 1fr 1fr;
  margin-bottom: 3px;
  padding: 10px;
}
.listOfMaterials > div {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.listOfMaterials input {
  width: 20px;
  display: inline-block;
}
.listOfMaterials .awailable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.listOfMaterials label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.noMat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
}
.noMat span {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.hasMat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #009900;
}

.buttoncmr {
  color: #009900;
  text-decoration: none;
  font-size: 80%;
  white-space: nowrap;
}

.materialsadd {
  background: #009900 !important;
  border: none;
  padding: 6px 10px;
  border-radius: 10px;
  color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.materialsadd:hover {
  background: #003300 !important;
}

.remove {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.remove:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.save {
  margin-top: 50px !important;
  background: #009900;
  width: 230px !important;
  color: white;
  padding: 10px 20px;
  font-size: 110%;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.save:hover {
  background: #003300;
}

.group .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 3px !important;
}
.group .copy button {
  display: none;
}
.group button {
  border: none;
  background: none;
}
.group textarea,
.group select,
.group input {
  background: #eaeaea;
  border: none;
  border-radius: 10px;
  width: 100%;
  resize: none;
  padding: 10px;
  outline: none;
}
.group textarea:focus, .group textarea:active,
.group select:focus,
.group select:active,
.group input:focus,
.group input:active {
  background: #ccc;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.editnotification {
  position: absolute;
  color: #ccc;
  right: 6px;
  bottom: 6px;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.lock_1 .editnotification {
  display: none !important;
}

.rejectform {
  margin-top: 30px;
  border-radius: 10px;
  background: rgba(200, 0, 0, 0.1);
  border: 1px solid rgba(200, 0, 0, 0.2);
  padding: 10px;
}
.rejectform h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  font-weight: normal;
}
.rejectform textarea {
  background: #fff;
  padding: 10px;
  border: none;
  width: 40%;
  border-radius: 6px;
  resize: none;
  height: 100px;
}
.rejectform input {
  background: red;
  color: white;
  padding: 10px 20px;
  margin-left: 20px;
  border: none;
  border-radius: 10px;
}

.ff_Corrosion {
  background: rgba(210, 145, 188, 0.3137254902) !important;
}

.ff_Damage {
  background: rgba(224, 187, 228, 0.2509803922) !important;
}

.ff_Lack_of_maintenance {
  background: rgba(224, 187, 228, 0.3137254902) !important;
}

.ff_Leakage {
  background: rgba(235, 232, 255, 0.3137254902) !important;
}

.ff_Improper_operation {
  background: rgba(235, 232, 255, 0.3137254902) !important;
}

.ff_Obsolescence {
  background: rgba(201, 237, 240, 0.3137254902) !important;
}

.ff_other {
  background: rgba(68, 68, 68, 0.3137254902);
}

.hassuggestion {
  position: relative;
}
.hassuggestion .sugg > div {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.hassuggestion .sugg > div:hover {
  font-size: 120%;
  background: #009900;
  color: white;
  cursor: pointer;
}

.addform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 70px auto;
}
.addform button {
  width: 200px;
  padding: 20px;
  border: none;
  background: #ccc;
  border-radius: 10px;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 60px;
}
.addform button:hover {
  background: #e6e6e6;
}
.addform > label,
.addform .label,
.addform div.hassuggestion {
  padding: 10px;
  border-radius: 10px;
}
.addform label span {
  display: block;
  font-size: 90%;
  color: #444;
  margin-bottom: 3px;
}
.addform label input,
.addform label textarea,
.addform label select {
  outline: none;
  width: 100%;
  border-radius: 6px;
  padding: 12px;
  background: #ccc;
  border: none;
  resize: none;
}
.addform label input:focus,
.addform label textarea:focus,
.addform label select:focus {
  background: #444;
  color: white;
}
.addform label input[type=checkbox] {
  width: 40px !important;
}

.adddnew {
  padding: 30px;
  background: #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.adddnew label span {
  color: gray;
  font-size: 80%;
}
.adddnew label input {
  padding: 10px;
  border: none;
  width: 100%;
}
.adddnew input[type=submit] {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  width: 60px;
  background: #009900;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
}

table a {
  color: #009900;
  text-decoration: none;
}

#period, #period_comm {
  width: 100%;
  border: none;
  padding: 5px;
  resize: none;
}

#jobdes, #mats {
  padding: 5px;
  width: 100%;
  height: 60px;
  border: none;
  resize: none;
}

.table {
  margin-top: 40px;
}
.table table {
  width: 100%;
}
.table table th, .table table td {
  padding: 10px;
  text-align: left;
}
.table table th {
  position: sticky;
  top: -30px;
  padding-top: 13px;
  background: #009900;
  color: white;
}
.table table tr {
  background: #eee;
}
.table table tr:nth-child(2n) {
  background: #ccc;
}

.mLbl {
  font-size: 80%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.commercial_table {
  width: 100%;
}
.commercial_table th, .commercial_table td {
  padding: 10px;
  text-align: left;
}
.commercial_table th {
  position: sticky;
  top: -30px;
  padding-top: 13px;
  background: #009900;
  color: white;
}
.commercial_table tr {
  background: #eee;
}
.commercial_table tr:nth-child(2n) {
  background: #eaeaea;
}
.commercial_table input[type=text], .commercial_table textarea {
  padding: 10px;
  resize: none;
  width: 100%;
  background: #ccc;
  outline: none;
  border: none;
  border-radius: 5px;
}
.commercial_table textarea {
  height: 60px;
}

.btn_desc {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_2col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.tabs a {
  text-align: center;
  padding: 10px 20px;
  background: #eaeaea;
  color: black;
  text-decoration: none;
}
.tabs a.active {
  background: #009900;
  color: white;
}

.buttongroup {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.buttongroup button,
.buttongroup a {
  display: inline-block;
  background: #eaeaea;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
.buttongroup button {
  background: #009900;
  color: white;
}

.commercial_list table {
  border-right: 1px solid #ccc;
}
.commercial_list table th {
  background: #009900;
  color: white;
  text-align: left;
  padding: 10px;
}
.commercial_list table td {
  font-size: 90%;
  padding: 10px;
  border-left: 1px solid #ccc;
}
.commercial_list table label span {
  font-size: 80%;
  display: block;
}
.commercial_list table .ld {
  font-size: 80%;
}
.commercial_list table .insPrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.commercial_list table .insPrice input {
  width: 100px;
}
.commercial_list table .insPrice select, .commercial_list table .insPrice input {
  padding: 10px;
  border: none;
}
.commercial_list table tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 70px 150px 1fr 180px 120px 100px 200px;
  grid-template-columns: 20px 70px 150px 1fr 180px 120px 100px 200px;
}
.commercial_list table tr:nth-child(2n) {
  background: #ccc;
}

.tender_q_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tender_q_a .thead {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 2px 1fr 2px 100px 2px 1fr 2px 200px;
  grid-template-columns: 40px 1fr 100px 1fr 200px;
  gap: 2px;
}
.tender_q_a .thead div {
  background: #009900;
  padding: 10px;
  color: white;
}
.tender_q_a .tbody a {
  color: #009900;
  text-decoration: none;
}
.tender_q_a .tbody .grid_line {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 2px 1fr 2px 100px 2px 1fr 2px 200px;
  grid-template-columns: 40px 1fr 100px 1fr 200px;
  gap: 2px;
}
.tender_q_a .tbody .grid_line .infoline {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: rgba(33, 128, 0, 0.1490196078) !important;
  margin: 0 0 40px 0;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: 2/1/3/7;
  border-radius: 10px;
}
.tender_q_a .tbody .grid_line .infoline label {
  display: block;
}
.tender_q_a .tbody .grid_line .infoline label span {
  display: block;
  font-size: 90%;
}
.tender_q_a .tbody .grid_line .infoline label textarea {
  border: none;
  padding: 5px;
  border-radius: 5px;
  height: 40px;
  resize: none;
  width: 100% !important;
}
.tender_q_a .tbody .grid_line .infoline label select {
  padding: 0 0 0 10px;
  border: none;
  border-radius: 5px;
  height: 40px;
  width: 100% !important;
}
.tender_q_a .tbody .grid_line div {
  padding: 10px;
}

.comm_q_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.comm_q_a .thead {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 2px 70px 2px 100px 2px 1fr 2px 120px 2px 111px 2px 90px 2px 200px;
  grid-template-columns: 40px 70px 100px 1fr 120px 111px 90px 200px;
  gap: 2px;
}
.comm_q_a .thead div {
  background: #009900;
  padding: 10px;
  color: white;
}
.comm_q_a .tbody a {
  color: #009900;
  text-decoration: none;
}
.comm_q_a .tbody .grid_line {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 2px 70px 2px 100px 2px 1fr 2px 120px 2px 111px 2px 90px 2px 200px;
  grid-template-columns: 40px 70px 100px 1fr 120px 111px 90px 200px;
  gap: 2px;
}
.comm_q_a .tbody .grid_line:nth-child(2n) {
  background: #eaeaea;
}
.comm_q_a .tbody .grid_line div {
  padding: 10px;
}

.clarification_answ {
  width: 100%;
  background: rgba(47, 78, 11, 0.2);
  margin-top: 10px;
  margin-bottom: 50px;
}
.clarification_answ .p {
  padding: 20px;
}

.clarification_add button {
  opacity: 1;
  border: none;
  background: none;
  color: #009900;
  margin-top: -10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 100%;
}
.clarification_add label {
  margin: 0 !important;
  margin-top: -20px !important;
  height: 0;
  display: block;
  overflow: hidden;
  padding: 0 !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: none !important;
}
.clarification_add.show {
  background: rgba(47, 78, 11, 0.1411764706);
  padding: 10px;
  border-radius: 10px;
}
.clarification_add.show button {
  opacity: 0;
}
.clarification_add.show label {
  height: 60px;
  display: block;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.clar_q {
  background: rgba(47, 78, 11, 0.1411764706);
  padding: 10px;
}
.clar_q span {
  opacity: 0.4;
  font-size: 80%;
}

.dis_2,
.dis_3 {
  display: none;
  pointer-events: none !important;
}

.clarification_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.clarification_form textarea {
  width: 100%;
  padding: 10px;
  background: #eaeaea;
  border-radius: 10px;
  resize: none;
  border: none;
}
.clarification_form input {
  padding: 20px;
  font-size: 110%;
  background: #009900;
  border-radius: 10px;
  color: white;
}

.ack_1,
.ack_2 {
  display: none !important;
  pointer-events: none !important;
}

.finishdate span {
  display: block;
  font-size: 80%;
  margin-bottom: 3px;
  text-align: left;
}

.finishdate {
  margin-top: 40px;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1254901961);
}

.days_mins {
  padding-left: 10px;
  font-size: 70%;
  margin-top: 10px;
  display: inline-block;
  color: white;
  border-radius: 10px;
  text-align: center;
}

.cc_red {
  background: orange;
  color: black;
}

.cc_redd {
  background: red;
  color: white;
}

.st_1 input {
  pointer-events: none;
  opacity: 0.5;
}

.acknow {
  background: #a9d477;
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 200px;
  grid-template-columns: 1fr 200px;
  padding: 20px;
  border-radius: 10px;
}
.acknow .acknowbuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 12px;
  text-align: center;
}
.acknow .acknowbuttons a {
  text-align: center;
  padding: 6px 12px;
  background: #ccc;
  color: black;
  text-decoration: none;
}
.acknow .acknowbuttons a.acc {
  background: #009900;
  color: white;
}
.acknow .acknowbuttons a.dec {
  background: gray;
  color: white;
}

.addNewCompany {
  padding: 70px 0 50px 0;
}
.addNewCompany select {
  width: 100%;
  padding: 12px;
  background: #eaeaea;
  border: none;
  border-radius: 10px;
}

.addquestion {
  color: #009900;
  display: block;
  font-size: 140%;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.popup {
  position: absolute;
  right: 0;
  width: 80%;
  height: 100vh;
  background: #fff;
  padding: 20px;
  z-index: 100;
  -webkit-box-shadow: -13px 1px 50px -20px rgba(0, 0, 0, 0.25);
          box-shadow: -13px 1px 50px -20px rgba(0, 0, 0, 0.25);
}

.send_zone {
  background: rgba(0, 200, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
}
.send_zone input[type=submit] {
  background: #009900;
  color: white;
  border: none;
  font-size: 120%;
  margin: 30px 0;
  padding: 10px 14px;
}
.send_zone .info {
  font-size: 90%;
  margin-top: 30px;
  display: block;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.grid2 {
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid3 {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.rightbutton {
  position: fixed;
  z-index: 1;
  right: 60px;
  top: 50px;
  background: #009900;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
}
.rightbutton a {
  color: white;
  text-decoration: none;
}
.rightbutton .info {
  position: absolute;
  color: black;
  font-size: 80%;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.rightbutton form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.rightbutton input[type=submit] {
  cursor: pointer;
}
.rightbutton input[type=submit]:hover {
  font-weight: bold;
}
.rightbutton select,
.rightbutton input[type=submit] {
  outline: none;
  background: none;
  border: none;
  color: white;
}

.slock_1 .gr_selector {
  position: relative;
}
.slock_1 .gr_selector:after {
  z-index: 1;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0);
  width: 200px;
  height: 80px;
}
.slock_1 input, .slock_1 select {
  pointer-events: none;
  opacity: 0.3;
}
.slock_1 .gr_selector {
  opacity: 0.3;
}
.slock_1 .deletefile {
  display: none;
}

.buttonGroupSend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px !important;
  gap: 20px;
}
.buttonGroupSend a {
  color: #009900;
}
.buttonGroupSend input {
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
}
.buttonGroupSend input.savebtn {
  background: #009900;
  color: white;
  font-size: 120%;
}
.buttonGroupSend input.savebtn:hover {
  background: #8d8d8d;
}
.buttonGroupSend input.send {
  background: #3F51B5;
  color: white;
  font-size: 120%;
}
.buttonGroupSend input.send:hover {
  background: #32408f;
}
.buttonGroupSend input.submitClar {
  background: #4CAF50;
  color: white;
  font-size: 120%;
}
.buttonGroupSend input.submitClar:hover {
  background: #3d8b40;
}

.percent_line {
  position: relative;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 10px;
  height: 39px;
  background: #eaeaea;
}
.percent_line.s_100 .percent_text {
  color: white;
}
.percent_line.s_100 .percent {
  background: #018001;
  color: white !important;
}
.percent_line .percent {
  left: 0px;
  border-radius: 10px;
  position: absolute;
  background: rgba(1, 128, 1, 0.1882352941);
  height: 39px;
  top: 0;
}
.percent_line .percent_text {
  position: relative;
  z-index: 2;
}

.paginate_button {
  cursor: pointer;
  margin: 0 4px;
}
.paginate_button.disabled {
  opacity: 0.4;
}
.paginate_button:hover {
  opacity: 0.4;
}
.paginate_button.current {
  font-weight: bold;
  color: #009900;
}

.pr_list a {
  color: #009900;
  text-decoration: none;
}

#myTable_wrapper .dataTables_info {
  float: left;
  margin-top: 15px;
  font-size: 80%;
}
#myTable_wrapper .dataTables_paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  float: right;
  margin-top: 15px;
  font-size: 80%;
}

.checked {
  border: 1px solid #009900;
}
.checked td {
  background: rgba(0, 200, 0, 0.1);
}

.show_percent {
  position: relative;
}
.show_percent:after {
  height: 5px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
}
.show_percent .percentline {
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #009900;
}

.green {
  color: #009900;
}

.bold {
  font-weight: bold;
}

.option {
  text-align: center;
}

.answertable tr {
  display: -ms-grid;
  display: grid;
  gap: 3px;
  font-size: 90%;
  -ms-grid-columns: 30px 3px 1fr 3px 50px 3px 1fr 3px 100px 3px 100px;
  grid-template-columns: 30px 1fr 50px 1fr 100px 100px;
}
.answertable .grade select {
  width: 80px;
}

.dataTable,
.table {
  width: 100%;
  border-collapse: collapse;
}
.dataTable .remove,
.table .remove {
  color: red !important;
}
.dataTable .edit,
.table .edit {
  color: blue !important;
}
.dataTable th,
.dataTable td,
.table th,
.table td {
  text-align: left;
  padding: 10px;
}
.dataTable th select,
.dataTable td select,
.table th select,
.table td select {
  border: none;
  background: none;
  outline: none;
  font-size: 100%;
}
.dataTable thead tr,
.table thead tr {
  background: #ccc !important;
}
.dataTable tr,
.table tr {
  background: rgba(234, 234, 234, 0.3137254902);
}
.dataTable tr a,
.table tr a {
  font-weight: bold;
  text-decoration: none;
}
.dataTable tr:hover,
.table tr:hover {
  color: #009900;
}
.dataTable tr:hover select,
.table tr:hover select {
  color: #009900;
}
.dataTable tr:nth-child(2n),
.table tr:nth-child(2n) {
  background: rgba(204, 204, 204, 0.4392156863);
}

.dataTables_filter {
  margin-bottom: 10px;
}
.dataTables_filter input {
  padding: 10px;
  width: 100%;
  border: none;
  background: #eaeaea;
}

.add {
  background: blue !important;
  color: white !important;
  padding: 6px !important;
  width: 50px !important;
}

.mr_gr {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.mr_gr input,
.mr_gr select {
  border-radius: 0 !important;
}
.mr_gr input {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.mr_gr select {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.tender_content {
  margin-bottom: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tender_content .st_3 {
  color: red;
}
.tender_content .comments {
  color: black;
  font-size: 80%;
  padding: 6px 12px;
  background: #ccc;
  margin-top: 3px;
  border-radius: 10px;
}
.tender_content .val {
  max-height: 200px;
  overflow: auto;
}
.tender_content a {
  color: #009900;
  font-weight: bold;
  text-decoration: none;
}
.tender_content > div {
  padding: 20px;
  background: #eaeaea;
  border-radius: 10px;
  font-size: 100%;
  color: #009900;
}
.tender_content > div span.label {
  display: inline-block;
  font-size: 80%;
  color: #444;
}
.tender_content > div span.material-symbols-outlined {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  -webkit-transform: scale(0.7) translateY(-2px);
          transform: scale(0.7) translateY(-2px);
}

.hasfile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hasfile a {
  white-space: nowrap;
  color: black;
  text-decoration: none;
  background: #eaeaea;
  padding: 17px 20px;
  border-radius: 10px;
}
.hasfile a b {
  max-width: 200px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.required input {
  background: rgba(200, 0, 0, 0.2) !important;
}

.createnew a:nth-child(1) {
  background: #009900;
}
.createnew a:nth-child(2) {
  background: dark #009900;
}
.createnew a {
  padding: 5px 12px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}

.project_main_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.project_main_line > div:nth-child(1), .project_main_line > div:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.project_main_line .options {
  -ms-flex-preferred-size: 10% !important;
      flex-basis: 10% !important;
}
.project_main_line .name {
  display: block;
}
.project_main_line .name .title {
  font-size: 80%;
  color: #009900;
  display: block;
  margin-bottom: 5px;
}

.tender_main_line {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  background: #eaeaea;
  color: black;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
}
.tender_main_line b.green {
  color: #009900;
}
.tender_main_line .name {
  display: block;
}
.tender_main_line .name .title {
  font-size: 80%;
  color: #009900;
  display: block;
  margin-bottom: 5px;
}
.tender_main_line .normaltime b {
  color: #009900;
}
.tender_main_line .ortime b {
  color: orange;
}
.tender_main_line .redtime b {
  color: red;
}

.nomargin {
  margin: 0 !important;
}

.bidderInfo {
  margin: 40px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.bidderInfo > div {
  background: #eaeaea;
  padding: 30px;
  border-radius: 15px;
}
.bidderInfo > div .label {
  color: #009900;
  font-size: 80%;
}

.linksGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.linksGroup a span {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.linksGroup a:hover span {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.linksGroup .edit {
  color: blue;
}
.linksGroup .delete {
  color: red;
}
.linksGroup .reject {
  color: purple;
}
.linksGroup .send {
  color: dark #009900;
}

ul.projects_list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin: 0;
  margin-bottom: 50px;
}
ul.projects_list li a {
  background: #eaeaea;
  display: block;
  padding: 10px 15px;
  border-radius: 10px;
}
ul.projects_list li a:hover {
  background: rgba(204, 204, 204, 0.2509803922);
}

.reject_form {
  padding: 20px;
  background: #eaeaea;
}
.reject_form button {
  background: purple !important;
}
.reject_form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  resize: none;
  outline: none;
}

.button {
  padding: 10px 20px;
  background: #009900;
  color: white !important;
  border-radius: 5px;
  text-decoration: none;
}

.inputgroup {
  display: -ms-grid;
  display: grid;
  margin-top: 5px;
  -ms-grid-columns: 3fr 20px 2fr;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}

.gr_selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.gr_selector label {
  background: #eaeaea;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
}
.gr_selector label:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.gr_selector label:first-child span:after {
  left: inherit;
  right: 0;
}
.gr_selector label:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.gr_selector label:last-child span:after {
  left: 0;
  right: inherit;
}
.gr_selector label span {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 0 !important;
  padding: 20px !important;
}
.gr_selector label span b {
  font-weight: normal;
  position: relative;
  z-index: 1;
}
.gr_selector label span:after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 0;
  content: "";
  top: 0;
  background: #009900;
  position: absolute;
  bottom: 0;
  font-size: 100% !important;
}
.gr_selector label input[type=radio] {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.gr_selector label input[type=radio]:checked + span {
  color: white !important;
}
.gr_selector label input[type=radio]:checked + span:after {
  width: 100%;
}

.qgroup {
  background: rgba(234, 234, 234, 0.5647058824);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #2f4e0b;
}
.qgroup .qheader {
  position: sticky;
  top: -30px;
  font-size: 150%;
  margin-bottom: 15px;
  color: dark #009900;
  background: #f3f3f3;
  z-index: 100;
  padding: 10px 0;
}
.qgroup .question_list label, .qgroup .question_list .label {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.qgroup .question_list label.sel input, .qgroup .question_list .label.sel input {
  background: rgba(139, 195, 74, 0.168627451);
}
.qgroup .question_list label span, .qgroup .question_list .label span {
  display: block;
  font-size: 90%;
  max-width: 50%;
}
.qgroup .question_list label input, .qgroup .question_list .label input {
  outline: none;
  padding: 14px;
  border-radius: 7px;
  border: none;
  width: 100%;
  background: #eaeaea;
  border-bottom: 1px solid #ccc;
}
.qgroup .question_list label input:active, .qgroup .question_list label input:focus, .qgroup .question_list .label input:active, .qgroup .question_list .label input:focus {
  background: #ccc;
}
.qgroup .question_list > div {
  margin-bottom: 20px;
}

.user_n {
  margin-top: 100px !important;
  max-width: 900px;
  margin: auto;
}
.user_n .notLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user_n .notLine a {
  color: black;
  text-decoration: none;
}
.user_n .notLine .dt {
  opacity: 0.5;
  font-size: 90%;
}
.user_n .notLine.read_0 {
  color: #544cf6;
}
.user_n .notLine.read_0 a {
  color: #544cf6;
  text-decoration: none;
}

.notification_zone {
  z-index: 32;
  text-decoration: none;
  position: absolute;
  background: #cccccc;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 30px;
  height: 30px;
  left: 200px;
  top: 60px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #1c196d;
}
.notification_zone:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.notification_zone span {
  color: #1c186d !important;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.notification_zone .n_0 {
  display: none !important;
}
.notification_zone .number {
  position: absolute;
  left: -2px;
  font-size: 90%;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  top: 20px;
}

.n_0 .number {
  display: none !important;
}

.notification_item {
  margin-bottom: 6px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #eaeaea;
  padding: 5px 20px;
  border-radius: 10px;
}
.notification_item.read_0 {
  background: #ccc;
  color: white;
}
.notification_item:hover {
  background: #444;
  color: #fff;
}
.notification_item h3 {
  margin: 0;
  font-weight: 100;
  padding: 0;
}

.hoverButton {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: -10px;
  width: calc(100% - 20px);
  margin: 10px;
  border-radius: 10px;
  background: #009900;
  pointer-events: none;
}
.hoverButton a {
  background: #009900;
  border-radius: 10px;
  text-align: center;
  display: block;
  padding: 8px 0px;
  color: white;
  text-decoration: none;
}

.preventing {
  position: relative;
}
.preventing:hover .hoverButton {
  top: 0;
  opacity: 1;
  pointer-events: all;
}

.button_next {
  background: #009900;
  width: 200px;
  border-radius: 10px;
  text-align: center;
  display: block;
  padding: 8px 0px;
  color: white !important;
  text-decoration: none;
}

.preventing {
  background: rgba(24, 0, 255, 0.1019607843) !important;
}

.needtodo {
  font-size: 130%;
  margin-top: 20px;
  display: block;
}

.warning {
  border: 2px solid red;
}

.warning .days_of {
  color: red;
}

.job_in {
  font-size: 80%;
  margin: 10px 0;
}