@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
@import url(plugins/semantic/message.css);
@import url(plugins/semantic/button.css);
@import url(plugins/semantic/icon.css);
* {
  font-family: 'Poppins', sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400; }

h1 {
  font-weight: 500; }

h2 {
  font-weight: 400; }

.ChartLayout {
  display: inline-block;
  overflow: hidden !important; }

@keyframes swipe {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }
.chart-filter {
  animation: swipe 1.5s linear infinite forwards; }

:root {
  --bs-primary-dark: #263cdd;
  --bs-primary-light: #5264e3;
  --bs-primary-transparent: rgba(60, 80, 224, 0.10);
  --bs-secondary-dark: #a6afb7;
  --bs-secondary-light: #c2c9cd;
  --bs-secondary-transparent: rgba(180, 188, 194, 0.25);
  --bs-success-dark: #19a872;
  --bs-success-light: #1fd490;
  --bs-success-transparent: rgba(28, 190, 129, 0.15);
  --bs-info-dark: #44b7e8;
  --bs-info-light: #72c9ee;
  --bs-info-transparent: rgba(91, 192, 235, 0.25);
  --bs-warning-dark: #ec761c;
  --bs-warning-light: #f0924c;
  --bs-warning-transparent: rgba(238, 132, 52, 0.25);
  --bs-danger-dark: #ff3d5a;
  --bs-danger-light: #ff7086;
  --bs-danger-transparent: rgba(255, 86, 112, 0.25);
  --bs-light-dark: #cfe1ff;
  --bs-light-light: white;
  --bs-light-transparent: rgba(232, 241, 255, 0.25);
  --bs-dark-dark: #040022;
  --bs-dark-light: #0a0055;
  --bs-dark-transparent: rgba(7, 0, 59, 0.25);
  --bs-white-dark: #f2f2f2;
  --bs-white-light: white;
  --bs-white-transparent: rgba(255, 255, 255, 0.25); }

:root {
  --bs-blue: #3C50E0;
  --bs-indigo: #6610f2;
  --bs-purple: #8A54FF;
  --bs-pink: #FFC1C1;
  --bs-red: #FF5670;
  --bs-orange: #EE8434;
  --bs-yellow: #FDB400;
  --bs-green: #1CBE81;
  --bs-teal: #20c997;
  --bs-cyan: #5BC0EB;
  --bs-white: #fff;
  --bs-gray: #95a5a6;
  --bs-gray-dark: #415581;
  --bs-primary: #3C50E0;
  --bs-secondary: #b4bcc2;
  --bs-success: #1CBE81;
  --bs-info: #5BC0EB;
  --bs-warning: #EE8434;
  --bs-danger: #FF5670;
  --bs-light: #E8F1FF;
  --bs-dark: #07003B;
  --bs-white: #fff;
  --bs-font-sans-serif: "Muli", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); }

.Label {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  font-size: 14px; }
  .Label:hover {
    cursor: pointer; }
  .Label.Mini {
    font-size: 11px; }
  .Label.White {
    color: var(--bs-gray);
    background: var(--bs-light-transparent); }
    .Label.White:hover {
      background: var(--bs-secondary-dark);
      color: #fff; }
  .Label.Blue {
    color: var(--bs-primary);
    background: var(--bs-primary-transparent); }
    .Label.Blue:hover {
      background: var(--bs-primary-dark);
      color: #fff; }
  .Label.Green {
    color: var(--bs-success);
    background: var(--bs-success-transparent); }
    .Label.Green:hover {
      background: var(--bs-success-dark);
      color: #fff; }
  .Label.Orange {
    color: var(--bs-warning);
    background: var(--bs-warning-transparent); }
    .Label.Orange:hover {
      background: var(--bs-warning-dark);
      color: #fff; }
  .Label.Red {
    color: var(--bs-danger);
    background: var(--bs-danger-transparent); }
    .Label.Red:hover {
      background: var(--bs-danger-dark);
      color: #fff; }

.spinner {
  height: 60px;
  width: 60px;
  margin: 0 auto;
  position: relative;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border: 6px solid rgba(0, 174, 239, 0.15);
  border-radius: 100%; }

.spinner:before {
  content: "";
  display: block;
  position: absolute;
  left: -6px;
  top: -6px;
  height: 100%;
  width: 100%;
  border-top: 6px solid rgba(0, 174, 239, 0.8);
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid transparent;
  border-radius: 100%; }

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg); } }
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(359deg); } }
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg); }
  to {
    -o-transform: rotate(359deg); } }
@keyframes rotation {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }
.spinner-sm {
  height: 16px;
  width: 16px; }

.spinner-md {
  height: 40px;
  width: 40px; }

.spinner-lr {
  height: 150px;
  width: 150px; }

.spinner-red {
  border: 6px solid rgba(216, 27, 34, 0.15); }

