@charset "UTF-8";
@import url(../Fonts/IRANSans/css/fontiran.css);
body {
  direction: rtl;
  margin: 0px;
  padding: 0px;
  font-size: normal;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
*:not(:is(.fa-spin)) {
  transition: all ease 0.3s;
}
*:not(i) {
  font-family: irs, tahoma;
}

.flex {
  display: flex;
}
.flex.cc {
  justify-content: center;
  align-items: center;
}
.flex.inline {
  display: inline-flex;
}
.flex.row, .flex.rows {
  flex-direction: column;
}
.flex.columns, .flex.col, .flex.cols {
  flex-direction: row;
}
.flex > .start {
  justify-self: flex-start;
}
.flex > .center {
  flex: 1;
}
.flex > .end {
  justify-self: flex-end;
}
.flex.pages > .page {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.flex.pages > .page:not(.act) {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
.flex.pages > .page.act {
  opacity: 1;
}

.abs {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.fix {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.ov {
  overflow: auto;
}

.ovh {
  overflow: hidden;
}

.rel {
  position: relative;
}

button {
  display: inline-flex;
  gap: 10px;
  padding: 10px 15px;
  margin: 0px;
  background-image: linear-gradient(45deg, steelblue, purple);
  color: #FFF;
  border: 0px;
  border-radius: 100px;
  cursor: pointer;
}
button:hover {
  background-image: linear-gradient(-45deg, steelblue, purple);
}
button > * {
  line-height: 16px;
}
button > i {
  font-size: 16px;
  justify-self: flex-start;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
button > span {
  flex: 1;
  white-space: nowrap;
}
button.green {
  background-image: linear-gradient(45deg, rgb(0, 151, 38), rgb(0, 90, 23));
  color: #FFF;
}
button.red {
  background-image: linear-gradient(45deg, rgb(151, 0, 0), rgb(90, 0, 0));
  color: #FFF;
}
button.yellow {
  background-image: linear-gradient(45deg, rgb(221, 204, 47), rgb(161, 138, 2));
  color: #000;
}
button.blue {
  background-image: linear-gradient(45deg, rgb(0, 121, 151), rgb(0, 54, 90));
  color: #FFF;
}

.grid {
  width: 100%;
  border-spacing: 0px;
}
.grid > thead {
  background-color: #FFF;
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  box-shadow: 0px 0px 25px 25px rgba(0, 0, 0, 0.1);
}
.grid > thead > tr > * {
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: start;
}
.grid > tbody > tr > * {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px 10px;
}
.grid > tbody > tr > *.center {
  text-align: center;
}
.grid > tbody > tr:nth-last-of-type(2n) {
  background-color: rgba(0, 0, 0, 0.03);
}
.grid > tbody > tr:hover > * {
  background-color: rgba(0, 0, 0, 0.1);
}
.grid .nw {
  width: 1px;
  white-space: nowrap;
}
@keyframes _opentype {
  0% {
    box-shadow: 0px 0px 0px rgba(0, 175, 44, 0);
  }
  10% {
    box-shadow: 0px 0px 10px rgb(0, 175, 44);
  }
  20% {
    box-shadow: 0px 0px 0px rgba(0, 175, 44, 0);
  }
  30% {
    box-shadow: 0px 0px 10px rgb(0, 175, 44);
  }
  40% {
    box-shadow: 0px 0px 0px rgba(0, 175, 44, 0);
  }
}
.grid .opentype-1 {
  display: inline-block;
  border-radius: 100px;
  font-size: 8.25pt;
  padding: 3px 10px;
  background-image: linear-gradient(45deg, #00ad34, #007423);
  color: #fff;
  animation: _opentype infinite 3s;
}
.grid .opentype-2 {
  display: inline-block;
  border-radius: 100px;
  font-size: 8.25pt;
  padding: 3px 10px;
  background-image: linear-gradient(45deg, #ff0000, #ad0000);
  color: #fff;
}

/* ► ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
.app > .processes {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.app > .center > .choose {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  overflow: auto;
}
.app > .center > .choose.act {
  width: 300px;
}
.app > .center > .choose:not(.act) {
  width: 0px;
  pointer-events: none;
}
.app > .center > .choose > button {
  background-color: transparent;
  display: flex;
  width: 100%;
  background-image: none;
  border-radius: 0px;
  color: inherit;
  padding: 10px;
}
.app > .center > .choose > button i {
  font-size: 28px;
}
.app > .center > .choose > button span {
  text-align: start;
  flex-direction: column;
  font-weight: bold;
}
.app > .center > .choose > button span strong {
  display: block;
  font-size: xx-small;
  font-weight: normal;
}
.app > .center > .choose > button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.app > .center > .body > .process > .start {
  background-image: linear-gradient(45deg, #FFF, #EEE);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  gap: 15px;
}
.app > .center > .body > .process > .start b {
  display: block;
}
.app > .center > .body > .process > .start strong {
  display: block;
  font-size: x-small;
  font-weight: normal;
}
.app > .center > .body > .process > .content > .flex {
  padding: 25px;
  gap: 25px;
}
.app > .center > .body > .process > .content pre {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
  margin: 0px;
  font-family: monospace;
  direction: ltr;
}
.app > .center > .body > .process > .commands {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  gap: 15px;
}
.app > .center > .body > .process > .commands b {
  display: block;
}
.app > .center > .body > .process > .commands strong {
  display: block;
  font-size: x-small;
  font-weight: normal;
}
.app > .center > .body > .cartable .gadgets {
  gap: 10px;
  margin: 10px;
  z-index: 99;
}
.app > .center > .body > .cartable .gadgets .gadget {
  padding: 0px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  border-radius: 10px;
  font-size: small;
}
.app > .center > .body > .cartable .gadgets .gadget .title {
  display: inline-block;
  border-top: 5px solid #DDD;
  padding: 5px 10px;
  margin-inline-start: 10px;
}
.app > .center > .body > .cartable .gadgets .gadget label {
  font-size: xx-large;
  float: inline-start;
  margin-inline-end: 10px;
}
.app > .center > .body > .cartable .gadgets .gadget .flex {
  gap: 20px;
}
.app > .center > .body > .cartable .gadgets .gadget .progress {
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 100px;
  display: inline-block;
  width: 100%;
}
.app > .center > .body > .cartable .gadgets .gadget .progress .bar {
  height: 10px;
  background-color: red;
  border-radius: 100px;
}
.app > .center > .body > .cartable .gadgets .gadget.open {
  background-image: radial-gradient(circle at bottom, rgba(24, 121, 0, 0.2) 0, rgba(24, 121, 0, 0) 100%);
}
.app > .center > .body > .cartable .gadgets .gadget.open .bar {
  background-image: linear-gradient(45deg, rgb(41, 207, 0), rgb(24, 121, 0));
}
.app > .center > .body > .cartable .gadgets .gadget.close {
  background-image: radial-gradient(circle at bottom, rgba(207, 0, 0, 0.2) 0, rgba(207, 0, 0, 0) 100%);
}
.app > .center > .body > .cartable .gadgets .gadget.close .bar {
  background-image: linear-gradient(45deg, rgb(207, 0, 0), rgb(121, 0, 0));
}
.app > .center > .body > .cartable .gadgets .gadget.receive {
  background-image: radial-gradient(circle at bottom, rgba(0, 97, 207, 0.2) 0, rgba(0, 97, 207, 0) 100%);
}
.app > .center > .body > .cartable .gadgets .gadget.receive .bar {
  background-image: linear-gradient(45deg, rgb(0, 97, 207), rgb(0, 63, 121));
}
.app > .center > .body > .cartable .gadgets .gadget.send {
  background-image: radial-gradient(circle at bottom, rgba(207, 193, 0, 0.2) 0, rgba(207, 193, 0, 0) 100%);
}
.app > .center > .body > .cartable .gadgets .gadget.send .bar {
  background-image: linear-gradient(45deg, rgb(207, 193, 0), rgb(121, 99, 0));
}
.app > .center > .body > .cartable .grid {
  z-index: 95;
}
.app > .center > .body > .history > .start {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.app > .status {
  gap: 10px;
  padding: 10px;
  font-size: small;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.app > .status.act {
  background-image: linear-gradient(45deg, steelblue, purple);
  color: #FFF;
}
.app > .status i, .app > .status span {
  color: inherit;
}
.app > .status span {
  transition: none;
}/*# sourceMappingURL=Style.css.map */