/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
.btn {
  width: fit-content;
  display: inline-block;
  padding: 8px 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s;
  user-select: none;
  cursor: pointer; }

.btn > svg {
  width: 16px;
  height: 16px;
  fill: currentColor; }

.btn > *:nth-child(2) {
  margin-left: 10px; }

.btn-blue {
  color: white;
  background-color: #00b0f0; }

.btn-blue:hover {
  background-color: #007ec8; }

.btn-red {
  color: white;
  background-color: #c80000; }

.btn-red:hover {
  background-color: #820000; }

.btn-green {
  color: white;
  background-color: #00b400; }

.btn-gray {
  color: white;
  background-color: #b4b4b4; }

.btn-gray:hover {
  background-color: #787878; }

/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
.tb, .tb-btn {
  width: fit-content;
  height: 34px;
  position: relative; }

.tb-btn {
  display: flex;
  flex-direction: row;
  align-items: center; }

.tb > input, .tb-btn > input, .ta {
  width: 100%;
  height: 100%;
  padding: 8px 15px;
  box-sizing: border-box;
  border: 1px solid #b4b4b4;
  outline: none;
  color: #464646;
  z-index: 0; }

.tb-err > input {
  border: 1px solid red; }

.tb > input, .ta {
  border-radius: 5px; }

.tb-btn > input {
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.tb > p, .tb-btn > p {
  padding: 0 2px;
  position: absolute;
  left: 13px;
  top: 50%;
  font-size: 80%;
  color: #464646;
  background-color: white;
  transform: translateY(-50%);
  transition: 100ms;
  z-index: 1;
  pointer-events: none;
  user-select: none; }

.tb > input:focus + p, .tb > input:not(:placeholder-shown) + p, .tb-btn > input:focus + p, .tb-btn > input:not(:placeholder-shown) + p {
  top: -0px;
  font-size: 65%; }

.tb-btn > div {
  width: 44px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #00b0f0;
  cursor: pointer; }

.tb-btn svg {
  width: 16px;
  height: 16px;
  fill: white; }

.ta {
  font-size: 85%;
  resize: none; }

@media only screen and (min-width: 1500px) {
  .ws-row > .ws-panel-cnt {
    width: 50%; }
  .tb-btn > div {
    transition: background-color 0.3s; }
  .tb-btn > div:hover {
    background-color: #007ec8; } }

/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
header {
  width: 100%;
  height: 43px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: black;
  background-color: white;
  box-shadow: 1px 1px 2px #c8c8c8; }

header > .logo-cnt {
  padding: 3px 10px;
  height: 40px;
  box-sizing: border-box; }

header > .logo-cnt > img {
  object-fit: contain;
  width: 100%;
  height: 100%; }

header > .spacer {
  flex-grow: 1; }

#logout {
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  user-select: none; }

#logout > svg {
  width: 24px;
  height: 24px;
  fill: #c80000;
  transition: fill 0.3s; }

#logout:hover {
  background-color: #c80000; }

#logout:hover > svg {
  fill: white; }

#ws {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; }

.ws-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 10px; }

.ws-row > .ws-panel-cnt {
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box; }

.ws-row > .ws-panel-cnt:first-child {
  padding-left: 10px; }

.ws-row > .ws-panel-cnt:last-child {
  padding-right: 10px; }

.ws-panel {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0 2px #c8c8c8; }

@media only screen and (min-width: 1500px) {
  .ws-row > .ws-panel-cnt {
    width: 50%; } }

/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
.pg {
  width: 100%;
  padding-top: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; }

.pg svg {
  width: 24px;
  height: 24px;
  fill: #464646; }

.pg-disabled svg {
  fill: #c8c8c8;
  pointer-events: none; }

.pg > div {
  display: flex;
  width: 50%;
  padding: 5px;
  box-sizing: border-box;
  flex-direction: row;
  justify-content: center;
  border-radius: 10px;
  user-select: none; }

@media only screen and (min-width: 1500px) {
  .pg > div {
    width: 20%;
    cursor: pointer; }
  .pg > div:not(.pg-disabled):hover {
    background-color: #c8c8c8; } }

/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
.mdl-cnt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(80, 80, 80, 0.8);
  z-index: 100; }

.mdl {
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0px 0px 5px #282828;
  background-color: white; }

.mdl-hdr, .mdl-body, .mdl-ftr {
  width: 100%; }

.mdl-hdr {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #b4b4b4; }

.mdl-hdr > p {
  padding-bottom: 2px;
  margin-left: 8px;
  margin-right: 15px;
  flex-grow: 1;
  font-size: 120%;
  color: #464646; }

.mdl-hdr > #mdl-btn-close {
  width: 20px;
  height: 20px;
  padding: 4px;
  box-sizing: border-box;
  margin-right: 8px;
  fill: #8c8c8c;
  cursor: pointer;
  transition: fill 0.2s; }

.mdl-hdr > #mdl-btn-close:hover {
  fill: #505050; }

.mdl-body {
  color: #464646;
  overflow: scroll; }

.mdl-ftr {
  margin-top: 10px; }

/*
$clr_prm: rgb(255, 255, 255);
$clr_sec: rgb(0, 176, 240);
$clr_bg:  rgb(240, 240, 240);
$clr_txt: rgb(70, 70, 70);
*/
/* Primary */
/* Backgrounds */
/* Text */
/* Border */
/* Shadow */
.mdl-ftr-logout {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: none; }

.mdl-ftr-logout > .btn {
  width: 100%; }

.mdl-ftr-logout > .btn:first-child {
  margin-right: 5px; }

.mdl-ftr-logout > .btn:last-child {
  margin-left: 5px; }

* {
  margin: 0;
  font-family: "Arial"; }

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0; }

main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row; }
