/*
@media screen and (max-width: @bkPhone) {}
@media screen and (min-width:calc(@bkPhone + 1px)) and (max-width:@bkTablet){}
@media screen and (min-width:calc(@bkTablet + 1px)){}
*/
/* ==========================================================================
  css 初期化
   ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.6rem;
  vertical-align: baseline;
  background: transparent;
}
html {
  color: #666;
  font-family: Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  min-width: 100%;
  min-height: 100%;
  height: auto;
}
.tegaki {
  font-family: 'Gloria Hallelujah', cursive;
}
nav,
.nav {
  font-family: 'Poiret One', cursive, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body {
  line-height: 1;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
.gFont {
  font-family: 'Orbitron', sans-serif;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #579dff;
  transition: 300ms;
  font-weight: 700;
}
a:hover {
  color: #1cd2a8;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
/*input, select, textarea, button {
  vertical-align:middle;
  margin:.5rem 0;
  border-radius: 5px;
  border:1px solid @borderColor;
}*/
input:not(.notDefault):not(.passwordBoxInput):not(.gaugeField):not([type="submit"]):not([type="checkbox"]):not([type="file"]):not([type="button"]):not([type="color"]):not(.timeField) {
  border: solid 1px #aef823;
  height: initial;
  border-radius: 2rem;
  padding: 0.3rem 0.5rem !important;
  min-width: 250px;
  font-size: 1rem;
  background: white;
  color: #666;
  box-sizing: border-box;
}
.passwordBox {
  border: solid 1px #aef823;
  height: initial;
  border-radius: 2rem;
  padding: 0.3rem 0.5rem !important;
  min-width: 250px;
  font-size: 1rem;
  background: white;
  color: #666;
  box-sizing: border-box;
}
/* The switch - the box around the slider */
.sliderArea {
  display: flex;
  align-items: center;
  /* The slider */
  /* Rounded sliders */
}
.sliderArea > :first-child {
  margin-right: 0.5rem;
}
.sliderArea .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* Hide defaultValue HTML checkbox */
}
.sliderArea .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.sliderArea .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #aaaaaa;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sliderArea .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sliderArea input:checked + .slider {
  background-color: #aef823;
}
.sliderArea input:focus + .slider {
  box-shadow: 0 0 1px #aef823;
}
.sliderArea input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.sliderArea .slider.round {
  border-radius: 34px;
  width: 60px;
}
.sliderArea .slider.round:before {
  border-radius: 50%;
}
select,
textarea {
  border: solid 1px #aef823;
  height: initial;
  border-radius: 2px;
  padding: 0.3rem 0.5rem !important;
  min-width: 250px;
  font-size: 1rem;
  background: white;
  color: #666;
  box-sizing: border-box;
}
.pageTitle {
  background: #fefefe !important;
  border-top: 1px solid #aef823;
  border-bottom: 1px solid #aef823;
  padding: 0.3rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageTitle :first-child {
  padding: 0.3rem;
  margin: 0.1rem 0;
  margin-right: 0.3rem;
  background: #1cd2a8;
  color: white;
  border-radius: 3px;
}
.pageTitle :last-child {
  color: #666 !important;
}
/* ==========================================================================
   根幹部スタイリング
   ========================================================================== */
.description {
  margin: 1rem 0;
}
html,
body,
#wrapper {
  width: 100%;
  min-width: 1300px;
  background: #f9f9f9;
}
html.compact,
body.compact,
#wrapper.compact {
  min-width: initial;
}
#processing {
  width: 100vw;
  height: 100vh;
  background: #aef823;
  color: white;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: none;
  cursor: progress;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#processing .processingText {
  height: 2rem;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding-top: 70px;
  font-size: 1.5rem;
}
#processing .spinnerArea {
  font-size: 2rem;
  line-height: 0;
  position: absolute;
  width: 100%;
  height: 2rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#processing .spinnerArea > .spinner {
  width: 100%;
  text-align: center;
}
#processing .spinnerArea > .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bounceAnimation 1s infinite ease-in-out both;
  animation: bounceAnimation 1s infinite ease-in-out both;
  -webkit-transform: scale(0);
  transform: scale(0);
}
#processing .spinnerArea > .spinner > .bounce1 {
  -webkit-animation-delay: -0.23s;
  animation-delay: -0.23s;
}
#processing .spinnerArea > .spinner > .bounce2 {
  -webkit-animation-delay: -0.09s;
  animation-delay: -0.09s;
}
@-webkit-keyframes bounceAnimation {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceAnimation {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.on {
  display: block !important;
  opacity: 1;
}
header {
  width: 100%;
  min-width: 1000px;
  background: #333333;
  color: white;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  height: 100px;
  box-sizing: border-box;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
}
header > div:first-child {
  display: grid;
  grid-template-columns: 115px 1fr 220px;
}
header > div:first-child .headerLogo {
  height: 80px;
  width: calc(80px * 1.37);
  fill: white;
  cursor: pointer;
}
header > div:first-child > div:nth-child(2) {
  display: grid;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr;
  justify-content: start;
  margin-right: 1rem;
}
header > div:first-child > div:nth-child(2) > div:last-child {
  width: 100%;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu {
  width: 100%;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li {
  transition: 300ms;
  padding: 0 0.3rem;
  border-radius: 3px;
  margin-left: 1rem;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li > i {
  transition: 300ms;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li > a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 300ms;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li:first-letter-child {
  margin-left: 0;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li:hover {
  background: white;
}
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li:hover > a,
header > div:first-child > div:nth-child(2) > div:last-child nav.adminMenu > ul > li:hover > i {
  color: #333333;
}
header > div:first-child > div:last-child {
  justify-self: end;
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
  max-width: 170px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
header > div:first-child > div:last-child > p {
  line-height: 1;
}
header > div:first-child > div:last-child > .logoutButton {
  background: white;
  transition: 300ms;
  padding: 0.2rem;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  margin-top: 1rem;
  width: 100%;
}
header > div:first-child > div:last-child > .logoutButton > a,
header > div:first-child > div:last-child > .logoutButton > i {
  text-decoration: none;
  color: #333333;
}
header > div:first-child > div:last-child > .logoutButton > a {
  font-weight: 700;
}
header > div:first-child > div:last-child > .logoutButton:hover {
  background: #333333;
}
header > div:first-child > div:last-child > .logoutButton:hover > a,
header > div:first-child > div:last-child > .logoutButton:hover > i {
  color: white;
}
header > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
}
header > div:nth-child(2) > nav > ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  list-style-type: none;
}
header > div:nth-child(2) > nav > ul > li {
  background: white;
  transition: 500ms;
  margin: 0 1rem;
  padding: 0.2rem;
  border-radius: 3px;
}
header > div:nth-child(2) > nav > ul > li > ul.subMenu {
  position: absolute;
  background: #aaa;
  display: none;
  cursor: pointer;
  border-radius: 10px;
}
header > div:nth-child(2) > nav > ul > li > ul.subMenu > li {
  background: white;
  padding: 0.2rem 0.5rem;
}
header > div:nth-child(2) > nav > ul > li > ul.subMenu > li > a {
  color: #333333;
  text-decoration: none;
  font-weight: 700;
  color: #579dff;
  transition: 300ms;
}
header > div:nth-child(2) > nav > ul > li > ul.subMenu > li > a:hover {
  color: #1cd2a8;
}
header > div:nth-child(2) > nav > ul > li a {
  text-decoration: none;
  color: #333333;
}
header > div:nth-child(2) > nav > ul li:last-child {
  margin-right: 0;
}
header > div:nth-child(2) > nav > ul li:hover {
  background: #333333;
}
header > div:nth-child(2) > nav > ul li:hover a {
  text-decoration: underline;
  color: white;
}
header div.shopNameArea {
  text-align: center;
}
header div.shopNameArea > a {
  text-decoration: none;
  background: white;
  color: #333;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 3px;
  transition: 300ms;
}
header div.shopNameArea > a:hover {
  background: transparent;
  color: #ffffff;
}
header #watchArea {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
header #watchArea > span {
  display: block;
  min-width: 20px;
}
header.compact {
  min-width: 930px;
}
div.visterContent {
  width: 100%;
  box-sizing: border-box;
  min-height: calc(100vh - 100px);
  position: relative;
  top: 100px;
  z-index: 0;
  background: #f9f9f9;
}
div.visterContent > div.contentBody {
  min-height: calc(100vh - 100px - 51px);
}
div.visterContent > div.contentBody > section {
  width: 100%;
}
div.visterContent > footer {
  text-align: center;
  border-top: 1px solid #666;
  box-sizing: border-box;
}
div.windowContent {
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  position: relative;
  top: 0;
  z-index: 0;
  background: #f9f9f9;
}
div.windowContent > div.contentBody {
  min-height: 100vh;
}
div.windowContent > div.contentBody > h3,
div.windowContent > div.contentBody > h2 {
  width: 100%;
  text-align: center;
  color: black;
  margin: 2rem 0;
  font-size: 1.5rem;
}
div.windowContent > div.contentBody > section {
  width: 100%;
}
div.windowContent .sysInfo {
  top: 0!important;
}
div.windowContent .pageTitle {
  margin: 0!important;
}
div.content {
  width: calc(100% - 210px);
  box-sizing: border-box;
  min-height: calc(100vh - 100px);
  position: relative;
  top: 100px;
  left: 210px;
  z-index: 0;
  display: flex;
  justify-content: space-around;
  min-width: 1500px;
  background-image: linear-gradient(-45deg, #ffffff 25%, #aef823 25%, #aef823 50%, #ffffff 50%, #ffffff 75%, #aef823 75%, #aef823);
  background-size: 4px 4px;
}
div.content > div.mainMenu {
  background: #aaa;
  width: 210px;
  min-height: calc(100vh - 100px);
  padding: 1rem 0;
  box-sizing: border-box;
  text-align: center;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 2;
  filter: drop-shadow(3px 0px 3px rgba(0, 0, 0, 0.3));
  transition: 300ms;
}
div.content > div.mainMenu div.currentShopArea label {
  color: white;
  font-weight: 700;
}
div.content > div.mainMenu div.currentShopArea select {
  font-size: 0.9rem;
  min-width: initial!important;
  width: 100%;
}
div.content > div.mainMenu .mainNav {
  padding-top: 1rem;
}
div.content > div.mainMenu .mainNav dl > dt {
  background: #aef823;
  color: white;
  font-weight: 700;
  text-align: left;
  padding-left: 0.5rem;
}
div.content > div.mainMenu .mainNav dl > dt > i {
  margin-right: 0.3rem;
}
div.content > div.mainMenu .mainNav dl > dd ul > li {
  padding: 0.1rem 0;
  text-align: left;
  padding-left: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
div.content > div.mainMenu .mainNav dl > dd ul > li > a {
  text-decoration: none;
  color: white;
  transition: 300ms;
  font-size: 0.9rem;
  font-weight: normal;
}
div.content > div.mainMenu .mainNav dl > dd ul > li > a > i {
  margin-right: 0.3rem;
  color: white;
  transition: 300ms;
}
div.content > div.mainMenu .mainNav dl > dd ul > li:hover {
  transition: 300ms;
  background: #FFAD49;
}
div.content > div.mainMenu .mainNav dl > dd ul > li:hover > a > i {
  color: #aef823;
}
div.content > div.mainMenu .mainNav dl > dd ul li:first-child {
  margin-top: 0;
}
div.content > div.mainMenu .mainNav dl > dd ul li:last-child {
  border: none;
}
div.content > div.mainMenu .mainNav dd:last-child li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
div.content > div.mainMenu.compact {
  width: 0;
  transition: 300ms;
}
div.content .mainMenuToggle {
  cursor: pointer;
  background: #f9f9f9;
  color: #666;
  display: flex;
  border-radius: 3px;
  width: 100px;
  height: 30px;
  justify-content: center;
  align-items: center;
  margin: auto;
}
div.content .mainMenuToggle.fa-long-arrow-alt-right {
  position: fixed;
  top: 115px;
  left: 10px;
  z-index: 1;
  display: none;
}
div.content .mainMenuToggle.fa-long-arrow-alt-right {
  display: flex;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
div.content > div.contentBody {
  box-sizing: border-box;
  position: relative;
  margin: 1rem;
  margin-bottom: calc(51px - -1rem);
  width: 100%;
  background: #f9f9f9;
  border-radius: 5px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
}
div.content > div.contentBody .pageTitle {
  width: 100%;
  color: black;
  margin: 2rem 0;
  font-size: 1.5rem;
  text-align: center;
}
div.content > div.contentBody > section {
  width: 100%;
}
div.content > div.contentBody > section > h3,
div.content > div.contentBody > section > h2 {
  width: 100%;
  text-align: center;
  color: black;
  margin: 2rem 0;
  font-size: 1.5rem;
}
div.content footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid #666;
  background: #f9f9f9;
  z-index: -1;
  height: 51px;
  box-sizing: border-box;
}
div.content footer > p:last-child {
  font-size: 0.7rem;
}
div.content.compact {
  width: 100%;
  min-width: initial;
  left: 0;
}
div.content.compact .contentBody {
  min-width: 950px;
}
.returnMes {
  color: #1cd2a8;
  font-weight: bold;
}
.error-message,
.returnErr,
.errorMes {
  color: #ff7700;
  font-weight: bold;
}
.ui-state-default {
  background: #ffcfcf;
  color: #666;
}
.formBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 3rem;
  width: 800px;
}
.formBlock > label:first-child {
  min-width: 200px;
}
.formBlock div.error-message {
  width: 100%;
  text-align: right;
}
.coutions {
  color: #579dff;
}
.disOn {
  background: #FFAD49 !important;
}
.disOff {
  background: #bbb !important;
}
.sysInfo {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  height: 30px;
  display: none;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  color: white;
  z-index: 12;
  font-weight: 700;
  text-align: center;
}
div.submit {
  width: 96%;
  margin: auto;
  margin-bottom: 3rem;
}
div.submit > input {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  color: #fff !important;
  background: #333;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: 300ms;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2));
  display: block;
}
div.submit > input:hover {
  background: #FFAD49;
}
input:focus,
textarea:focus,
select:focus {
  border: 2px solid #FFAD49;
}
.infoGreen {
  background: #1cd2a8;
}
.infoRed {
  background: #ff7700;
}
.pageLinks {
  width: 100%;
  margin: 2rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.pageLinks > .numberArea {
  margin: 0 0.5rem;
}
.pageLinks .disabled {
  opacity: 0;
}
.emptyResult {
  font-weight: 700;
  text-align: center;
}
#dropArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 210, 168, 0.8);
  z-index: 9999;
  color: white;
  font-size: 2rem;
  transition: 300ms;
  text-align: center;
  padding-top: calc(50vh - 1rem);
  border: 4px dashed white;
  font-weight: 700;
}
#uploadFormArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 210, 168, 0.8);
  z-index: 9999;
  color: white;
  transition: 300ms;
  text-align: center;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
#uploadFormArea > form i {
  animation: rotateAnimation 500ms linear infinite;
}
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#uploadFormArea .closeButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  transition: 300ms;
}
#sortable > *,
.sortList > * {
  background: #c8c8c8;
  border-radius: 3px;
  cursor: move;
}
#sortable input[type="text"],
.sortList input[type="text"],
#sortable input[type="number"],
.sortList input[type="number"] {
  border: solid 1px #aef823;
  height: initial;
  border-radius: 2rem;
  padding: 0.3rem 0.5rem !important;
  min-width: 250px;
  font-size: 1rem;
  background: white;
  color: #666;
  box-sizing: border-box;
}
.subtitle {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.subtitle > * {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.subtitle > *::after {
  content: "";
  display: block;
  margin-left: 0.2rem;
  border-top: 0.7rem solid transparent;
  border-right: 0.7rem solid #aef823;
  border-bottom: 0.7rem solid transparent;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}
.subtitle > *::before {
  content: "";
  display: block;
  margin-right: 0.2rem;
  border-top: 0.7rem solid transparent;
  border-left: 0.7rem solid #aef823;
  border-bottom: 0.7rem solid transparent;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}
input.phoneParts,
select.timeSelect {
  width: 80px!important;
  min-width: 80px!important;
}
.modaal-container {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
#keyPad {
  background: white;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  opacity: 0;
  margin: 1rem;
  width: 200px;
  position: fixed;
}
#keyPad > div {
  padding: 1rem;
}
#keyPad > div > ul {
  margin: auto;
  list-style: none;
  display: grid;
  grid-template-columns: 46px 46px 46px;
  grid-template-rows: 46px 46px 46px 46px;
  align-items: center;
  justify-content: center;
}
#keyPad > div > ul > li > button {
  width: 40px;
  height: 40px;
  margin: 3px;
  border: 1px solid #999;
  background: #1cd2a8;
  color: #ffffff;
  border-radius: 2px;
  position: relative;
  transition: 300ms;
}
#keyPad > div > ul > :nth-child(11) {
  font-size: 0.8rem;
}
#keyPad > div > ul > :nth-child(12) {
  font-size: 0.8rem;
}
#keyPad > div > ul > li:hover > button {
  background: #FFAD49;
}
#keyPad > div > ul > li:active > button {
  top: 5px;
}
#annotationWindow {
  position: fixed;
  width: 200px;
  padding: 0.5rem;
  overflow: auto;
  box-shadow: 3px 0 3px rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.compactSwitcherArea > label {
  padding: 0.3rem 0.5rem;
  font-weight: normal;
  border-radius: 2px;
  transition: 300ms;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid #1cd2a8;
  background: #1cd2a8;
  min-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.compactSwitcherArea > label.negative {
  color: rgba(102, 102, 102, 0.5) !important;
  border: 1px solid rgba(102, 102, 102, 0.5) !important;
  background: transparent!important;
}
.compactSwitcherArea input {
  opacity: 0;
}
.highlight {
  color: blue !important;
  background: yellow !important;
}
label {
  font-weight: 600;
}
.must {
  font-weight: 600;
  color: #ffb702;
}
.explanation {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 1rem 0;
  padding: 1rem;
  box-sizing: border-box;
}
.explanation ul > li {
  margin-bottom: 2rem;
  line-height: 1.1;
}
#popupBlock {
  position: fixed;
  right: 1rem;
  bottom: -200px;
  background: #f9f9f9;
  min-width: 200px;
  min-height: 200px;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
  z-index: 9999;
  transition: 300ms;
  cursor: pointer;
}
#popupBlock > ul {
  list-style: none;
  margin: 0.5rem;
}
#popupBlock.active {
  bottom: 1rem;
  display: block;
  opacity: 1;
}
/* ==========================================================================
     Helper classes
     ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden;
}
.fadeOut {
  animation: fade-out 300ms linear 0s !important;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.btn1 {
  position: relative;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  color: #fff !important;
  background: black;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: 300ms;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2));
  display: block;
}
.btn2 {
  position: relative;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  color: #fff !important;
  background: #1cd2a8;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: 300ms;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2));
  display: block;
}
.btn3 {
  position: relative;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  color: #fff !important;
  background: #579dff;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: 300ms;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2));
  display: block;
}
.btn1:hover,
.btn2:hover,
.btn3:hover,
.btn:hover {
  background: #FFAD49;
  box-shadow: none;
  text-shadow: none;
}
.btn:active,
.btn1:active,
.btn2:active,
.btn3:active,
.btn:active {
  box-shadow: 0 1px #666;
  transform: translateY(4px);
}
.passwordBox {
  display: flex;
}
.passwordBox > input[type="password"],
.passwordBox > input[type="text"] {
  border: none!important;
  width: 100%!important;
  background: transparent!important;
  min-width: initial!important;
}
.passwordBox > i {
  font-size: 1.2rem !important;
  cursor: pointer;
  display: block;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.listTable {
  width: 100%;
  margin: auto;
  border-collapse: collapse;
  box-sizing: border-box;
}
.listTable > thead > tr > th {
  background: #333;
  padding: 0.5rem 0;
  vertical-align: middle;
}
.listTable > thead > tr > th > i {
  color: #FFAD49;
  font-size: 2rem;
  margin-right: 0.5rem;
}
.listTable > thead > tr > th > a,
.listTable > thead > tr > th > span {
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  text-decoration: none;
}
.listTable > thead > tr > th:first-child {
  border-radius: 5px 0 0 0;
}
.listTable > thead > tr > th:last-child {
  border-radius: 0 5px 0 0;
}
.listTable > tbody {
  width: calc(100% - 2px);
}
.listTable > tbody > tr {
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  width: calc(100% - 1px);
  box-sizing: border-box;
}
.listTable > tbody > tr > td {
  background: white;
  padding: 0.3rem;
  transition: 200ms;
  box-sizing: border-box;
}
.listTable > tbody > tr > td > a {
  transition: 200ms;
}
.listTable > tbody > tr:nth-child(even) > td {
  background: #ebf2f1;
}
.listTable > tbody > tr:last-child {
  border-bottom: 1px solid #333;
}
.listTable > tbody > tr:hover > td {
  background: #FFAD49 !important;
  color: #ffffff !important;
}
.listTable > tbody > tr:hover > td > a {
  color: #ffffff !important;
}
ul.pagination {
  margin: auto;
  margin-top: 2rem;
  max-width: 500px;
  display: flex;
  justify-content: center;
  list-style: none;
}
ul.pagination > li {
  font-size: 2rem;
  position: relative;
  margin: 0 0.5rem;
}
ul.pagination > li > a {
  text-decoration: none;
}
.listUi {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.listUi > li {
  width: calc(25% - 2rem);
  margin: 1rem;
  background: #8acfcb;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.flexList {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
/**[disabled]{
  visibility: hidden;
}*/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none !important;
    visibility: hidden;
  }
}
.noScroll {
  overflow: hidden;
}
.monoColor {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.loadingElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  display: none;
}
.loadingElement > p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.loadingElement > p > i {
  color: #aef823;
  animation: loadingRolling 1s linear infinite;
}
@keyframes loadingRolling {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*# sourceMappingURL=base.css.map */