@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/bolditalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/extrabolditalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/extralightitalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/lightitalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/mediumitalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson";
  src: url("fonts/atkinson/semibolditalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
body {
  font-family: "Atkinson";
}

body {
  background-color: #EBEBEB;
  padding: 0;
  margin: 0;
  color: #2C2C2C;
  opacity: 1;
  transition: opacity 0.3s;
}

.block {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
}

.body-page {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  padding: 10px;
  gap: 10px;
  width: calc(100vw - 20px);
  height: calc(100vh - 20px);
  height: calc(100dvh - 20px);
}
.body-page .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  padding: 10px;
  padding-right: 0;
  padding-bottom: 0;
}
.body-page .page-content {
  flex-grow: 1;
}
.body-page .page-content.page-content-block {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}

.page-title {
  margin: 10px 0 0 0;
}

.page-toolbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: center;
}

.no-transition * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  animation-duration: 0.001s !important;
}

.content-loadable {
  opacity: 1;
}
.content-loadable, .content-loadable > * {
  transition: opacity 0.3s;
}
.content-loadable:after {
  opacity: 0;
  content: " ";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(44, 44, 44, 0.6);
  border-top-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("data:image/svg+xml,%3Csvg fill='encodecolor(#525252)' width='50px' height='50px' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M8,1V2.8A5.2,5.2,0,1,1,2.8,8H1A7,7,0,1,0,8,1Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.5019607843);
  z-index: 10;
  rotate: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
  transition: border 5s ease-in, border-top-color 5s ease-in, opacity 0.3s;
  animation: spin 2s infinite linear;
}
.content-loadable:not(.content-loaded) {
  position: relative !important;
}
.content-loadable:not(.content-loaded) > * {
  opacity: 0;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.content-loadable:not(.content-loaded):after {
  opacity: 1;
  transition: opacity 0.3s 3s;
  transition-delay: 3s;
}

body.content-loading {
  opacity: 0;
}

input {
  color: #2C2C2C;
  font-size: 1em;
  font-family: "Atkinson", sans-serif;
}
input::placeholder {
  color: rgba(197, 197, 197, 0.8);
  font-weight: 100;
}

input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  transform: translateY(-1px);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: all 0.1s;
}
input[type=checkbox]:before {
  transition: all 0.1s;
  border-radius: 2px;
  background-color: #19647E;
  content: " ";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-check"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>');
  display: inline-block !important;
  width: 0;
  height: 0;
  background-position: center;
  background-size: 0;
}
input[type=checkbox]:checked {
  border: 1px solid #19647E;
}
input[type=checkbox]:checked:before {
  width: 14px;
  height: 14px;
  background-size: 12px;
}
input[type=checkbox][readonly] {
  pointer-events: none;
}

input[type=date] + .input-icon {
  display: none;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-primary {
  background-color: #19647E;
  color: white;
  border: none;
  border: 2px solid #19647E;
}
.btn.btn-primary:hover {
  background-color: #155369;
  border-color: #155369;
}
.btn.btn-primary:active {
  background-color: #1d7593;
  border-color: #1d7593;
}
.btn.btn-primary a, .btn.btn-primary a:hover, .btn.btn-primary a:active, .btn.btn-primary a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-primary {
  background-color: transparent;
  color: #19647E;
  border: 2px solid #19647E;
}
.btn.btn-outline-primary:hover {
  background-color: #19647E;
  color: white;
}
.btn.btn-outline-primary:hover a, .btn.btn-outline-primary:hover a:hover, .btn.btn-outline-primary:hover a:active, .btn.btn-outline-primary:hover a:focus {
  color: white;
}
.btn.btn-outline-primary:active {
  background-color: #1d7593;
  border-color: #1d7593;
}
.btn.btn-outline-primary a, .btn.btn-outline-primary a:hover, .btn.btn-outline-primary a:active, .btn.btn-outline-primary a:focus {
  color: #19647E;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-primary:after,
.btn.btn-loader-active.btn-loader.btn-primary:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-primary:after,
.btn.btn-loader-active.btn-loader.btn-outline-primary:after {
  border-color: #19647E;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-primary-light {
  background-color: #119DA4;
  color: white;
  border: none;
  border: 2px solid #119DA4;
}
.btn.btn-primary-light:hover {
  background-color: #0f878d;
  border-color: #0f878d;
}
.btn.btn-primary-light:active {
  background-color: #13b3bb;
  border-color: #13b3bb;
}
.btn.btn-primary-light a, .btn.btn-primary-light a:hover, .btn.btn-primary-light a:active, .btn.btn-primary-light a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-primary-light {
  background-color: transparent;
  color: #119DA4;
  border: 2px solid #119DA4;
}
.btn.btn-outline-primary-light:hover {
  background-color: #119DA4;
  color: white;
}
.btn.btn-outline-primary-light:hover a, .btn.btn-outline-primary-light:hover a:hover, .btn.btn-outline-primary-light:hover a:active, .btn.btn-outline-primary-light:hover a:focus {
  color: white;
}
.btn.btn-outline-primary-light:active {
  background-color: #13b3bb;
  border-color: #13b3bb;
}
.btn.btn-outline-primary-light a, .btn.btn-outline-primary-light a:hover, .btn.btn-outline-primary-light a:active, .btn.btn-outline-primary-light a:focus {
  color: #119DA4;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-primary-light:after,
.btn.btn-loader-active.btn-loader.btn-primary-light:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-primary-light:after,
.btn.btn-loader-active.btn-loader.btn-outline-primary-light:after {
  border-color: #119DA4;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-accent {
  background-color: #FFC857;
  color: #2C2C2C;
  border: none;
  border: 2px solid #FFC857;
}
.btn.btn-accent:hover {
  background-color: #ffc03e;
  border-color: #ffc03e;
}
.btn.btn-accent:active {
  background-color: #ffd071;
  border-color: #ffd071;
}
.btn.btn-accent a, .btn.btn-accent a:hover, .btn.btn-accent a:active, .btn.btn-accent a:focus {
  color: #2C2C2C;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-accent {
  background-color: transparent;
  color: #FFC857;
  border: 2px solid #FFC857;
}
.btn.btn-outline-accent:hover {
  background-color: #FFC857;
  color: #2C2C2C;
}
.btn.btn-outline-accent:hover a, .btn.btn-outline-accent:hover a:hover, .btn.btn-outline-accent:hover a:active, .btn.btn-outline-accent:hover a:focus {
  color: #2C2C2C;
}
.btn.btn-outline-accent:active {
  background-color: #ffd071;
  border-color: #ffd071;
}
.btn.btn-outline-accent a, .btn.btn-outline-accent a:hover, .btn.btn-outline-accent a:active, .btn.btn-outline-accent a:focus {
  color: #FFC857;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid #2C2C2C;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-accent:after,
.btn.btn-loader-active.btn-loader.btn-accent:after {
  border-color: #2C2C2C;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-accent:after,
.btn.btn-loader-active.btn-loader.btn-outline-accent:after {
  border-color: #FFC857;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-success {
  background-color: #0F8434;
  color: white;
  border: none;
  border: 2px solid #0F8434;
}
.btn.btn-success:hover {
  background-color: #0c6d2b;
  border-color: #0c6d2b;
}
.btn.btn-success:active {
  background-color: #129b3d;
  border-color: #129b3d;
}
.btn.btn-success a, .btn.btn-success a:hover, .btn.btn-success a:active, .btn.btn-success a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-success {
  background-color: transparent;
  color: #0F8434;
  border: 2px solid #0F8434;
}
.btn.btn-outline-success:hover {
  background-color: #0F8434;
  color: white;
}
.btn.btn-outline-success:hover a, .btn.btn-outline-success:hover a:hover, .btn.btn-outline-success:hover a:active, .btn.btn-outline-success:hover a:focus {
  color: white;
}
.btn.btn-outline-success:active {
  background-color: #129b3d;
  border-color: #129b3d;
}
.btn.btn-outline-success a, .btn.btn-outline-success a:hover, .btn.btn-outline-success a:active, .btn.btn-outline-success a:focus {
  color: #0F8434;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-success:after,
.btn.btn-loader-active.btn-loader.btn-success:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-success:after,
.btn.btn-loader-active.btn-loader.btn-outline-success:after {
  border-color: #0F8434;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-info {
  background-color: #0474D1;
  color: white;
  border: none;
  border: 2px solid #0474D1;
}
.btn.btn-info:hover {
  background-color: #0466b8;
  border-color: #0466b8;
}
.btn.btn-info:active {
  background-color: #0482ea;
  border-color: #0482ea;
}
.btn.btn-info a, .btn.btn-info a:hover, .btn.btn-info a:active, .btn.btn-info a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-info {
  background-color: transparent;
  color: #0474D1;
  border: 2px solid #0474D1;
}
.btn.btn-outline-info:hover {
  background-color: #0474D1;
  color: white;
}
.btn.btn-outline-info:hover a, .btn.btn-outline-info:hover a:hover, .btn.btn-outline-info:hover a:active, .btn.btn-outline-info:hover a:focus {
  color: white;
}
.btn.btn-outline-info:active {
  background-color: #0482ea;
  border-color: #0482ea;
}
.btn.btn-outline-info a, .btn.btn-outline-info a:hover, .btn.btn-outline-info a:active, .btn.btn-outline-info a:focus {
  color: #0474D1;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-info:after,
.btn.btn-loader-active.btn-loader.btn-info:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-info:after,
.btn.btn-loader-active.btn-loader.btn-outline-info:after {
  border-color: #0474D1;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-warning {
  background-color: #E57F02;
  color: white;
  border: none;
  border: 2px solid #E57F02;
}
.btn.btn-warning:hover {
  background-color: #cc7102;
  border-color: #cc7102;
}
.btn.btn-warning:active {
  background-color: #fd8d04;
  border-color: #fd8d04;
}
.btn.btn-warning a, .btn.btn-warning a:hover, .btn.btn-warning a:active, .btn.btn-warning a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-warning {
  background-color: transparent;
  color: #E57F02;
  border: 2px solid #E57F02;
}
.btn.btn-outline-warning:hover {
  background-color: #E57F02;
  color: white;
}
.btn.btn-outline-warning:hover a, .btn.btn-outline-warning:hover a:hover, .btn.btn-outline-warning:hover a:active, .btn.btn-outline-warning:hover a:focus {
  color: white;
}
.btn.btn-outline-warning:active {
  background-color: #fd8d04;
  border-color: #fd8d04;
}
.btn.btn-outline-warning a, .btn.btn-outline-warning a:hover, .btn.btn-outline-warning a:active, .btn.btn-outline-warning a:focus {
  color: #E57F02;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-warning:after,
.btn.btn-loader-active.btn-loader.btn-warning:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-warning:after,
.btn.btn-loader-active.btn-loader.btn-outline-warning:after {
  border-color: #E57F02;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-danger {
  background-color: #D32C23;
  color: white;
  border: none;
  border: 2px solid #D32C23;
}
.btn.btn-danger:hover {
  background-color: #bd271f;
  border-color: #bd271f;
}
.btn.btn-danger:active {
  background-color: #dd3b32;
  border-color: #dd3b32;
}
.btn.btn-danger a, .btn.btn-danger a:hover, .btn.btn-danger a:active, .btn.btn-danger a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-danger {
  background-color: transparent;
  color: #D32C23;
  border: 2px solid #D32C23;
}
.btn.btn-outline-danger:hover {
  background-color: #D32C23;
  color: white;
}
.btn.btn-outline-danger:hover a, .btn.btn-outline-danger:hover a:hover, .btn.btn-outline-danger:hover a:active, .btn.btn-outline-danger:hover a:focus {
  color: white;
}
.btn.btn-outline-danger:active {
  background-color: #dd3b32;
  border-color: #dd3b32;
}
.btn.btn-outline-danger a, .btn.btn-outline-danger a:hover, .btn.btn-outline-danger a:active, .btn.btn-outline-danger a:focus {
  color: #D32C23;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-danger:after,
.btn.btn-loader-active.btn-loader.btn-danger:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-danger:after,
.btn.btn-loader-active.btn-loader.btn-outline-danger:after {
  border-color: #D32C23;
  border-top-color: transparent;
}

.btn {
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 500;
  align-self: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: "Atkinson", sans-serif;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.btn.btn-none {
  background-color: #868686;
  color: white;
  border: none;
  border: 2px solid #868686;
}
.btn.btn-none:hover {
  background-color: #797979;
  border-color: #797979;
}
.btn.btn-none:active {
  background-color: #939393;
  border-color: #939393;
}
.btn.btn-none a, .btn.btn-none a:hover, .btn.btn-none a:active, .btn.btn-none a:focus {
  color: white;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn.btn-outline-none {
  background-color: transparent;
  color: #868686;
  border: 2px solid #868686;
}
.btn.btn-outline-none:hover {
  background-color: #868686;
  color: white;
}
.btn.btn-outline-none:hover a, .btn.btn-outline-none:hover a:hover, .btn.btn-outline-none:hover a:active, .btn.btn-outline-none:hover a:focus {
  color: white;
}
.btn.btn-outline-none:active {
  background-color: #939393;
  border-color: #939393;
}
.btn.btn-outline-none a, .btn.btn-outline-none a:hover, .btn.btn-outline-none a:active, .btn.btn-outline-none a:focus {
  color: #868686;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.page-loading .btn.btn-loader,
.btn.btn-loader-active.btn-loader {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: transparent;
}
.page-loading .btn.btn-loader:after,
.btn.btn-loader-active.btn-loader:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loading .btn.btn-loader.btn-none:after,
.btn.btn-loader-active.btn-loader.btn-none:after {
  border-color: white;
  border-top-color: transparent;
}
.page-loading .btn.btn-loader.btn-outline-none:after,
.btn.btn-loader-active.btn-loader.btn-outline-none:after {
  border-color: #868686;
  border-top-color: transparent;
}

.btn.btn-block {
  align-self: stretch;
}

.input-list {
  flex-grow: 1;
  display: flex;
  max-height: unset;
  overflow-y: auto;
  overflow-x: hidden;
}
.input-list .list-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
}
.input-list .list-input-items {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 10px;
}
.input-list .list-input-items .list-input-item {
  position: relative;
  display: flex;
  min-height: 2.1em;
}
.input-list .list-input-items .list-input-item .list-input-item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.input-list .list-input-items .list-input-item .list-input-item-content .list-input-item-content-idx {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2C2C2C;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.input-list .list-input-items .list-input-item .list-input-item-remove {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: none;
  width: calc(2.1em - 2px);
  min-width: calc(2.1em - 2px);
  height: calc(2.1em - 2px);
  border-radius: 3px;
  border: 1px solid #D32C23;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: -7px 0px 5px 0px #FFFFFF;
}
.input-list .list-input-items .list-input-item .list-input-item-remove svg {
  stroke-width: 1px;
  width: 24px;
  color: #D32C23;
}
.input-list .list-input-items .list-input-item:hover .list-input-item-remove {
  display: flex;
}
.input-list .list-input-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 10px;
}
.input-list .list-input-placeholder .list-input-placeholder-line {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.input-list .list-input-placeholder .list-input-placeholder-line .list-input-placeholder-text {
  color: rgba(197, 197, 197, 0.8);
  font-weight: 100;
}
.input-list.with-data .list-input-items {
  opacity: 1;
}
.input-list.with-data .list-input-placeholder {
  opacity: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-content: stretch;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.form-group .input-label {
  font-weight: 700;
  padding-left: 10px;
}
.form-group .input-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.form-group .input-wrapper.input-wrapper-none {
  border: none;
}
.form-group .input-wrapper.input-wrapper-vertical {
  flex-direction: column;
  justify-content: stretch;
}
.form-group .input-wrapper .input-form {
  border: none;
  padding: 7px 10px;
  flex-grow: 1;
}
.form-group .input-wrapper .input-form:focus, .form-group .input-wrapper .input-form:focus-visible {
  outline: none;
}
.form-group .input-wrapper .input-icon {
  align-self: center;
  padding-right: 10px;
  color: rgba(197, 197, 197, 0.8);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-group .input-wrapper-group {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  gap: 20px;
}
.form-group .input-wrapper-group .form-group {
  flex-grow: 1;
}
.form-group .input-wrapper-group .input-icon {
  align-self: center;
  padding-right: 10px;
  color: rgba(197, 197, 197, 0.8);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-group .input-wrapper-group .input-form {
  border: none;
  padding: 7px 10px;
  flex-grow: 1;
}
.form-group .input-wrapper-group .input-form:focus, .form-group .input-wrapper-group .input-form:focus-visible {
  outline: none;
}
.form-group .input-error-message {
  color: #D32C23;
  padding: 0 10px;
  font-size: 0.7em;
  opacity: 0;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  position: absolute;
  bottom: -1.3em;
  pointer-events: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.form-group.form-error .input-wrapper, .form-group.form-error.input-wrapper {
  border-color: #D32C23;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(211, 44, 35, 0.5);
  -moz-box-shadow: 0px 0px 2px 0px rgba(211, 44, 35, 0.5);
  box-shadow: 0px 0px 2px 0px rgba(211, 44, 35, 0.5);
}
.form-group.form-error .input-error-message {
  opacity: 1;
}
.form-group.form-group-action {
  padding-top: 20px;
}
.form-group.from-group-checkbox {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
}
.form-group.form-group-error {
  display: none;
  color: #D32C23;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.form-container-wrapper {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
}
.form-container-wrapper .form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container.form-error .form-group.form-group-error {
  display: unset;
  opacity: 1;
}

.form-super-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: stretch;
}
.form-super-group .form-label-super-group {
  padding: 10px;
  font-weight: 700;
  border-bottom: 1px solid #CCCCCC;
}
.form-super-group .form-super-group-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: stretch;
}

.table-filter-wrapper {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  gap: 5px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
.table-filter-wrapper .table {
  flex-grow: 1;
}
.table-filter-wrapper.table-loading {
  position: relative;
  opacity: 0;
}
.table-filter-wrapper.table-loading:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5019607843);
  z-index: 10;
  rotate: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
}

.table {
  height: calc(100% - 2px);
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 auto;
  border-bottom: 2px solid #19647E;
}
.table table {
  position: relative;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  table-layout: auto;
}
.table table th {
  position: sticky;
  top: 0;
  padding: 20px 10px;
  z-index: 1;
  white-space: nowrap;
  box-shadow: inset 0px -2px 0px 0px #19647E;
  color: #19647E;
  font-weight: 500;
  text-align: left;
  background-color: #FFFFFF;
}
.table table td {
  padding: 14px 10px;
  color: #2C2C2C;
}
.table table tr:not(:last-child) {
  border-bottom: 1px solid rgba(197, 197, 197, 0.8);
}
.table table tr .table-cell-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}
.table table tr td {
  transition: opacity 0.2s;
  opacity: 1;
}
.table table tr.remove td {
  opacity: 0;
}
.table table tbody tr:hover {
  background-color: #f7f7f7;
}
.table table tbody tr:hover .table-cell-actions {
  opacity: 1;
}
.table table .size-100 {
  width: 100px;
}
.table table .size-150 {
  width: 150px;
}
.table table .size-200 {
  width: 200px;
}
.table table .size-250 {
  width: 250px;
}

.btn-table-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-width: 1px !important;
}
.btn-table-action a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
}
.btn-table-action svg, .btn-table-action a svg, .btn-table-action a:hover svg, .btn-table-action a:active svg, .btn-table-action a:focus svg {
  width: 24px;
  height: 24px;
  stroke-width: 1px;
}

.navbar {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 55px;
}
.navbar .navbar-logo img {
  width: 55px;
}
.navbar .navbar-menu {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.navbar .navbar-menu .navbar-menu-items {
  list-style: none;
  padding: 0;
}
.navbar .navbar-menu .navbar-menu-items .navbar-menu-item {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.navbar .navbar-menu .navbar-menu-items .navbar-menu-item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-menu .navbar-menu-items .navbar-menu-item svg {
  color: #2C2C2C;
  width: 33px;
  height: 33px;
  stroke-width: 1.5px;
}
.navbar .navbar-menu .navbar-menu-items .navbar-menu-item.navbar-menu-item-active {
  border: 2px solid #19647E;
  width: 46px;
  height: 46px;
}
.navbar .navbar-menu .navbar-menu-items .navbar-menu-item.navbar-menu-item-active svg {
  color: #19647E;
}
.navbar .navbar-signout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-signout button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.navbar .navbar-signout button svg {
  color: #FFFFFF;
  width: 33px;
  height: 33px;
  stroke-width: 1.5px;
}

@keyframes open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
dialog .dialog {
  transition: display 0.3s allow-discrete, overlay 0.3s allow-discrete;
  animation: close 0.3s forwards;
}
dialog.dialog[open] {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border: none;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: open 0.3s forwards;
}
dialog.dialog[open] .dialog-content {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 1.2em;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2em;
}
dialog.dialog[open] .dialog-content .dialog-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.6em;
}
dialog.dialog[open] .dialog-content .dialog-icons svg {
  width: 4.5em;
  height: 4.5em;
  stroke: #2C2C2C;
  stroke-width: 0.08em;
}
dialog.dialog[open] .dialog-content .dialog-icons.dialog-icons-success svg {
  stroke: #0F8434;
}
dialog.dialog[open] .dialog-content .dialog-icons.dialog-icons-info svg {
  stroke: #0474D1;
}
dialog.dialog[open] .dialog-content .dialog-icons.dialog-icons-warning svg {
  stroke: #E57F02;
}
dialog.dialog[open] .dialog-content .dialog-icons.dialog-icons-danger svg {
  stroke: #D32C23;
}
dialog.dialog[open] .dialog-content .dialog-icons.dialog-icons-none svg {
  stroke: #868686;
}
dialog.dialog[open] .dialog-content .dialog-icons .dialog-icon-small-icon svg {
  width: 2em;
  height: 2em;
  stroke-width: 0.08em;
}
dialog.dialog[open] .dialog-content .dialog-message {
  text-align: center;
  font-weight: 300;
}
dialog.dialog[open] .dialog-content .dialog-buttons {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  gap: 1.2em;
}
dialog.dialog[open] .dialog-content .dialog-buttons .btn {
  flex-grow: 1;
}

.maptalks-wrapper .maptalks-attribution {
  display: none;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease, display 0.4s linear allow-discrete;
  display: none;
}
.page-loader .loader-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
}
.page-loader .loader-spinner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.page-loader .loader-spinner-wrap .loader-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(44, 44, 44, 0.6);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
.page-loader.content-loading {
  opacity: 1;
}
@starting-style {
  .page-loader.content-loading {
    opacity: 0;
  }
}
.page-loader.content-loading-active {
  display: block;
}

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