.spinner-red:before {
  border-top: 6px solid #d81b22; }

.spinner-green {
  border: 6px solid rgba(40, 183, 121, 0.15); }

.spinner-green:before {
  border-top: 6px solid #28b779; }

.spinner-grey {
  border: 6px solid rgba(139, 146, 154, 0.15); }

.spinner-grey:before {
  border-top: 6px solid #8b929a; }

[data-balloon] {
  position: relative; }

[data-balloon]::before {
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease-out;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(data-balloon);
  font-size: 12px;
  padding: .5em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10; }

[data-balloon]::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease-out;
  content: '';
  position: absolute;
  z-index: 10; }

[data-balloon]:hover::before, [data-balloon]:hover::after {
  opacity: 1;
  pointer-events: auto; }

[data-balloon][data-balloon-pos="up"]::before {
  bottom: 100%;
  left: 50%;
  margin-bottom: 11px;
  transform: translate3d(-50%, 10px, 0);
  transform-origin: top; }

[data-balloon][data-balloon-pos="up"]::after {
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  transform: translate3d(-50%, 10px, 0);
  transform-origin: top; }

[data-balloon][data-balloon-pos="up"]:hover::before {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos="up"]:hover::after {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos='down']::before {
  left: 50%;
  margin-top: 11px;
  top: 100%;
  transform: translate3d(-50%, -10px, 0); }

[data-balloon][data-balloon-pos='down']::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 50%;
  margin-top: 5px;
  top: 100%;
  transform: translate3d(-50%, -10px, 0); }

[data-balloon][data-balloon-pos='down']:hover::before {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos='down']:hover::after {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos='left']::before {
  margin-right: 11px;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0); }

[data-balloon][data-balloon-pos='left']::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 6px;
  height: 18px;
  margin-right: 5px;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0); }

[data-balloon][data-balloon-pos='left']:hover::before {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-pos='left']:hover::after {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-pos='right']::before {
  left: 100%;
  margin-left: 11px;
  top: 50%;
  transform: translate3d(-10px, -50%, 0); }

[data-balloon][data-balloon-pos='right']::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 6px;
  height: 18px;
  left: 100%;
  margin-left: 5px;
  top: 50%;
  transform: translate3d(-10px, -50%, 0); }

[data-balloon][data-balloon-pos='right']:hover::before {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-pos='right']:hover::after {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-length='small']::before {
  white-space: normal;
  width: 80px; }

[data-balloon][data-balloon-length='medium']::before {
  white-space: normal;
  width: 150px; }

[data-balloon][data-balloon-length='large']::before {
  white-space: normal;
  width: 260px; }

[data-balloon][data-balloon-length='xlarge']::before {
  white-space: normal;
  width: 380px; }

@media screen and (max-width: 768px) {
  [data-balloon][data-balloon-length='xlarge']::before {
    white-space: normal;
    width: 90vw; } }
[data-balloon][data-balloon-length='fit']::before {
  white-space: normal;
  width: 100%; }

.btn--block {
  display: block; }

.btn--block + .btn--block {
  margin-left: 0; }

.btn {
  display: inline-block;
  position: relative;
  margin: 5px 0;
  padding: 10px 31px 11px;
  cursor: pointer;
  outline: 0;
  border: none;
  border-radius: 22px;
  background: transparent;
  transition: background .2s,color .2s;
  text-align: center;
  text-decoration: none;
  font: 1.286em/1.1667 'Poppins',sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 22px;
  transition: border 0.1s ease-in-out; }

.btn + .btn {
  margin-left: 7px; }

.btn .b-link {
  border-radius: inherit; }

.btn.tooltip-no-js-wrap:hover > .tooltip {
  display: none !important; }

.btn:disabled > .tooltip, .btn.disabled > .tooltip {
  display: block; }

.btn--static .b-link {
  top: -1000px;
  right: -1000px;
  bottom: -1000px;
  left: -1000px; }

.btn--xsm {
  padding: 3px 15px 4px;
  border-radius: 12px;
  font-size: .929em;
  line-height: 1.308; }

.btn--xsm:before {
  border-radius: 11px; }

.btn--sm {
  padding: 7px 18px 6px;
  border-radius: 16px;
  font-size: 1em;
  line-height: 1.3572; }

.btn--sm:before {
  border-radius: 16px; }

.btn, .btn:hover {
  color: #fff; }

.btn > .icon-svg, .btn > .icon:hover, .btn > .icon-svg:hover {
  color: inherit; }

.btn--red {
  background: #f02139; }

.btn--red:hover, .btn--red:focus {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--red:active, .btn--red.active {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--orange {
  background: #ff8200; }

.btn--orange:hover, .btn--orange:focus {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--orange:active, .btn--orange.active {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--dorange {
  background: #ef5322; }

.btn--dorange:hover, .btn--dorange:focus {
  background: #ef5322 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--dorange:active, .btn--dorange.active {
  background: #ef5322 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--yellow {
  background: #fec309; }

.btn--yellow:hover, .btn--yellow:focus {
  background: #fec309 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--yellow:active, .btn--yellow.active {
  background: #fec309 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--grass {
  background: #86c313; }

.btn--grass:hover, .btn--grass:focus {
  background: #86c313 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--grass:active, .btn--grass.active {
  background: #86c313 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--lime {
  background: #29cf29; }

.btn--lime:hover, .btn--lime:focus {
  background: #29cf29 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--lime:active, .btn--lime.active {
  background: #29cf29 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--green {
  background: #1ac636; }

.btn--green:hover, .btn--green:focus {
  background: #1ac636 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--green:active, .btn--green.active {
  background: #1ac636 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--aqua {
  background: #00caa8; }

.btn--aqua:hover, .btn--aqua:focus {
  background: #00caa8 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--aqua:active, .btn--aqua.active {
  background: #00caa8 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--sky {
  background: #28c4f6; }

.btn--sky:hover, .btn--sky:focus {
  background: #28c4f6 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--sky:active, .btn--sky.active {
  background: #28c4f6 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--dsky {
  background: #1eb2fc; }

.btn--dsky:hover, .btn--dsky:focus {
  background: #1eb2fc linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--dsky:active, .btn--dsky.active {
  background: #1eb2fc linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--lblue {
  background: #2b8cfc; }

.btn--lblue:hover, .btn--lblue:focus {
  background: #2b8cfc linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--lblue:active, .btn--lblue.active {
  background: #2b8cfc linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--blue {
  background: #2b65f8; }

.btn--blue:hover, .btn--blue:focus {
  background: #2b65f8 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--blue:active, .btn--blue.active, .btn--blue.loading {
  background: #2b65f8 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--dgrey {
  background: #9aa9c5; }

.btn--dgrey:hover, .btn--dgrey:focus {
  background: #9aa9c5 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--dgrey:active, .btn--dgrey.active {
  background: #9aa9c5 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--pink {
  background: #f55280; }

.btn--pink:hover, .btn--pink:focus {
  background: #f55280 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--pink:active, .btn--pink.active {
  background: #f55280 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--laguna {
  background: #2f75c1; }

.btn--laguna:hover, .btn--laguna:focus {
  background: #2f75c1 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--laguna:active, .btn--laguna.active {
  background: #2f75c1 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--vdgrey {
  background: #333844; }

.btn--vdgrey:hover, .btn--vdgrey:focus {
  background: #333844 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--vdgrey:active, .btn--vdgrey.active {
  background: #333844 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--aqua-blue {
  background: #08b5fd; }

.btn--aqua-blue:focus, .btn--aqua-blue:hover {
  background: #069fde; }

.btn--aqua-blue:active, .btn--aqua-blue.active {
  background: #0487bd; }

.btn--facebook {
  background: #3464d4; }

.btn--facebook:hover, .btn--facebook:focus {
  background: #3464d4 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--facebook:active, .btn--facebook.active {
  background: #3464d4 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--twitter {
  background: #1cacff; }

.btn--twitter:hover, .btn--twitter:focus {
  background: #1cacff linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--twitter:active, .btn--twitter.active {
  background: #1cacff linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--google {
  background: #dd4b39; }

.btn--google:hover, .btn--google:focus {
  background: #dd4b39 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--google:active, .btn--google.active {
  background: #dd4b39 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--instagram {
  background: #3674a9; }

.btn--instagram:hover, .btn--instagram:focus {
  background: #3674a9 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--instagram:active, .btn--instagram.active {
  background: #3674a9 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--linkedin {
  background: #006799; }

.btn--linkedin:hover, .btn--linkedin:focus {
  background: #006799 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--linkedin:active, .btn--linkedin.active {
  background: #006799 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--vk {
  background: #2c70b4; }

.btn--vk:hover, .btn--vk:focus {
  background: #2c70b4 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--vk:active, .btn--vk.active {
  background: #2c70b4 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--odnoklassniki {
  background: #f7882b; }

.btn--odnoklassniki:hover, .btn--odnoklassniki:focus {
  background: #f7882b linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--odnoklassniki:active, .btn--odnoklassniki.active {
  background: #f7882b linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--yandex {
  background: #ee3a2e; }

.btn--yandex:hover, .btn--yandex:focus {
  background: #ee3a2e linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--yandex:active, .btn--yandex.active {
  background: #ee3a2e linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--transparent {
  background: rgba(0, 0, 0, 0.5); }

.btn--transparent > .ico, .btn--transparent > .icon-svg {
  opacity: 0.8; }

.btn--transparent:hover, .btn--transparent:focus {
  background: rgba(0, 0, 0, 0.7); }

.btn--transparent:hover > .ico, .btn--transparent:focus > .ico, .btn--transparent.active > .ico, .btn--transparent:hover > .icon-svg, .btn--transparent:focus > .icon-svg, .btn--transparent.active > .icon-svg {
  opacity: 1; }

.btn--transparent:active {
  background: rgba(0, 0, 0, 0.9); }

.btn--glass:before {
  content: '';
  border: 2px solid rgba(255, 255, 255, 0.3); }

.btn--glass:hover:before {
  border-color: #fff; }

.btn--glass:active:before, .btn--glass.active:before {
  border-color: rgba(255, 255, 255, 0.3); }

.btn--white {
  background: #fff;
  color: #4d4d4d; }

.btn--white:before {
  content: '';
  border: 1px solid rgba(0, 0, 0, 0.1); }

.btn--white:hover, .btn--white:focus {
  color: #2b65f8; }

.btn--white:hover:before, .btn--white:focus:before {
  border-width: 2px;
  border-color: #2b65f8; }

.btn--white:active, .btn--white.active, .btn--white.loading {
  color: #2058c6; }

.btn--white:active:before, .btn--white.active:before, .btn--white.loading:before {
  border-width: 2px;
  border-color: #2058c6; }

.btn--gold {
  background: #fff;
  color: #4d4d4d; }

.btn--gold:before {
  content: '';
  border: 1px solid rgba(0, 0, 0, 0.1); }

.btn--gold:hover:before, .btn--gold:focus:before {
  border-width: 2px;
  border-color: #fec309; }

.btn--gold:active, .btn--gold.active, .btn--gold.loading {
  background: #fec309; }

.btn--gold:active:before, .btn--gold.active:before, .btn--gold.loading:before {
  border: none; }

.btn--gold.active:hover {
  background: #e4af08; }

.btn-normal {
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important; }
  .btn-normal:before {
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    border-radius: 6px !important; }

select {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  width: 100%;
  transition: all 0.2s ease;
  padding-top: 8px;
  padding-right: 35px;
  padding-bottom: 8px;
  padding-left: 10px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../drawable/icons8_triangular_arrow_down_20px_1.png) right 10px center no-repeat #fff;
  background-size: 20px; }

select:focus {
  border: 1px solid #0A84FF;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(10, 132, 255, 0.6) 0px 0px 0px 4px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 3px 9px 0px, rgba(60, 66, 87, 0.12) 0px 2px 5px 0px; }

select:hover {
  border: 1px solid #0A84FF;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(10, 132, 255, 0.6) 0px 0px 0px 4px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 3px 9px 0px, rgba(60, 66, 87, 0.12) 0px 2px 5px 0px; }

select::-ms-expand {
  display: none; }

@media screen and (min-width: 0\0 ) {
  select {
    background: none\9;
    padding: 5px\9; } }
input[type=text],
input[type=password],
input[type=email],
textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 8.5px 14px;
  transition: all 0.2s ease; }
  input[type=text].SelectorRight,
  input[type=password].SelectorRight,
  input[type=email].SelectorRight,
  textarea.SelectorRight {
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px; }
  input[type=text]:hover, input[type=text]:focus,
  input[type=password]:hover,
  input[type=password]:focus,
  input[type=email]:hover,
  input[type=email]:focus,
  textarea:hover,
  textarea:focus {
    border: 1px solid #0A84FF;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(10, 132, 255, 0.6) 0px 0px 0px 4px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 3px 9px 0px, rgba(60, 66, 87, 0.12) 0px 2px 5px 0px; }

input[type=checkbox].r_checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  transition: all 0.2s ease; }

input[type=checkbox].r_checkbox + label.label {
  padding-left: 35px;
  transition: all 0.2s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer;
  margin: 2px;
  line-height: 24px;
  height: 24px; }

input[type=checkbox].r_checkbox:hover + label.label {
  background-position: 0 -24px; }

input[type=checkbox].r_checkbox:checked + label.label {
  background-position: 0 -48px; }

.label {
  background-position: 0 0px; }

.label-blue {
  background-image: url(../drawable/checkbox.png); }

input[type=radio].r_radio {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0; }

input[type=radio].r_radio + label.label {
  transition: all 0.2s ease;
  padding-left: 35px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer;
  margin: 2px;
  line-height: 24px;
  height: 24px; }

input[type=radio].r_radio:hover + label.label {
  background-position: 0 -24px; }

input[type=radio].r_radio:checked + label.label {
  background-position: 0 -48px; }

.InputMultiSelector {
  float: left;
  display: inline-block;
  position: relative;
  width: 100%; }
  .InputMultiSelector input[type=text] {
    background: url(../drawable/icons8_triangular_arrow_down_20px_1.png) right 10px center no-repeat #fff;
    background-size: 20px; }
  .InputMultiSelector .InputMultiSelectorList {
    position: absolute;
    left: 0;
    min-width: 250px;
    max-width: 400px;
    display: none; }
    .InputMultiSelector .InputMultiSelectorList .arrow_box {
      float: left;
      width: 100%;
      padding: 10px 0;
      position: relative;
      background: #fff;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px;
      border: 1px solid #ccc; }
      .InputMultiSelector .InputMultiSelectorList .arrow_box .option {
        float: left;
        width: 100%;
        padding: 5px 20px;
        font-size: 14px; }
        .InputMultiSelector .InputMultiSelectorList .arrow_box .option label {
          white-space: nowrap;
          text-overflow: ellipsis;
          overflow: hidden;
          font-size: 14px; }
        .InputMultiSelector .InputMultiSelectorList .arrow_box .option:hover {
          background: #f2f2f2; }
      .InputMultiSelector .InputMultiSelectorList .arrow_box .optgroup {
        float: left;
        width: 100%;
        padding: 5px 20px;
        font-weight: 600;
        font-size: 11px; }
    .InputMultiSelector .InputMultiSelectorList .arrow_box:after, .InputMultiSelector .InputMultiSelectorList .arrow_box:before {
      bottom: 100%;
      left: 12%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .InputMultiSelector .InputMultiSelectorList .arrow_box:after {
      border-color: rgba(255, 255, 255, 0);
      border-bottom-color: #fff;
      border-width: 10px;
      margin-left: -10px; }
    .InputMultiSelector .InputMultiSelectorList .arrow_box:before {
      border-color: rgba(204, 204, 204, 0);
      border-bottom-color: #ccc;
      border-width: 11px;
      margin-left: -11px; }

.ic_close {
  display: inline-block;
  width: 16px;
  height: 16px;
  opacity: 0.3; }
  .ic_close:hover {
    opacity: 1;
    cursor: pointer; }

.ic_close:before, .ic_close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 17px;
  width: 2px;
  background-color: #333; }

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

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

.Toast {
  position: fixed;
  z-index: 100000;
  right: 20px;
  top: 20px; }
  .Toast.Error .Toast-Inner {
    border-left: 5px solid #FC6404; }
    .Toast.Error .Toast-Inner .Toast-Icon {
      color: #fff; }
      .Toast.Error .Toast-Inner .Toast-Icon .Icon-Inner {
        background: #FC6404; }
  .Toast.Info .Toast-Inner {
    border-left: 5px solid #1A3AF8; }
    .Toast.Info .Toast-Inner .Toast-Icon {
      color: #fff; }
      .Toast.Info .Toast-Inner .Toast-Icon .Icon-Inner {
        background: #1A3AF8; }
  .Toast.Success .Toast-Inner {
    border-left: 5px solid #08B62C; }
    .Toast.Success .Toast-Inner .Toast-Icon {
      color: #fff; }
      .Toast.Success .Toast-Inner .Toast-Icon .Icon-Inner {
        background: #08B62C; }
  .Toast .Toast-Inner {
    border-left: 5px solid #ccc;
    border-left: 5px;
    display: flex;
    align-items: center;
    width: 500px;
    max-width: 500px;
    background: #fff;
    border: 1px solid #e2e2e2;
    -webkit-box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; }
    .Toast .Toast-Inner .Toast-Close {
      border-left: 1px solid #e2e2e2;
      display: inline-block;
      padding: 15px 20px;
      font-size: 16px; }
      .Toast .Toast-Inner .Toast-Close:hover {
        color: #1A3AF8;
        cursor: pointer; }
    .Toast .Toast-Inner .Toast-Icon {
      display: inline-block;
      padding: 0 20px;
      font-size: 16px;
      font-weight: 900; }
      .Toast .Toast-Inner .Toast-Icon .Icon-Inner {
        display: inline-block;
        background: #ccc;
        width: 30px;
        height: 30px;
        max-height: 30px;
        text-align: center;
        line-height: 32px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px; }
    .Toast .Toast-Inner .Toast-Text {
      display: inline-block;
      width: 100%;
      padding: 15px 0; }
      .Toast .Toast-Inner .Toast-Text b {
        display: inline-block;
        width: 100%;
        font-weight: 600;
        font-size: 15px;
        line-height: 24px; }
      .Toast .Toast-Inner .Toast-Text i {
        display: inline-block;
        width: 100%;
        font-weight: 300;
        font-size: 15px;
        font-style: normal;
        color: #666;
        line-height: 24px; }

#contextmenu {
  position: fixed;
  left: -50%;
  top: -50%;
  background-color: #fafafa;
  font-size: 10pt;
  z-index: 1000;
  border: 1px solid #ccc;
  box-shadow: 0 0 6pt rgba(0, 0, 0, 0.1);
  border-radius: 4pt;
  padding: 0.5em 0 0.5em 0;
  display: block; }

#contextmenu hr {
  border: none;
  border-bottom: 1px solid #eee; }

#contextmenu a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 0.5em 2em 0.5em 0.75em;
  max-width: 18em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

#contextmenu a:hover {
  background-color: #1A3AF8;
  color: #fff; }

#contextmenu a::before {
  content: '';
  float: left;
  margin-right: 0.75em;
  width: 0.8em;
  height: 1em;
  display: inline-block; }

#contextmenu a.print::before {
  content: '\2399'; }

#contextmenu a.ticked::before {
  content: '\2713'; }

#contextmenu a.unticked::before {
  content: '\2610'; }

/* Animatinons */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1.0; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1.0; } }
@-webkit-keyframes fadeOut {
  from {
    opacity: 1.0; }
  to {
    opacity: 0.0; } }
@keyframes fadeOut {
  from {
    opacity: 1.0; }
  to {
    opacity: 0.0; } }
.is-fadingIn {
  -webkit-animation: fadeIn 0.1s ease-out;
  animation: fadeIn 0.1s ease-out;
  opacity: 1.0;
  display: block; }

.is-fadingOut {
  -webkit-animation: fadeOut 0.1s ease-out;
  animation: fadeOut 0.1s ease-out;
  opacity: 0.0;
  display: block; }

.__Page {
  background: #f5f8fa url("../../res/drawable/bg.png") center bottom no-repeat;
  position: fixed;
  width: 100%;
  height: 100%; }
  .__Page .LoginLayout {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%; }
    .__Page .LoginLayout .__RelativeLayout {
      display: inline-block;
      position: relative;
      width: 400px; }
      .__Page .LoginLayout .__RelativeLayout .__Logo {
        float: left;
        width: 100%;
        text-align: center; }
        .__Page .LoginLayout .__RelativeLayout .__Logo img {
          width: 50%; }
      .__Page .LoginLayout .__RelativeLayout .__LoginContainer {
        float: left;
        margin-top: 30px;
        width: 100%;
        background: #fff;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e2e2;
        padding: 40px 15px; }
        .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form {
          float: left;
          width: 100%;
          padding: 10px 30px; }
          .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form input {
            width: 100%; }
          .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form input[type=text] {
            background: #f9f9f9; }
          .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form input[type=password] {
            background: #f9f9f9; }
          .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form span {
            float: left;
            width: 100%; }
            .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form span:nth-child(1) {
              font-weight: 600; }
            .__Page .LoginLayout .__RelativeLayout .__LoginContainer .__Form span:nth-child(2) {
              padding-top: 10px; }

b {
  font-weight: 600; }

body {
  margin: 0;
  background: #fff; }

section.Layout {
  border: 0; }

.__ModalForm {
  float: left;
  width: 100%; }
  .__ModalForm .__Input {
    float: left;
    width: 100%;
    padding-top: 10px; }
    .__ModalForm .__Input input, .__ModalForm .__Input textarea {
      width: 100%; }
    .__ModalForm .__Input:first-child {
      padding-top: 0; }
    .__ModalForm .__Input span {
      float: left;
      width: 100%; }
      .__ModalForm .__Input span:nth-child(1) {
        font-weight: 600; }
      .__ModalForm .__Input span:nth-child(2) {
        padding-top: 6px; }
      .__ModalForm .__Input span:nth-child(3) {
        padding-top: 5px;
        font-size: 11px;
        font-weight: 300; }

.ProjectMap_Archive {
  float: left;
  width: 100%;
  padding-top: 30px;
  font-size: 11px; }

.ProjectMap {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px; }
  .ProjectMap .__InnerItem {
    float: left;
    width: 100%; }
    .ProjectMap .__InnerItem .__CreateTodoButton {
      display: inline-block;
      width: 100%;
      border: 3px dashed #e2e2e2;
      margin-top: 15px;
      text-align: center;
      padding: 10px 0;
      color: #999;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
      font-size: 11px;
      font-weight: 600; }
      .ProjectMap .__InnerItem .__CreateTodoButton:hover, .ProjectMap .__InnerItem .__CreateTodoButton:active, .ProjectMap .__InnerItem .__CreateTodoButton:focus {
        color: #2b65f8;
        cursor: pointer;
        border-color: #2b65f8; }
    .ProjectMap .__InnerItem .__DragHolder {
      display: none;
      float: left;
      width: 100%;
      color: #999;
      text-align: center;
      font-size: 30px;
      border: 3px dashed #e2e2e2;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
      padding: 10px;
      margin-bottom: 15px; }
      .ProjectMap .__InnerItem .__DragHolder:hover, .ProjectMap .__InnerItem .__DragHolder:active, .ProjectMap .__InnerItem .__DragHolder:focus, .ProjectMap .__InnerItem .__DragHolder.ui-state-active {
        color: #2b65f8;
        cursor: pointer;
        border-color: #2b65f8; }
  .ProjectMap .ProjectMap__Item {
    float: left;
    padding: 15px;
    width: 100%;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 0 rgba(9, 30, 66, 0.15);
    -moz-box-shadow: 0 1px 0 rgba(9, 30, 66, 0.15);
    box-shadow: 0 1px 0 rgba(9, 30, 66, 0.15);
    margin-top: 15px; }
    .ProjectMap .ProjectMap__Item:hover {
      cursor: pointer; }
      .ProjectMap .ProjectMap__Item:hover .__ItemRight {
        display: inline-block; }
    .ProjectMap .ProjectMap__Item .__ItemLeft {
      float: left;
      width: calc(100% - 30px); }
      .ProjectMap .ProjectMap__Item .__ItemLeft .__ItemButtons {
        float: left;
        width: 100%;
        padding-top: 10px; }
    .ProjectMap .ProjectMap__Item .__ItemRight {
      float: left;
      width: 30px;
      text-align: right;
      display: none; }
      .ProjectMap .ProjectMap__Item .__ItemRight .__EditButton {
        display: inline-block;
        padding: 3px 6px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px; }
        .ProjectMap .ProjectMap__Item .__ItemRight .__EditButton:hover {
          cursor: pointer;
          background: #f5f8fa; }
    .ProjectMap .ProjectMap__Item .__ItemTitle {
      float: left;
      width: 100%;
      font-size: 14px;
      font-weight: 600; }
    .ProjectMap .ProjectMap__Item:nth-child(2) {
      margin-top: 0; }
  .ProjectMap .__Item {
    width: 100%;
    float: left;
    background: #fff;
    -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.02);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; }
    .ProjectMap .__Item .__Content {
      float: left;
      width: 100%;
      padding: 20px;
      background: rgba(245, 248, 250, 0.5); }
      .ProjectMap .__Item .__Content .__ContentDone_Title {
        float: left;
        width: 100%;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        border: 3px dashed #1CBE81;
        color: #1CBE81;
        padding: 5px 0;
        text-align: center;
        font-weight: 600;
        font-size: 11px; }
        .ProjectMap .__Item .__Content .__ContentDone_Title:hover {
          color: #2b65f8;
          border-color: #2b65f8;
          cursor: pointer; }
      .ProjectMap .__Item .__Content .__ContentDone {
        float: left;
        width: 100%;
        display: none; }
        .ProjectMap .__Item .__Content .__ContentDone .ProjectMap .ProjectMap__Item:nth-child(2) {
          margin-top: 15px !important; }
    .ProjectMap .__Item .__Title {
      float: left;
      width: 100%;
      padding: 20px;
      border-bottom: 1px solid #f2f2f2; }

.ModalToolbarContent {
  background: #f4f5f7 !important; }

.CheckList_Template {
  display: none; }

.__TextViewDelete {
  float: left;
  width: 100%;
  display: flex;
  align-items: center; }
  .__TextViewDelete .__Text {
    display: inline-block;
    width: calc(100% - 50px); }
  .__TextViewDelete .__Icon {
    padding: 5px;
    margin: 0 5px;
    display: inline-block;
    text-align: center;
    width: 40px;
    color: #42526e; }
    .__TextViewDelete .__Icon:hover {
      cursor: pointer;
      background: #f44336;
      color: #fff;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px; }
    .__TextViewDelete .__Icon i {
      font-size: 18px; }

.__TodoEditRight {
  float: left;
  width: 260px;
  padding-left: 20px; }
  .__TodoEditRight .ButtonItemTitle {
    float: left;
    width: 100%;
    padding: 10px 0;
    font-weight: 600;
    font-size: 11px; }
  .__TodoEditRight .ButtonItem {
    display: inline-block;
    margin-bottom: 5px;
    background: #eaecef;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    width: 100%;
    padding: 6px 15px;
    font-weight: 500;
    font-size: 14px; }
    .__TodoEditRight .ButtonItem.White {
      color: var(--bs-gray);
      background: var(--bs-light-transparent); }
      .__TodoEditRight .ButtonItem.White:hover {
        background: var(--bs-secondary-dark);
        color: #fff; }
    .__TodoEditRight .ButtonItem.Blue {
      color: var(--bs-primary);
      background: var(--bs-primary-transparent); }
      .__TodoEditRight .ButtonItem.Blue:hover {
        background: var(--bs-primary-dark);
        color: #fff; }
    .__TodoEditRight .ButtonItem.Green {
      color: var(--bs-success);
      background: var(--bs-success-transparent); }
      .__TodoEditRight .ButtonItem.Green:hover {
        background: var(--bs-success-dark);
        color: #fff; }
    .__TodoEditRight .ButtonItem.Orange {
      color: var(--bs-warning);
      background: var(--bs-warning-transparent); }
      .__TodoEditRight .ButtonItem.Orange:hover {
        background: var(--bs-warning-dark);
        color: #fff; }
    .__TodoEditRight .ButtonItem.Red {
      color: var(--bs-danger);
      background: var(--bs-danger-transparent); }
      .__TodoEditRight .ButtonItem.Red:hover {
        background: var(--bs-danger-dark);
        color: #fff; }
    .__TodoEditRight .ButtonItem span {
      float: left; }
      .__TodoEditRight .ButtonItem span:nth-child(1) {
        width: 30px; }
      .__TodoEditRight .ButtonItem span:nth-child(2) {
        width: calc(100% - 30px);
        font-size: 14px;
        font-weight: 500; }
    .__TodoEditRight .ButtonItem:hover {
      cursor: pointer;
      background: #2b65f8;
      color: #fff; }

.__TodoEditLeft {
  float: left;
  width: calc(100% - 260px);
  padding-right: 30px;
  border-right: 1px solid #e2e2e2; }

.onSubmitPhotoUploader {
  display: inline-block;
  width: 1px;
  height: 1px;
  overflow: hidden; }

a {
  color: #2b65f8; }
  a:hover, a:active, a:visited {
    color: #2b65f8; }

.PhotoViewerFrame {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000; }
  .PhotoViewerFrame .CanvasPaint_SaveButton {
    position: absolute;
    z-index: 100;
    display: none;
    right: 20px;
    bottom: 20px; }
  .PhotoViewerFrame .CanvasPaint {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; }
    .PhotoViewerFrame .CanvasPaint .__Paint {
      position: relative;
      width: 100%;
      height: 100%; }

.PhotoViewer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100000;
  top: 0 !important;
  left: 0 !important;
  display: none;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px; }
  .PhotoViewer .__PhotoViewInner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center; }
  .PhotoViewer .__PhotoView {
    position: absolute;
    width: 1800px;
    height: 950px;
    background: #000; }
    .PhotoViewer .__PhotoView .__PhotoView_Iframe {
      position: relative;
      width: 100%;
      height: 100%; }
      .PhotoViewer .__PhotoView .__PhotoView_Iframe iframe {
        width: 100%;
        height: 100%;
        border: 0; }
    .PhotoViewer .__PhotoView .__Close {
      z-index: 10;
      position: absolute;
      right: 0;
      color: #fff;
      top: 0;
      padding: 20px; }
      .PhotoViewer .__PhotoView .__Close .__CloseIcon {
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        display: flex;
        width: 40px;
        height: 40px;
        text-align: center;
        background: #111; }
        .PhotoViewer .__PhotoView .__Close .__CloseIcon:hover {
          cursor: pointer;
          background: #222; }
        .PhotoViewer .__PhotoView .__Close .__CloseIcon i {
          font-size: 24px; }

.MonthHolder {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 30px; }
  .MonthHolder span:nth-child(2) {
    color: #333;
    font-weight: 600;
    font-size: 30px; }

.__PhotoGallery {
  float: left;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px; }
  .__PhotoGallery .__PhotoItem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;
    background: #fff;
    -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.02);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden; }
    .__PhotoGallery .__PhotoItem .__Delete {
      position: absolute;
      right: 0;
      top: -5px !important; }
      .__PhotoGallery .__PhotoItem .__Delete .__DeleteIcon {
        display: inline-block;
        -webkit-border-radius: 0 0 0 6px;
        -moz-border-radius: 0 0 0 6px;
        border-radius: 0 0 0 6px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        padding: 0;
        margin: 0;
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        text-align: center; }
        .__PhotoGallery .__PhotoItem .__Delete .__DeleteIcon:hover {
          background: #f44336; }
        .__PhotoGallery .__PhotoItem .__Delete .__DeleteIcon i {
          font-size: 11px; }
    .__PhotoGallery .__PhotoItem .__Number {
      position: absolute;
      left: 5px;
      top: 0; }
      .__PhotoGallery .__PhotoItem .__Number .MiniNumber {
        display: inline-block;
        background: #fff;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        padding: 1px 10px;
        font-weight: 600;
        font-size: 9px; }
    .__PhotoGallery .__PhotoItem img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .__PhotoGallery .__PhotoItem:hover {
      cursor: pointer;
      color: #2b65f8;
      border: 1px solid #2b65f8; }
    .__PhotoGallery .__PhotoItem i {
      font-size: 32px; }

.__KenntnisBlockItem {
  float: left;
  width: 100%;
  display: flex;
  align-items: center; }
  .__KenntnisBlockItem .__Checkbox {
    float: left;
    width: 40px; }
    .__KenntnisBlockItem .__Checkbox i {
      color: #29cf29;
      font-size: 24px; }
  .__KenntnisBlockItem .__TextView {
    float: left;
    width: calc(100% - 40px);
    font-weight: 600;
    font-size: 11px; }
    .__KenntnisBlockItem .__TextView i {
      color: #666;
      font-size: 11px;
      font-weight: 300; }

.CheckedString {
  text-decoration: line-through; }

.TransparentText {
  width: 100%;
  padding: 6px 0 !important;
  background: transparent;
  border-color: transparent !important;
  font-weight: 500;
  font-size: 14px; }
  .TransparentText:hover, .TransparentText:active, .TransparentText:focus {
    -webkit-box-shadow: 0 0 0 0 !important;
    -moz-box-shadow: 0 0 0 0 !important;
    box-shadow: 0 0 0 0 !important;
    padding: 6px 12px !important;
    border-color: #2b65f8 !important; }

.CheckListe_Panel {
  float: left;
  width: 100%;
  padding-top: 10px; }

.__StatusPost {
  float: left;
  width: 100%; }
  .__StatusPost input[type=text] {
    width: 100%; }
  .__StatusPost span {
    float: left;
    width: 100%; }

.__FeedText {
  float: left;
  width: 100%; }
  .__FeedText .__Text {
    float: left;
    width: 100%; }
    .__FeedText .__Text i {
      font-size: 11px;
      font-weight: 300; }
  .__FeedText .__StatusText {
    margin-top: 5px;
    display: inline-block;
    padding: 5px 10px 5px 5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 11px !important; }
    .__FeedText .__StatusText b {
      font-weight: 500; }

.__TodoBlock {
  float: left;
  width: 100%; }
  .__TodoBlock.CheckBoxElement {
    display: flex;
    align-items: center;
    padding: 5px 0 !important; }
    .__TodoBlock.CheckBoxElement:hover {
      background: #eaecf0; }
  .__TodoBlock .ButtonAdd {
    display: inline-block;
    padding: 4px 10px;
    background: transparent;
    border: 2px dashed #ccc;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px; }
    .__TodoBlock .ButtonAdd:hover {
      border: 2px dashed #2b65f8;
      color: #2b65f8;
      cursor: pointer; }
  .__TodoBlock .__EditText {
    float: left;
    width: 100%; }
    .__TodoBlock .__EditText .__ButtonView {
      float: left;
      width: 100%;
      padding-top: 10px; }
    .__TodoBlock .__EditText .__TextView {
      float: left;
      width: 100%; }
  .__TodoBlock textarea {
    border-color: #eaecef;
    background: #eaecef;
    width: 100%; }
    .__TodoBlock textarea:focus, .__TodoBlock textarea:active {
      background: #fff;
      height: 400px; }
  .__TodoBlock.Flex {
    display: flex;
    align-items: center; }
  .__TodoBlock.PadTop {
    padding-top: 10px; }
  .__TodoBlock.Top {
    margin-top: 15px;
    border-top: 1px solid #e2e2e2;
    padding-top: 15px; }
  .__TodoBlock.FontNormal span:nth-child(2) {
    font-weight: 500;
    font-size: 14px; }
  .__TodoBlock span {
    display: inline-block;
    float: left; }
    .__TodoBlock span:nth-child(1) {
      width: 50px;
      color: #42526e; }
      .__TodoBlock span:nth-child(1) i {
        font-size: 26px;
        color: #42526e; }
    .__TodoBlock span:nth-child(2) {
      width: calc(100% - 50px);
      font-weight: 500; }

.__Todo_Title {
  float: left;
  width: 100%;
  font-weight: 500;
  font-size: 16px; }

.CheckList_Text {
  float: left;
  width: 100%;
  padding: 10px 0;
  font-weight: 500;
  font-size: 11px; }

.Checklist_Line {
  float: left;
  width: 100%;
  background: #eee;
  overflow: hidden;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  height: 10px; }
  .Checklist_Line .LineColor {
    background: #29cf29;
    display: inline-block;
    height: 20px; }

.ProfileCardsItems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px; }

.__ProfileCard {
  display: flex;
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  padding: 15px; }
  .__ProfileCard .__ImageView {
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px; }
    .__ProfileCard .__ImageView img {
      vertical-align: middle;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .__ProfileCard span {
    display: inline-block; }
    .__ProfileCard span cite {
      font-weight: 300;
      font-size: 14px;
      font-style: normal; }
    .__ProfileCard span:nth-child(1) {
      width: 60px; }
    .__ProfileCard span:nth-child(2) {
      width: calc(100% - 60px);
      font-size: 14px; }

.__ViewerList {
  float: left;
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
  padding: 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03); }
  .__ViewerList .__ListItem {
    float: left;
    width: 100%;
    padding: 2px 0;
    font-size: 14px; }
  .__ViewerList .__Title {
    padding-bottom: 6px;
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 14px; }

.TableButton {
  display: none;
  margin-left: 10px;
  padding: 2.5px 8px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #0065ff;
  color: #fff;
  font-weight: 500;
  font-size: 14px; }
  .TableButton:hover {
    background: var(--bs-primary-dark);
    cursor: pointer; }

.__ProjectItem {
  display: flex;
  align-items: center; }
  .__ProjectItem span {
    display: inline-block; }
    .__ProjectItem span img {
      vertical-align: middle;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px;
      object-fit: cover; }
    .__ProjectItem span:nth-child(1) {
      width: 30px; }
    .__ProjectItem span:nth-child(2) {
      width: calc(100% - 30px);
      font-weight: 600; }

.TableView {
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.03);
  width: 100%;
  border-collapse: collapse; }
  .TableView tbody tr:hover td {
    background: #f4f8fa; }
  .TableView tbody tr td {
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    padding: 15px; }
    .TableView tbody tr td:last-child {
      border-right: 0; }
  .TableView thead.Selector {
    display: none; }
    .TableView thead.Selector tr:hover td {
      background: #2b65f8; }
    .TableView thead.Selector tr td {
      padding: 10px 15px;
      -webkit-border-radius: 6px 6px 0 0;
      -moz-border-radius: 6px 6px 0 0;
      border-radius: 6px 6px 0 0;
      background: #2b65f8;
      color: #fff;
      font-size: 14px; }
  .TableView thead tr td {
    padding: 7px 15px;
    font-weight: 600; }

/*# sourceMappingURL=style.css.map */
